summaryrefslogtreecommitdiff
path: root/extensions/test/ole/unloading/unloadTest.cxx
blob: 2d604e4bcc5c593d1831998a7fd428915bd226a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/


// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_extensions.hxx"

#include<osl/module.hxx>
#include <osl/time.h>
#include <rtl/ustring.hxx>
#include <stdio.h>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/servicefactory.hxx>
#include <cppuhelper/bootstrap.hxx>
#include <com/sun/star/lang/XMultiComponentFactory.hpp>
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XComponent.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/registry/XSimpleRegistry.hpp>

#include <stdio.h>
using namespace ::rtl;
using namespace ::osl;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
using namespace ::cppu;
using namespace ::com::sun::star::registry;


sal_Bool test1();
sal_Bool test2();
sal_Bool test3();
sal_Bool test4();

int main(int, char**)
{
       sal_Bool bTest1= test1();
       sal_Bool bTest2= test2();
    sal_Bool bTest3= test3();
    sal_Bool bTest4= test4();

    if( bTest1 && bTest2 && bTest3 && bTest4)
        printf("\n#########################\n Test was successful\n#######################\n");

    return 0;
}

sal_Bool test1()
{
    printf("\n Test1:  com.sun.star.bridge.oleautomation.BridgeSupplier\n");
    Reference<XSimpleRegistry> xreg= createSimpleRegistry();
    xreg->open( OUString( RTL_CONSTASCII_USTRINGPARAM("services.rdb")),
                               sal_False, sal_False );

    Reference< XComponentContext > context= bootstrap_InitialComponentContext(xreg);
    Reference<XMultiComponentFactory> fac= context->getServiceManager();
    OUString sService1( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.bridge.oleautomation.BridgeSupplier"));
    Reference<XInterface> xint1= fac->createInstanceWithContext( sService1, context);

    OUString sModule(
        RTL_CONSTASCII_USTRINGPARAM("oleautobridge.uno" SAL_DLLEXTENSION));
    oslModule hMod= osl_loadModule( sModule.pData, 0);
    osl_unloadModule( hMod);

    rtl_unloadUnusedModules( NULL);

    OUString sFactoryFunc( RTL_CONSTASCII_USTRINGPARAM("component_getFactory"));
    void* pSymbol= osl_getSymbol( hMod,sFactoryFunc.pData);
    // true, instance alive
    sal_Bool bTest1= pSymbol ? sal_True : sal_False;

    xint1=0;
    rtl_unloadUnusedModules( NULL);
    pSymbol= osl_getSymbol( hMod,sFactoryFunc.pData);
    sal_Bool bTest2= pSymbol ? sal_False : sal_True;

    Reference<XComponent> xcomp( context, UNO_QUERY);
    xcomp->dispose();

    return bTest2 && bTest1;
}

sal_Bool test2()
{
    printf("Test2:  com.sun.star.bridge.OleBridgeSupplierVar1\n");
    Reference<XSimpleRegistry> xreg= createSimpleRegistry();
    xreg->open( OUString( RTL_CONSTASCII_USTRINGPARAM("services.rdb")),
                               sal_False, sal_False );

    Reference< XComponentContext > context= bootstrap_InitialComponentContext(xreg);
    Reference<XMultiComponentFactory> fac= context->getServiceManager();
      OUString sService2( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.bridge.OleBridgeSupplierVar1"));
    Reference<XInterface> xint= fac->createInstanceWithContext( sService2, context);

    OUString sModule(
        RTL_CONSTASCII_USTRINGPARAM("oleautobridge.uno" SAL_DLLEXTENSION));
    oslModule hMod= osl_loadModule( sModule.pData, 0);
    osl_unloadModule( hMod);

    rtl_unloadUnusedModules( NULL);
    OUString sFactoryFunc( RTL_CONSTASCII_USTRINGPARAM("component_getFactory"));
    void* pSymbol= osl_getSymbol( hMod,sFactoryFunc.pData);
    // true, instance alive
    sal_Bool bTest1= pSymbol ? sal_True : sal_False;

    xint=0;
    rtl_unloadUnusedModules( NULL);
    pSymbol= osl_getSymbol( hMod,sFactoryFunc.pData);
    sal_Bool bTest2= pSymbol ? sal_False : sal_True;

    Reference<XComponent> xcomp( context, UNO_QUERY);
    xcomp->dispose();
    return bTest1 && bTest2;
}

sal_Bool test3()
{
    printf("Test3:  com.sun.star.bridge.oleautomation.Factory\n");
    Reference<XSimpleRegistry> xreg= createSimpleRegistry();
    xreg->open( OUString( RTL_CONSTASCII_USTRINGPARAM("services.rdb")),
                sal_False, sal_False );

    Reference< XComponentContext > context= bootstrap_InitialComponentContext(xreg);

    Reference<XMultiComponentFactory> fac= context->getServiceManager();
      OUString sService( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.bridge.oleautomation.Factory"));
    Reference<XInterface> xint= fac->createInstanceWithContext( sService, context);


    OUString sModule(
        RTL_CONSTASCII_USTRINGPARAM("oleautobridge.uno" SAL_DLLEXTENSION));
    oslModule hMod= osl_loadModule( sModule.pData, 0);
    osl_unloadModule( hMod);

    rtl_unloadUnusedModules( NULL);
    OUString sFactoryFunc( RTL_CONSTASCII_USTRINGPARAM("component_getFactory"));
    void* pSymbol= osl_getSymbol( hMod,sFactoryFunc.pData);
    // true, instance alive
    sal_Bool bTest1= pSymbol ? sal_True : sal_False;

    xint=0;
    rtl_unloadUnusedModules( NULL);
    pSymbol= osl_getSymbol( hMod,sFactoryFunc.pData);
    sal_Bool bTest2= pSymbol ? sal_False : sal_True;

    Reference<XComponent> xcomp( context, UNO_QUERY);
    xcomp->dispose();

//  for (int i=0; i < 10; i++)
//  {
//      Reference<XSimpleRegistry> xreg= createSimpleRegistry();
//      xreg->open( OUString( RTL_CONSTASCII_USTRINGPARAM("applicat.rdb")),
//                             sal_False, sal_False );
//      Reference< XComponentContext > context= bootstrap_InitialComponentContext(xreg);
//      Reference<XComponent> xcomp( context, UNO_QUERY);
//      xcomp->dispose();
//
//  }

//  return sal_True;
    return bTest1 && bTest2;
}

sal_Bool test4()
{
    void* pSymbol= NULL;
    sal_Bool bTest1= sal_False;
    sal_Bool bTest2= sal_False;
    oslModule hMod= NULL;
    OUString sModule(
        RTL_CONSTASCII_USTRINGPARAM("oleautobridge.uno" SAL_DLLEXTENSION));
    OUString sFactoryFunc( RTL_CONSTASCII_USTRINGPARAM("component_getFactory"));
    {
    printf("Test4:  com.sun.star.bridge.oleautomation.ApplicationRegistration\n");
       Reference<XSimpleRegistry> xreg= createSimpleRegistry();
    xreg->open( OUString( RTL_CONSTASCII_USTRINGPARAM("services.rdb")),
                               sal_False, sal_False );

    Reference< XComponentContext > context= bootstrap_InitialComponentContext(xreg);
    Reference<XMultiComponentFactory> fac= context->getServiceManager();
    OUString sService4( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.bridge.oleautomation.ApplicationRegistration"));
    Reference<XInterface> xint= fac->createInstanceWithContext( sService4, context);

    hMod= osl_loadModule( sModule.pData, 0);
    osl_unloadModule( hMod);

    rtl_unloadUnusedModules( NULL);
    void* pSymbol= osl_getSymbol( hMod,sFactoryFunc.pData);
    // true, instance alive
    bTest1= pSymbol ? sal_True : sal_False;
    // ApplicationRegistration is a one-instance-service, therefore kill service manager first
    Reference<XComponent> xcomp( context, UNO_QUERY);
    xcomp->dispose();

    }
    rtl_unloadUnusedModules( NULL);
    pSymbol= osl_getSymbol( hMod,sFactoryFunc.pData);
    bTest2= pSymbol ? sal_False : sal_True;

    return bTest1 && bTest2;
}
r> -rw-r--r--source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po68
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po38
-rw-r--r--source/cy/sc/messages.po68
-rw-r--r--source/cy/scp2/source/ooo.po8
-rw-r--r--source/cy/scp2/source/winexplorerext.po10
-rw-r--r--source/cy/sd/messages.po202
-rw-r--r--source/cy/sfx2/messages.po24
-rw-r--r--source/cy/shell/messages.po22
-rw-r--r--source/cy/starmath/messages.po24
-rw-r--r--source/cy/svtools/messages.po10
-rw-r--r--source/cy/svx/messages.po35
-rw-r--r--source/cy/sw/messages.po62
-rw-r--r--source/cy/vcl/messages.po8
-rw-r--r--source/da/cui/messages.po94
-rw-r--r--source/da/helpcontent2/source/text/scalc/00.po10
-rw-r--r--source/da/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po30
-rw-r--r--source/da/sd/messages.po34
-rw-r--r--source/da/sw/messages.po6
-rw-r--r--source/de/cui/messages.po326
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po40
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/de/sd/messages.po34
-rw-r--r--source/de/sw/messages.po6
-rw-r--r--source/dgo/cui/messages.po92
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/dgo/sd/messages.po32
-rw-r--r--source/dgo/sw/messages.po6
-rw-r--r--source/dsb/cui/messages.po94
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po24
-rw-r--r--source/dsb/sd/messages.po34
-rw-r--r--source/dsb/sw/messages.po6
-rw-r--r--source/dz/cui/messages.po92
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/dz/sd/messages.po32
-rw-r--r--source/dz/sw/messages.po4
-rw-r--r--source/el/cui/messages.po94
-rw-r--r--source/el/helpcontent2/source/auxiliary.po8
-rw-r--r--source/el/helpcontent2/source/text/sbasic/python.po96
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po18
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/el/sd/messages.po34
-rw-r--r--source/el/sw/messages.po6
-rw-r--r--source/en-GB/cui/messages.po94
-rw-r--r--source/en-GB/helpcontent2/source/auxiliary.po36
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/guide.po18
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/python.po20
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared.po14
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared/03.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po136
-rw-r--r--source/en-GB/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/en-GB/helpcontent2/source/text/sdraw.po104
-rw-r--r--source/en-GB/helpcontent2/source/text/sdraw/00.po26
-rw-r--r--source/en-GB/helpcontent2/source/text/sdraw/01.po22
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/00.po144
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/guide.po488
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress.po72
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/00.po12
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/01.po24
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po54
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/en-GB/sd/messages.po34
-rw-r--r--source/en-GB/sw/messages.po6
-rw-r--r--source/en-ZA/cui/messages.po92
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/en-ZA/sd/messages.po32
-rw-r--r--source/en-ZA/sw/messages.po4
-rw-r--r--source/eo/cui/messages.po640
-rw-r--r--source/eo/dbaccess/messages.po8
-rw-r--r--source/eo/editeng/messages.po8
-rw-r--r--source/eo/extras/source/autocorr/emoji.po6
-rw-r--r--source/eo/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po68
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/eo/sc/messages.po50
-rw-r--r--source/eo/sd/messages.po120
-rw-r--r--source/eo/sfx2/messages.po8
-rw-r--r--source/eo/starmath/messages.po10
-rw-r--r--source/eo/sw/messages.po18
-rw-r--r--source/es/cui/messages.po130
-rw-r--r--source/es/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/es/helpcontent2/source/text/shared/autopi.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po12
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po12
-rw-r--r--source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po18
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/es/sc/messages.po22
-rw-r--r--source/es/scp2/source/winexplorerext.po10
-rw-r--r--source/es/sd/messages.po54
-rw-r--r--source/es/setup_native/source/mac.po6
-rw-r--r--source/es/sw/messages.po6
-rw-r--r--source/et/cui/messages.po92
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared.po10
-rw-r--r--source/et/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/et/helpcontent2/source/text/shared/explorer/database.po10
-rw-r--r--source/et/helpcontent2/source/text/swriter/01.po12
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/et/sd/messages.po32
-rw-r--r--source/et/sw/messages.po4
-rw-r--r--source/eu/cui/messages.po94
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/python.po22
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po24
-rw-r--r--source/eu/sd/messages.po34
-rw-r--r--source/eu/sw/messages.po6
-rw-r--r--source/fa/cui/messages.po92
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/fa/sd/messages.po32
-rw-r--r--source/fa/sw/messages.po6
-rw-r--r--source/fi/basctl/messages.po14
-rw-r--r--source/fi/chart2/messages.po12
-rw-r--r--source/fi/connectivity/messages.po8
-rw-r--r--source/fi/cui/messages.po326
-rw-r--r--source/fi/dictionaries/en/dialog/registry/data/org/openoffice/Office.po8
-rw-r--r--source/fi/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po8
-rw-r--r--source/fi/dictionaries/id.po10
-rw-r--r--source/fi/dictionaries/pt_BR/dialog.po10
-rw-r--r--source/fi/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po10
-rw-r--r--source/fi/dictionaries/ru_RU/dialog.po10
-rw-r--r--source/fi/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po8
-rw-r--r--source/fi/dictionaries/tr_TR.po11
-rw-r--r--source/fi/extensions/messages.po40
-rw-r--r--source/fi/extras/source/autocorr/emoji.po386
-rw-r--r--source/fi/extras/source/gallery/share.po10
-rw-r--r--source/fi/filter/messages.po8
-rw-r--r--source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po283
-rw-r--r--source/fi/sc/messages.po254
-rw-r--r--source/fi/scp2/source/ooo.po18
-rw-r--r--source/fi/sd/messages.po166
-rw-r--r--source/fi/sfx2/messages.po30
-rw-r--r--source/fi/starmath/messages.po26
-rw-r--r--source/fi/svtools/messages.po136
-rw-r--r--source/fi/svx/messages.po227
-rw-r--r--source/fi/sw/messages.po250
-rw-r--r--source/fi/swext/mediawiki/help.po22
-rw-r--r--source/fi/vcl/messages.po58
-rw-r--r--source/fi/wizards/messages.po50
-rw-r--r--source/fi/writerperfect/messages.po14
-rw-r--r--source/fr/cui/messages.po94
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/python.po60
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/fr/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po12
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/fr/sd/messages.po34
-rw-r--r--source/fr/sw/messages.po6
-rw-r--r--source/fy/cui/messages.po104
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/fy/sd/messages.po34
-rw-r--r--source/fy/sw/messages.po6
-rw-r--r--source/ga/cui/messages.po92
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ga/sd/messages.po32
-rw-r--r--source/ga/sw/messages.po4
-rw-r--r--source/gd/cui/messages.po92
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/gd/sd/messages.po32
-rw-r--r--source/gd/sw/messages.po6
-rw-r--r--source/gl/cui/messages.po94
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po214
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po138
-rw-r--r--source/gl/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po24
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po15
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/gl/sd/messages.po34
-rw-r--r--source/gl/sw/messages.po6
-rw-r--r--source/gu/cui/messages.po92
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/gu/sd/messages.po32
-rw-r--r--source/gu/sw/messages.po4
-rw-r--r--source/gug/chart2/messages.po10
-rw-r--r--source/gug/connectivity/messages.po12
-rw-r--r--source/gug/cui/messages.po169
-rw-r--r--source/gug/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/gug/helpcontent2/source/text/shared/autopi.po8
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po12
-rw-r--r--source/gug/helpcontent2/source/text/swriter/00.po12
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office.po23
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po160
-rw-r--r--source/gug/sc/messages.po27
-rw-r--r--source/gug/sd/messages.po74
-rw-r--r--source/gug/sw/messages.po46
-rw-r--r--source/he/cui/messages.po92
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/he/sd/messages.po32
-rw-r--r--source/he/sw/messages.po4
-rw-r--r--source/hi/cui/messages.po92
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/hi/sd/messages.po32
-rw-r--r--source/hi/sw/messages.po6
-rw-r--r--source/hr/chart2/messages.po6
-rw-r--r--source/hr/cui/messages.po164
-rw-r--r--source/hr/dbaccess/messages.po24
-rw-r--r--source/hr/desktop/messages.po8
-rw-r--r--source/hr/extensions/messages.po16
-rw-r--r--source/hr/extras/source/autocorr/emoji.po24
-rw-r--r--source/hr/filter/source/config/fragments/filters.po8
-rw-r--r--source/hr/forms/messages.po8
-rw-r--r--source/hr/framework/messages.po11
-rw-r--r--source/hr/helpcontent2/source/auxiliary.po128
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared/02.po14
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po22
-rw-r--r--source/hr/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/hr/helpcontent2/source/text/shared/explorer/database.po10
-rw-r--r--source/hr/helpcontent2/source/text/shared/guide.po16
-rw-r--r--source/hr/helpcontent2/source/text/shared/menu.po11
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/hr/helpcontent2/source/text/simpress/02.po12
-rw-r--r--source/hr/helpcontent2/source/text/simpress/guide.po14
-rw-r--r--source/hr/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po40
-rw-r--r--source/hr/librelogo/source/pythonpath.po6
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po144
-rw-r--r--source/hr/sc/messages.po28
-rw-r--r--source/hr/scaddins/messages.po8
-rw-r--r--source/hr/scp2/source/writer.po14
-rw-r--r--source/hr/sd/messages.po42
-rw-r--r--source/hr/setup_native/source/mac.po8
-rw-r--r--source/hr/sfx2/messages.po8
-rw-r--r--source/hr/shell/source/win32/shlxthandler/res.po8
-rw-r--r--source/hr/svtools/messages.po16
-rw-r--r--source/hr/svx/messages.po56
-rw-r--r--source/hr/sw/messages.po32
-rw-r--r--source/hr/swext/mediawiki/help.po12
-rw-r--r--source/hr/uui/messages.po16
-rw-r--r--source/hr/vcl/messages.po6
-rw-r--r--source/hr/wizards/messages.po12
-rw-r--r--source/hr/wizards/source/resources.po8
-rw-r--r--source/hsb/cui/messages.po94
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po24
-rw-r--r--source/hsb/sd/messages.po34
-rw-r--r--source/hsb/sw/messages.po6
-rw-r--r--source/hu/chart2/messages.po8
-rw-r--r--source/hu/cui/messages.po246
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/hu/sd/messages.po34
-rw-r--r--source/hu/sw/messages.po14
-rw-r--r--source/id/cui/messages.po108
-rw-r--r--source/id/helpcontent2/source/text/shared/04.po14
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/id/scp2/source/winexplorerext.po10
-rw-r--r--source/id/sd/messages.po32
-rw-r--r--source/id/sfx2/messages.po28
-rw-r--r--source/id/svx/messages.po36
-rw-r--r--source/id/sw/messages.po64
-rw-r--r--source/id/vcl/messages.po40
-rw-r--r--source/id/wizards/messages.po10
-rw-r--r--source/id/wizards/source/resources.po10
-rw-r--r--source/is/cui/messages.po92
-rw-r--r--source/is/dbaccess/messages.po8
-rw-r--r--source/is/extensions/messages.po30
-rw-r--r--source/is/filter/messages.po12
-rw-r--r--source/is/filter/source/config/fragments/filters.po26
-rw-r--r--source/is/filter/source/config/fragments/types.po26
-rw-r--r--source/is/instsetoo_native/inc_openoffice/windows/msi_languages.po70
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/is/scp2/source/winexplorerext.po10
-rw-r--r--source/is/sd/messages.po32
-rw-r--r--source/is/sfx2/messages.po16
-rw-r--r--source/is/svtools/messages.po10
-rw-r--r--source/is/svx/messages.po26
-rw-r--r--source/is/sw/messages.po138
-rw-r--r--source/it/cui/messages.po106
-rw-r--r--source/it/extensions/messages.po6
-rw-r--r--source/it/helpcontent2/source/auxiliary.po18
-rw-r--r--source/it/helpcontent2/source/text/sbasic/python.po598
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po446
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/02.po18
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/03.po18
-rw-r--r--source/it/helpcontent2/source/text/scalc/00.po16
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po229
-rw-r--r--source/it/helpcontent2/source/text/scalc/02.po10
-rw-r--r--source/it/helpcontent2/source/text/scalc/04.po20
-rw-r--r--source/it/helpcontent2/source/text/scalc/05.po36
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/it/helpcontent2/source/text/schart/00.po52
-rw-r--r--source/it/helpcontent2/source/text/schart/01.po24
-rw-r--r--source/it/helpcontent2/source/text/sdraw.po26
-rw-r--r--source/it/helpcontent2/source/text/sdraw/guide.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po154
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po76
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/it/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/05.po14
-rw-r--r--source/it/helpcontent2/source/text/shared/explorer/database.po60
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po454
-rw-r--r--source/it/helpcontent2/source/text/shared/help.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po52
-rw-r--r--source/it/helpcontent2/source/text/simpress.po16
-rw-r--r--source/it/helpcontent2/source/text/simpress/00.po68
-rw-r--r--source/it/helpcontent2/source/text/simpress/01.po36
-rw-r--r--source/it/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/it/helpcontent2/source/text/simpress/04.po10
-rw-r--r--source/it/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/it/helpcontent2/source/text/smath/00.po10
-rw-r--r--source/it/helpcontent2/source/text/smath/01.po210
-rw-r--r--source/it/helpcontent2/source/text/swriter/00.po62
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po30
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po54
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po62
-rw-r--r--source/it/reportdesign/messages.po10
-rw-r--r--source/it/sc/messages.po142
-rw-r--r--source/it/sd/messages.po34
-rw-r--r--source/it/svx/messages.po28
-rw-r--r--source/it/sw/messages.po18
-rw-r--r--source/ja/cui/messages.po102
-rw-r--r--source/ja/helpcontent2/source/text/shared/help.po26
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po32
-rw-r--r--source/ja/sc/messages.po40
-rw-r--r--source/ja/sd/messages.po34
-rw-r--r--source/ja/sw/messages.po6
-rw-r--r--source/jv/cui/messages.po92
-rw-r--r--source/jv/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/jv/sd/messages.po32
-rw-r--r--source/jv/sw/messages.po4
-rw-r--r--source/ka/cui/messages.po92
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ka/sd/messages.po32
-rw-r--r--source/ka/sw/messages.po4
-rw-r--r--source/kab/cui/messages.po92
-rw-r--r--source/kab/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/kab/sd/messages.po32
-rw-r--r--source/kab/sw/messages.po6
-rw-r--r--source/kk/cui/messages.po94
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/kk/sd/messages.po34
-rw-r--r--source/kk/sw/messages.po11
-rw-r--r--source/kl/cui/messages.po92
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/kl/sd/messages.po32
-rw-r--r--source/kl/sw/messages.po4
-rw-r--r--source/km/cui/messages.po92
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/km/sd/messages.po32
-rw-r--r--source/km/sw/messages.po4
-rw-r--r--source/kmr-Latn/cui/messages.po92
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/kmr-Latn/sd/messages.po32
-rw-r--r--source/kmr-Latn/sw/messages.po4
-rw-r--r--source/kn/cui/messages.po92
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/kn/sd/messages.po32
-rw-r--r--source/kn/sw/messages.po4
-rw-r--r--source/ko/cui/messages.po92
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ko/sd/messages.po32
-rw-r--r--source/ko/sw/messages.po6
-rw-r--r--source/kok/cui/messages.po92
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/kok/sd/messages.po32
-rw-r--r--source/kok/sw/messages.po6
-rw-r--r--source/ks/cui/messages.po92
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ks/sd/messages.po32
-rw-r--r--source/ks/sw/messages.po6
-rw-r--r--source/ky/cui/messages.po92
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ky/sd/messages.po32
-rw-r--r--source/ky/sw/messages.po4
-rw-r--r--source/lb/cui/messages.po92
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/lb/sd/messages.po32
-rw-r--r--source/lb/sw/messages.po4
-rw-r--r--source/lo/cui/messages.po92
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/lo/sd/messages.po32
-rw-r--r--source/lo/sw/messages.po4
-rw-r--r--source/lt/basctl/messages.po16
-rw-r--r--source/lt/chart2/messages.po14
-rw-r--r--source/lt/cui/messages.po240
-rw-r--r--source/lt/filter/messages.po10
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/lt/helpcontent2/source/text/shared/06.po15
-rw-r--r--source/lt/helpcontent2/source/text/shared/autokorr.po54
-rw-r--r--source/lt/helpcontent2/source/text/shared/guide.po338
-rw-r--r--source/lt/helpcontent2/source/text/shared/menu.po12
-rw-r--r--source/lt/helpcontent2/source/text/simpress.po190
-rw-r--r--source/lt/helpcontent2/source/text/simpress/00.po236
-rw-r--r--source/lt/helpcontent2/source/text/simpress/01.po1156
-rw-r--r--source/lt/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/lt/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/lt/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po53
-rw-r--r--source/lt/sd/messages.po402
-rw-r--r--source/lt/svx/messages.po33
-rw-r--r--source/lt/sw/messages.po124
-rw-r--r--source/lt/vcl/messages.po116
-rw-r--r--source/lt/wizards/messages.po18
-rw-r--r--source/lv/cui/messages.po92
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared.po10
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/lv/sd/messages.po32
-rw-r--r--source/lv/sw/messages.po4
-rw-r--r--source/mai/cui/messages.po92
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/mai/sd/messages.po32
-rw-r--r--source/mai/sw/messages.po6
-rw-r--r--source/mk/cui/messages.po92
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/mk/sd/messages.po32
-rw-r--r--source/mk/sw/messages.po6
-rw-r--r--source/ml/cui/messages.po92
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ml/sd/messages.po32
-rw-r--r--source/ml/sw/messages.po6
-rw-r--r--source/mn/cui/messages.po92
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/mn/sd/messages.po32
-rw-r--r--source/mn/sw/messages.po6
-rw-r--r--source/mni/cui/messages.po92
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/mni/sd/messages.po32
-rw-r--r--source/mni/sw/messages.po6
-rw-r--r--source/mr/cui/messages.po92
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/mr/sd/messages.po32
-rw-r--r--source/mr/sw/messages.po4
-rw-r--r--source/my/cui/messages.po92
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/my/sd/messages.po32
-rw-r--r--source/my/sw/messages.po6
-rw-r--r--source/nb/cui/messages.po602
-rw-r--r--source/nb/dbaccess/messages.po8
-rw-r--r--source/nb/filter/messages.po12
-rw-r--r--source/nb/formula/messages.po4
-rw-r--r--source/nb/helpcontent2/source/auxiliary.po36
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/guide.po18
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/python.po10
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared/03.po8
-rw-r--r--source/nb/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/nb/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/nb/helpcontent2/source/text/sdraw.po104
-rw-r--r--source/nb/helpcontent2/source/text/sdraw/00.po26
-rw-r--r--source/nb/helpcontent2/source/text/sdraw/01.po22
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po144
-rw-r--r--source/nb/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/nb/helpcontent2/source/text/shared/autopi.po8
-rw-r--r--source/nb/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/nb/helpcontent2/source/text/shared/guide.po490
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po24
-rw-r--r--source/nb/helpcontent2/source/text/simpress.po72
-rw-r--r--source/nb/helpcontent2/source/text/simpress/00.po12
-rw-r--r--source/nb/helpcontent2/source/text/simpress/01.po24
-rw-r--r--source/nb/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/nb/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po54
-rw-r--r--source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po68
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/nb/sc/messages.po50
-rw-r--r--source/nb/sd/messages.po120
-rw-r--r--source/nb/starmath/messages.po10
-rw-r--r--source/nb/sw/messages.po14
-rw-r--r--source/nb/vcl/messages.po8
-rw-r--r--source/ne/cui/messages.po92
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ne/sd/messages.po32
-rw-r--r--source/ne/sw/messages.po6
-rw-r--r--source/nl/cui/messages.po94
-rw-r--r--source/nl/formula/messages.po4
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po24
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po18
-rw-r--r--source/nl/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/nl/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po122
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po50
-rw-r--r--source/nl/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/nl/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po380
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/nl/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/nl/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po28
-rw-r--r--source/nl/helpcontent2/source/text/swriter/02.po8
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/nl/readlicense_oo/docs.po8
-rw-r--r--source/nl/sd/messages.po34
-rw-r--r--source/nl/sw/messages.po6
-rw-r--r--source/nn/cui/messages.po230
-rw-r--r--source/nn/dbaccess/messages.po8
-rw-r--r--source/nn/filter/messages.po12
-rw-r--r--source/nn/formula/messages.po8
-rw-r--r--source/nn/helpcontent2/source/auxiliary.po36
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/guide.po16
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/python.po42
-rw-r--r--source/nn/helpcontent2/source/text/scalc/00.po14
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po60
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po68
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po32
-rw-r--r--source/nn/sc/messages.po48
-rw-r--r--source/nn/scaddins/messages.po8
-rw-r--r--source/nn/sd/messages.po62
-rw-r--r--source/nn/sw/messages.po6
-rw-r--r--source/nr/cui/messages.po92
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/nr/sd/messages.po32
-rw-r--r--source/nr/sw/messages.po6
-rw-r--r--source/nso/cui/messages.po92
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/nso/sd/messages.po32
-rw-r--r--source/nso/sw/messages.po6
-rw-r--r--source/oc/cui/messages.po92
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/oc/sd/messages.po32
-rw-r--r--source/oc/sw/messages.po6
-rw-r--r--source/om/cui/messages.po92
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/om/sd/messages.po32
-rw-r--r--source/om/sw/messages.po4
-rw-r--r--source/or/cui/messages.po92
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/or/sd/messages.po32
-rw-r--r--source/or/sw/messages.po6
-rw-r--r--source/pa-IN/cui/messages.po92
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/pa-IN/sd/messages.po32
-rw-r--r--source/pa-IN/sw/messages.po6
-rw-r--r--source/pl/cui/messages.po92
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/pl/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/pl/sd/messages.po32
-rw-r--r--source/pl/sw/messages.po6
-rw-r--r--source/pt-BR/cui/messages.po94
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/pt-BR/sd/messages.po34
-rw-r--r--source/pt-BR/sw/messages.po6
-rw-r--r--source/pt/cui/messages.po202
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/python.po142
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/pt/helpcontent2/source/text/scalc/04.po18
-rw-r--r--source/pt/helpcontent2/source/text/scalc/05.po30
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po20
-rw-r--r--source/pt/helpcontent2/source/text/shared/02.po36
-rw-r--r--source/pt/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/pt/sd/messages.po34
-rw-r--r--source/pt/sw/messages.po6
-rw-r--r--source/ro/cui/messages.po92
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ro/sd/messages.po32
-rw-r--r--source/ro/sw/messages.po4
-rw-r--r--source/ru/cui/messages.po102
-rw-r--r--source/ru/filter/messages.po14
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po36
-rw-r--r--source/ru/sd/messages.po34
-rw-r--r--source/ru/sfx2/messages.po10
-rw-r--r--source/ru/svx/messages.po10
-rw-r--r--source/ru/sw/messages.po12
-rw-r--r--source/rw/cui/messages.po92
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/rw/sd/messages.po32
-rw-r--r--source/rw/sw/messages.po6
-rw-r--r--source/sa-IN/cui/messages.po92
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/sa-IN/sd/messages.po32
-rw-r--r--source/sa-IN/sw/messages.po4
-rw-r--r--source/sah/cui/messages.po92
-rw-r--r--source/sah/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/sah/sd/messages.po32
-rw-r--r--source/sah/sw/messages.po4
-rw-r--r--source/sat/cui/messages.po92
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/sat/sd/messages.po32
-rw-r--r--source/sat/sw/messages.po4
-rw-r--r--source/sd/cui/messages.po92
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/sd/sd/messages.po32
-rw-r--r--source/sd/sw/messages.po4
-rw-r--r--source/si/cui/messages.po92
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/si/sd/messages.po32
-rw-r--r--source/si/sw/messages.po4
-rw-r--r--source/sid/cui/messages.po92
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/sid/sd/messages.po32
-rw-r--r--source/sid/sw/messages.po6
-rw-r--r--source/sk/cui/messages.po114
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/sk/sc/messages.po48
-rw-r--r--source/sk/sd/messages.po122
-rw-r--r--source/sk/sw/messages.po6
-rw-r--r--source/sq/cui/messages.po92
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/sq/sd/messages.po32
-rw-r--r--source/sq/sw/messages.po4
-rw-r--r--source/ss/cui/messages.po92
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ss/sd/messages.po32
-rw-r--r--source/ss/sw/messages.po4
-rw-r--r--source/st/cui/messages.po92
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/st/sd/messages.po32
-rw-r--r--source/st/sw/messages.po4
-rw-r--r--source/sv/cui/messages.po94
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/sv/sd/messages.po34
-rw-r--r--source/sv/sw/messages.po4
-rw-r--r--source/sw-TZ/cui/messages.po92
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/sw-TZ/sd/messages.po32
-rw-r--r--source/sw-TZ/sw/messages.po4
-rw-r--r--source/szl/cui/messages.po94
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/szl/sd/messages.po34
-rw-r--r--source/szl/sw/messages.po6
-rw-r--r--source/ta/cui/messages.po92
-rw-r--r--source/ta/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/ta/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/ta/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ta/sd/messages.po32
-rw-r--r--source/ta/sw/messages.po4
-rw-r--r--source/te/cui/messages.po92
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/te/sd/messages.po32
-rw-r--r--source/te/sw/messages.po6
-rw-r--r--source/tg/cui/messages.po92
-rw-r--r--source/tg/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/tg/sd/messages.po32
-rw-r--r--source/tg/sw/messages.po6
-rw-r--r--source/th/cui/messages.po92
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/th/sd/messages.po32
-rw-r--r--source/th/sw/messages.po4
-rw-r--r--source/ti/cui/messages.po92
-rw-r--r--source/ti/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ti/sd/messages.po32
-rw-r--r--source/ti/sw/messages.po4
-rw-r--r--source/tn/cui/messages.po92
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/tn/sd/messages.po32
-rw-r--r--source/tn/sw/messages.po6
-rw-r--r--source/tr/cui/messages.po92
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/tr/sd/messages.po32
-rw-r--r--source/tr/sw/messages.po4
-rw-r--r--source/ts/cui/messages.po92
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ts/sd/messages.po32
-rw-r--r--source/ts/sw/messages.po4
-rw-r--r--source/tt/cui/messages.po92
-rw-r--r--source/tt/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/tt/sd/messages.po32
-rw-r--r--source/tt/sw/messages.po4
-rw-r--r--source/ug/cui/messages.po92
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ug/sd/messages.po32
-rw-r--r--source/ug/sw/messages.po6
-rw-r--r--source/uk/cui/messages.po192
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/uk/sc/messages.po6
-rw-r--r--source/uk/sd/messages.po34
-rw-r--r--source/uk/svx/messages.po6
-rw-r--r--source/uk/sw/messages.po6
-rw-r--r--source/ur/cui/messages.po92
-rw-r--r--source/ur/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ur/sd/messages.po32
-rw-r--r--source/ur/sw/messages.po4
-rw-r--r--source/uz/cui/messages.po92
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/uz/sd/messages.po32
-rw-r--r--source/uz/sw/messages.po4
-rw-r--r--source/ve/cui/messages.po92
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/ve/sd/messages.po32
-rw-r--r--source/ve/sw/messages.po4
-rw-r--r--source/vec/cui/messages.po92
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/vec/sd/messages.po32
-rw-r--r--source/vec/sw/messages.po6
-rw-r--r--source/vi/cui/messages.po92
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/vi/sd/messages.po32
-rw-r--r--source/vi/sw/messages.po4
-rw-r--r--source/xh/cui/messages.po92
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/xh/sd/messages.po32
-rw-r--r--source/xh/sw/messages.po4
-rw-r--r--source/zh-CN/cui/messages.po94
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/zh-CN/sd/messages.po34
-rw-r--r--source/zh-CN/sw/messages.po6
-rw-r--r--source/zh-TW/cui/messages.po92
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/zh-TW/sd/messages.po32
-rw-r--r--source/zh-TW/sw/messages.po4
-rw-r--r--source/zu/cui/messages.po92
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/zu/sd/messages.po32
-rw-r--r--source/zu/sw/messages.po6
818 files changed, 19735 insertions, 17543 deletions
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index dd566c4c48f..7db646a3d6f 100644
--- a/source/ab/cui/messages.po
+++ b/source/ab/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4382,147 +4382,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9193,72 +9193,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Аилыркаага"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Ихархәатәуп %PRODUCTNAME адиалогқәа"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Аартра/Аиқәырхара рдиалогқәа"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Ихархәатәуп %PRODUCTNAME адиалогқәа"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Акьыҧхьра адиалогқәа"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Адокумент аҭагылазаашьа"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "and "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ашықәс (ҩ-цифрак)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -12793,12 +12793,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
index 2e7c688df0f..7aae69eed30 100644
--- a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21131,6 +21131,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index f36b6b14ae7..7615b00b5ba 100644
--- a/source/ab/sd/messages.po
+++ b/source/ab/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-06-25 09:49+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5345,9 +5345,9 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr ""
@@ -5416,8 +5416,8 @@ msgid "_Edit"
msgstr "Ариашара"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr ""
@@ -5432,54 +5432,54 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Аграфика"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Аԥштәы"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Амедиа"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Афреим"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Ахәаҧшра"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Ибжьаргылатәуп"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index 279b8632455..87aaa850523 100644
--- a/source/ab/sw/messages.po
+++ b/source/ab/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-06-24 10:38+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8443,7 +8443,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
#, fuzzy
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index 95bb56d54f0..3c8ee1c0f0d 100644
--- a/source/af/cui/messages.po
+++ b/source/af/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-06-19 20:34+0000\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4387,147 +4387,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9193,72 +9193,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hulp"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Gebr_uik %PRODUCTNAME-dialoë"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Stoor-dialoë"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Gebruik %PRODUCTNAME-_dialoë"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Drukdialoë"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Drukaksie stel “dokument gewysig”-status"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentstatus"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Interpreteer as jare tussen "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "en "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Jaar (twee syfers)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Versamel gebruiksdata en stuur dit aan die Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Help %PRODUCTNAME te verbeter"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Laai %PRODUCTNAME wanneer rekenaar aanskakel"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Aktieer Snelbeginner in stelsellaai"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME-snelbeginner"
@@ -12791,12 +12791,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 dfe165bb4b8..970c7dfe090 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-06-19 20:41+0000\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21120,6 +21120,24 @@ msgstr "Skenk aan LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index 1f4281ea35a..95db43a737f 100644
--- a/source/af/sd/messages.po
+++ b/source/af/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-06-19 07:16+0000\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5538,9 +5538,9 @@ msgstr "Resensie"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5618,8 +5618,8 @@ msgid "_Edit"
msgstr "~Redigeer"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5636,60 +5636,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Grafika"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Kleur"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Media"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "~Skyfievertoning"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Raam"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Bekyk"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Meesterbladsye"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Voeg in"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index c3d9321bc8f..9a44dd67f57 100644
--- a/source/af/sw/messages.po
+++ b/source/af/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Kies item: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Redigeer"
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index c87e19599da..c93f591911a 100644
--- a/source/am/cui/messages.po
+++ b/source/am/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-14 18:30+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-20 18:07+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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563129040.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1563646037.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1767,7 +1767,7 @@ msgstr "የ ሊብሬ ቢሮ መሰረት OpenOffice.org ነው"
#: cui/inc/strings.hrc:400
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
-msgstr ""
+msgstr "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
#: cui/inc/strings.hrc:401
msgctxt "aboutdialog|locale"
@@ -1777,7 +1777,7 @@ msgstr "ቋንቋ: $LOCALE"
#: cui/inc/strings.hrc:402
msgctxt "aboutdialog|uilocale"
msgid "UI-Language: $LOCALE"
-msgstr ""
+msgstr "መጠቀሚያ -ቋንቋ: $LOCALE"
#: cui/inc/strings.hrc:403
msgctxt "aboutdialog|releasenotes"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "እርዳታ"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_መጠቀሚያ %PRODUCTNAME ንግግሮች"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "መክፈቻ/ማስቀመጫ ንግግሮች"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "መጠቀሚያ %PRODUCTNAME _ንግግሮች"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "የ ማተሚያ ንግግሮች"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_ማተሚያ ማሰናጃ ለ \"ሰነድ ማሻሻያ\" ሁኔታ"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "የሰነድ ሁኔታዎች"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_መተርጓሚያ እንደ በ አመቶች መካከል "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "እና "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "አመት (ሁለት አሀዝ)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "የ አጠቃቀም ዳታ መስብሰቢያ እና ለ ሰነድ አዘጋጆቹ መላኪያ"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "እንድናሻሻል ይርዱን %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "መጫኛ %PRODUCTNAME ስርአቱ በሚጀምር-ጊዜ"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "በ ስርአቱ ትሪ ላይ በፍጥነት ማስጀመሪያ ማስቻያ"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME በፍጥነት ማስጀመሪያ"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_ይቀጥሉ"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index dd92caf2c87..605d64dccd0 100644
--- a/source/am/helpcontent2/source/text/shared/02.po
+++ b/source/am/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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2018-12-10 01:39+0000\n"
-"Last-Translator: Samson B <sambelet@yahoo.com>\n"
+"PO-Revision-Date: 2019-07-21 10:56+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\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: 1544405946.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563706594.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"par_id3154579\n"
"help.text"
msgid "<ahelp hid=\".\">Creates a <emph>table control</emph> 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\"><emph>Table Element Wizard</emph></link> appears."
-msgstr "<ahelp hid=\".\">የ <emph>ሰንጠረዥ መቆጣጠሪያ </emph> መፍጠሪያ የ ዳታቤዝ ሰንጠረዥ ለማሳየት </ahelp> እርስዎ አዲስ የ ሰንጠረዥ መቆጣጠሪያ ከ ፈጠሩ የ <link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\"></emph> ሰንጠረዥ አካል አዋቂ </emph></link> ይታያል"
+msgstr "<ahelp hid=\".\">የ <emph>ሰንጠረዥ መቆጣጠሪያ </emph> መፍጠሪያ የ ዳታቤዝ ሰንጠረዥ ለማሳየት </ahelp> እርስዎ አዲስ የ ሰንጠረዥ መቆጣጠሪያ ከ ፈጠሩ የ <link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\"><emph> ሰንጠረዥ አካል አዋቂ </emph></link> ይታያል"
#: 01170000.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 7da23ce105e..9a4582c4ae2 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-13 18:21+0000\n"
"Last-Translator: Samson B <sambelet@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: 1563042061.000000\n"
#: BaseWindowState.xcu
@@ -21054,6 +21054,24 @@ msgstr "ለ LibreOffice ይለግሱ"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/am/sd/messages.po b/source/am/sd/messages.po
index 3d0cdcf2182..eaf741169e0 100644
--- a/source/am/sd/messages.po
+++ b/source/am/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-04 19:10+0000\n"
"Last-Translator: Samson B <sambelet@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: 1562267419.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "_ከለሳ"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_ማዘጋጃ"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_ማረሚያ"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_መጋጠሚያ"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_ዲ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_ንድፍ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ቀ_ለም"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_መገናኛ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_ተንሸራታች ማሳያ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "ክ_ፈፍ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_መመልከቻ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "_ዋናው ገጽ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_ማስገቢያ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "መ_ሳያ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_መመልከቻ"
diff --git a/source/am/starmath/messages.po b/source/am/starmath/messages.po
index 692e42681cc..4fade947cbc 100644
--- a/source/am/starmath/messages.po
+++ b/source/am/starmath/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-14 17:45+0000\n"
+"PO-Revision-Date: 2019-07-20 17:27+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"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: 1563126303.000000\n"
+"X-POOTLE-MTIME: 1563643654.000000\n"
#: starmath/inc/smmod.hrc:16
msgctxt "RID_UI_SYMBOLSET_NAMES"
@@ -1074,7 +1074,7 @@ msgstr "የ አቅጣጫ ቀስት"
#: starmath/inc/strings.hrc:168
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
-msgstr ""
+msgstr "ሀርፑን"
#: starmath/inc/strings.hrc:169
msgctxt "RID_UNDERLINEX_HELP"
@@ -1534,7 +1534,7 @@ msgstr "ትልቅ የ አቅጣጫ ቀስት"
#: starmath/inc/strings.hrc:260
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
-msgstr ""
+msgstr "ትልቅ ሀርፑን"
#: starmath/inc/strings.hrc:261
msgctxt "RID_HBAR_HELP"
@@ -1664,7 +1664,7 @@ msgstr "ምሳሌዎች"
#: starmath/inc/strings.hrc:287
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
-msgstr ""
+msgstr "ሰርከምፍራንስ"
#: starmath/inc/strings.hrc:288
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index fd4c62aae08..68744983c06 100644
--- a/source/am/sw/messages.po
+++ b/source/am/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-17 16:02+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -8356,7 +8356,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "እቃ ይምረጡ: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "ማረሚያ"
diff --git a/source/am/vcl/messages.po b/source/am/vcl/messages.po
index f7a7f60ecf6..c70065b3d72 100644
--- a/source/am/vcl/messages.po
+++ b/source/am/vcl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:23+0200\n"
-"PO-Revision-Date: 2019-05-23 18:02+0000\n"
+"PO-Revision-Date: 2019-07-20 17: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: 1558634523.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563643746.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -1270,22 +1270,22 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:56
msgctxt "STR_FONT_FEATURE_ID_JP04"
msgid "JIS2004 Forms"
-msgstr ""
+msgstr "JIS2004 ፎርም"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:57
msgctxt "STR_FONT_FEATURE_ID_JP78"
msgid "JIS78 Forms"
-msgstr ""
+msgstr "JIS78 ፎርም"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:58
msgctxt "STR_FONT_FEATURE_ID_JP83"
msgid "JIS83 Forms"
-msgstr ""
+msgstr "JIS83 ፎርም"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:59
msgctxt "STR_FONT_FEATURE_ID_JP90"
msgid "JIS90 Forms"
-msgstr ""
+msgstr "JIS90 ፎርም"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:60
msgctxt "STR_FONT_FEATURE_ID_KERN"
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index 47ae181c111..4db844a5bc0 100644
--- a/source/an/cui/messages.po
+++ b/source/an/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4425,147 +4425,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9319,72 +9319,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "~Aduya"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -12987,12 +12987,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
index 88167a85196..76fd912b58c 100644
--- a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22730,6 +22730,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/an/sd/messages.po b/source/an/sd/messages.po
index 3a049b05d8e..5cec78b406a 100644
--- a/source/an/sd/messages.po
+++ b/source/an/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5422,9 +5422,9 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5495,8 +5495,8 @@ msgid "_Edit"
msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5512,55 +5512,55 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Graficos"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "~Color"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Veyer"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index c4018f8e43c..2d02a09f61f 100644
--- a/source/an/sw/messages.po
+++ b/source/an/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8557,7 +8557,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr ""
diff --git a/source/ar/basctl/messages.po b/source/ar/basctl/messages.po
index 2b2d53da3c2..4f3fec64370 100644
--- a/source/ar/basctl/messages.po
+++ b/source/ar/basctl/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2017-11-22 15:56+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-19 20:01+0000\n"
+"Last-Translator: سامي <tecoholk.guy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511366194.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563566502.000000\n"
#: basctl/inc/strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
@@ -420,27 +420,27 @@ msgstr ""
#: basctl/inc/strings.hrc:100
msgctxt "RID_STR_PRINTDLG_PAGES"
msgid "Pages:"
-msgstr ""
+msgstr "الصفحات:"
#: basctl/inc/strings.hrc:101
msgctxt "RID_STR_PRINTDLG_PRINTALLPAGES"
msgid "All ~Pages"
-msgstr ""
+msgstr "كل ال~صفحات"
#: basctl/inc/strings.hrc:102
msgctxt "RID_STR_PRINTDLG_PRINTPAGES"
msgid "Pa~ges:"
-msgstr ""
+msgstr "الص~فحات:"
#: basctl/inc/strings.hrc:103
msgctxt "RID_STR_PRINTDLG_PRINTEVENPAGES"
msgid "~Even pages"
-msgstr ""
+msgstr "الصفحات ال~زوجية"
#: basctl/inc/strings.hrc:104
msgctxt "RID_STR_PRINTDLG_PRINTODDPAGES"
msgid "~Odd pages"
-msgstr ""
+msgstr "الصفحات ال~فردية"
#: basctl/inc/strings.hrc:105
msgctxt "RID_STR_CHOOSE"
@@ -551,12 +551,12 @@ msgstr "حرّر"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:363
msgctxt "basicmacrodialog|delete"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:377
msgctxt "basicmacrodialog|new"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:391
msgctxt "basicmacrodialog|organize"
diff --git a/source/ar/cui/messages.po b/source/ar/cui/messages.po
index 949f3754052..e20de6a007c 100644
--- a/source/ar/cui/messages.po
+++ b/source/ar/cui/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2018-11-14 11:33+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-19 20:11+0000\n"
+"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1542195198.000000\n"
+"X-POOTLE-MTIME: 1563567066.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1633,7 +1633,7 @@ msgstr "يطبّق السّمة..."
#: cui/inc/strings.hrc:369
msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
-msgstr ""
+msgstr "من فضلك أدخِل نص بحث أو عنوان سمة صالحة."
#: cui/inc/strings.hrc:371
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
@@ -1728,12 +1728,12 @@ msgstr "وقّعها: %1"
#: cui/inc/strings.hrc:390
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
-msgstr ""
+msgstr "كل الملفات"
#: cui/inc/strings.hrc:392
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
-msgstr ""
+msgstr "قواعد البيانات المسجّلة"
#: cui/inc/strings.hrc:394
#, c-format
@@ -1744,7 +1744,7 @@ msgstr "إصدارة: %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX"
#: cui/inc/strings.hrc:395
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
-msgstr ""
+msgstr "حقوق النشر © ٢٠٠٠–٢٠١٩ لمساهمي ليبر أوفيس."
#: cui/inc/strings.hrc:396
msgctxt "aboutdialog|link"
@@ -1769,7 +1769,7 @@ msgstr "بُنِي ليبر أوفيس على أوبن أوفيس.أورغ."
#: cui/inc/strings.hrc:400
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
-msgstr ""
+msgstr "‏%PRODUCTNAME مشتقّ من ليبر أوفيس المبني على أوبن أوفيس.أورغ."
#: cui/inc/strings.hrc:401
msgctxt "aboutdialog|locale"
@@ -1779,7 +1779,7 @@ msgstr "المحليّة: $LOCALE"
#: cui/inc/strings.hrc:402
msgctxt "aboutdialog|uilocale"
msgid "UI-Language: $LOCALE"
-msgstr ""
+msgstr "لغة الواجهة الرسومية: $LOCALE"
#: cui/inc/strings.hrc:403
msgctxt "aboutdialog|releasenotes"
@@ -1789,17 +1789,17 @@ msgstr ""
#: cui/inc/strings.hrc:404
msgctxt "aboutdialog|website"
msgid "~Website"
-msgstr ""
+msgstr "المو~قع"
#: cui/inc/strings.hrc:405
msgctxt "aboutdialog|credits"
msgid "Cre~dits"
-msgstr ""
+msgstr "إ~شادات"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can open and save files stored on remote servers per CMIS."
-msgstr ""
+msgstr "يمكن لِ‍ %PRODUCTNAME فتح الملفات المخزّنة في الخواديم البعيدة لكل نظام لإدارة المحتوى CMIS، كما وحفظها أيضا."
#. https://help.libreoffice.org/6.2/en-US/text/shared/guide/cmis-remote-files.html
#: cui/inc/tipoftheday.hrc:46
@@ -4388,147 +4388,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9215,72 +9215,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "مساعدة"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "ا_ستخدم مربّعات حوار %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "مربّعات حوار الفتح و الحفظ"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "استخدم مربعات _حوار %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "مربعات حوار الطباعة"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "ال_طباعة تجعل حالة المستند ”مستند معدل“"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "حالة المستند"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "فسّرها على أنها ال_سنوات بين "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "و "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "السنة (رقمان)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "اجمع بيانات الاستخدام و أرسلها إلى «مؤسسة المستند المفتوح»"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "ساعد في تحسين %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "حمّل %PRODUCTNAME أثناء بدء النظام"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "فعّل التشغيل السريع في صينية النظام"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "تشغيل %PRODUCTNAME السريع"
@@ -12831,12 +12831,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 543499d18ec..b676fcbfd2f 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21097,6 +21097,24 @@ msgstr "تبرّع إلى ليبر أوفيس"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/ar/sd/messages.po b/source/ar/sd/messages.po
index c2e41f79be3..be7385b69c4 100644
--- a/source/ar/sd/messages.po
+++ b/source/ar/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5436,9 +5436,9 @@ msgstr "المراجعة"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5516,8 +5516,8 @@ msgid "_Edit"
msgstr "ت~حرير"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5534,60 +5534,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "الرسم"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "اللون"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "الوسائط"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "عرض الشرائح"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "الإ_طار"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "عرض"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "الصفحة الرئيسية"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "أ_درِج"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index 7ac86e92901..345c8622ec3 100644
--- a/source/ar/sw/messages.po
+++ b/source/ar/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-12-11 06:54+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8430,7 +8430,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "اختيار العنصر: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
#, fuzzy
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
diff --git a/source/as/cui/messages.po b/source/as/cui/messages.po
index 9cb2ad5094a..9924ca937c9 100644
--- a/source/as/cui/messages.po
+++ b/source/as/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4494,147 +4494,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9570,76 +9570,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "সহায়"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ডাইলগসমূহ ব্যৱহাৰ কৰক (_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ডাইলগসমূহ খোলক/সঞ্চয় কৰক"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ডাইলগসমূহ ব্যৱহাৰ কৰক (_d)"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "ডাইলগসমূহ প্ৰিন্ট কৰক"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "সংহতিসমূহ \"দস্তাবেজ সলনি কৰা হৈছে\" অৱস্থা প্ৰিন্ট কৰা হৈ আছে (_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "দস্তাবেজ অৱস্থা"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "বছৰসমূহ মাজত থকাকে অনুবাদ কৰক (_I) "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "আৰু "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "বছৰ (দুটা ডিজিট)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME -ক চিস্টেম আৰম্ভ হোৱাৰ সময়ত লোড কৰক"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray Quickstarter সামৰ্থবান কৰক"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -13367,12 +13367,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 52f2efdffd3..46f5ea267a8 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -21352,6 +21352,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/as/sd/messages.po b/source/as/sd/messages.po
index 53d5c47c658..465514a7d73 100644
--- a/source/as/sd/messages.po
+++ b/source/as/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5501,9 +5501,9 @@ msgstr "পুনৰীক্ষণ"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5579,8 +5579,8 @@ msgid "_Edit"
msgstr "সম্পাদন কৰক (~E)"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "জাল (_G)"
@@ -5596,59 +5596,59 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "গ্রাফিক"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ৰং"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "মাধ্যম"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "স্লাইড দেখুৱাওক"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "ফ্ৰেইম (_r)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "দৃশ্য"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "মাস্টাৰ পৃষ্ঠাসমূহ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "ভৰাওক (_I)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index fb4d57789a3..0af26251325 100644
--- a/source/as/sw/messages.po
+++ b/source/as/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8701,7 +8701,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "আইটেম নির্বাচন কৰক: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "সম্পাদনা"
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index 64319196d42..e423c6a1bbc 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4501,147 +4501,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9582,76 +9582,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ayuda"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Usar los diálogos de %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Diálogos p'abrir/guardar"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Usar los _diálogos de %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Diálogos d'imprentación"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Im_prentar afita l'estáu de \"documentu camudáu\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estáu del documentu"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar como años ente "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "y "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Añu (con dos díxitos)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Cargar %PRODUCTNAME nel arranque del sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activar l'aniciu rápidu nel área de notificación"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Aniciu rápidu de %PRODUCTNAME"
@@ -13332,12 +13332,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 4b525392b04..f74f25885af 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21350,6 +21350,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/ast/sd/messages.po b/source/ast/sd/messages.po
index b152935600c..3acf547e01e 100644
--- a/source/ast/sd/messages.po
+++ b/source/ast/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5497,9 +5497,9 @@ msgstr "Revisar"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5575,8 +5575,8 @@ msgid "_Edit"
msgstr "E~ditar"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Rexella"
@@ -5592,59 +5592,59 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Imaxe"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Color"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Medios"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Presentación de diapositives"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Ma_rcu"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Ver"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Páxines maestres"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Inxertar"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index 1f05fa532bd..faa4f04c159 100644
--- a/source/ast/sw/messages.po
+++ b/source/ast/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8670,7 +8670,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Escoyer Elementu: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Editar"
diff --git a/source/az/cui/messages.po b/source/az/cui/messages.po
index 0ee595a1992..4f9c95bba60 100644
--- a/source/az/cui/messages.po
+++ b/source/az/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4404,147 +4404,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9278,75 +9278,75 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Yardım"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME Dialoqları"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME Dialoqları"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "və"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -12908,12 +12908,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/az/officecfg/registry/data/org/openoffice/Office/UI.po b/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
index c019d9b79ca..4a332c99d62 100644
--- a/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21161,6 +21161,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/az/sd/messages.po b/source/az/sd/messages.po
index d8fd52eb1a7..59f9720601c 100644
--- a/source/az/sd/messages.po
+++ b/source/az/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5385,9 +5385,9 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr ""
@@ -5459,8 +5459,8 @@ msgid "_Edit"
msgstr "Düzəlt"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr ""
@@ -5475,54 +5475,54 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Göstәr"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Daxil et"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/az/sw/messages.po b/source/az/sw/messages.po
index 539416fee62..b6d35bfb4cf 100644
--- a/source/az/sw/messages.po
+++ b/source/az/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8461,7 +8461,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Düzəlt"
diff --git a/source/be/cui/messages.po b/source/be/cui/messages.po
index dec946f1417..e83abf4fac2 100644
--- a/source/be/cui/messages.po
+++ b/source/be/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Даведка"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Ужываць дыялогі %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Дыялогі Адкрыцця і Запісу"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Ужываць дыялогі %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Дыялогі друкавання"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Друкаванне азначае \"дакумент зменены\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Стан дакумента"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Інтэрпрэтаваць як гады паміж "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "і "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Год (дзве лічбы)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Збіраць звесткі пра выкарыстанне і адпраўляць у The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Дапамажыце палепшыць %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Пуск %PRODUCTNAME пры пуску сістэмы"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Значок Хуткапуску ў сістэмным трэі"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Хуткі Пускальнік %PRODUCTNAME"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 d6918faf55e..dd3693e7562 100644
--- a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
@@ -21062,6 +21062,24 @@ msgstr "Падтрымаць LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/be/sd/messages.po b/source/be/sd/messages.po
index 2f90c0176be..46850a02a70 100644
--- a/source/be/sd/messages.po
+++ b/source/be/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5357,9 +5357,9 @@ msgstr "Праверыць"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Упарадкаваць"
@@ -5427,8 +5427,8 @@ msgid "_Edit"
msgstr "Правіць"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "Рашотка"
@@ -5443,52 +5443,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Графіка"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Колер"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Медыя"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Паказ слайдаў"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Рам_ка"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Від"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Майстар-старонка"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Уставіць"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Рысаваць"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "Від"
diff --git a/source/be/sw/messages.po b/source/be/sw/messages.po
index e1627c88759..465fa4d0584 100644
--- a/source/be/sw/messages.po
+++ b/source/be/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8369,7 +8369,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Выберыце элемент: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Правіць"
diff --git a/source/bg/cui/messages.po b/source/bg/cui/messages.po
index c1284e7ef56..a7687fa9c0e 100644
--- a/source/bg/cui/messages.po
+++ b/source/bg/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-10 20:00+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: 1562788816.000000\n"
#: cui/inc/numcategories.hrc:17
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Водачи и номерация"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Ниво"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Тип:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Започване от:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Знак:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Избор..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Избор на изображение..."
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Ширина:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Височина:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Запазване на пропорциите"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Преди:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "След:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Разделител"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Цвят:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "Отн. размер:"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Отстъп:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Ширина:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "Относителна"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Позиция"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Подравняване"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Кадър"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Селекция"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Прилагане върху образеца"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Обхват"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Свойства"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Мостра"
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Помощ"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Диалогови прозорци на %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Диалогови прозорци за отваряне/записване"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "_Диалогови прозорци на %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Диалогови прозорци за печат"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Печатането установява състояние „променен документ“"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Състояние на документа"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Интерпретиране като години между "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "и "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Двуцифрени години"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Събиране и изпращане на данни за употребата към TDF"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Помогнете за подобряване на %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Зареждане на %PRODUCTNAME при стартиране на системата"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Икона за бързо стартиране"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "Следващ съвет"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Знаете ли, че..."
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Връзка"
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 cb66e6f3181..9eac3bb5fc2 100644
--- a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bg/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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-06 14:39+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: 1562423974.000000\n"
#: BaseWindowState.xcu
@@ -21054,6 +21054,24 @@ msgstr "Дарение за LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/bg/sd/messages.po b/source/bg/sd/messages.po
index 52afae56266..0ef32831cd6 100644
--- a/source/bg/sd/messages.po
+++ b/source/bg/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-06 14:38+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: 1562423894.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "Преглед"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Подреждане"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "Редактиране"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "Мрежа"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Графика"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Цвят"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Мултимедия"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Прожекция"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Рамка"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Изглед"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Страница образец"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Вмъкване"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Рисуване"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "Изглед"
diff --git a/source/bg/sw/messages.po b/source/bg/sw/messages.po
index 8e9bf9d020a..d5b07a59ca9 100644
--- a/source/bg/sw/messages.po
+++ b/source/bg/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-07-07 12:53+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: 1562504032.000000\n"
#: sw/inc/app.hrc:29
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Изберете елемент: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Редактиране"
diff --git a/source/bn-IN/cui/messages.po b/source/bn-IN/cui/messages.po
index fa27da1e59f..0d0ee934d7c 100644
--- a/source/bn-IN/cui/messages.po
+++ b/source/bn-IN/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-16 06:42+0000\n"
"Last-Translator: parnas <parnasghosh@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4419,147 +4419,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9222,72 +9222,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "সহায়তা"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ডায়ালগ ব্যবহার (_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "খুলুন/সংরক্ষণ ডায়লগ"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ডায়ালগ ব্যবহার (_d)"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "মুদ্রণ ডায়ালগ"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "মুদ্রণ \"নথি পরিবর্তিত\" অবস্থান নির্ধারণ করেছে (_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "নথির অবস্থা"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "মধ্যবর্তী বছর দিয়ে হিসাব করুন (_I)"
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "এবং"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "বছর (দুই সংখ্যার)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "ব্যবহৃত তথ্য সংগ্রহ করুন এবং ডকুমেন্ট ফাউন্ডেশনে পাঠান"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "সিস্টেম আরম্ভ করার সময় %PRODUCTNAME লোড"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray কুইকস্টার্টার সক্রিয়"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME কুইকস্টার্টার"
@@ -12830,12 +12830,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 18219210e50..5c1290940af 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
@@ -21361,6 +21361,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/bn-IN/sd/messages.po b/source/bn-IN/sd/messages.po
index 0ba6591ca1a..8b8058f6b03 100644
--- a/source/bn-IN/sd/messages.po
+++ b/source/bn-IN/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5474,9 +5474,9 @@ msgstr "পর্যালোচনা"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5553,8 +5553,8 @@ msgid "_Edit"
msgstr "সম্পাদনা (~E)"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "গ্রিড (_G)"
@@ -5570,60 +5570,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "গ্রাফিক"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "রঙ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "মিডিয়া"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "স্লাইড প্রদর্শনী"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "ফ্রেম (_r)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "দৃশ্যপট"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "মাস্টার পৃষ্ঠাগুলি"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "সন্নিবেশ করুন (_I)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/bn-IN/sw/messages.po b/source/bn-IN/sw/messages.po
index 76e45b96c3c..d4f56e8129d 100644
--- a/source/bn-IN/sw/messages.po
+++ b/source/bn-IN/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn_IN\n"
@@ -8686,7 +8686,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "বিষয় নির্বাচন:"
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "সম্পাদনা"
diff --git a/source/bn/cui/messages.po b/source/bn/cui/messages.po
index 612696d981f..7d95f29b989 100644
--- a/source/bn/cui/messages.po
+++ b/source/bn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4533,147 +4533,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9699,78 +9699,78 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "সহায়তা"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr " %PRODUCTNAME ডায়ালগ"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr " %PRODUCTNAME ডায়ালগ"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "নথির নাম\tঅবস্থা"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "এবং"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "সিস্টেম শুরুর সময় %PRODUCTNAME লোড করা"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray কুইকস্টার্টার নিষ্ক্রিয় করুন"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13508,12 +13508,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 e4acdd486db..75db099eefe 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21372,6 +21372,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/bn/sd/messages.po b/source/bn/sd/messages.po
index d41b0f1098b..5c1e77009a7 100644
--- a/source/bn/sd/messages.po
+++ b/source/bn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5545,9 +5545,9 @@ msgstr "পর্যালোচনা"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5625,8 +5625,8 @@ msgid "_Edit"
msgstr "সম্পাদনা (~E)"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5643,60 +5643,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "গ্রাফিক"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "রঙ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "মিডিয়া"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "স্লাইড প্রদর্শনী (~S)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "ফ্রেম"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "দৃশ্যপট"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "মাস্টার পৃষ্ঠা"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "সংযোজন"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/bn/sw/messages.po b/source/bn/sw/messages.po
index 35ad8d76238..dadb0363b1c 100644
--- a/source/bn/sw/messages.po
+++ b/source/bn/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn\n"
@@ -8759,7 +8759,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "সম্পাদনা"
diff --git a/source/bo/cui/messages.po b/source/bo/cui/messages.po
index 6ec8d8577f5..332194eae22 100644
--- a/source/bo/cui/messages.po
+++ b/source/bo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4520,147 +4520,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9646,78 +9646,78 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "རོགས་རམ།"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAMEབརྡ་སྒྲོམ།"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAMEབརྡ་སྒྲོམ།"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "ཡིག་ཚགས་མིང་།\tགནས་སྟངས།"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "བསྡོམས་འབོར།"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "启动时载入%PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "མ་ལག་གི་ལས་འགན་གདམ་ཚང་མགྱོགས་མྱུར་འགུལ་སློང་བྱེད་དུ་མི་འཇུག་པ།"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13451,12 +13451,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 39e97335de4..3903f3d8eb3 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21361,6 +21361,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/bo/sd/messages.po b/source/bo/sd/messages.po
index bc4475c4bfc..94f7ac0ace0 100644
--- a/source/bo/sd/messages.po
+++ b/source/bo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5559,9 +5559,9 @@ msgstr "བརྟག་དཔྱད།"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5639,8 +5639,8 @@ msgid "_Edit"
msgstr "རྩོམ་སྒྲིག(~E)"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5657,60 +5657,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "རིས་དབྱིབས།"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ཚོས་གཞི།"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "མཚམས་སྦྱོར།"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "སྒྲོན་བཪྙན་སྤྱིན་ཤོག་བཪྙན་གཏོང་།(~W)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "སྒྲོམ་གྱི་ཁ་གཏད།"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "མཐོང་རིས།"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "སྒྲོན་བཪྙན་བཟོ་འགོད།"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "བསྒར་འཛུད།"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/bo/sw/messages.po b/source/bo/sw/messages.po
index a8083a3d8ac..f4882bec93e 100644
--- a/source/bo/sw/messages.po
+++ b/source/bo/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -8715,7 +8715,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "རྩོམ་སྒྲིག"
diff --git a/source/br/cui/messages.po b/source/br/cui/messages.po
index 2524391be26..27d3dd24c14 100644
--- a/source/br/cui/messages.po
+++ b/source/br/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4400,147 +4400,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9208,72 +9208,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Skoazell"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Arverañ _boestadoù emziviz %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Boestadoù emziviz Digeriñ/Enrollañ"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Arverañ boesta_doù emziviz %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Boestadoù emziviz Moullañ"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Stad \"Teul daskemmet\" evit an arventennoù _moullañ"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stad an teul"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Jubenniñ da vloazioù etre "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ha "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Bloaz (2 sifr)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Dastum roadennoù a-fet arver ha kas-i da The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Roit skoazell da wellaat %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Kargañ %PRODUCTNAME e-pad m'emañ ar reizhiad o loc'hañ"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Gweredekaat al loc'hañ herrek er maez rebuziñ"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Loc'hañ herrek %PRODUCTNAME"
@@ -12819,12 +12819,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 87509850118..1e69d04e3db 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21210,6 +21210,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/br/sd/messages.po b/source/br/sd/messages.po
index df29b061c5e..5fa1240bb83 100644
--- a/source/br/sd/messages.po
+++ b/source/br/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5439,9 +5439,9 @@ msgstr "Evezhiadenn"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5518,8 +5518,8 @@ msgid "_Edit"
msgstr "~Embann"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Kael"
@@ -5535,59 +5535,59 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Skeudenn"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Liv"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Media"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Treyonennaoueg"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "_Stern"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Skrammañ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Pajennoù mestrezed"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Enlakaat"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/br/sw/messages.po b/source/br/sw/messages.po
index 5f85ea23c59..9e502225a26 100644
--- a/source/br/sw/messages.po
+++ b/source/br/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8474,7 +8474,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Dibab un elfenn : "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Embann"
diff --git a/source/brx/cui/messages.po b/source/brx/cui/messages.po
index 1926843a7b0..a715b87332b 100644
--- a/source/brx/cui/messages.po
+++ b/source/brx/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4500,147 +4500,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9597,77 +9597,77 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदद हो"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME बिबुंफोर"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME बिबुंफोर"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "फोरमान बिलाय मुं \\ मुवानि थाखो मान "
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "आरो"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "सिस्टेम जागायनाय समाव %PRODUCTNAME ल'ड खालामनाय"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13386,12 +13386,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 fcd6415e8f6..a499bc808fb 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21382,6 +21382,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/brx/sd/messages.po b/source/brx/sd/messages.po
index 64ef0172586..fa9b28056e2 100644
--- a/source/brx/sd/messages.po
+++ b/source/brx/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5560,9 +5560,9 @@ msgstr "बिजिरना नायफिन"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5640,8 +5640,8 @@ msgid "_Edit"
msgstr "~सुजु"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5658,59 +5658,59 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "बोसावगारि"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "गाब"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "~स्लाइड दिनथिनाय"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "फ्रेम"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "नुथाय"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "गाहाय बिखंफोर"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "सोसन"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/brx/sw/messages.po b/source/brx/sw/messages.po
index 2b02b029027..88d4c19c9e5 100644
--- a/source/brx/sw/messages.po
+++ b/source/brx/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
@@ -8742,7 +8742,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
#, fuzzy
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
diff --git a/source/bs/cui/messages.po b/source/bs/cui/messages.po
index 79928a41512..c9da0ea7c6d 100644
--- a/source/bs/cui/messages.po
+++ b/source/bs/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4499,147 +4499,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9584,76 +9584,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pomoć"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Koristi %PRODUCTNAME dijaloge"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dijalozi za otvaranje/snimanje"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Koristi %PRODUCTNAME _dijaloge"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dijalozi za štampanje"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Š_tampanje postavlja status \"dokument izmijenjen\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Status dokumenta"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Tumači kao godine između "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "i "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Godina (dvocifrena)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Učitaj %PRODUCTNAME prilikom pokretanja sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Omogući traku Quickstarter-a"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -13341,12 +13341,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 f2a1ee2322b..e684b7d522f 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21357,6 +21357,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/bs/sd/messages.po b/source/bs/sd/messages.po
index 8fb328e53d2..5fbea4f1d62 100644
--- a/source/bs/sd/messages.po
+++ b/source/bs/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5505,9 +5505,9 @@ msgstr "Recenzija"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5584,8 +5584,8 @@ msgid "_Edit"
msgstr "~Izmijeni"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Mreža"
@@ -5601,60 +5601,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Ilustracija"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Boja"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Medij"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Prezentacija"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "O_kvir"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Pogled"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Master stranice"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Umetni"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/bs/sw/messages.po b/source/bs/sw/messages.po
index 7f361d54149..cfd07e92c5c 100644
--- a/source/bs/sw/messages.po
+++ b/source/bs/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8700,7 +8700,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Odaberi stavku: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Izmijeni"
diff --git a/source/ca-valencia/cui/messages.po b/source/ca-valencia/cui/messages.po
index c6011ab4e07..16f4fa89e53 100644
--- a/source/ca-valencia/cui/messages.po
+++ b/source/ca-valencia/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ajuda"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Utilitza els diàlegs del %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Diàlegs d'obri/guarda"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Utilitza els _diàlegs del %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Diàlegs d'impressió"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "En im_primir s'estableix l'estat de \"document modificat\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estat del document"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpreta com a anys entre "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "i "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Any (dues xifres)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Recull dades d'ús i els envia a The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Ajuda a millorar el %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Carrega el %PRODUCTNAME en iniciar el sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Habilita l'inici ràpid a la safata del sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Inici ràpid del %PRODUCTNAME"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/01.po b/source/ca-valencia/helpcontent2/source/text/shared/01.po
index f4a6c84d695..e563cdd6e89 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2018-11-14 11:53+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-21 12:08+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\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-Language: ca-XV\n"
-"X-POOTLE-MTIME: 1542196420.000000\n"
+"X-POOTLE-MTIME: 1563710888.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -5263,7 +5263,7 @@ msgctxt ""
"par_id3152811\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/versionsofdialog/compare\">Compare the changes that were made in each version.</ahelp> If you want, you can <link href=\"text/shared/01/02230400.xhp\" name=\"Manage Changes\"><emph>Manage Changes</emph></link>."
-msgstr "<ahelp hid=\"sfx/ui/versionsofdialog/compare\">Compareu els canvis que s'han fet a cada versió.</ahelp> Si voleu, també podeu <link href=\"text/shared/01/02230400.xhp\" name=>\"Gestiona els canvis\"><emph>gestionar els canvis</emph></link>."
+msgstr "<ahelp hid=\"sfx/ui/versionsofdialog/compare\">Compareu els canvis que s'han fet a cada versió.</ahelp> Si voleu, també podeu <link href=\"text/shared/01/02230400.xhp\" name=\"Gestiona els canvis\"><emph>gestionar els canvis</emph></link>."
#: 01990000.xhp
msgctxt ""
@@ -28951,7 +28951,7 @@ msgctxt ""
"par_id3147000\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/docking3deffects/texture\">Sets the properties of the surface texture for the selected 3D object. This feature is only available after you apply a surface texture to the selected object. To quickly apply a surface texture, open the <emph>Gallery</emph>, hold down Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, and then drag an image onto the selected 3D object.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/docking3deffects/texture\">Defineix les propietats de la textura superficial de l'objecte 3D seleccionat. Esta funció només està disponible després d'aplicar una textura superficial a l'objecte seleccionat. Per aplicar ràpidament una textura superficial, obriu la <emph>Galeria</emph>, manteniu premut Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Orde</caseinline>Ctrl</defaultinline></switchinline>, i després arrossegueu una imatge fins a l'objecte 3D seleccionat.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/docking3deffects/texture\">Defineix les propietats de la textura superficial de l'objecte 3D seleccionat. Esta funció només està disponible després d'aplicar una textura superficial a l'objecte seleccionat. Per aplicar ràpidament una textura superficial, obriu la <emph>Galeria</emph>, manteniu premut Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Orde</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, i després arrossegueu una imatge fins a l'objecte 3D seleccionat.</ahelp>"
#: 05350500.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 ed7dcf016a6..124c553df7f 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/00.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2018-11-14 11:53+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-21 12:11+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\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-Language: ca-XV\n"
-"X-POOTLE-MTIME: 1542196429.000000\n"
+"X-POOTLE-MTIME: 1563711073.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -903,7 +903,7 @@ msgctxt ""
"par_id3149217\n"
"help.text"
msgid "<variable id=\"stichwortverzeichnisverz\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography</emph></variable>"
-msgstr "<variable id=\"stichwortverzeichnisverz\">Trieu la pestanya <emph>Insereix ▸ Índexs i taules ▸ Taula de continguts, índex o bibliografia</variable>"
+msgstr "<variable id=\"stichwortverzeichnisverz\">Trieu la pestanya <emph>Insereix ▸ Índexs i taules ▸ Taula de continguts, índex o bibliografia</emph></variable>"
#: 00000404.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 c2e6d1bb2a6..82e0d7f002c 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21054,6 +21054,24 @@ msgstr "Donatius al LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/ca-valencia/sd/messages.po b/source/ca-valencia/sd/messages.po
index fb530ff9122..65526334475 100644
--- a/source/ca-valencia/sd/messages.po
+++ b/source/ca-valencia/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5345,9 +5345,9 @@ msgstr "_Revisa"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Organitza"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Edita"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Graella"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Imatge"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "C_olor"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Multimèdia"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Pre_sentació de diapositives"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "_Marc"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Visualitza"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Pàgina _mestra"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Insereix"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "D_ibuixa"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Visualització"
diff --git a/source/ca-valencia/sw/messages.po b/source/ca-valencia/sw/messages.po
index 374095e88ec..c4c9f1fcf61 100644
--- a/source/ca-valencia/sw/messages.po
+++ b/source/ca-valencia/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8363,7 +8363,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Trieu un element: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Edita"
diff --git a/source/ca/cui/messages.po b/source/ca/cui/messages.po
index 9a4c2754b13..c8dd734037d 100644
--- a/source/ca/cui/messages.po
+++ b/source/ca/cui/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-12 11:00+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-26 08:32+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\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: 1562929201.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1564129929.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -2093,12 +2093,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:98
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create editable Hybrid PDFs with %PRODUCTNAME."
-msgstr ""
+msgstr "Creeu fitxers PDF híbrids modificables amb el %PRODUCTNAME."
#: cui/inc/tipoftheday.hrc:99
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management ? Use a 3rd party extension."
-msgstr ""
+msgstr "Us cal gestionar citacions acadèmiques? Instal·leu una extensió de tercers."
#: cui/inc/tipoftheday.hrc:100
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2128,12 +2128,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:105
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
-msgstr ""
+msgstr "Executeu el %PRODUCTNAME en qualsevol navegador web mitjançant el rollApp."
#: cui/inc/tipoftheday.hrc:106
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and xml filters?"
-msgstr ""
+msgstr "Esteu desenvolupant filtres XSLT i XML nous?"
#: cui/inc/tipoftheday.hrc:108
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2213,7 +2213,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Hold down Ctrl and turn the mouse wheel to change the zoom factor."
-msgstr ""
+msgstr "Utilitzar la roda del ratolí mentre es manté premuda Ctrl canviarà el factor d'escala."
#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2433,12 +2433,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Backspace key instead of Delete in Calc. You can choose what to delete."
-msgstr ""
+msgstr "Si al Calc feu servir la tecla de retrocés en comptes de la de supressió, podreu triar quina dada suprimir."
#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To distribute some text in multi-columns select the text and apply Format > Columns."
-msgstr ""
+msgstr "Per a distribuir text en diverses columnes, seleccioneu-lo i trieu Format ▸ Columnes."
#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2718,7 +2718,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing > Spacing > Below paragraph at the style/paragraph properties."
-msgstr ""
+msgstr "No inseriu salts manuals per a separar dos paràgrafs. En comptes d'això, canvieu Sagnats i espaiat ▸ Espaiat ▸ Sota el paràgraf a les propietats de l'estil o del paràgraf."
#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Pics i numeració"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Nivell"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Tipus:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Comença a:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Caràcter:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Selecciona..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Selecciona una imatge..."
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Amplada:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Alçada:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Abans:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Després:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Separador"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Color:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Sagnat:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Amplada:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "Relati_va"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Posició"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Alineació"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Diapositiva"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Selecció"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
-msgstr ""
+msgstr "Aplica al mestre"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Àmbit"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Propietats"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Previsualització"
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ajuda"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Utilitza els diàlegs del %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Diàlegs d'obertura/desament"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Utilitza els _diàlegs del %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Diàlegs d'impressió"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "En im_primir s'estableix l'estat de «document modificat»"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estat del document"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpreta com a anys entre "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "i "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Any (dues xifres)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Recull dades d'ús i els envia a The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Ajudar a millorar el %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Carrega el %PRODUCTNAME en iniciar el sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Habilita l'inici ràpid a la safata del sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Inici ràpid del %PRODUCTNAME"
@@ -12765,19 +12765,19 @@ msgstr "_Mostra'm consells en iniciar"
#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
-msgstr ""
+msgstr "Activeu el diàleg novament a Eines ▸ Opcions ▸ General"
#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "Consell _següent"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Ho sabíeu?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Enllaç"
diff --git a/source/ca/filter/source/config/fragments/filters.po b/source/ca/filter/source/config/fragments/filters.po
index b500bff6c27..ee1d4d2a504 100644
--- a/source/ca/filter/source/config/fragments/filters.po
+++ b/source/ca/filter/source/config/fragments/filters.po
@@ -4,8 +4,8 @@ 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: 2019-06-03 17:45+0200\n"
-"PO-Revision-Date: 2019-06-04 12:34+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"PO-Revision-Date: 2019-07-29 15:13+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Softcatalà\n"
"Language: ca\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: 1559651682.000000\n"
+"X-POOTLE-MTIME: 1564413200.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PBM - Portable Bitmap"
-msgstr "PBM - Mapa de bits portable"
+msgstr "PBM - Mapa de bits portàtil"
#: PCT___Mac_Pict.xcu
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PGM - Portable Graymap"
-msgstr "PGM - Mapa de grisos portable"
+msgstr "PGM - Mapa de grisos portàtil"
#: PNG___Portable_Network_Graphic.xcu
msgctxt ""
@@ -770,7 +770,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Gràfic de xarxa portable"
+msgstr "PNG - Gràfic de xarxa portàtil"
#: PPM___Portable_Pixelmap.xcu
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PPM - Portable Pixelmap"
-msgstr "PPM - Mapa de píxels portable"
+msgstr "PPM - Mapa de píxels portàtil"
#: PSD___Adobe_Photoshop.xcu
msgctxt ""
@@ -1184,7 +1184,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "QuattroPro Document"
-msgstr "QuattroPro Document"
+msgstr "Document del QuattroPro"
#: WordPerfect.xcu
msgctxt ""
@@ -1355,7 +1355,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr "PDF - Format de document portable"
+msgstr "PDF - Format de document portàtil"
#: calc_png_Export.xcu
msgctxt ""
@@ -1364,7 +1364,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Gràfic de xarxa portable"
+msgstr "PNG - Gràfic de xarxa portàtil"
#: calc_svg_Export.xcu
msgctxt ""
@@ -1517,7 +1517,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr "PDF - Format de document portable"
+msgstr "PDF - Format de document portàtil"
#: draw_png_Export.xcu
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Gràfic de xarxa portable"
+msgstr "PNG - Gràfic de xarxa portàtil"
#: draw_svg_Export.xcu
msgctxt ""
@@ -1733,7 +1733,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr "PDF - Format de document portable"
+msgstr "PDF - Format de document portàtil"
#: impress_png_Export.xcu
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Gràfic de xarxa portable"
+msgstr "PNG - Gràfic de xarxa portàtil"
#: impress_svg_Export.xcu
msgctxt ""
@@ -1787,7 +1787,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr "PDF - Format de document portable"
+msgstr "PDF - Format de document portàtil"
#: mov__MOV.xcu
msgctxt ""
@@ -1859,7 +1859,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr "PDF - Format de document portable"
+msgstr "PDF - Format de document portàtil"
#: writer_jpg_Export.xcu
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr "PDF - Format de document portable"
+msgstr "PDF - Format de document portàtil"
#: writer_png_Export.xcu
msgctxt ""
@@ -1895,7 +1895,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Gràfic de xarxa portable"
+msgstr "PNG - Gràfic de xarxa portàtil"
#: writer_svg_Export.xcu
msgctxt ""
@@ -1949,7 +1949,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr "PDF - Format de document portable"
+msgstr "PDF - Format de document portàtil"
#: writer_web_png_Export.xcu
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Gràfic de xarxa portable"
+msgstr "PNG - Gràfic de xarxa portàtil"
#: writerglobal8.xcu
msgctxt ""
diff --git a/source/ca/filter/source/config/fragments/internalgraphicfilters.po b/source/ca/filter/source/config/fragments/internalgraphicfilters.po
index edd7583a74b..02e20b99d2a 100644
--- a/source/ca/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/ca/filter/source/config/fragments/internalgraphicfilters.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-11-22 13:53+0100\n"
-"PO-Revision-Date: 2018-01-29 07:53+0000\n"
-"Last-Translator: joamuran <joamuran@gmail.com>\n"
+"PO-Revision-Date: 2019-07-29 15:13+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\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: 1517212385.000000\n"
+"X-POOTLE-MTIME: 1564413219.000000\n"
#: bmp_Export.xcu
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PBM - Portable Bitmap"
-msgstr "PBM - Mapa de bits portable"
+msgstr "PBM - Mapa de bits portàtil"
#: pcd_Import_Base.xcu
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr "PDF - Format de document portable"
+msgstr "PDF - Format de document portàtil"
#: pdf_Import.xcu
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr "PDF - Format de document portable"
+msgstr "PDF - Format de document portàtil"
#: pgm_Import.xcu
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PGM - Portable Graymap"
-msgstr "PGM - Mapa de grisos portable"
+msgstr "PGM - Mapa de grisos portàtil"
#: png_Export.xcu
msgctxt ""
@@ -221,7 +221,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Gràfic de xarxa portable"
+msgstr "PNG - Gràfic de xarxa portàtil"
#: png_Import.xcu
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr "PNG - Gràfic de xarxa portable"
+msgstr "PNG - Gràfic de xarxa portàtil"
#: ppm_Import.xcu
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PPM - Portable Pixelmap"
-msgstr "PPM - Mapa de píxels portable"
+msgstr "PPM - Mapa de píxels portàtil"
#: psd_Import.xcu
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/schart/04.po b/source/ca/helpcontent2/source/text/schart/04.po
index 70d3072e526..576a74bc6eb 100644
--- a/source/ca/helpcontent2/source/text/schart/04.po
+++ b/source/ca/helpcontent2/source/text/schart/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: 2013-05-24 08:07+0000\n"
+"PO-Revision-Date: 2019-07-26 06:05+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: 1369382846.000000\n"
+"X-POOTLE-MTIME: 1564121159.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -31,7 +31,7 @@ msgctxt ""
"bm_id3150767\n"
"help.text"
msgid "<bookmark_value>shortcut keys; charts</bookmark_value><bookmark_value>charts; shortcuts</bookmark_value>"
-msgstr "<bookmark_value>Claus de drecera; diagrames</bookmark_value><bookmark_value>diagrames; dreceres</bookmark_value>"
+msgstr "<bookmark_value>dreceres de teclat; diagrames</bookmark_value><bookmark_value>diagrames; dreceres</bookmark_value>"
#: 01020000.xhp
msgctxt ""
@@ -47,7 +47,7 @@ msgctxt ""
"par_id3155412\n"
"help.text"
msgid "You can use the following shortcut keys in charts."
-msgstr "Esteu utilitzant les claus de drecera següents per als diagrames."
+msgstr "Esteu utilitzant les dreceres de teclat següents per als diagrames."
#: 01020000.xhp
msgctxt ""
@@ -55,7 +55,7 @@ msgctxt ""
"par_id3159154\n"
"help.text"
msgid "You can also use the general <link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys\">shortcut keys</link> for $[officename]."
-msgstr "També podeu utilitzar les <link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys\">claus de drecera</link> generals del $[officename]."
+msgstr "També podeu utilitzar les <link href=\"text/shared/04/01010000.xhp\" name=\"dreceres de teclat\">dreceres de teclat</link> generals del $[officename]."
#: 01020000.xhp
msgctxt ""
@@ -71,7 +71,7 @@ msgctxt ""
"hd_id3151073\n"
"help.text"
msgid "Shortcut Keys"
-msgstr "Claus de drecera"
+msgstr "Dreceres de teclat"
#: 01020000.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/04.po b/source/ca/helpcontent2/source/text/shared/04.po
index 1ffde3ced5d..2777b5d07a5 100644
--- a/source/ca/helpcontent2/source/text/shared/04.po
+++ b/source/ca/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: 2019-01-07 11:14+0100\n"
-"PO-Revision-Date: 2019-06-13 17:08+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-07-21 12:01+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1560445685.000000\n"
+"X-POOTLE-MTIME: 1563710501.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -199,7 +199,7 @@ msgctxt ""
"par_id3150358\n"
"help.text"
msgid "The <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Z</item> shortcut keys are used to undo modifications one step at a time; the text will then have the status it had before the first change."
-msgstr "La tecla de drecera <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Ordre</item></caseinline><defaultinline><item type=\"keycode\"><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Z</item> s'usa per a desfer modificacions pas per pas cada vegada. El text tornarà a tenir l'estat que tenia abans del primer canvi."
+msgstr "La tecla de drecera <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Ordre</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Z</item> s'usa per a desfer modificacions pas per pas cada vegada. El text tornarà a tenir l'estat que tenia abans del primer canvi."
#: 01010000.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/autopi.po b/source/ca/helpcontent2/source/text/shared/autopi.po
index 4a579c87cbd..82ef293ec1f 100644
--- a/source/ca/helpcontent2/source/text/shared/autopi.po
+++ b/source/ca/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: 2018-04-24 12:21+0200\n"
-"PO-Revision-Date: 2019-02-28 08:50+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"PO-Revision-Date: 2019-07-30 17:30+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1551343833.000000\n"
+"X-POOTLE-MTIME: 1564507805.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -4887,7 +4887,7 @@ msgctxt ""
"hd_id2298959\n"
"help.text"
msgid "PNG - Portable Network Graphics format"
-msgstr "PNG - Format de gràfics de xarxa portables"
+msgstr "PNG - Format de gràfics de xarxa portàtils"
#: 01110300.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/guide.po b/source/ca/helpcontent2/source/text/shared/guide.po
index abb2b3f59d0..f38a61f7d08 100644
--- a/source/ca/helpcontent2/source/text/shared/guide.po
+++ b/source/ca/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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-03-13 00:24+0000\n"
+"PO-Revision-Date: 2019-07-29 15:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1552436676.000000\n"
+"X-POOTLE-MTIME: 1564412548.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -3039,7 +3039,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "File Conversion Filters Tables"
-msgstr ""
+msgstr "Taules dels filtres de conversió de fitxers"
#: convertfilters.xhp
msgctxt ""
@@ -3095,7 +3095,7 @@ msgctxt ""
"par_writer0\n"
"help.text"
msgid "AbiWord Document"
-msgstr ""
+msgstr "Document de l'AbiWord"
#: convertfilters.xhp
msgctxt ""
@@ -3103,7 +3103,7 @@ msgctxt ""
"par_writer3\n"
"help.text"
msgid "Apple Pages"
-msgstr ""
+msgstr "Apple Pages"
#: convertfilters.xhp
msgctxt ""
@@ -3111,7 +3111,7 @@ msgctxt ""
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
-msgstr ""
+msgstr "Llibre electrònic BroadBand"
#: convertfilters.xhp
msgctxt ""
@@ -3119,7 +3119,7 @@ msgctxt ""
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
+msgstr "Document del ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -3127,7 +3127,7 @@ msgctxt ""
"par_writer12\n"
"help.text"
msgid "EPUB Document"
-msgstr ""
+msgstr "Document EPUB"
#: convertfilters.xhp
msgctxt ""
@@ -3135,7 +3135,7 @@ msgctxt ""
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
-msgstr ""
+msgstr "FictionBook 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -3143,7 +3143,7 @@ msgctxt ""
"par_writer18\n"
"help.text"
msgid "HTML Document"
-msgstr ""
+msgstr "Document HTML"
#: convertfilters.xhp
msgctxt ""
@@ -3151,7 +3151,7 @@ msgctxt ""
"par_writer21\n"
"help.text"
msgid "HTML Document"
-msgstr ""
+msgstr "Document HTML"
#: convertfilters.xhp
msgctxt ""
@@ -3159,7 +3159,7 @@ msgctxt ""
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
-msgstr ""
+msgstr "Hangul WP 97"
#: convertfilters.xhp
msgctxt ""
@@ -3167,7 +3167,7 @@ msgctxt ""
"par_writer27\n"
"help.text"
msgid "Help content"
-msgstr ""
+msgstr "Contingut de l'ajuda"
#: convertfilters.xhp
msgctxt ""
@@ -3175,7 +3175,7 @@ msgctxt ""
"par_writer28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -3183,7 +3183,7 @@ msgctxt ""
"par_writer30\n"
"help.text"
msgid "Legacy Mac Text Document"
-msgstr ""
+msgstr "Document de text del Mac antic"
#: convertfilters.xhp
msgctxt ""
@@ -3191,7 +3191,7 @@ msgctxt ""
"par_writer31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -3199,7 +3199,7 @@ msgctxt ""
"par_writer33\n"
"help.text"
msgid "Legacy StarOffice Text Document"
-msgstr ""
+msgstr "Document de text de l'StarOffice antic"
#: convertfilters.xhp
msgctxt ""
@@ -3207,7 +3207,7 @@ msgctxt ""
"par_writer34\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -3215,7 +3215,7 @@ msgctxt ""
"par_writer36\n"
"help.text"
msgid "LotusWordPro Document"
-msgstr ""
+msgstr "Document del LotusWordPro"
#: convertfilters.xhp
msgctxt ""
@@ -3231,7 +3231,7 @@ msgctxt ""
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
-msgstr ""
+msgstr "Document del MacWrite"
#: convertfilters.xhp
msgctxt ""
@@ -3295,7 +3295,7 @@ msgctxt ""
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
-msgstr ""
+msgstr "Microsoft Word per al DOS"
#: convertfilters.xhp
msgctxt ""
@@ -3303,7 +3303,7 @@ msgctxt ""
"par_writer67\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -3391,7 +3391,7 @@ msgctxt ""
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Format de document portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -3399,7 +3399,7 @@ msgctxt ""
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Format de document portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -3407,7 +3407,7 @@ msgctxt ""
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Format de document portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -3439,7 +3439,7 @@ msgctxt ""
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
+msgstr "Format de text enriquit"
#: convertfilters.xhp
msgctxt ""
@@ -3455,7 +3455,7 @@ msgctxt ""
"par_writer123\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Text"
#: convertfilters.xhp
msgctxt ""
@@ -3615,7 +3615,7 @@ msgctxt ""
"par_writer172\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -3711,7 +3711,7 @@ msgctxt ""
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
-msgstr ""
+msgstr "Format d'intercanvi de dades"
#: convertfilters.xhp
msgctxt ""
@@ -3719,7 +3719,7 @@ msgctxt ""
"par_calc22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -3783,7 +3783,7 @@ msgctxt ""
"par_calc42\n"
"help.text"
msgid "HTML Table"
-msgstr ""
+msgstr "Taula HTML"
#: convertfilters.xhp
msgctxt ""
@@ -3823,7 +3823,7 @@ msgctxt ""
"par_calc49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -3839,7 +3839,7 @@ msgctxt ""
"par_calc52\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -3847,7 +3847,7 @@ msgctxt ""
"par_calc54\n"
"help.text"
msgid "Lotus"
-msgstr ""
+msgstr "Lotus"
#: convertfilters.xhp
msgctxt ""
@@ -3863,7 +3863,7 @@ msgctxt ""
"par_calc58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -3903,7 +3903,7 @@ msgctxt ""
"par_calc70\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -3951,7 +3951,7 @@ msgctxt ""
"par_calc85\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -3959,7 +3959,7 @@ msgctxt ""
"par_calc87\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
+msgstr "Document del Microsoft Works"
#: convertfilters.xhp
msgctxt ""
@@ -3967,7 +3967,7 @@ msgctxt ""
"par_calc88\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -4007,7 +4007,7 @@ msgctxt ""
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Format de document portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -4031,7 +4031,7 @@ msgctxt ""
"par_calc108\n"
"help.text"
msgid "QuattroPro Document"
-msgstr ""
+msgstr "Document del QuattroPro"
#: convertfilters.xhp
msgctxt ""
@@ -4039,7 +4039,7 @@ msgctxt ""
"par_calc109\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -4047,7 +4047,7 @@ msgctxt ""
"par_calc111\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
+msgstr "Format de text enriquit"
#: convertfilters.xhp
msgctxt ""
@@ -4055,7 +4055,7 @@ msgctxt ""
"par_calc114\n"
"help.text"
msgid "SYLK"
-msgstr ""
+msgstr "SYLK"
#: convertfilters.xhp
msgctxt ""
@@ -4071,7 +4071,7 @@ msgctxt ""
"par_calc117\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Text"
#: convertfilters.xhp
msgctxt ""
@@ -4087,7 +4087,7 @@ msgctxt ""
"par_calc120\n"
"help.text"
msgid "dBASE"
-msgstr ""
+msgstr "dBASE"
#: convertfilters.xhp
msgctxt ""
@@ -4095,7 +4095,7 @@ msgctxt ""
"par_calc121\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -4119,7 +4119,7 @@ msgctxt ""
"par_impress0\n"
"help.text"
msgid "Apple Keynote"
-msgstr ""
+msgstr "Apple Keynote"
#: convertfilters.xhp
msgctxt ""
@@ -4127,7 +4127,7 @@ msgctxt ""
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
-msgstr ""
+msgstr "Presentació del ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -4135,7 +4135,7 @@ msgctxt ""
"par_impress6\n"
"help.text"
msgid "Draw 8"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -4175,7 +4175,7 @@ msgctxt ""
"par_impress19\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -4183,7 +4183,7 @@ msgctxt ""
"par_impress21\n"
"help.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "Presentació de l'StarOffice antic"
#: convertfilters.xhp
msgctxt ""
@@ -4191,7 +4191,7 @@ msgctxt ""
"par_impress22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -4207,7 +4207,7 @@ msgctxt ""
"par_impress25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -4263,7 +4263,7 @@ msgctxt ""
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Format de document portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -4415,7 +4415,7 @@ msgctxt ""
"par_draw25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -4431,7 +4431,7 @@ msgctxt ""
"par_draw28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -4439,7 +4439,7 @@ msgctxt ""
"par_draw30\n"
"help.text"
msgid "Legacy StarOffice Drawing"
-msgstr ""
+msgstr "Dibuix de l'StarOffice antic"
#: convertfilters.xhp
msgctxt ""
@@ -4447,7 +4447,7 @@ msgctxt ""
"par_draw31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -4463,7 +4463,7 @@ msgctxt ""
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
-msgstr ""
+msgstr "Microsoft Visio"
#: convertfilters.xhp
msgctxt ""
@@ -4487,7 +4487,7 @@ msgctxt ""
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Format de document portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -4495,7 +4495,7 @@ msgctxt ""
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
-msgstr ""
+msgstr "QuarkXPress"
#: convertfilters.xhp
msgctxt ""
@@ -4503,7 +4503,7 @@ msgctxt ""
"par_draw49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -4511,7 +4511,7 @@ msgctxt ""
"par_draw51\n"
"help.text"
msgid "WordPerfect Graphics"
-msgstr ""
+msgstr "Imatges del WordPerfect"
#: convertfilters.xhp
msgctxt ""
@@ -4519,7 +4519,7 @@ msgctxt ""
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
-msgstr ""
+msgstr "Zoner Callisto/Draw"
#: convertfilters.xhp
msgctxt ""
@@ -4527,7 +4527,7 @@ msgctxt ""
"par_draw55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -4799,7 +4799,7 @@ msgctxt ""
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -4807,7 +4807,7 @@ msgctxt ""
"par_graphicfilter55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -4815,7 +4815,7 @@ msgctxt ""
"par_graphicfilter57\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -4823,7 +4823,7 @@ msgctxt ""
"par_graphicfilter58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: convertfilters.xhp
msgctxt ""
@@ -4831,7 +4831,7 @@ msgctxt ""
"par_graphicfilter60\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
+msgstr "PBM - Mapa de bits portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -4839,7 +4839,7 @@ msgctxt ""
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
+msgstr "PBM - Mapa de bits portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -4895,7 +4895,7 @@ msgctxt ""
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
+msgstr "PGM - Mapa de grisos portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -4903,7 +4903,7 @@ msgctxt ""
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
+msgstr "PGM - Mapa de grisos portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -4911,7 +4911,7 @@ msgctxt ""
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Gràfic de xarxa portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -4919,7 +4919,7 @@ msgctxt ""
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Gràfic de xarxa portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -4927,7 +4927,7 @@ msgctxt ""
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Gràfic de xarxa portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -4935,7 +4935,7 @@ msgctxt ""
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Gràfic de xarxa portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -4943,7 +4943,7 @@ msgctxt ""
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
+msgstr "PPM - Mapa de píxels portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -4951,7 +4951,7 @@ msgctxt ""
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
+msgstr "PPM - Mapa de píxels portàtil"
#: convertfilters.xhp
msgctxt ""
@@ -4959,7 +4959,7 @@ msgctxt ""
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
-msgstr ""
+msgstr "PSD - Adobe Photoshop"
#: convertfilters.xhp
msgctxt ""
@@ -5071,7 +5071,7 @@ msgctxt ""
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
+msgstr "WMF - Metafitxer del Windows"
#: convertfilters.xhp
msgctxt ""
@@ -5079,7 +5079,7 @@ msgctxt ""
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
+msgstr "WMF - Metafitxer del Windows"
#: convertfilters.xhp
msgctxt ""
@@ -5087,7 +5087,7 @@ msgctxt ""
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
-msgstr ""
+msgstr "XPM - Mapa de píxels X"
#: convertfilters.xhp
msgctxt ""
@@ -5095,7 +5095,7 @@ msgctxt ""
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
+msgstr "XPM - Mapa de píxels X"
#: convertfilters.xhp
msgctxt ""
@@ -5103,7 +5103,7 @@ msgctxt ""
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
+msgstr "XPM - Mapa de píxels X"
#: copy_drawfunctions.xhp
msgctxt ""
@@ -18463,7 +18463,7 @@ msgctxt ""
"par_id3154751\n"
"help.text"
msgid "To protect the changes made in a document during editing, choose <emph>Edit - Track Changes - Protect</emph>. To turn off the function or to accept or reject changes it is necessary to enter the correct password first."
-msgstr ""
+msgstr "Per a protegir els canvis que s'hagin fet a un document durant l'edició, trieu <emph>Edita ▸ Seguiment de canvis ▸ Protegeix</emph>. Per a desactivar la funció, o bé per a acceptar o rebutjar els canvis, cal que primer introduïu la contrasenya correcta."
#: redlining_protect.xhp
msgctxt ""
@@ -22279,7 +22279,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 ""
+msgstr "Per a verificar un filtre d'<emph>exportació</emph>, feu una de les operacions següents a l'àrea <emph>Exporta</emph> del diàleg:"
#: xsltfilter_create.xhp
msgctxt ""
@@ -22303,7 +22303,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 ""
+msgstr "Per a verificar un filtre d'<emph>importació</emph>, feu clic a <emph>Navega</emph> a l'àrea <emph>Importa</emph> del diàleg, seleccioneu un document i feu clic a <emph>Obre</emph>."
#: xsltfilter_create.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/swriter/guide.po b/source/ca/helpcontent2/source/text/swriter/guide.po
index f9bc4d0ea8a..c80bb5d3fdb 100644
--- a/source/ca/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca/helpcontent2/source/text/swriter/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-02-26 07:32+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"PO-Revision-Date: 2019-07-30 17:31+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\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-Language: ca\n"
-"X-POOTLE-MTIME: 1551166325.000000\n"
+"X-POOTLE-MTIME: 1564507881.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -9516,13 +9516,12 @@ msgid "You can remove the numbering from a paragraph in a numbered list or chang
msgstr "Podeu suprimir la numeració d'un paràgraf d'una llista numerada o canviar el número d'inici d'una llista numerada."
#: numbering_paras.xhp
-#, fuzzy
msgctxt ""
"numbering_paras.xhp\n"
"par_id2172612\n"
"help.text"
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 voleu aplicar els encapçalaments utilitzeu els <emph>Eines - Numeració de capítols</emph>Mostra/amaga l'ordre de menú per assignar una numeració a un estil de paràgraf no utilitzeu la icona de la numeració de la barra d'eines de formatació."
+msgstr "Si voleu numerar encapçalaments, utilitzeu l'ordre de menú <emph>Eines ▸ Numeració de capítols</emph> per a assignar una numeració a un estil de paràgraf. No utilitzeu la icona Numeració de la barra d'eines Formatació."
#: 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 42e01ab944a..5d73709cd26 100644
--- a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-05 04:33+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=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562301193.000000\n"
#: BaseWindowState.xcu
@@ -21054,6 +21054,24 @@ msgstr "Donatius al LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/ca/scp2/source/draw.po b/source/ca/scp2/source/draw.po
index 9082873c32d..233625b9363 100644
--- a/source/ca/scp2/source/draw.po
+++ b/source/ca/scp2/source/draw.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:01+0100\n"
-"PO-Revision-Date: 2014-01-20 19:59+0000\n"
-"Last-Translator: Joan <joan@montane.cat>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2019-07-29 15:14+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1390247953.0\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564413268.000000\n"
#: folderitem_draw.ulf
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"STR_REG_VAL_PORTABLE_BITMAP_FORMAT\n"
"LngText.text"
msgid "Portable Bitmap Format File"
-msgstr "Fitxer de format de mapa de bits portable (BMP)"
+msgstr "Fitxer de format de mapa de bits portàtil"
#: registryitem_draw.ulf
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"STR_REG_VAL_PORTABLE_GRAYMAP_FORMAT\n"
"LngText.text"
msgid "Portable Graymap Format File"
-msgstr "Fitxer de format mapa de grisos portable"
+msgstr "Fitxer de format mapa de grisos portàtil"
#: registryitem_draw.ulf
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"STR_REG_VAL_PORTABLE_NETWORK_GRAPHICS\n"
"LngText.text"
msgid "Portable Network Graphics File"
-msgstr "Fitxer d'imatges en xarxa portable (PNG)"
+msgstr "Fitxer d'imatges en xarxa portàtil"
#: registryitem_draw.ulf
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"STR_REG_VAL_PORTABLE_PIXMAP_FORMAT\n"
"LngText.text"
msgid "Portable Pixmap Format File"
-msgstr "Fitxer de format de mapa de píxels portable"
+msgstr "Fitxer de format de mapa de píxels portàtil"
#: registryitem_draw.ulf
msgctxt ""
diff --git a/source/ca/scp2/source/graphicfilter.po b/source/ca/scp2/source/graphicfilter.po
index d6786895e4c..703eb79d2ad 100644
--- a/source/ca/scp2/source/graphicfilter.po
+++ b/source/ca/scp2/source/graphicfilter.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:01+0100\n"
-"PO-Revision-Date: 2014-01-20 19:59+0000\n"
-"Last-Translator: Joan <joan@montane.cat>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2019-07-29 15:15+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1390247999.0\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564413307.000000\n"
#: module_graphicfilter.ulf
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"STR_NAME_MODULE_OPTIONAL_GRFFLT_PBMP\n"
"LngText.text"
msgid "Portable Bitmap Import/Export"
-msgstr "Importa/Exporta Portable Bitmap"
+msgstr "Importa/exporta mapa de bits portàtil"
#: module_graphicfilter.ulf
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_GRFFLT_PBMP\n"
"LngText.text"
msgid "Portable Bitmap Import/Export Filters"
-msgstr "Filtres d'importació/exportació Portable Bitmap"
+msgstr "Filtres d'importació/exportació de mapa de bits portàtil"
#: module_graphicfilter.ulf
msgctxt ""
diff --git a/source/ca/sd/messages.po b/source/ca/sd/messages.po
index bfd4dfc5498..78cbfbd7115 100644
--- a/source/ca/sd/messages.po
+++ b/source/ca/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-12 07:25+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: 1562916317.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "_Revisa"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Organitza"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Edita"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Graella"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Imatge"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "C_olor"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Multimèdia"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Pre_sentació de diapositives"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "_Marc"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Visualitza"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Pàgina _mestra"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Insereix"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "D_ibuixa"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Visualització"
diff --git a/source/ca/svtools/messages.po b/source/ca/svtools/messages.po
index 3ddccebb4b1..4b9eddf81e7 100644
--- a/source/ca/svtools/messages.po
+++ b/source/ca/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-05-31 15:01+0000\n"
+"PO-Revision-Date: 2019-07-29 15:15+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1559314911.000000\n"
+"X-POOTLE-MTIME: 1564413316.000000\n"
#. To translators: tdf#125447 use no mnemonic in this string
#: include/svtools/strings.hrc:26
@@ -376,7 +376,7 @@ msgstr "Format HTML sense comentaris"
#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
-msgstr "Imatge de xarxa portable (PNG)"
+msgstr "Imatge de xarxa portàtil (PNG)"
#: include/svtools/strings.hrc:101
#, c-format
diff --git a/source/ca/sw/messages.po b/source/ca/sw/messages.po
index c151c4d7a73..e5d5ef29240 100644
--- a/source/ca/sw/messages.po
+++ b/source/ca/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-07-12 07:21+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: 1562916102.000000\n"
#: sw/inc/app.hrc:29
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Trieu un element: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Edita"
diff --git a/source/cs/cui/messages.po b/source/cs/cui/messages.po
index 966aae777f8..8e22d450d7b 100644
--- a/source/cs/cui/messages.po
+++ b/source/cs/cui/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-06-16 21:27+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-24 15:18+0000\n"
+"Last-Translator: raal <raal@post.cz>\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: LibreOffice\n"
-"X-POOTLE-MTIME: 1560720465.000000\n"
+"X-POOTLE-MTIME: 1563981507.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1767,7 +1767,7 @@ msgstr "LibreOffice byl vytvořen na základě OpenOffice.org."
#: cui/inc/strings.hrc:400
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
-msgstr ""
+msgstr "%PRODUCTNAME je odvozen z LibreOffice, který byl vytvořen na základě OpenOffice.org"
#: cui/inc/strings.hrc:401
msgctxt "aboutdialog|locale"
@@ -1777,22 +1777,22 @@ msgstr "Národní prostředí: $LOCALE"
#: cui/inc/strings.hrc:402
msgctxt "aboutdialog|uilocale"
msgid "UI-Language: $LOCALE"
-msgstr ""
+msgstr "Jazyk UI: $LOCALE"
#: cui/inc/strings.hrc:403
msgctxt "aboutdialog|releasenotes"
msgid "~Release Notes"
-msgstr ""
+msgstr "~Poznámky k vydání"
#: cui/inc/strings.hrc:404
msgctxt "aboutdialog|website"
msgid "~Website"
-msgstr ""
+msgstr "~Webová stránka"
#: cui/inc/strings.hrc:405
msgctxt "aboutdialog|credits"
msgid "Cre~dits"
-msgstr ""
+msgstr "Zás~luhy"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2019,136 +2019,136 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:83
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
-msgstr ""
+msgstr "Použijte svůj Android nebo iPhone na dálkové ovládání prezentace Impress."
#. local help missing
#: cui/inc/tipoftheday.hrc:84
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
-msgstr ""
+msgstr "Konzola prezentujícího je skvělá pomůcka při práci s aplikací %PRODUCTNAME Impress. Už jste si ji vyzkoušeli?"
#. local help missing
#: cui/inc/tipoftheday.hrc:85
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
-msgstr ""
+msgstr "Automaticky označte abecední položky indexu pomocí souboru shody."
#. local help missing
#: cui/inc/tipoftheday.hrc:86
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
-msgstr ""
+msgstr "Rámce mohou být propojeny tak, aby text mohl proudit z jednoho do druhého, jak je to v DTP."
#. local help missing
#: cui/inc/tipoftheday.hrc:88
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get help from the community via the Ask portal."
-msgstr ""
+msgstr "Získejte pomoc od komunity prostřednictvím portálu Ask na adrese https://ask.libreoffice.org/cs-cz/questions."
#: cui/inc/tipoftheday.hrc:89
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has great extensions to increase your productivity, check them out."
-msgstr ""
+msgstr "%PRODUCTNAME má užitečné rozšíření pro zvýšení produktivity, vyzkoušejte si je."
#: cui/inc/tipoftheday.hrc:90
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents, check it out."
-msgstr ""
+msgstr "%PRODUCTNAME má centrum šablon pro vytváření dobře vypadajících dokumentů, vyzkoušejte si je."
#: cui/inc/tipoftheday.hrc:91
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by clicking on F1, if you've installed it. Otherwise check online at:"
-msgstr ""
+msgstr "Vestavěnou nápovědu získáte kliknutím na F1, pokud jste ji nainstalovali. Jinak zkontrolujte online na:"
#: cui/inc/tipoftheday.hrc:92
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
-msgstr ""
+msgstr "Získejte dokumentaci k %PRODUCTNAME a uživatelských příruček zdarma na adrese:"
#: cui/inc/tipoftheday.hrc:93
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
-msgstr ""
+msgstr "Vaše dary podporují naši celosvětovou komunitu."
#: cui/inc/tipoftheday.hrc:94
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as an extension."
-msgstr ""
+msgstr "S programem %PRODUCTNAME je velmi snadné nainstalovat nový slovník: jsou dodávány jako rozšíření."
#: cui/inc/tipoftheday.hrc:95
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
-msgstr ""
+msgstr "%PRODUCTNAME je vyvíjen přátelskou komunitou tvořenou stovkami přispěvatelů z celého světa. Připojte se k nám s vašimi dovednostmi, znalost programování není potřebná."
#: cui/inc/tipoftheday.hrc:96
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
-msgstr ""
+msgstr "%PRODUCTNAME má přenosnou verzi, která vám poskytuje mobilitu. Dokonce i bez administrátorských práv v počítači můžete nainstalovat %PRODUCTNAME Portable na váš pevný disk."
#: cui/inc/tipoftheday.hrc:97
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
-msgstr ""
+msgstr "%PRODUCTNAME vám umožňuje používat pomocné nástroje, jako jsou externí čtečky obrazovky, Braillova písma nebo vstupní zařízení pro rozpoznávání řeči."
#: cui/inc/tipoftheday.hrc:98
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create editable Hybrid PDFs with %PRODUCTNAME."
-msgstr ""
+msgstr "Pomocí %PRODUCTNAME lze vytvářet upravovatelné hybridní soubory PDF."
#: cui/inc/tipoftheday.hrc:99
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management ? Use a 3rd party extension."
-msgstr ""
+msgstr "Pokud potřebujete správu citací, použijte rozšíření třetí strany."
#: cui/inc/tipoftheday.hrc:100
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You plan to change the computer and want to recover your customizations? See:"
-msgstr ""
+msgstr "Plánujete změnit počítač a chcete na něj přenést své aktuální přizpůsobení? viz:"
#: cui/inc/tipoftheday.hrc:101
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
-msgstr ""
+msgstr "%PRODUCTNAME podporuje více než 150 jazyků."
#: cui/inc/tipoftheday.hrc:102
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
-msgstr ""
+msgstr "Chcete se stát vyslancem %PRODUCTNAME? Existují certifikace pro vývojáře, administrátory a školitele."
#: cui/inc/tipoftheday.hrc:103
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
+msgstr "%PRODUCTNAME se účastní Google Summer of Code (GSOC), viz:"
#: cui/inc/tipoftheday.hrc:104
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create fillable form documents (even PDF's) with %PRODUCTNAME."
-msgstr ""
+msgstr "Pomocí %PRODUCTNAME lze vytvářet vyplnitelné formuláře (dokonce i soubory PDF)."
#: cui/inc/tipoftheday.hrc:105
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
-msgstr ""
+msgstr "%PRODUCTNAME lze pomocí rollApp spouštět v libovolném prohlížeči."
#: cui/inc/tipoftheday.hrc:106
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and xml filters?"
-msgstr ""
+msgstr "Vyvíjíte nové filtry XSLT a xml?"
#: cui/inc/tipoftheday.hrc:108
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
-msgstr ""
+msgstr "Kliknutím na ikonu PDF na panelu nástrojů můžete své dokumenty jednoduše konvertovat do PDF."
#: cui/inc/tipoftheday.hrc:109
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select a different icon set from Tools > Options > %PRODUCTNAME > View > User Interface > Icon size and style."
-msgstr ""
+msgstr "Sadu a vzhled ikon lze změnit v nabídce Nástroje > Možnosti >%PRODUCTNAME > Zobrazit > Uživatelské rozhraní."
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File > Properties > Font."
-msgstr ""
+msgstr "Použijte vkládání písma pro větší interoperabilitu s jinými kancelářskými balíky v nabídce Soubor > Vlastnosti > Písmo."
#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Nápověda"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Použít _dialogy %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialogy Otevřít/Uložit"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Použít dialo_gy %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Tiskové dialogy"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Tisk _nastaví stav \"dokument změněn\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stav dokumentu"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretovat jako roky mezi"
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "a "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Rok (dvě číslice)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Shromažďovat údaje o používání programu a odesílat je The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pomoc při zlepšování %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Načíst %PRODUCTNAME během spuštění systému"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Povolit rychlé spouštění v hlavním panelu"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Další tip"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Víte, že…?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Odkaz"
diff --git a/source/cs/helpcontent2/source/auxiliary.po b/source/cs/helpcontent2/source/auxiliary.po
index f32d7517e97..8a9f15209ec 100644
--- a/source/cs/helpcontent2/source/auxiliary.po
+++ b/source/cs/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-06-11 21:25+0000\n"
+"PO-Revision-Date: 2019-07-18 12:20+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\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: 1560288327.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563452452.000000\n"
#: sbasic.tree
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"1102\n"
"node.text"
msgid "Command and Menu Reference"
-msgstr ""
+msgstr "Přehled příkazů a nabídek"
#: sdraw.tree
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/sbasic/shared/02.po b/source/cs/helpcontent2/source/text/sbasic/shared/02.po
index 9a3af230756..652081b2301 100644
--- a/source/cs/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/cs/helpcontent2/source/text/sbasic/shared/02.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2017-05-15 15:55+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-18 12:27+0000\n"
+"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\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: 1494863756.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563452850.000000\n"
#: 11010000.xhp
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"hd_id11904\n"
"help.text"
msgid "Table Control"
-msgstr ""
+msgstr "Ovládací prvek tabulky"
#: 20000000.xhp
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"par_id7511524\n"
"help.text"
msgid "<image id=\"Graphic3\" src=\"cmd/sc_insertgridcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Table control icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic3\" src=\"cmd/sc_insertgridcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Ikona Ovládací prvek tabulky</alt></image>"
#: 20000000.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/sbasic/shared/03.po b/source/cs/helpcontent2/source/text/sbasic/shared/03.po
index caaa0584337..3403b18e185 100644
--- a/source/cs/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/cs/helpcontent2/source/text/sbasic/shared/03.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2018-08-12 13:49+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2019-07-26 17:08+0000\n"
+"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\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: 1534081788.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564160910.000000\n"
#: lib_depot.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"hd_id371529000826947\n"
"help.text"
msgid "<item type=\"literal\">Debug</item> Module"
-msgstr ""
+msgstr "Modul <item type=\"literal\">Debug</item>"
#: lib_tools.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id441529064369519\n"
"help.text"
msgid "Functions and subroutines for debugging Basic macros."
-msgstr ""
+msgstr "Funkce a podprogramy pro ladění maker Basicu."
#: lib_tools.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"hd_id11529005753099\n"
"help.text"
msgid "<item type=\"literal\">ListBox</item> Module"
-msgstr ""
+msgstr "Modul <item type=\"literal\">ListBox</item>"
#: lib_tools.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"hd_id341529005758494\n"
"help.text"
msgid "<item type=\"literal\">Misc</item> Module"
-msgstr ""
+msgstr "Modul <item type=\"literal\">Misc</item>"
#: lib_tools.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"hd_id451529005764422\n"
"help.text"
msgid "<item type=\"literal\">ModuleControls</item> Module"
-msgstr ""
+msgstr "Modul <item type=\"literal\">ModuleControls</item>"
#: lib_tools.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/shared/help.po b/source/cs/helpcontent2/source/text/shared/help.po
index 8deaea5b438..932068158a3 100644
--- a/source/cs/helpcontent2/source/text/shared/help.po
+++ b/source/cs/helpcontent2/source/text/shared/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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-06-21 11:48+0000\n"
-"Last-Translator: raal <raal@post.cz>\n"
+"PO-Revision-Date: 2019-07-23 19:32+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"
@@ -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: 1561117685.000000\n"
+"X-POOTLE-MTIME: 1563910365.000000\n"
#: browserhelp.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id881525734289794\n"
"help.text"
msgid "<variable id=\"LibreOfficeHelp\">%PRODUCTNAME %PRODUCTVERSION Help</variable>"
-msgstr "<variable id=\"LibreOfficeHelp\">%PRODUCTNAME %PRODUCTVERSION nápověda</variable>"
+msgstr "<variable id=\"LibreOfficeHelp\">Nápověda %PRODUCTNAME %PRODUCTVERSION</variable>"
#: browserhelp.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/swriter/01.po b/source/cs/helpcontent2/source/text/swriter/01.po
index a65caedf68c..5b238d4c413 100644
--- a/source/cs/helpcontent2/source/text/swriter/01.po
+++ b/source/cs/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-06-19 18:46+0000\n"
+"PO-Revision-Date: 2019-07-18 12:24+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\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: 1560969963.000000\n"
+"X-POOTLE-MTIME: 1563452673.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -15534,7 +15534,7 @@ msgctxt ""
"par_idN10A8E\n"
"help.text"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Udržovat v hranicích textu"
#: 05060100.xhp
msgctxt ""
@@ -15550,7 +15550,7 @@ msgctxt ""
"par_idN10AA6\n"
"help.text"
msgid "By default, the <emph>Keep inside text boundaries</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 "Implicitně je volba <emph>Udržovat v hranicích textu</emph> zaškrtnuta, pokud otevřete dokument vytvořený ve verzi Writeru starší než OpenOffice.org 2.0. Není ovšem zaškrtnuta, pokud vytvoříte nový dokument nebo otevřete dokument ve formátu Microsoft Word (*.doc)."
#: 05060100.xhp
msgctxt ""
@@ -18358,7 +18358,7 @@ msgctxt ""
"par_idN10944\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/textorientation\">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 ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/textorientation\">Slouží k výběru orientace textu v buňkách</ahelp> Lze vybrat následující možnosti orientace textu v buňkách:"
#: 05090300.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 04ddc67a679..9c173ef5b29 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-15 20:45+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: 1563223536.000000\n"
#: BaseWindowState.xcu
@@ -21054,6 +21054,24 @@ msgstr "Podpořit LibreOffice finančně"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/cs/sd/messages.po b/source/cs/sd/messages.po
index fa014ce827b..660929cbdc5 100644
--- a/source/cs/sd/messages.po
+++ b/source/cs/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-15 21: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: 1563224604.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "_Revize"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Uspořádat"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "Upra_vit"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Mřížka"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "O_brázek"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Barva"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Multimédia"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Pr_ezentace"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Ráme_c"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Zobrazit"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Pře_dloha stránky"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "V_ložit"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "_Kresba"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Zobrazit"
diff --git a/source/cs/sw/messages.po b/source/cs/sw/messages.po
index bcf1acd4fc4..54a3a1bc03b 100644
--- a/source/cs/sw/messages.po
+++ b/source/cs/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-07-15 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: 1563223676.000000\n"
#: sw/inc/app.hrc:29
@@ -8372,7 +8372,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Zvolte položku: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Upravit"
diff --git a/source/cy/cui/messages.po b/source/cy/cui/messages.po
index 88d927cad77..39355655d17 100644
--- a/source/cy/cui/messages.po
+++ b/source/cy/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-04-09 08:55+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-21 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: LibreOffice\n"
-"X-POOTLE-MTIME: 1554800138.000000\n"
+"X-POOTLE-MTIME: 1563704049.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1767,7 +1767,7 @@ msgstr "Mae LibreOffice yn seiliedig ar OpenOffice.org."
#: cui/inc/strings.hrc:400
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
-msgstr ""
+msgstr "Mae %PRODUCTNAME yn deillio o LibreOffice sydd wedi ei seilio ar OpenOffice.org"
#: cui/inc/strings.hrc:401
msgctxt "aboutdialog|locale"
@@ -1777,22 +1777,22 @@ msgstr "Locale: $LOCALE"
#: cui/inc/strings.hrc:402
msgctxt "aboutdialog|uilocale"
msgid "UI-Language: $LOCALE"
-msgstr ""
+msgstr "Iaith Rhyngwyneb: $LOCALE"
#: cui/inc/strings.hrc:403
msgctxt "aboutdialog|releasenotes"
msgid "~Release Notes"
-msgstr ""
+msgstr "~Nodiadau Rhyddhau"
#: cui/inc/strings.hrc:404
msgctxt "aboutdialog|website"
msgid "~Website"
-msgstr ""
+msgstr "~Gwefan"
#: cui/inc/strings.hrc:405
msgctxt "aboutdialog|credits"
msgid "Cre~dits"
-msgstr ""
+msgstr "_Diolchiadau"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Cymorth"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Defnyddio deialogau %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Deialogau Agor/Cadw"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Defnyddio d_eialogau %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Deialogau Argraffu"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Argraffu yn gosod statws \"dogfen wedi newid\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Statws Dogfen"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Dehongli fel blynyddoedd rhwng "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "a "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Blwyddyn (Dau Ddigid)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Casglu data defnydd a'i anfon at y Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Helpwch wella %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Llwytho %PRODUCTNAME wrth gychwyn y system"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Galluogi Cychwyn Cyflym"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Cychwyn Cyflym %PRODUCTNAME"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/cy/dbaccess/messages.po b/source/cy/dbaccess/messages.po
index b37549edcfe..058ec3114bb 100644
--- a/source/cy/dbaccess/messages.po
+++ b/source/cy/dbaccess/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-09 12:45+0000\n"
+"PO-Revision-Date: 2019-07-20 10:24+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: 1562676328.000000\n"
+"X-POOTLE-MTIME: 1563618274.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -3234,7 +3234,7 @@ msgstr "_Hwyrach"
#: dbaccess/uiconfig/ui/migrwarndlg.ui:61
msgctxt "migrationwarndialog|link"
msgid "Click for important information about migration."
-msgstr ""
+msgstr "Cliciwch am wybodaeth bwysig am fudo."
#: dbaccess/uiconfig/ui/mysqlnativepage.ui:47
msgctxt "mysqlnativepage|connectionheader"
diff --git a/source/cy/filter/messages.po b/source/cy/filter/messages.po
index e7c1d71cac7..d692885a1a8 100644
--- a/source/cy/filter/messages.po
+++ b/source/cy/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-04-09 09:06+0000\n"
+"PO-Revision-Date: 2019-07-20 10:30+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: 1554800802.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563618601.000000\n"
#: filter/inc/strings.hrc:25
msgctxt "STR_UNKNOWN_APPLICATION"
@@ -518,7 +518,7 @@ msgstr "Allforio dim ond tudalennau _nodiadau"
#: filter/uiconfig/ui/pdfgeneralpage.ui:710
msgctxt "pdfgeneralpage|pdfa"
msgid "Archive (P_DF/A, ISO 19005)"
-msgstr ""
+msgstr "Archif (P_DF/A, ISO 19005)"
#: filter/uiconfig/ui/pdfgeneralpage.ui:714
msgctxt "pdfgeneralpage|pdfa|tooltip_text"
@@ -528,12 +528,12 @@ msgstr "Mae'n creu ffeil PDF sy'n cyd-fynd ag ISO 19005-1, sy'n ddelfrydol ar gy
#: filter/uiconfig/ui/pdfgeneralpage.ui:732
msgctxt "pdfgeneralpage|pdfa"
msgid "PDF/A-2b"
-msgstr ""
+msgstr "PDF/A-2b"
#: filter/uiconfig/ui/pdfgeneralpage.ui:746
msgctxt "pdfgeneralpage|pdfa"
msgid "PDF/A-1b"
-msgstr ""
+msgstr "PDF/A-1b"
#: filter/uiconfig/ui/pdfgeneralpage.ui:779
msgctxt "pdfgeneralpage|label4"
diff --git a/source/cy/filter/source/config/fragments/filters.po b/source/cy/filter/source/config/fragments/filters.po
index b6ea04e0dbc..0d6f7760cae 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: 2019-06-03 17:45+0200\n"
-"PO-Revision-Date: 2019-01-16 10:25+0000\n"
+"PO-Revision-Date: 2019-07-20 10:27+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: 1547634331.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563618450.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–365"
-msgstr ""
+msgstr "Word 2007–365 "
#: MS_Word_2007_XML_Template.xcu
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–365 Template"
-msgstr ""
+msgstr "Templed Word 2007–365"
#: MS_Word_2007_XML_VBA.xcu
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–365 VBA"
-msgstr ""
+msgstr "VBA Word 2007–365"
#: MS_Word_95.xcu
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–365 (macro-enabled)"
-msgstr ""
+msgstr "Excel 2007–365 (galluogwyd y macro)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
@@ -1301,7 +1301,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–365"
-msgstr ""
+msgstr "Excel 2007–365 "
#: calc_MS_Excel_2007_XML_Template.xcu
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–365 Template"
-msgstr ""
+msgstr "Templed Excel 2007–365"
#: calc_OOXML.xcu
msgctxt ""
@@ -1589,7 +1589,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365"
-msgstr ""
+msgstr "PowerPoint 2007–365"
#: impress_MS_PowerPoint_2007_XML_AutoPlay.xcu
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365 AutoPlay"
-msgstr ""
+msgstr "Awto Chwarae PowerPoint 2007–365"
#: impress_MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
@@ -1607,7 +1607,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365 Template"
-msgstr ""
+msgstr "Templed PowerPoint 2007–365"
#: impress_MS_PowerPoint_2007_XML_VBA.xcu
msgctxt ""
@@ -1616,7 +1616,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365 VBA"
-msgstr ""
+msgstr "VBA PowerPoint 2007–365"
#: impress_OOXML.xcu
msgctxt ""
diff --git a/source/cy/filter/source/config/fragments/types.po b/source/cy/filter/source/config/fragments/types.po
index 030d1a59b17..eb1f9a34c29 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: 2019-06-03 17:45+0200\n"
-"PO-Revision-Date: 2018-06-05 09:51+0000\n"
+"PO-Revision-Date: 2019-07-20 10:29+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: 1528192280.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563618559.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007–365 VBA XML"
-msgstr ""
+msgstr "Microsoft Excel 2007-365 VBA XML"
#: MS_Excel_2007_XML.xcu
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–365"
-msgstr ""
+msgstr "Excel 2007–365"
#: MS_Excel_2007_XML_Template.xcu
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–365 Template"
-msgstr ""
+msgstr "Templed Excel 2007–365"
#: MS_PowerPoint_2007_XML.xcu
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365"
-msgstr ""
+msgstr "PowerPoint 2007–365"
#: MS_PowerPoint_2007_XML_AutoPlay.xcu
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365"
-msgstr ""
+msgstr "PowerPoint 2007–365"
#: MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365 Template"
-msgstr ""
+msgstr "Templed PowerPoint 2007–365"
#: MS_PowerPoint_2007_XML_VBA.xcu
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365 VBA"
-msgstr ""
+msgstr "VBA PowerPoint 2007–365"
#: StarBase.xcu
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–365"
-msgstr ""
+msgstr "Word 2007–365"
#: writer_MS_Word_2007_XML_Template.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–365 Template"
-msgstr ""
+msgstr "Templed Word 2007–365"
#: writer_MS_Word_2007_XML_VBA.xcu
msgctxt ""
@@ -320,7 +320,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–365 VBA"
-msgstr ""
+msgstr "VBA Word 2007–365"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 53bd65ae821..9f8711f1c8a 100644
--- a/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-02-06 15:46+0000\n"
+"PO-Revision-Date: 2019-07-20 14:00+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: 1549467991.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563631225.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"OOO_CONTROL_7\n"
"LngText.text"
msgid "{&DialogDefaultBold}Change Current Destination Folder"
-msgstr ""
+msgstr "{&DialogDefaultBold}Newid Ffolder Cyrchfan Presennol"
#: Control.ulf
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"OOO_CONTROL_27\n"
"LngText.text"
msgid "{&DialogDefaultBold}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogDefaultBold}Croeso i Ddewin Gosod [ProductName]"
#: Control.ulf
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"OOO_CONTROL_36\n"
"LngText.text"
msgid "{\\DialogDefault}{80}"
-msgstr ""
+msgstr "{\\DialogDefault}{80}"
#: Control.ulf
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"OOO_CONTROL_40\n"
"LngText.text"
msgid "{&DialogDefaultBold}User Information"
-msgstr ""
+msgstr "{&DialogDefaultBold}Manylion y Defnyddiwr"
#: Control.ulf
msgctxt ""
@@ -1230,7 +1230,7 @@ msgctxt ""
"OOO_CONTROL_41\n"
"LngText.text"
msgid "{\\DialogDefault}{50}"
-msgstr ""
+msgstr "{\\DialogDefault}{50}"
#: Control.ulf
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"OOO_CONTROL_54\n"
"LngText.text"
msgid "{&DialogDefaultBold}Custom Setup"
-msgstr ""
+msgstr "{&DialogDefaultBold}Gosodiad Cyfaddas"
#: Control.ulf
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"OOO_CONTROL_65\n"
"LngText.text"
msgid "{&DialogDefaultBold}Custom Setup Tips"
-msgstr ""
+msgstr "{&DialogDefaultBold}Awgrymiadau Gosodiad Cyfaddas"
#: Control.ulf
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"OOO_CONTROL_90\n"
"LngText.text"
msgid "{&DialogDefaultBold}Destination Folder"
-msgstr ""
+msgstr "{&DialogDefaultBold}Newid Ffolder Cyrchfan"
#: Control.ulf
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"OOO_CONTROL_98\n"
"LngText.text"
msgid "{&DialogDefaultBold}Disk Space Requirements"
-msgstr ""
+msgstr "{&DialogDefaultBold}Anghenion Lle ar Ddisg"
#: Control.ulf
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"OOO_CONTROL_105\n"
"LngText.text"
msgid "{&DialogDefaultBold}Files in Use"
-msgstr ""
+msgstr "{&DialogDefaultBold}Ffeiliau'n Cael eu Defnyddio"
#: Control.ulf
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"OOO_CONTROL_115\n"
"LngText.text"
msgid "{&DialogDefaultBold}Change Current Destination Folder"
-msgstr ""
+msgstr "{&DialogDefaultBold}Newid Ffolder Cyrchfan Presennol"
#: Control.ulf
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"OOO_CONTROL_126\n"
"LngText.text"
msgid "{&DialogHeading}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogHeading}Croeso i Ddewin Gosod [ProductName]"
#: Control.ulf
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"OOO_CONTROL_133\n"
"LngText.text"
msgid "{&DialogDefaultBold}License Agreement"
-msgstr ""
+msgstr "{&DialogDefaultBold}Cytundeb Trwyddedu"
#: Control.ulf
msgctxt ""
@@ -1766,7 +1766,7 @@ msgctxt ""
"OOO_CONTROL_140\n"
"LngText.text"
msgid "{&DialogDefaultBold}Program Maintenance"
-msgstr ""
+msgstr "{&DialogDefaultBold}Cynnal y Rhaglen"
#: Control.ulf
msgctxt ""
@@ -1830,7 +1830,7 @@ msgctxt ""
"OOO_CONTROL_149\n"
"LngText.text"
msgid "{&DialogDefaultBold}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogDefaultBold}Croeso i Ddewin Gosod [ProductName]"
#: Control.ulf
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"OOO_CONTROL_155\n"
"LngText.text"
msgid "{&DialogDefaultBold}Out of Disk Space"
-msgstr ""
+msgstr "{&DialogDefaultBold}Dim Lle ar Ddisg ar Ôl"
#: Control.ulf
msgctxt ""
@@ -1910,7 +1910,7 @@ msgctxt ""
"OOO_CONTROL_161\n"
"LngText.text"
msgid "{&DialogHeading}Welcome to the Patch for [ProductName]"
-msgstr ""
+msgstr "{&DialogHeading}Croeso i Ddewin Gosod [ProductName]"
#: Control.ulf
msgctxt ""
@@ -1966,7 +1966,7 @@ msgctxt ""
"OOO_CONTROL_170\n"
"LngText.text"
msgid "{&DialogDefaultBold}Ready to Modify the Program"
-msgstr ""
+msgstr "{&DialogDefaultBold}Yn Barod i Newid y Rhaglen"
#: Control.ulf
msgctxt ""
@@ -1974,7 +1974,7 @@ msgctxt ""
"OOO_CONTROL_171\n"
"LngText.text"
msgid "{&DialogDefaultBold}Ready to Repair the Program"
-msgstr ""
+msgstr "{&DialogDefaultBold}Yn Barod i Drwsio'r Rhaglen"
#: Control.ulf
msgctxt ""
@@ -1982,7 +1982,7 @@ msgctxt ""
"OOO_CONTROL_172\n"
"LngText.text"
msgid "{&DialogDefaultBold}Ready to Install the Program"
-msgstr ""
+msgstr "{&DialogDefaultBold}Yn Barod i Osod y Rhaglen"
#: Control.ulf
msgctxt ""
@@ -2038,7 +2038,7 @@ msgctxt ""
"OOO_CONTROL_181\n"
"LngText.text"
msgid "{&DialogDefaultBold}Remove the Program"
-msgstr ""
+msgstr "{&DialogDefaultBold}Tynnu'r Rhaglen"
#: Control.ulf
msgctxt ""
@@ -2110,7 +2110,7 @@ msgctxt ""
"OOO_CONTROL_190\n"
"LngText.text"
msgid "{&DialogHeading}Installation Wizard Completed"
-msgstr ""
+msgstr "{&DialogHeading}Dewin Gosod wedi ei Gwblhau"
#: Control.ulf
msgctxt ""
@@ -2150,7 +2150,7 @@ msgctxt ""
"OOO_CONTROL_198\n"
"LngText.text"
msgid "{&DialogHeading}Installation Wizard Completed"
-msgstr ""
+msgstr "{&DialogHeading}Dewin Gosod wedi ei Gwblhau"
#: Control.ulf
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"OOO_CONTROL_217\n"
"LngText.text"
msgid "{&DialogHeading}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogHeading}Croeso i Ddewin Gosod [ProductName]"
#: Control.ulf
msgctxt ""
@@ -2334,7 +2334,7 @@ msgctxt ""
"OOO_CONTROL_226\n"
"LngText.text"
msgid "{&DialogHeading}Installation Wizard Completed"
-msgstr ""
+msgstr "{&DialogHeading}Dewin Gosod wedi ei Gwblhau"
#: Control.ulf
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"OOO_CONTROL_238\n"
"LngText.text"
msgid "{&DialogDefaultBold}Installing [ProductName]"
-msgstr ""
+msgstr "{&DialogDefaultBold}Gosod [ProductName]"
#: Control.ulf
msgctxt ""
@@ -2414,7 +2414,7 @@ msgctxt ""
"OOO_CONTROL_239\n"
"LngText.text"
msgid "{&DialogDefaultBold}Uninstalling [ProductName]"
-msgstr ""
+msgstr "{&DialogDefaultBold}Dadosod [ProductName]"
#: Control.ulf
msgctxt ""
@@ -2494,7 +2494,7 @@ msgctxt ""
"OOO_CONTROL_250\n"
"LngText.text"
msgid "{&DialogHeading}Resuming the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogHeading}Ailddechrau Dewin Gosod [ProductName]"
#: Control.ulf
msgctxt ""
@@ -2550,7 +2550,7 @@ msgctxt ""
"OOO_CONTROL_259\n"
"LngText.text"
msgid "{&DialogDefaultBold}Setup Type"
-msgstr ""
+msgstr "{&DialogDefaultBold}Math o Osodiad"
#: Control.ulf
msgctxt ""
@@ -2646,7 +2646,7 @@ msgctxt ""
"OOO_CONTROL_278\n"
"LngText.text"
msgid "{&DialogDefaultBold}File Type"
-msgstr ""
+msgstr "{&DialogDefaultBold}Math o Ffeiliau"
#: Control.ulf
msgctxt ""
@@ -2782,7 +2782,7 @@ msgctxt ""
"OOO_CONTROL_324\n"
"LngText.text"
msgid "{&DialogDefaultBold}Files in Use"
-msgstr ""
+msgstr "{&DialogDefaultBold}Ffeiliau'n Cael eu Defnyddio"
#: Control.ulf
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 5bf4d207795..48a8649440e 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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-06-12 08:52+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-31 08:16+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: 1560329571.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564560975.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -18871,7 +18871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Arddulliau Tabl"
#: GenericCommands.xcu
msgctxt ""
@@ -21054,6 +21054,24 @@ msgstr "Rhoi i LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr "Be sy'n Newydd"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr "Agorwch nodiadau ryddhau y fersiwn sydd wedi ei osod yn y porwr rhagosodedig."
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
@@ -23407,7 +23425,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regenerate Diagram"
-msgstr ""
+msgstr "Ailgynhyrchu Diagram"
#: ImpressWindowState.xcu
msgctxt ""
@@ -25657,7 +25675,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr ""
+msgstr "Tabedig Cryno"
#: ToolbarMode.xcu
msgctxt ""
@@ -25711,7 +25729,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr ""
+msgstr "Tabedig Cryno"
#: ToolbarMode.xcu
msgctxt ""
@@ -25738,7 +25756,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual Single"
-msgstr ""
+msgstr "Cyd-destun Sengl"
#: ToolbarMode.xcu
msgctxt ""
@@ -28771,7 +28789,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Dewis Brawddeg"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/cy/sc/messages.po b/source/cy/sc/messages.po
index c4745e7e75e..2259fe66bca 100644
--- a/source/cy/sc/messages.po
+++ b/source/cy/sc/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-09 12:50+0000\n"
+"PO-Revision-Date: 2019-07-20 14:36+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: 1562676603.000000\n"
+"X-POOTLE-MTIME: 1563633368.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -15220,7 +15220,7 @@ msgstr "(mynediad cyfyngedig)"
#: sc/inc/strings.hrc:373
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
-msgstr ""
+msgstr "Dim ystodau wedi'u henwi yn y dogfennau hyn"
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
@@ -15776,12 +15776,12 @@ msgstr "Rheoli Fformatio Amodol"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
msgid "Range"
-msgstr ""
+msgstr "Ystod"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
msgid "First Condition"
-msgstr ""
+msgstr "Cyflwr Cyntaf"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
@@ -16346,22 +16346,22 @@ msgstr "Mae newidiadau sy'n gwrthdaro yn y daenlen ranedig hon. Rhaid datrys gwr
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:147
msgctxt "conflictsdialog|conflict"
msgid "Conflict"
-msgstr ""
+msgstr "Gwrthdaro"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:161
msgctxt "conflictsdialog|author"
msgid "Author"
-msgstr ""
+msgstr "Awdur"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:175
msgctxt "conflictsdialog|date"
msgid "Date"
-msgstr ""
+msgstr "Dyddiad"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:189
msgctxt "conflictsdialog|changes-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Newidiadau"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:207
msgctxt "conflictsdialog|keepmine"
@@ -18751,7 +18751,7 @@ msgstr "Canlyniad i:"
#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
msgctxt "movingaveragedialog|trimrange-check"
msgid "Trim input range to actual data content"
-msgstr ""
+msgstr "Tocio ystodau mewnbwn i gynnwys data gwirioneddol"
#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
@@ -19038,7 +19038,7 @@ msgstr "~Lluniadu"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13435
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Trosi"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13735
msgctxt "CalcNotebookbar|frame:MenuDraw"
@@ -19098,7 +19098,7 @@ msgstr "_Ffeil"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:2897
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Ffeil"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:2969
msgctxt "notebookbar_compact|HomeMenuButton"
@@ -19114,7 +19114,7 @@ msgstr "Pennu borderi'r celloedd hyn."
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4513
msgctxt "notebookbar_compact|CalcLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Cartref"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4565
msgctxt "notebookbar_compact|InsertMenuButton"
@@ -19129,7 +19129,7 @@ msgstr "_Maes"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5590
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Mewnosod"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6225
msgctxt "notebookbar_compact|PageMenuButton"
@@ -19139,7 +19139,7 @@ msgstr "_Tudalen"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6277
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Cynllun"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6323
msgctxt "notebookbar_compact|DataMenuButton"
@@ -19154,7 +19154,7 @@ msgstr "_Ystadegau"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7253
msgctxt "notebookbar_compact|DataLabel"
msgid "~Data"
-msgstr ""
+msgstr "~Data"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7970
msgctxt "notebookbar_compact|ReviewMenuButton"
@@ -19164,7 +19164,7 @@ msgstr "_Adolygu"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8003
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Adolygu"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8685
msgctxt "notebookbar_compact|ViewMenuButton"
@@ -19174,17 +19174,17 @@ msgstr "_Golwg"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8737
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Golwg"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10146
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
-msgstr ""
+msgstr "_Delwedd"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10179
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "~Delwedd"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11592
msgctxt "notebookbar_compact|DrawMenuButton"
@@ -19194,7 +19194,7 @@ msgstr "_Lluniadu"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11644
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Lluniadu"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12622
msgctxt "notebookbar_compact|ObjectMenuButton"
@@ -19204,37 +19204,37 @@ msgstr "Gwrthrych"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12674
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Gwrthrych"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13394
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "_Cyfrwng"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13447
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Cyfrwng"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:14021
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
-msgstr ""
+msgstr "Argraffu"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:14073
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "~Argraffu"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15428
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "-Ffurflen"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15480
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "~Ffurflen"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15530
msgctxt "notebookbar_compact|ToolsMenuButton"
@@ -19244,7 +19244,7 @@ msgstr "_Offer"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16568
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Offer"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3282
msgctxt "notebookbar_groupedbar_compact|MenuButton"
@@ -19370,7 +19370,7 @@ msgstr "_Grid"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7476
msgctxt "notebookbar_groupedbar_compact|ImageButton"
msgid "Im_age"
-msgstr ""
+msgstr "_Delwedd"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8148
msgctxt "notebookbar_groupedbar_compact|ColorButton"
@@ -19535,7 +19535,7 @@ msgstr "_Golwg"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5762
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "Im_age"
-msgstr ""
+msgstr "_Delwedd"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6114
msgctxt "notebookbar_groupedbar_full|arrange"
@@ -21580,12 +21580,12 @@ msgstr "Canlyniadau Chwilio"
#: sc/uiconfig/scalc/ui/searchresults.ui:36
msgctxt "searchresults|ShowBox"
msgid "_Show this dialog"
-msgstr ""
+msgstr "Dangos y _ddeialog hon"
#: sc/uiconfig/scalc/ui/searchresults.ui:40
msgctxt "searchresults|ShowBox"
msgid "Enable the dialog again at Tools > Options > Calc > View"
-msgstr ""
+msgstr "Galluogi'r ddeialog eto yn Offer > Dewisiadau . Calc > Golwg"
#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
@@ -23470,7 +23470,7 @@ msgstr "_Symbolau amlinell"
#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
msgctxt "tpviewpage|summary"
msgid "Summary o_n search"
-msgstr ""
+msgstr "_Crynodeb o'r chwilio"
#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
diff --git a/source/cy/scp2/source/ooo.po b/source/cy/scp2/source/ooo.po
index aca7bd68382..e9e312a35bd 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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-04-09 09:41+0000\n"
+"PO-Revision-Date: 2019-07-21 09:49+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: 1554802919.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563702575.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_FI_NAME_SAFEMODE\n"
"LngText.text"
msgid "%PRODUCTNAME (Safe Mode)"
-msgstr ""
+msgstr "%PRODUCTNAME (Modd Diogel)"
#: folderitem_ooo.ulf
msgctxt ""
diff --git a/source/cy/scp2/source/winexplorerext.po b/source/cy/scp2/source/winexplorerext.po
index 844e072849c..6184711243d 100644
--- a/source/cy/scp2/source/winexplorerext.po
+++ b/source/cy/scp2/source/winexplorerext.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2013-05-24 07:08+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-21 09:50+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
"MIME-Version: 1.0\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: 1369379294.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563702605.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -30,4 +30,4 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
-msgstr ""
+msgstr "Mae'n galluogi Microsoft Windows Explorer i ddangos gwybodaeth am ddogfennau %PRODUCTNAME, megis rhagolwg lluniau bach a chwilio testun llawn."
diff --git a/source/cy/sd/messages.po b/source/cy/sd/messages.po
index 971d2b70803..87c634038de 100644
--- a/source/cy/sd/messages.po
+++ b/source/cy/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-04-09 09:44+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-21 09:58+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: 1554803055.000000\n"
+"X-POOTLE-MTIME: 1563703109.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -2586,7 +2586,7 @@ msgstr "Cliciwch i agor dolen:"
#: sd/inc/strings.hrc:492
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
-msgstr ""
+msgstr "Cysylltiad"
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
@@ -3086,12 +3086,12 @@ msgstr "~Mewnosod"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:5737
msgctxt "drawnotebookbar|PageMenuButton"
msgid "_Layout"
-msgstr ""
+msgstr "_Cynllun"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:6586
msgctxt "drawnotebookbar|PageLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Cynllun"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:6616
msgctxt "drawnotebookbar|ReviewMenuButton"
@@ -3183,7 +3183,7 @@ msgstr "~Cyfrwng"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:15410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "_Ffurflen"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:16299
msgctxt "DrawNotebookbar|FormLabel"
@@ -3193,22 +3193,22 @@ msgstr "~Ffurflen"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:16330
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
-msgstr ""
+msgstr "3_d"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17222
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
-msgstr ""
+msgstr "3~d"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17253
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
-msgstr ""
+msgstr "_Meistr"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17897
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
-msgstr ""
+msgstr "~Prif"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17930
msgctxt "drawnotebookbar|ToolsMenuButton"
@@ -3223,167 +3223,167 @@ msgstr "~Offer"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2317
msgctxt "notebookbar_draw_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Ffeil"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2950
msgctxt "notebookbar_draw_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Ffeil"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2998
msgctxt "notebookbar_draw_compact|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Cartref"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4440
msgctxt "notebookbar_draw_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Cartref"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5011
msgctxt "notebookbar_draw_compact|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "_Maes"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5568
msgctxt "notebookbar_draw_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Mewnosod"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5619
msgctxt "notebookbar_draw_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Mewnosod"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6412
msgctxt "notebookbar_draw_compact|LayoutMenuButton"
msgid "Layout"
-msgstr ""
+msgstr "Cynllun"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6464
msgctxt "notebookbar_draw_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Cynllun"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7010
msgctxt "notebookbar_draw_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Adolygu"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7043
msgctxt "notebookbar_draw_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Adolygu"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7754
msgctxt "notebookbar_draw_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Golwg"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7806
msgctxt "notebookbar_draw_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "Go~lwg"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7928
msgctxt "notebookbar_draw_compact|TextMenuButton"
msgid "T_ext"
-msgstr ""
+msgstr "_Testun"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9394
msgctxt "notebookbar_draw_compact|ReferencesLabel"
msgid "T~ext"
-msgstr ""
+msgstr "_Testun"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9524
msgctxt "notebookbar_draw_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_abl"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11273
msgctxt "notebookbar_draw_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tabl"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12700
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
-msgstr ""
+msgstr "Delwedd"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12752
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "~Delwedd"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14580
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Lluniadu"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14635
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Lluniadu"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15664
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
-msgstr ""
+msgstr "Gwrthrych"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15720
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Gwrthrych"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16898
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "_Cyfrwng"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16952
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Cyfrwng"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18230
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "-Ffurflen"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18285
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "~Ffurflen"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18940
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
-msgstr ""
+msgstr "~Prif"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18992
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
-msgstr ""
+msgstr "~Prif"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19982
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
-msgstr ""
+msgstr "3_d"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20037
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
-msgstr ""
+msgstr "3~d"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20087
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Offer"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:21125
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Offer"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2359
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
@@ -4818,12 +4818,12 @@ msgstr "~Mewnosod"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6226
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
-msgstr ""
+msgstr "_Cynllun"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7075
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Cynllun"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7103
msgctxt "impressnotebookbar|SlideShowMenuButton"
@@ -4915,7 +4915,7 @@ msgstr "~Cyfrwng"
#: sd/uiconfig/simpress/ui/notebookbar.ui:15171
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "-Ffurflen"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16060
msgctxt "ImpressNotebookbar|FormLabel"
@@ -4925,32 +4925,32 @@ msgstr "~Ffurflen"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16091
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
-msgstr ""
+msgstr "~Prif"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16957
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
-msgstr ""
+msgstr "~Prif"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16988
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Golwg"
#: sd/uiconfig/simpress/ui/notebookbar.ui:17870
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
-msgstr ""
+msgstr "A~mlinell"
#: sd/uiconfig/simpress/ui/notebookbar.ui:17901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
-msgstr ""
+msgstr "3_d"
#: sd/uiconfig/simpress/ui/notebookbar.ui:18793
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
-msgstr ""
+msgstr "3~d"
#: sd/uiconfig/simpress/ui/notebookbar.ui:18824
msgctxt "impressnotebookbar|ToolsMenuButton"
@@ -4965,167 +4965,167 @@ msgstr "~Offer"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:2611
msgctxt "notebookbar_impress_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Ffeil"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:3244
msgctxt "notebookbar_impress_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Ffeil"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:3292
msgctxt "notebookbar_impress_compact|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Cartref"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:4710
msgctxt "notebookbar_impress_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Cartref"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5284
msgctxt "notebookbar_impress_compact|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "_Maes"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5841
msgctxt "notebookbar_impress_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Mewnosod"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5892
msgctxt "notebookbar_impress_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Mewnosod"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6696
msgctxt "notebookbar_impress_compact|LayoutMenuButton"
msgid "Layout"
-msgstr ""
+msgstr "Cynllun"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6748
msgctxt "notebookbar_impress_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Cynllun"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7297
msgctxt "notebookbar_impress_compact|LayoutMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "_Sioe Sleidiau"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7349
msgctxt "notebookbar_impress_compact|LayoutLabel"
msgid "~Slide Show"
-msgstr ""
+msgstr "~Sioe Sleidiau"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7895
msgctxt "notebookbar_impress_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Adolygu"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7928
msgctxt "notebookbar_impress_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Adolygu"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8779
msgctxt "notebookbar_impress_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Golwg"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8831
msgctxt "notebookbar_impress_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "Go~lwg"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8955
msgctxt "notebookbar_impress_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_abl"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10701
msgctxt "notebookbar_impress_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tabl"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10753
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
-msgstr ""
+msgstr "Delwedd"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:12181
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "~Delwedd"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14012
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Lluniadu"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14067
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Lluniadu"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15095
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
-msgstr ""
+msgstr "Gwrthrych"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15151
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Gwrthrych"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16327
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "_Cyfrwng"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16381
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Cyfrwng"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17659
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "-Ffurflen"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17714
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "~Ffurflen"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18483
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
-msgstr ""
+msgstr "~Prif"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18535
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
-msgstr ""
+msgstr "~Prif"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19523
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
-msgstr ""
+msgstr "3_d"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19578
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
-msgstr ""
+msgstr "3~d"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19628
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Offer"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20666
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Offer"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2269
msgctxt "impress_notebookbar_groupedbar_compact|MenubarAction"
@@ -5345,9 +5345,9 @@ msgstr "_Adolygu"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Trefnu"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Golygu"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Grid"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Graffig"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Lliw"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Cyfrwng"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_Sioe Sleidiau"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "_Ffrâm"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Golwg"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "_Prif Dudalen"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Mewnosod"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "_Lluniadu"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Golwg"
diff --git a/source/cy/sfx2/messages.po b/source/cy/sfx2/messages.po
index 646524c16c6..5ac12c0e61d 100644
--- a/source/cy/sfx2/messages.po
+++ b/source/cy/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-06-03 17:46+0200\n"
-"PO-Revision-Date: 2019-04-09 10:55+0000\n"
+"PO-Revision-Date: 2019-07-21 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: 1554807300.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563703269.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -891,7 +891,7 @@ msgstr "~Mewnosod"
#: include/sfx2/strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL_IMAGES"
msgid "<All images>"
-msgstr ""
+msgstr "<Pob delwedd>"
#: include/sfx2/strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
@@ -1206,22 +1206,22 @@ msgstr "Ymunwch"
#: include/sfx2/strings.hrc:248
msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr ""
+msgstr "Mae eich rhoddion yn cynnal ein cymuned byd eang."
#: include/sfx2/strings.hrc:249
msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr ""
+msgstr "Cyfrannu"
#: include/sfx2/strings.hrc:250
msgctxt "STR_WHATSNEW"
msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
-msgstr ""
+msgstr "Rydych yn rhedeg %PRODUCTVERSION o %PRODUCTNAME am y tro cyntaf. Hoffech chi wybod beth sy'n newydd?"
#: include/sfx2/strings.hrc:251
msgctxt "STR_WHATSNEW_BUTTON"
msgid "Release Notes"
-msgstr ""
+msgstr "Nodiadau Rhyddhau"
#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
@@ -2296,22 +2296,22 @@ msgstr ""
#: sfx2/uiconfig/ui/linefragment.ui:55
msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
-msgstr ""
+msgstr "Tynnu'r Briodwedd"
#: sfx2/uiconfig/ui/linefragment.ui:144
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
-msgstr ""
+msgstr "..."
#: sfx2/uiconfig/ui/linefragment.ui:180
msgctxt "linefragment|yes"
msgid "Yes"
-msgstr ""
+msgstr "Iawn"
#: sfx2/uiconfig/ui/linefragment.ui:196
msgctxt "linefragment|no"
msgid "No"
-msgstr ""
+msgstr "Na"
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
diff --git a/source/cy/shell/messages.po b/source/cy/shell/messages.po
index e029667bcc9..be7fbc17ce8 100644
--- a/source/cy/shell/messages.po
+++ b/source/cy/shell/messages.po
@@ -4,19 +4,22 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2019-07-21 10:03+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: cy\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==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563703393.000000\n"
#: shell/inc/spsupp/spsuppStrings.hrc:15
msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
msgid "Open Document"
-msgstr ""
+msgstr "Agor Dogfen"
#: shell/inc/spsupp/spsuppStrings.hrc:16
msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
@@ -27,18 +30,23 @@ msgid ""
"\n"
"Do you want to open it to view or to edit?"
msgstr ""
+"Rydych yn agor dogfen\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Hoffech chi ei hagor er mwyn gweld y cynnwys neu ei golygu?"
#: shell/inc/spsupp/spsuppStrings.hrc:17
msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
msgid "View"
-msgstr ""
+msgstr "Golwg"
#: shell/inc/spsupp/spsuppStrings.hrc:18
msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
msgid "Edit"
-msgstr ""
+msgstr "Golygu"
#: shell/inc/spsupp/spsuppStrings.hrc:19
msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
msgid "Cancel"
-msgstr ""
+msgstr "Diddymu"
diff --git a/source/cy/starmath/messages.po b/source/cy/starmath/messages.po
index 1e4b7f77b1d..bd61db1d9f0 100644
--- a/source/cy/starmath/messages.po
+++ b/source/cy/starmath/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2018-05-08 13:29+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-20 14:39+0000\n"
+"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
"MIME-Version: 1.0\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: 1525786163.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563633588.000000\n"
#: starmath/inc/smmod.hrc:16
msgctxt "RID_UI_SYMBOLSET_NAMES"
@@ -1074,7 +1074,7 @@ msgstr "Saeth Fector"
#: starmath/inc/strings.hrc:168
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
-msgstr ""
+msgstr "Tryfer"
#: starmath/inc/strings.hrc:169
msgctxt "RID_UNDERLINEX_HELP"
@@ -1534,7 +1534,7 @@ msgstr "Saeth Fector Fawr"
#: starmath/inc/strings.hrc:260
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
-msgstr ""
+msgstr "Tryfer Mawr"
#: starmath/inc/strings.hrc:261
msgctxt "RID_HBAR_HELP"
@@ -1664,27 +1664,27 @@ msgstr "Esiamplau"
#: starmath/inc/strings.hrc:287
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
-msgstr ""
+msgstr "Cylchedd"
#: starmath/inc/strings.hrc:288
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
-msgstr ""
+msgstr "Cyfatebedd màs-egni"
#: starmath/inc/strings.hrc:289
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
-msgstr ""
+msgstr "Theorem pythagoraidd"
#: starmath/inc/strings.hrc:290
msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
msgid "A simple series"
-msgstr ""
+msgstr "Cyfres syml"
#: starmath/inc/strings.hrc:291
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
-msgstr ""
+msgstr "Dosbarthiad Gaussaidd"
#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTREGULAR"
@@ -2009,7 +2009,7 @@ msgstr "Elfennau"
#: starmath/uiconfig/smath/ui/dockingelements.ui:27
msgctxt "dockingelements|ElementCategories|tooltip_text"
msgid "Element categories"
-msgstr ""
+msgstr "Categorïau elfennau"
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
diff --git a/source/cy/svtools/messages.po b/source/cy/svtools/messages.po
index 9401539c416..f1081b24418 100644
--- a/source/cy/svtools/messages.po
+++ b/source/cy/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-04-09 10:34+0000\n"
+"PO-Revision-Date: 2019-07-20 14:34+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: 1554806051.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563633284.000000\n"
#. To translators: tdf#125447 use no mnemonic in this string
#: include/svtools/strings.hrc:26
@@ -26,7 +26,7 @@ msgstr "Dadwneud: "
#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
msgid "Redo: "
-msgstr ""
+msgstr "Ail-wneud"
#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
@@ -4129,7 +4129,7 @@ msgstr "Iloko"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Saesneg (Zambia)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/cy/svx/messages.po b/source/cy/svx/messages.po
index 0e13c318ec7..5a3d2340c2f 100644
--- a/source/cy/svx/messages.po
+++ b/source/cy/svx/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-04-27 15:08+0000\n"
+"PO-Revision-Date: 2019-07-21 10:08+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: 1556377726.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563703737.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7923,7 +7923,7 @@ msgstr "Chwith i'r dde (fertigol)"
#: include/svx/strings.hrc:1669
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
-msgstr ""
+msgstr "Gwaelod i'r brig, chwith i'r dde (fertigol)"
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
@@ -10517,7 +10517,7 @@ msgstr "Rhif Darn:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Rhan o'r testun:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11340,42 +11340,42 @@ msgstr "Ffynhonnell Golau 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Lliw golau 1"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Lliw golau 2"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Lliw golau 3"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Lliw golau 4"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Lliw golau 5"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Lliw golau 6"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Lliw golau 7"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Lliw golau 8"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -12200,7 +12200,7 @@ msgstr "Golygydd Amlinell"
#: svx/uiconfig/ui/floatingcontour.ui:44
msgctxt "floatingcontour|statuscolor"
msgid "Color"
-msgstr ""
+msgstr "Lliw"
#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
@@ -13373,12 +13373,12 @@ msgstr "Nodyn"
#: svx/uiconfig/ui/redlineviewpage.ui:146
msgctxt "redlineviewpage|calcchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Newidiadau"
#: svx/uiconfig/ui/redlineviewpage.ui:245
msgctxt "redlineviewpage|writerchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Newidiadau"
#: svx/uiconfig/ui/rowsmenu.ui:12
msgctxt "rowsmenu|delete"
@@ -13477,6 +13477,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"Mae %PRODUCTNAME nawr yn rhedeg yn y modd diogel sy'n analluogi eich ffurfweddiad defnyddiwr ac estyniadau, dros dro.\n"
+"\n"
+"Gallwch wneud un neu ragor o newidiadau canlynol i'ch proffil defnyddiwr i adfer %PRODUCTNAME i gyflwr sy'n gweithio."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
diff --git a/source/cy/sw/messages.po b/source/cy/sw/messages.po
index 919b0025bf2..8d6986117b4 100644
--- a/source/cy/sw/messages.po
+++ b/source/cy/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-06-12 08:52+0000\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-21 10:13+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: 1560329571.000000\n"
+"X-POOTLE-MTIME: 1563703995.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1891,7 +1891,7 @@ msgstr "Cuddio Pob ~Sylw gan $1"
#: sw/inc/strings.hrc:290
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
-msgstr ""
+msgstr "Rhifo Penodau"
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
@@ -3120,7 +3120,7 @@ msgstr "Newid teitl gwrthrych $1"
#: sw/inc/strings.hrc:544
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr ""
+msgstr "Newid disgrifiad gwrthrych $1"
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -7314,7 +7314,7 @@ msgstr "Categori"
#: sw/uiconfig/swriter/ui/autotext.ui:475
msgctxt "autotext|example-atkobject"
msgid "Preview"
-msgstr ""
+msgstr "Rhagolwg"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:8
msgctxt "bibliographyentry|BibliographyEntryDialog"
@@ -7684,7 +7684,7 @@ msgstr "Nod"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "_Safonol"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Dewis Eitem: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Golygu"
@@ -9903,7 +9903,7 @@ msgstr "_Adlewyrchu ar dudalennau eilrif"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:698
msgctxt "frmtypepage|followtextflow"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Cadw o fewn ffiniau'r testun"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:721
msgctxt "frmtypepage|label11"
@@ -11443,7 +11443,7 @@ msgstr "Tudalen gyfan"
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:375
msgctxt "mmlayoutpage|example-atkobject"
msgid "Preview"
-msgstr ""
+msgstr "Rhagolwg"
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:402
msgctxt "mmlayoutpage|label1"
@@ -12173,7 +12173,7 @@ msgstr "_Ffeil"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2887
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Ffeil"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2935
msgctxt "notebookbar_compact|HomeMenuButton"
@@ -12183,7 +12183,7 @@ msgstr "_Cartref"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4482
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Cartref"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4535
msgctxt "notebookbar_compact|InsertMenuButton"
@@ -12193,7 +12193,7 @@ msgstr "_Mewnosod"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5628
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Mewnosod"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6426
msgctxt "notebookbar_compact|LayoutMenuButton"
@@ -12203,7 +12203,7 @@ msgstr "Cynllun"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6478
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Cynllun"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6526
msgctxt "notebookbar_compact|ReferencesMenuButton"
@@ -12213,7 +12213,7 @@ msgstr "C_yfeirnodau"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7294
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "~Cyfeiriadau"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8131
msgctxt "notebookbar_compact|ReviewMenuButton"
@@ -12223,7 +12223,7 @@ msgstr "_Adolygu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8164
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Adolygu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8846
msgctxt "notebookbar_compact|ViewMenuButton"
@@ -12233,7 +12233,7 @@ msgstr "_Golwg"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8898
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "Go~lwg"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8946
msgctxt "notebookbar_compact|TableMenuButton"
@@ -12243,17 +12243,17 @@ msgstr "_Tabl"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10298
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tabl"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11698
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Im_age"
-msgstr ""
+msgstr "_Delwedd"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11732
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "~Delwedd"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13160
msgctxt "notebookbar_compact|DrawMenuButton"
@@ -12263,7 +12263,7 @@ msgstr "_Lluniadu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13215
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Lluniadu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14281
msgctxt "notebookbar_compact|ObjectMenuButton"
@@ -12273,7 +12273,7 @@ msgstr "Gwrthrych"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14337
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Gwrthrych"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15102
msgctxt "notebookbar_compact|MediaButton"
@@ -12283,7 +12283,7 @@ msgstr "_Cyfrwng"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Cyfrwng"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15835
msgctxt "notebookbar_compact|PrintPreviewButton"
@@ -12293,17 +12293,17 @@ msgstr "Argraffu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15890
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "~Argraffu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17319
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "-Ffurflen"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17374
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "~Ffurflen"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17424
msgctxt "notebookbar_compact|ToolsMenuButton"
@@ -12313,7 +12313,7 @@ msgstr "_Offer"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18462
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Offer"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2736
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12455,7 +12455,7 @@ msgstr "_Gwrthrych"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9983
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "_Ffrâm"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10353
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12573,7 +12573,7 @@ msgstr "_Golwg"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:16260
msgctxt "notebookbar_groupedbar_full|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "-Ffurflen"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7163
msgctxt "notebookbar_groupedbar_full|TableButton"
@@ -12664,7 +12664,7 @@ msgstr "L_liw"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13811
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Gwrthrych"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14690
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13383,7 +13383,7 @@ msgstr "Estyn gofod geiriau ar linellau gyda thoriad llinell llaw mewn paragraff
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
-msgstr ""
+msgstr "Diogelu ffurflen (nid yw'n diogelu'r ddogfen gyfan. Mewnosodwch adran wedi'i diogelu rhag ysgrifennu, yn lle hynny)"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
diff --git a/source/cy/vcl/messages.po b/source/cy/vcl/messages.po
index 435164f0051..0ec61aeaa1b 100644
--- a/source/cy/vcl/messages.po
+++ b/source/cy/vcl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:23+0200\n"
-"PO-Revision-Date: 2019-04-09 10:43+0000\n"
+"PO-Revision-Date: 2019-07-20 14:34+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: 1554806639.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563633251.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -1500,7 +1500,7 @@ msgstr "Sero Slaes"
#: vcl/uiconfig/ui/aboutbox.ui:73
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
-msgstr ""
+msgstr "Gweld cofnod: $GITHASH"
#: vcl/uiconfig/ui/cupspassworddialog.ui:8
msgctxt "cupspassworddialog|CUPSPasswordDialog"
diff --git a/source/da/cui/messages.po b/source/da/cui/messages.po
index f537911448d..02f49a87c75 100644
--- a/source/da/cui/messages.po
+++ b/source/da/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-10 07:32+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: 1562743938.000000\n"
#: cui/inc/numcategories.hrc:17
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Punktopstilling..."
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Niveau"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Type:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Begynd ved:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Tegn:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Vælg..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Marker billede"
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Bredde:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Højde"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Bevar forhold"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Før:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Efter:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Skilletegn"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Farve:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "_Rel. størrelse:"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Indrykning:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Bredde:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "_Relativ"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Placering"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Justering"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Dias"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Markering"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Anvend på master"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Omfang"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Egenskaber"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Forhåndsvisning"
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hjælp"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Brug %PRODUCTNAME-dialoger"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Åbn/Gem-dialoger"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Brug %PRODUCTNAME-dialoger"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Udskriftsdialoger"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Udskrivning sætter status for \"Dokument ændret\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentstatus"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Fortolk som år mellem "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "og "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Tocifrede årstal"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Data om anvendelse indsamles og sendes til The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Hjælp med at forbedre %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Indlæs %PRODUCTNAME ved systemstart"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Aktiver Hurtigstart i systembakken"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Hurtigstart"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Næste tip"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Vidste du?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Link"
diff --git a/source/da/helpcontent2/source/text/scalc/00.po b/source/da/helpcontent2/source/text/scalc/00.po
index 58e51cd1734..4da05097436 100644
--- a/source/da/helpcontent2/source/text/scalc/00.po
+++ b/source/da/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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-06-18 16:47+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"PO-Revision-Date: 2019-07-21 12:25+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\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: 1560876478.000000\n"
+"X-POOTLE-MTIME: 1563711928.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"par_id3153764\n"
"help.text"
msgid "Choose <emph>Data - More Filters - Standard Filter... - Options</emph> label."
-msgstr "Vælg <emph>Data - Flere Filtre - Standardfilter... - <emph> etiketten <emph>Indstillinger</emph>."
+msgstr "Vælg etiketten <emph>Data - Flere Filtre - Standardfilter... - Indstillinger</emph>."
#: 00000412.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_id3151277\n"
"help.text"
msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab.</variable>"
-msgstr "<variable id=\"dntopi\">Vælg <emph>Data - Subtotaler</emph> og fanen <emph>Indstillinger</variable>"
+msgstr "<variable id=\"dntopi\">Vælg fanen <emph>Data - Subtotaler - Indstillinger</emph></variable>"
#: 00000412.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/00.po b/source/da/helpcontent2/source/text/shared/00.po
index 6ecc04c9676..c2898b2b303 100644
--- a/source/da/helpcontent2/source/text/shared/00.po
+++ b/source/da/helpcontent2/source/text/shared/00.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-07-11 05:26+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2019-07-21 12:20+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\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: 1562822769.000000\n"
+"X-POOTLE-MTIME: 1563711617.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -6038,7 +6038,7 @@ msgctxt ""
"par_id3153792\n"
"help.text"
msgid "<variable id=\"info4\">Choose <emph>File - Properties - Custom Properties</emph> tab.</variable>"
-msgstr "<variable id=\"info4\">Vælg <emph>Filer - Egenskaber</emph> fanebladet <emph>Tilpassede Egenskaber.</variable>"
+msgstr "<variable id=\"info4\">Vælg fanebladet <emph>Filer - Egenskaber - Tilpassede Egenskaber</emph>.</variable>"
#: 00000401.xhp
msgctxt ""
@@ -8206,7 +8206,7 @@ msgctxt ""
"par_id3159411\n"
"help.text"
msgid "<variable id=\"Datenquelle\">In a database file window of type <emph>ODBC</emph> or <emph>Address book</emph>,<br/>choose <emph>Edit - Database - Connection Type</emph>.</variable>"
-msgstr "<variable id=\"Datenquelle\">I et databasevindue af typen <emph>ODBC</emph> eller <emph>Adressebog</emph\"><br/> skal du vælge <emph>Rediger - Database - Forbindelsestype</emph>.</variable>"
+msgstr "<variable id=\"Datenquelle\">I et databasevindue af typen <emph>ODBC</emph> eller <emph>Adressebog</emph><br/> skal du vælge <emph>Rediger - Database - Forbindelsestype</emph>.</variable>"
#: 00000450.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/optionen.po b/source/da/helpcontent2/source/text/shared/optionen.po
index 93a283971f3..9f2c290f28a 100644
--- a/source/da/helpcontent2/source/text/shared/optionen.po
+++ b/source/da/helpcontent2/source/text/shared/optionen.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-07-03 18:11+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2019-07-21 12:28+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\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: 1562177478.000000\n"
+"X-POOTLE-MTIME: 1563712084.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -6654,7 +6654,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 "Indstillinger for automatiske links-opdateringer gemt i dokumenter ignoreres af sikkerhedsmæssige årsager. Link-opdateringer er altid afgrænset af %PRODUCTNAME Sikkerhedsindstillinger i <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Indstillinger </item></caseinline><defaultinline><Item type=\"menuitem\">Funktioner - Indstillinger ... </item></defaultinline></switchinline><item type=\"menuitem\">- %PRODUCTNAME - Sikkerhed </item>."
+msgstr "Indstillinger for automatiske links-opdateringer gemt i dokumenter ignoreres af sikkerhedsmæssige årsager. Link-opdateringer er altid afgrænset af %PRODUCTNAME Sikkerhedsindstillinger i <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Indstillinger </item></caseinline><defaultinline><item type=\"menuitem\">Funktioner - Indstillinger ... </item></defaultinline></switchinline><item type=\"menuitem\">- %PRODUCTNAME - Sikkerhed </item>."
#: 01040900.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 62dfbfcf5b4..83dfaeb3d8b 100644
--- a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-07 18:17+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-21 22:56+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\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: 1562523444.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1563749766.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -21054,6 +21054,24 @@ msgstr "Donér til LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
@@ -29275,7 +29293,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Rows Evenly"
-msgstr "Fordel kolonner jævnt"
+msgstr "Fordel rækker jævnt"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/da/sd/messages.po b/source/da/sd/messages.po
index af0746bbf3c..6e5ff074688 100644
--- a/source/da/sd/messages.po
+++ b/source/da/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-11 05:24+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: 1562822671.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "_Gennemsyn"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Arranger"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Redigér"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Gitter"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Grafik"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Farve"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Medie"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_Præsentation"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "_Ramme"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Vis"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "_Masterside"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Indsæt"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "_Tegne"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Vis"
diff --git a/source/da/sw/messages.po b/source/da/sw/messages.po
index 9220a9d09db..1c6e5b3ab71 100644
--- a/source/da/sw/messages.po
+++ b/source/da/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-07-07 18:22+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: 1562523751.000000\n"
#: sw/inc/app.hrc:29
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Vælg element: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Rediger"
diff --git a/source/de/cui/messages.po b/source/de/cui/messages.po
index 1c6956a2a05..c6efc053616 100644
--- a/source/de/cui/messages.po
+++ b/source/de/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-16 05:01+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-21 05:17+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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563253275.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1563686267.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1803,7 +1803,7 @@ msgstr "Öffnen und speichern Sie auf Servern abgelegte Dateien mit %PRODUCTNAME
#: cui/inc/tipoftheday.hrc:46
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > AutoCorrect > AutoCorrect Options… > Replace provides a list of common substitutions. Take a look and complete with your own replacements."
-msgstr "Extras - AutoKorrektur - AutoKorrektur-Optionen... - Ersetzungen stellt eine Liste mit gängigen Ersetzungen bereit. Ergänzen Sie diese auch um Ihre eigenen Ersetzungen."
+msgstr "Wählen Sie Extras - AutoKorrektur - AutoKorrektur-Optionen... - Ersetzungen für eine Liste mit gängigen Ersetzungen. Ergänzen Sie diese auch um Ihre eigenen Ersetzungen."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/06040100.html
#: cui/inc/tipoftheday.hrc:47
@@ -1821,7 +1821,7 @@ msgstr "Speichern Sie mittels Datei - Versionen... mehrere Versionen eines Dokum
#: cui/inc/tipoftheday.hrc:49
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
-msgstr "Ein Abbildungsverzeichnis lässt sich auch von Objektnamen anstelle der Beschriftungen erstellen."
+msgstr "In Writer lässt sich ein Abbildungsverzeichnis auch von Objektnamen anstelle der Beschriftungen erstellen."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/05190000.html
#: cui/inc/tipoftheday.hrc:50
@@ -1833,25 +1833,25 @@ msgstr "Um temporär mit einem neuen Benutzerprofil zu starten oder eine nicht m
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
-msgstr "Ändern Sie die Grundschriftart für vordefinierte Vorlagen oder für das aktuelle Dokument über Extras - Optionen... - %PRODUCTNAME Writer - Grundschriftarten ändern."
+msgstr "Wählen Sie Extras - Optionen... - %PRODUCTNAME Writer - Grundschriftarten ändern, um in Writer die Grundschriftart für vordefinierte Vorlagen oder für das aktuelle Dokument zu ändern."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
#: cui/inc/tipoftheday.hrc:52
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
-msgstr "Legen Sie häufig verwendete Texte als AutoText fest. Fügen Sie diese anschließend mittels Namen, Tastaturkürzel oder Symbolleiste in jedes Writer-Dokument ein."
+msgstr "Legen Sie häufig verwendete Texte in Writer als AutoText fest. Fügen Sie diese anschließend mittels Namen, Tastaturkürzel oder Symbolleiste in jedes Writer-Dokument ein."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/autotext.html
#: cui/inc/tipoftheday.hrc:53
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools > Options > %PRODUCTNAME Writer > AutoCaption."
-msgstr "Um %PRODUCTNAME beim Einfügen von Objekten automatisch eine nummerierte Beschriftung hinzufügen zu lassen, wählen Sie Extras - Optionen... - %PRODUCTNAME Writer - Automatische Beschriftung."
+msgstr "Um %PRODUCTNAME beim Einfügen von Objekten in Writer automatisch eine nummerierte Beschriftung hinzufügen zu lassen, wählen Sie Extras - Optionen... - %PRODUCTNAME Writer - Automatische Beschriftung."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01041100.html
#: cui/inc/tipoftheday.hrc:54
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools > Sort."
-msgstr "Mittels Extras - Sortieren... lassen sich Absätze oder Tabellenzeilen alphabetisch oder numerisch sortieren."
+msgstr "Mittels Extras - Sortieren... lassen sich Absätze oder Tabellenzeilen in Writer alphabetisch oder numerisch sortieren."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/06100000.html
#: cui/inc/tipoftheday.hrc:55
@@ -1863,31 +1863,31 @@ msgstr "Verwenden Sie Bereiche in %PRODUCTNAME Writer, um Textteile zu schützen
#: cui/inc/tipoftheday.hrc:56
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet > Fill Cells > Random Number to generate a random series based on various distributions."
-msgstr "Wählen Sie Tabelle - Zellen ausfüllen - Zufallszahlen..., um eine zufällige, auf verschiedenen Verteilungen basierende Reihe zu erstellen."
+msgstr "Wählen Sie Tabelle - Zellen ausfüllen - Zufallszahlen..., um eine zufällige, auf verschiedenen Verteilungen basierende Reihe in Calc zu erstellen."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/02140700.html
#: cui/inc/tipoftheday.hrc:57
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format > Conditional Formatting > Manage in Calc to find out which cells have been defined with conditional formatting."
-msgstr "Verwenden Sie Format - Bedingte Formatierung - Verwalten..., um herauszufinden, für welche Zellen bedingte Formatierungen definiert sind."
+msgstr "Verwenden Sie Format - Bedingte Formatierung - Verwalten..., um herauszufinden, für welche Zellen in Calc bedingte Formatierungen definiert sind."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/05120000.html
#: cui/inc/tipoftheday.hrc:58
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
-msgstr "Neben Inhaltsverzeichnissen lassen sich mit %PRODUCTNAME auch Stichwort- , Abbildungs-, Tabellen-, Objekt- Literatur- und benutzerdefinierte Verzeichnisse erstellen."
+msgstr "Neben Inhaltsverzeichnissen lassen sich mit %PRODUCTNAME Writer auch Stichwort- , Abbildungs-, Tabellen-, Objekt- Literatur- und benutzerdefinierte Verzeichnisse erstellen."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/indices_toc.html
#: cui/inc/tipoftheday.hrc:59
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a series in %PRODUCTNAME Calc such as A1, A2, A3, A11, A15, not in alphabetical order but on the number? Enable natural sort in the Options tab."
-msgstr "Um Reihen wie A1, A2, A3, A11, A15 in %PRODUCTNAME nicht in alphabetischer sondern in numerischer Folge zu sortieren, aktivieren Sie das Markierfeld Natürliche Sortierung verwenden unter Daten - Sortieren... - Register: Optionen."
+msgstr "Um Reihen wie A1, A2, A3, A11, A15 in %PRODUCTNAME Calc nicht in alphabetischer sondern in numerischer Folge zu sortieren, aktivieren Sie das Markierfeld \"Natürliche Sortierung verwenden\" unter Daten - Sortieren... - Register: Optionen."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/12030200.html
#: cui/inc/tipoftheday.hrc:60
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools > Options > OpenCL."
-msgstr "Für massiv parallele Berechnungen von Formelzellen aktivieren Sie das Markierfeld unter Extras - Optionen... - LibreOffice - OpenCL."
+msgstr "Für massiv parallele Berechnungen von Formelzellen in Calc aktivieren Sie das Markierfeld unter Extras - Optionen... - LibreOffice - OpenCL."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/opencl.html
#: cui/inc/tipoftheday.hrc:61
@@ -1905,13 +1905,13 @@ msgstr "Um die gültigen Kommandozeilen-Parameter kennenzulernen, starten Sie so
#: cui/inc/tipoftheday.hrc:64
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
-msgstr "Um die Darstellung von Hyperlinks in einer Tabellenkalkulation zu verwalten, fügen Sie diese mittels Einfügen - Hyperlink... ein."
+msgstr "Um die Darstellung von Hyperlinks in Calc zu verwalten, fügen Sie diese mittels Einfügen - Hyperlink... ein."
#. local help missing
#: cui/inc/tipoftheday.hrc:65
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Can not get what you want with VLOOKUP? With INDEX and MATCH you can do everything!"
-msgstr "Falls Sie mit SVERWEIS nicht das Gewünschte erreichen, haben Sie mit INDEX und VERGLEICH unbegrenzte Möglichkeiten."
+msgstr "Falls Sie in Calc mit SVERWEIS nicht das Gewünschte erreichen, haben Sie mit INDEX und VERGLEICH unbegrenzte Möglichkeiten."
#. local help missing
#: cui/inc/tipoftheday.hrc:66
@@ -1929,25 +1929,25 @@ msgstr "Writer enthält LibreLogo, eine einfache, Logo-artige Programmierumgebun
#: cui/inc/tipoftheday.hrc:68
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format > Cells > Protection. To prevent insert, delete, rename, move/copy of sheets use Tools > Protect Sheet."
-msgstr "Zum Schützen von Zellen wählen Sie Format - Zellen... - Register: Zellschutz. Um zu verhindern, dass Tabellen eingefügt, gelöscht, umbenannt, verschoben oder kopiert werden, wählen Sie Extras - Tabelle schützen..."
+msgstr "Zum Schützen von Zellen in Calc wählen Sie Format - Zellen... - Register: Zellschutz. Um zu verhindern, dass Tabellen eingefügt, gelöscht, umbenannt, verschoben oder kopiert werden, wählen Sie Extras - Tabelle schützen..."
#. local help missing
#: cui/inc/tipoftheday.hrc:69
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
-msgstr "Um zu einem Datum x Monate hinzu zu addieren, geben Sie =EDATUM(Datum;Monate) ein."
+msgstr "Um in Calc zu einem Datum x Monate hinzu zu addieren, geben Sie =EDATUM(Datum;Monate) ein."
#. local help missing
#: cui/inc/tipoftheday.hrc:70
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependants (Shift+F5) (or use Tools > Detective). For each hit you go one more step in the chain."
-msgstr "Verfolgen Sie die in einer Formel verwendeten Zellen, die Spur zum Vorgänger (Umschalt+F9) oder die Spur zum Nachfolger (Umschalt+F5) (oder wählen Sie Extras - Detektiv). Bei jede Ausführung gehen Sie einen Schritt weiter in der Kette."
+msgstr "Verfolgen Sie in Calc die in einer Formel verwendeten Zellen, die Spur zum Vorgänger (Umschalt+F9) oder die Spur zum Nachfolger (Umschalt+F5) (oder wählen Sie Extras - Detektiv). Bei jede Ausführung gehen Sie einen Schritt weiter in der Kette."
#. local help missing
#: cui/inc/tipoftheday.hrc:71
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a serie? Select the cell range and Sheet > Fill Cells > Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr "Um eine Reihe zu erzeugen, markieren Sie den Zellbereich, wählen Tabelle - Zellen ausfüllen - Reihen... und entscheiden sich zwischen Linear, Wachstum, Datum und Automatisch füllen."
+msgstr "Um in Calc eine Reihe zu erzeugen, markieren Sie den Zellbereich, wählen Tabelle - Zellen ausfüllen - Reihen... und entscheiden sich zwischen Linear, Wachstum, Datum und Automatisch füllen."
#. local help missing
#: cui/inc/tipoftheday.hrc:72
@@ -1959,13 +1959,13 @@ msgstr "Um mit %PRODUCTNAME über Ihr Google Mail-Konto Serien-E-Mails zu versen
#: cui/inc/tipoftheday.hrc:73
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Data > Validity allows you to create drop-down lists where the user selects a value instead of typing."
-msgstr "Wählen Sie Daten - Gültigkeit..., um eine Dropdown-Liste zu erstellen, aus welcher der Benutzer einen Wert auswählen kann anstatt dieses einzugeben."
+msgstr "Wählen Sie Daten - Gültigkeit..., um in Calc eine Dropdown-Liste zu erstellen, aus welcher der Benutzer einen Wert auswählen kann anstatt diesen einzugeben."
#. local help missing
#: cui/inc/tipoftheday.hrc:74
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use View > Value Highlighting to display cell contents in colors: Text/black, Formulas/green, Numbers/blue, Protected cells/grey background."
-msgstr "Wählen Sie Ansicht - Werte hervorheben, um Zellinhalte farbig anzuzeigen: Text in schwarz, Formeln in grün, Zahlen in blau und geschützte Zellen mit grauem Hintergrund."
+msgstr "Wählen Sie Ansicht - Werte hervorheben, um Zellinhalte in Calc farbig anzuzeigen: Text in schwarz, Formeln in grün, Zahlen in blau und geschützte Zellen mit grauem Hintergrund."
#. local help missing
#: cui/inc/tipoftheday.hrc:75
@@ -1989,7 +1989,7 @@ msgstr "Um alle <> auf einmal zu entfernen und den Text innerhalb zu behalten, w
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > Detective > Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
-msgstr "Wählen Sie Extras - Detektiv - Ungültige Daten einkreisen, um alle Zellen einer Tabelle mit Werten außerhalb der Gültigkeitsregeln hervorzuheben."
+msgstr "Wählen Sie Extras - Detektiv - Ungültige Daten einkreisen, um in Calc alle Zellen einer Tabelle mit Werten außerhalb der Gültigkeitsregeln hervorzuheben."
#. local help missing
#: cui/inc/tipoftheday.hrc:79
@@ -2031,7 +2031,7 @@ msgstr "Probieren Sie mal die Presenter Console aus, welche eine hervorragende F
#: cui/inc/tipoftheday.hrc:85
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
-msgstr "Um automatisch alle Verzeichniseinträge alphabetisch zu markieren, nehmen Sie eine Konkordanzdatei zu Hilfe."
+msgstr "Um in Writer automatisch alle Verzeichniseinträge alphabetisch zu markieren, nehmen Sie eine Konkordanzdatei zu Hilfe."
#. local help missing
#: cui/inc/tipoftheday.hrc:86
@@ -2143,7 +2143,7 @@ msgstr "Wandeln Sie Ihre Dokumente mit einem Klick auf das Symbol PDF in der Sym
#: cui/inc/tipoftheday.hrc:109
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select a different icon set from Tools > Options > %PRODUCTNAME > View > User Interface > Icon size and style."
-msgstr "Wählen Sie einen anderen Symbolsatz unter Extras - Optionen... - %PRODUCTNAME - Ansicht - Benutzeroberfläche - Symbolstil."
+msgstr "Wählen Sie einen anderen Symbolstil unter Extras - Optionen... - %PRODUCTNAME - Ansicht - Benutzeroberfläche - Symbolstil."
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2173,17 +2173,17 @@ msgstr "Um eine Slideshow mit mehreren Bilden in %PRODUCTNAME Impress zu erstell
#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use shortcut Ctrl+Alt+C for it."
-msgstr "Fügen Sie Kommentare auch zu Textteilen hinzu, indem Sie Strg+Alt+C verwenden."
+msgstr "Fügen Sie Kommentare in Writer auch zu Textteilen hinzu, indem Sie Strg+Alt+C verwenden."
#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to insert the date in a spreadsheet cell? Type Ctrl+; or Shift+Ctrl+; to insert the time."
-msgstr "Um die aktuelle Zeit in eine Tabellenzelle einzufügen, verwenden Sie Umschalt+Strg+;."
+msgstr "Um die aktuelle Zeit in eine Tabellenzelle in Calc einzufügen, verwenden Sie Umschalt+Strg+;."
#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut Ctrl+Alt+Arrow (Up/Down)"
-msgstr "Um einen oder mehrere Absätze ohne Ausschneiden und Einfügen zu verschieben, verwenden Sie Strg+Alt+Pfeil nach oben/unten."
+msgstr "Um einen oder mehrere Absätze in Writer ohne Ausschneiden und Einfügen zu verschieben, verwenden Sie Strg+Alt+Pfeil nach oben/unten."
#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2198,7 +2198,7 @@ msgstr "Damit jede Tabelle in Calc ihren eigenen Maßstab hat, demarkieren Sie d
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet > Sheet from file."
-msgstr "Zum Öffnen einer CSV-Datei als eine neue Tabelle im aktuellen Tabellendokument wählen Sie Tabelle - Tabelle aus Datei einfügen..."
+msgstr "Zum Öffnen einer CSV-Datei als eine neue Tabelle im aktuellen Calc-Tabellendokument wählen Sie Tabelle - Tabelle aus Datei einfügen..."
#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2233,12 +2233,12 @@ msgstr "Ziehen Sie eine formatiertes Objekt in das Fenster Formatvorlagen, öffn
#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the 'leading zeroes' cell format option or format the cell as text before entering the number."
-msgstr "Um führende Nullen zu erhalten, verwenden Sie die Zahlenformat-Option \"Führende Nullen\" oder formatieren Sie die Zelle zuvor als Text."
+msgstr "Um in Calc führende Nullen zu erhalten, verwenden Sie die Zahlenformat-Option \"Führende Nullen\" oder formatieren Sie die Zelle zuvor als Text."
#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except ‘Comments’ in dialog. Use Operations ‘Add’ to not override existing content."
-msgstr "Um nur einen Kommentar zu kopieren ohne den Inhalt des Ziels zu verlieren, verwenden Sie den Befehl Inhalte einfügen, demarkieren im Dialog alles bis auf \"Kommentare\" und verwenden die Rechenoperation \"Addieren\"."
+msgstr "Um in Calc nur einen Kommentar zu kopieren ohne den Inhalt des Ziels zu verlieren, verwenden Sie den Befehl Inhalte einfügen, demarkieren im Dialog alles bis auf \"Kommentare\" und verwenden die Rechenoperation \"Addieren\"."
#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2288,7 +2288,7 @@ msgstr "Um die Folien einer Präsentation an die Bedürfnisse eines bestimmten P
#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
-msgstr "Um einen einen Absatz, der kein Titel ist, in das Inhaltsverzeichnis aufzunehmen, wählen Sie Format - Absatz... - Register: Gliederung und Nummerierung und wählen die gewünschte Gliederungsebene."
+msgstr "Um in Writer einen einen Absatz, der kein Titel ist, in das Inhaltsverzeichnis aufzunehmen, wählen Sie Format - Absatz... - Register: Gliederung und Nummerierung und wählen die gewünschte Gliederungsebene."
#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2308,7 +2308,7 @@ msgstr "Um zwei Seiten im Hochformat auf eine Seite im Querformat zu drucken (ve
#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the ‘Vertical Text’ tool in the Drawing toolbar, check Tools > Options > Language Settings > Languages > Default languages > Asian (and make the button visible with right click)."
-msgstr "Um das Werkzeug \"Vertikalen Text\" in der Symbolleiste Zeichnung zu aktivieren, wählen Sie Extras - Optionen... - Spracheinstellungen - Sprachen - Standardsprachen und aktivieren das Markierfeld Asiatisch (gegebenenfalls rechtsklicken Sie auf die Symbolleiste, wählen Sichtbare Schaltflächen und aktivieren noch das Symbol)."
+msgstr "Um in Writer das Werkzeug \"Vertikalen Text\" in der Symbolleiste Zeichnung zu aktivieren, wählen Sie Extras - Optionen... - Spracheinstellungen - Sprachen - Standardsprachen und aktivieren das Markierfeld Asiatisch (gegebenenfalls rechtsklicken Sie auf die Symbolleiste, wählen Sichtbare Schaltflächen und aktivieren noch das Symbol)."
#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2318,22 +2318,22 @@ msgstr "Wenn Sie in Draw/Impress eine Form mehrfach zeichnen möchten, doppelkli
#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data > AutoFilter, click the drop-down arrow, and chose ‘Top10’."
-msgstr "Um in eine Tabelle nur die größten Werte anzuzeigen, wählen Sie Daten - Autofilter und wählen in der Dropdown-Liste \"Top 10\"."
+msgstr "Um in eine Calc-Tabelle nur die größten Werte anzuzeigen, wählen Sie Daten - Autofilter und wählen in der Dropdown-Liste \"Top 10\"."
#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
-msgstr "Falls Sie eine benutzerdefinierte Zellvorlage nicht löschen können, überprüfen Sie alle Tabellen, dass keine geschützt ist."
+msgstr "Falls Sie eine benutzerdefinierte Zellvorlage in Calc nicht löschen können, überprüfen Sie alle Tabellen, dass keine geschützt ist."
#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
-msgstr "Um die Anzahl der Tage des aktuellen Monats zu ermitteln, geben Sie =TAGEIMMONAT(HEUTE()) ein."
+msgstr "Um in Calc die Anzahl der Tage des aktuellen Monats zu ermitteln, geben Sie =TAGEIMMONAT(HEUTE()) ein."
#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert > Image or drag a background from the Gallery, then Format > Arrange > To Background."
-msgstr "Um ein Hintergrundbild zu einer Tabelle hinzuzufügen, wählen Sie Einfügen - Bild... oder ziehen Sie es aus der Gallery in die Tabelle, wählen Sie dann Format - Anordnung - Im Hintergrund."
+msgstr "Um ein Hintergrundbild zu einer Calc-Tabelle hinzuzufügen, wählen Sie Einfügen - Bild... oder ziehen Sie es aus der Gallery in die Tabelle, wählen Sie dann Format - Anordnung - Im Hintergrund."
#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2353,7 +2353,7 @@ msgstr "Der optionale vierte Parameter der Calc-Funktion SVERWEIS übermittelt,
#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format > Columns > Show."
-msgstr "Um die verborgene Spalte A anzuzeigen, klicken Sie in Spalte B, halten die linke Maustaste gedrückt, bewegen die Maus nach links bis auf die Zeilennummer und lassen die Maustaste los. Dann wählen sie Format - Spalten - Einblenden."
+msgstr "Um in Calc die verborgene Spalte A anzuzeigen, klicken Sie in Spalte B, halten die linke Maustaste gedrückt, bewegen die Maus nach links bis auf die Zeilennummer und lassen die Maustaste los. Dann wählen sie Format - Spalten - Einblenden."
#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2378,12 +2378,12 @@ msgstr "Wählen Sie Format - Ausrichten (oder das Kontextmenü), um Objekte in D
#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Repeat the heading on a subsequent page when a table spans over more than one page with Table > Table Properties > Text Flow > Repeat heading."
-msgstr "Wählen Sie Tabelle - Eigenschaften... - Register: Textfluss - \"Überschrift wiederholen\", um die Überschrift auf einer nachfolgenden Seite zu wiederholen, wenn sich eine Tabelle über mehr als eine Seite erstreckt."
+msgstr "Wählen Sie Tabelle - Eigenschaften... - Register: Textfluss - \"Überschrift wiederholen\", um die Überschrift auf einer nachfolgenden Seite zu wiederholen, wenn sich eine Writer-Tabelle über mehr als eine Seite erstreckt."
#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, ‘Time’ and ‘KM’, use =Time/KM to get minutes per kilometer."
-msgstr "Verwenden Sie Spalten- oder Zeilenbeschriftungen in Formeln. Wenn Sie beispielsweise zwei Spalten mit \"Zeit\" und \"km\" haben, geben Sie =Zeit/km ein, um die Zeit pro Kilometer zu bekommen."
+msgstr "Verwenden Sie in Calc Spalten- oder Zeilenbeschriftungen in Formeln. Wenn Sie beispielsweise zwei Spalten mit \"Zeit\" und \"km\" haben, geben Sie =Zeit/km ein, um die Zeit pro Kilometer zu bekommen."
#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2403,17 +2403,17 @@ msgstr "Blenden Sie Kommentare in Writer ein oder aus, indem Sie im Lineal auf d
#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format > Page > Sheet Tab > Scaling Mode."
-msgstr "Wählen Sie Format - Seite... - Register: Tabelle - Abschnitt: Maßstab, um Ihre Tabelle oder Ihre Druckbereiche an die Seite anzupassen."
+msgstr "Wählen Sie Format - Seite... - Register: Tabelle - Abschnitt: Maßstab, um Ihre Tabelle oder Ihre Druckbereiche in Calc an die Seite anzupassen."
#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View > Freeze Cells > Freeze First Row."
-msgstr "Wählen Sie Ansicht - Zellen fixieren - Erste Zeile fixieren, um die Spaltenüberschriften einer Tabelle beim rollen durch Zeilen sichtbar zu behalten."
+msgstr "Wählen Sie Ansicht - Zellen fixieren - Erste Zeile fixieren, um die Spaltenüberschriften einer Calc-Tabelle beim rollen durch Zeilen sichtbar zu behalten."
#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) > Text Flow > Breaks and check Insert > Page > Before."
-msgstr "Um Ihre Kapitelüberschriften immer mit einer neuen Seite zu beginnen, klicken Sie in den Formatvorlagen mit der rechten Maustaste auf die Absatzvorlage Überschrift 1 und wählen Ändern... - Register: Textfluss - Abschnitt: Umbrüche - Markierfeld: \"Einfügen\" - Typ: \"Seite\" - Position: \"Vor\"."
+msgstr "Um Ihre Kapitelüberschriften in Writer immer mit einer neuen Seite zu beginnen, klicken Sie in den Formatvorlagen mit der rechten Maustaste auf die Absatzvorlage Überschrift 1 und wählen Ändern... - Register: Textfluss - Abschnitt: Umbrüche - Markierfeld: \"Einfügen\" - Typ: \"Seite\" - Position: \"Vor\"."
#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2448,42 +2448,42 @@ msgstr "Wenn Sie ein anderes Programm benötigen, dessen Fenster vor Ihrer Präs
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
-msgstr "Um festzulegen, welche nicht druckbaren Zeichen angezeigt werden sollen, markieren Sie nur die gewünschten Markierfelder unter Extras - Optionen... - %PRODUCTNAME Writer - Formatierungshilfen - Bereich: Formatierung anzeigen."
+msgstr "Um in Writer festzulegen, welche nicht druckbaren Zeichen angezeigt werden sollen, markieren Sie nur die gewünschten Markierfelder unter Extras - Optionen... - %PRODUCTNAME Writer - Formatierungshilfen - Bereich: Formatierung anzeigen."
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
-msgstr "Um dasselbe Layout für die Bildschirmanzeige und den Druck zu verwenden, wählen Sie Extras - Optionen... - %PRODUCTNAME Calc - Allgemein - \"Druckermaße für die Textformatierung verwenden\"."
+msgstr "Um in Calc dasselbe Layout für die Bildschirmanzeige und den Druck zu verwenden, wählen Sie Extras - Optionen... - %PRODUCTNAME Calc - Allgemein - \"Druckermaße für die Textformatierung verwenden\"."
#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize your footnotes page with Tools > Footnotes and Endnotes…"
-msgstr "Um die Seite für Ihre Fußnoten anzupassen, wählen Sie Extras - Fuß-/Endnoten..."
+msgstr "Um in Writer die Seite für Ihre Fußnoten anzupassen, wählen Sie Extras - Fuß-/Endnoten..."
#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sum a cell through several sheets? Refer to the range of sheets e.g. =SUM(Sheet1.A1:Sheet3.A1)."
-msgstr "Um eine Zelle über mehrere Tabellen zu summieren, beziehen Sie sich auf den Bereich der Tabellen, beispielsweise =SUMME('Tabelle 1'.A1:'Tabelle 3'.A1)."
+msgstr "Um in Calc eine Zelle über mehrere Tabellen zu summieren, beziehen Sie sich auf den Bereich der Tabellen, beispielsweise =SUMME('Tabelle 1'.A1:'Tabelle 3'.A1)."
#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, Ctrl+click the target sheet's tab and use Sheet > Fill Cells > Fill Sheets."
-msgstr "Sie können ohne Zwischenablage von einer Tabelle in eine andere kopieren. Wählen Sie den zu kopierenden Bereich aus, klicken Sie bei gedrückter Taste Strg auf die Registerkarte der Zieltabelle und wählen Sie Tabelle - Zellen ausfüllen - Tabellen..."
+msgstr "Sie können in Calc ohne Zwischenablage von einer Tabelle in eine andere kopieren. Wählen Sie den zu kopierenden Bereich aus, klicken Sie bei gedrückter Taste Strg auf die Registerkarte der Zieltabelle und wählen Sie Tabelle - Zellen ausfüllen - Tabellen..."
#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down Ctrl key and click their tabs before entering."
-msgstr "Um einen Wert an derselben Stelle in mehreren Tabellen einzufügen, wählen Sie die Tabellen aus, indem Sie die Taste Strg gedrückt halten und auf die entsprechenden Tabellenregister klicken, bevor Sie die Eingabe machen."
+msgstr "Um einen Wert an derselben Stelle in mehreren Calc-Tabellen einzufügen, wählen Sie die Tabellen aus, indem Sie die Taste Strg gedrückt halten und auf die entsprechenden Tabellenregister klicken, bevor Sie die Eingabe machen."
#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click a column field (row) PivotTable and press F12 to group data. Choices adapt to content: Date (month, quarter, year), number (classes)"
-msgstr "Um Daten zu gruppieren, klicken Sie auf ein Spalten-/Zeilenfeld einer Pivot-Tabelle und drücken Sie die Taste F12. Die Auswahlmöglichkeiten passen sich an den Inhalt an: Datum (Monat, Quartal, Jahr), Zahl (Klassen)."
+msgstr "Um Daten in Calc zu gruppieren, klicken Sie auf ein Spalten-/Zeilenfeld einer Pivot-Tabelle und drücken Sie die Taste F12. Die Auswahlmöglichkeiten passen sich an den Inhalt an: Datum (Monat, Quartal, Jahr), Zahl (Klassen)."
#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to count words for just one particular paragraph style? Use Edit > Find & Replace > Paragraph Styles, select the style > Find All and read the number from the status bar."
-msgstr "Um die Wörter nur für eine bestimmte Absatzvorlage zu ermitteln, wählen Sie Bearbeiten - Suchen und Ersetzen... - Markierfeld: \"Absatzvorlagen\", wählen die gewünschte Vorlage im Bereich \"Suchen\" aus und klicken auf die Schaltfläche \"Alle suchen\". Lesen Sie nun die Zahl in der Statusleiste ab."
+msgstr "Um in Writer die Wörter nur für eine bestimmte Absatzvorlage zu ermitteln, wählen Sie Bearbeiten - Suchen und Ersetzen... - Markierfeld: \"Absatzvorlagen\", wählen die gewünschte Vorlage im Bereich \"Suchen\" aus und klicken auf die Schaltfläche \"Alle suchen\". Lesen Sie nun die Zahl in der Statusleiste ab."
#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2493,7 +2493,7 @@ msgstr "Symbolleisten sind kontextabhängig und werden je nach Kontext geöffnet
#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
-msgstr "Um Formeln zu nummerieren, geben Sie fn ein und drücken dann F3. Ein Autotext wird eingefügt, wobei Formel und Nummer in einer Tabelle ausgerichtet sind."
+msgstr "Um Formeln in Writer zu nummerieren, geben Sie fn ein und drücken dann F3. Ein Autotext wird eingefügt, wobei Formel und Nummer in einer Tabelle ausgerichtet sind."
#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2503,7 +2503,7 @@ msgstr "Um Ihre Tabellenzeilen in Writer automatisch zu nummerieren, wählen Sie
#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete in one step all of your printing areas: select all sheets then Format > Print Ranges > Clear."
-msgstr "Um in einem Schritt alle Ihre Druckbereiche zu löschen, wählen Sie alle Tabellen aus und dann Format - Druckbereiche - Löschen."
+msgstr "Um in einem Schritt alle Ihre Druckbereiche in Calc zu löschen, wählen Sie alle Tabellen aus und dann Format - Druckbereiche - Löschen."
#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2523,27 +2523,27 @@ msgstr "Mit Writer können Sie Ihre Fußnoten pro Seite, Kapitel oder Dokument n
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
-msgstr "Wenn Sie Linkshänder sind, wählen Sie Extras - Optionen... - Spracheinstellungen - Sprachen - Markierfeld: \"Asiatisch\" und bestätigen mit OK. Anschließend wählen Sie Extras - Optionen... - %PRODUCTNAME Writer - Ansicht - Lineal - Markierfeld: \"Rechts ausgerichtet\", wodurch das Lineal rechts und die Bildlaufleiste links angezeigt wird."
+msgstr "Wenn Sie Linkshänder sind, wählen Sie Extras - Optionen... - Spracheinstellungen - Sprachen - Markierfeld: \"Asiatisch\" und bestätigen mit OK. Anschließend wählen Sie Extras - Optionen... - %PRODUCTNAME Writer - Ansicht - Lineal - Markierfeld: \"Rechts ausgerichtet\", wodurch das Lineal in Writer rechts und die Bildlaufleiste links angezeigt wird."
#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools > Options > Language Settings > Languages > Complex text and check Sheet > Right-To-Left."
-msgstr "Um die Bildlaufleiste links anzuzeigen, wählen Sie Extras - Optionen... - Spracheinstellungen - Sprachen - Markierfeld: \"Complex Text Layout\" und wählen anschließend Tabelle - Rechts-nach-links."
+msgstr "Um in Writer die Bildlaufleiste links anzuzeigen, wählen Sie Extras - Optionen... - Spracheinstellungen - Sprachen - Markierfeld: \"Complex Text Layout\" und wählen anschließend Tabelle - Rechts-nach-links."
#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
-msgstr "Wenn Ihre Zahlen in Ihrer Tabelle als ### angezeigt werden, ist die Spalte zu schmal, um alle Ziffern anzuzeigen."
+msgstr "Wenn Ihre Zahlen in Ihrer Calc-Tabelle als ### angezeigt werden, ist die Spalte zu schmal, um alle Ziffern anzuzeigen."
#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Ctrl+Alt+Shift+V to paste the contents of the clipboard as unformatted text."
-msgstr "Um den Inhalt der Zwischenablage als unformatierten Text einzufügen, verwenden Sie Strg+Alt+Umschalt+V."
+msgstr "Um den Inhalt der Zwischenablage als unformatierten Text in Writer einzufügen, verwenden Sie Strg+Alt+Umschalt+V."
#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title etc."
-msgstr "Sie können, wenn Sie gerade eine Zelle bearbeiten, Felder wie Datum, Tabellenname, Dokumenttitel und so weiter einfügen, indem Sie mit der rechten Maustaste klicken und Feldbefehl wählen."
+msgstr "Sie können, wenn Sie gerade eine Zelle in Calc bearbeiten, Feldbefehle wie Datum, Tabellenname, Dokumenttitel und so weiter einfügen, indem Sie mit der rechten Maustaste klicken und Feldbefehl wählen."
#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2553,7 +2553,7 @@ msgstr "Um die Bildschirmpräsentation nach einer festgelegten Pause neu zu star
#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can not see all the text in a cell? Expand the input line in the formula bar and you can scroll."
-msgstr "Falls Sie in der Eingabezeile nicht den gesamten Text einer Zelle sehen können, klicken Sie in der Bearbeitungsleiste auf das Symbol \"Eingabezeile ausklappen\", dann können Sie scrollen."
+msgstr "Falls Sie in der Eingabezeile von Calc nicht den gesamten Text einer Zelle sehen können, klicken Sie in der Bearbeitungsleiste auf das Symbol \"Eingabezeile ausklappen\", dann können Sie scrollen."
#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2568,12 +2568,12 @@ msgstr "Neue Versionen bringen nicht nur neue Funktionen und Fehlerbehebungen, s
#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press Ctrl + D or use Sheet > Fill Cells > Fill Down."
-msgstr "Um die obige Zeile zu duplizieren, drücken Sie Strg+D oder wählen Sie Tabelle - Zellen füllen - Unten."
+msgstr "Um in Calc die obige Zeile zu duplizieren, drücken Sie Strg+D oder wählen Sie Tabelle - Zellen füllen - Unten."
#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can easily optimize your table per Table > Size > Distribute Rows / Columns Evenly."
-msgstr "Um Ihre Tabelle einfach zu optimieren, klicken Sie auf Tabelle - Größe - Zeilen/Spalten gleichmäßig verteilen."
+msgstr "Um Ihre Writer-Tabelle einfach zu optimieren, klicken Sie auf Tabelle - Größe - Zeilen/Spalten gleichmäßig verteilen."
#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2588,12 +2588,12 @@ msgstr "Um sich im Inhalt großer Dokumente zurechtzufinden, verwenden Sie den N
#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table > AutoFormat."
-msgstr "Sie können Vorlagen verwenden, um die Tabellen in Ihrem Dokument einheitlich aussehen zu lassen. Wählen Sie eine der vordefinierten Vorlagen (F11) oder Tabelle - AutoFormat..."
+msgstr "Sie können Vorlagen verwenden, um die Tabellen in Ihrem Writer-Dokument einheitlich aussehen zu lassen. Wählen Sie eine der vordefinierten Vorlagen (F11) oder Tabelle - AutoFormat..."
#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter"
-msgstr "Um einen großen Zellenbereich auszuwählen, ohne einen Bildlauf durchzuführen, geben Sie die Bereichsreferenz (beispielsweise A1:A1000) in das Namensfeld ein und drücken die Eingabetaste."
+msgstr "Um in Calc einen großen Zellenbereich auszuwählen, ohne einen Bildlauf durchzuführen, geben Sie die Bereichsreferenz (beispielsweise A1:A1000) in das Namensfeld ein und drücken die Eingabetaste."
#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2603,12 +2603,12 @@ msgstr "Um Zellen auf einer gedruckten Seite in Calc zu zentrieren, wählen Sie
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
-msgstr "Um Formeln anstelle von Ergebnissen anzuzeigen, wählen Sie Ansicht - Formel anzeigen (oder Extras - Optionen... - %PRODUCTNAME Calc - Ansicht - Bereich: Anzeige - Markierfeld: \"Formeln\")."
+msgstr "Um Formeln anstelle von Ergebnissen in Calc anzuzeigen, wählen Sie Ansicht - Formel anzeigen (oder Extras - Optionen... - %PRODUCTNAME Calc - Ansicht - Bereich: Anzeige - Markierfeld: \"Formeln\")."
#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit > Go To Page… or press Ctrl+G."
-msgstr "Um zu einer bestimmten Seite anhand ihrer Nummer zu springen, klicken Sie auf den Eintrag ganz links in der Statusleiste, wählen Sie Bearbeiten - Wechseln zu Seite... oder drücken Strg+G."
+msgstr "Um in Writer zu einer bestimmten Seite anhand ihrer Nummer zu springen, klicken Sie auf den Eintrag ganz links in der Statusleiste, wählen Sie Bearbeiten - Wechseln zu Seite... oder drücken Strg+G."
#: cui/inc/tipoftheday.hrc:203
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2618,17 +2618,17 @@ msgstr "Um Autotexteinträge aus einem Word-Dokument oder eine Vorlage zu import
#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can display a number as a fraction (0.125 = 1/8): Format > Cells, Number > Fraction."
-msgstr "Um eine Zahl als Bruch anzuzeigen (beispielsweise 0,125 als 1/8), wählen Sie Format - Zellen... Register: Zahlen - Bereich: Kategorie - \"Bruch\"."
+msgstr "Um in Calc eine Zahl als Bruch anzuzeigen (beispielsweise 0,125 als 1/8), wählen Sie Format - Zellen... Register: Zahlen - Bereich: Kategorie - \"Bruch\"."
#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To print the notes of your slides go to File > Print > Impress tab and select Notes under Document > Type."
-msgstr "Um die Notizen Ihrer Folien zu drucken, wählen Sie Datei - Drucken... - Register: Allgemein - Bereich: Ausdruck - Dropdown-Menü: Dokument - \"Notizen\"."
+msgstr "Um die Notizen Ihrer Folien in Impress zu drucken, wählen Sie Datei - Drucken... - Register: Allgemein - Bereich: Ausdruck - Dropdown-Menü: Dokument - \"Notizen\"."
#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can move an object to another layer by holding it until its edges flash, then drag it to the tab of the layer you want to move it to."
-msgstr "Sie können ein Objekt auf eine andere Ebene verschieben, indem Sie es so lange angeklickt halten, bis die Kanten blinken. Ziehen Sie es dann auf die Registerkarte der Ebene, auf die Sie es verschieben möchten."
+msgstr "Sie können ein Objekt in Draw auf eine andere Ebene verschieben, indem Sie es so lange angeklickt halten, bis die Kanten blinken. Ziehen Sie es dann auf die Registerkarte der Ebene, auf die Sie es verschieben möchten."
#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2648,7 +2648,7 @@ msgstr "Um ein Globaldokument aus dem aktuellen Writer-Dokument zu erstellen, w
#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your date acceptance pattern is inappropriate? Tools > Options > Language Settings > Language > Date acceptance patterns allows to tweak the pattern."
-msgstr "Um das Datumserkennungsmuster Ihren Vorlieben anzupassen, wählen Sie Extras - Optionen... - Spracheinstellungen - Sprache - Datumserkennungsmuster und ergänzen dort das gewünschte Muster."
+msgstr "Um in Calc das Datumserkennungsmuster Ihren Vorlieben anzupassen, wählen Sie Extras - Optionen... - Spracheinstellungen - Sprache - Datumserkennungsmuster und ergänzen dort das gewünschte Muster."
#: cui/inc/tipoftheday.hrc:211
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2658,7 +2658,7 @@ msgstr "Wenn Sie in Writer Text in fett, kursiv oder unterstrichen eingegeben ha
#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You will search in several sheets when you select them before you start the search."
-msgstr "Um in mehreren Tabellen zu suchen, wählen Sie sie aus, bevor Sie die Suche starten."
+msgstr "Um in mehreren Calc-Tabellen zu suchen, wählen Sie sie aus, bevor Sie die Suche starten."
#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2668,32 +2668,32 @@ msgstr "Um die Rechtschreibprüfung für einen Teil des Texts zu ändern, klicke
#: cui/inc/tipoftheday.hrc:214
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "A date is a formatted number of days since a date origin. An hour is a day divided by 24 with noon = 0.5."
-msgstr "Ein Datum wird intern als formatierte Anzahl an Tagen seit dem Datumsursprung berechnet. Eine Stunde ist somit ein Tag geteilt durch 24 und 12 Uhr entspricht 0,5 Tagen."
+msgstr "Ein Datum in Calc wird intern als formatierte Anzahl an Tagen seit dem Datumsursprung berechnet. Eine Stunde ist somit ein Tag geteilt durch 24 und 12 Uhr entspricht 0,5 Tagen."
#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File > Properties > Custom Properties tab lets you create what you want."
-msgstr "Wenn Sie benutzerdefinierte Inhalte für Metadaten-Eigenschaften benötigen, wählen Sie Datei - Eigenschaften... - Register: Benutzerdefinierte Eigenschaften und erstellen Sie dort, was Sie möchten."
+msgstr "Wenn Sie in Writer benutzerdefinierte Inhalte für Metadaten-Eigenschaften benötigen, wählen Sie Datei - Eigenschaften... - Register: Benutzerdefinierte Eigenschaften und erstellen Sie dort, was Sie möchten."
#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert your metadata in your document with Insert > Fields > More Fields… > Document or DocInformation."
-msgstr "Fügen Sie Ihre Metadaten mit Einfügen - Feldbefehl - Weitere Feldbefehle... - Register: Dokument oder Register: Dokumentinfo in Ihr Dokument ein."
+msgstr "Fügen Sie Ihre Metadaten mit Einfügen - Feldbefehl - Weitere Feldbefehle... - Register: Dokument oder Register: Dokumentinfo in Ihr Writer-Dokument ein."
#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, copy the range, paste special, and select everything except comments."
-msgstr "Um mehrere Kommentare zu löschen, kopieren Sie den Bereich, wählen Sie Bearbeiten - Inhalte einfügen - Inhalte einfügen... und wählen Sie alle Markierfelder außer \"Kommentare\" aus."
+msgstr "Um in Calc mehrere Kommentare zu löschen, kopieren Sie den Bereich, wählen Sie Bearbeiten - Inhalte einfügen - Inhalte einfügen... und wählen Sie alle Markierfelder außer \"Kommentare\" aus."
#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
-msgstr "Um die Berechnung einzelner Elemente einer Formel anzuzeigen, wählen Sie die entsprechenden Elemente aus und drücken F9."
+msgstr "Um die Berechnung einzelner Elemente einer Calc-Formel anzuzeigen, wählen Sie die entsprechenden Elemente aus und drücken F9."
#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table > Properties… > Text Flow > Text orientation."
-msgstr "Um die Ausrichtung einer Tabellenzelle zu drehen, wählen Sie Tabelle - Eigenschaften... - Textfluss - Dropdown-Menü: Textausrichtung."
+msgstr "Um die Ausrichtung einer Writer-Tabellenzelle zu drehen, wählen Sie Tabelle - Eigenschaften... - Textfluss - Dropdown-Menü: Textausrichtung."
#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2703,203 +2703,203 @@ msgstr "Um die Anzeige in Ihrem Writer-Dokument bei vielen Bildern zu beschleuni
#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+Ctrl+del deletes from cursor to the end of the current sentence."
-msgstr "Umschalt+Strg+Entf löscht vom Cursor bis zum Ende des aktuellen Satzes."
+msgstr "Umschalt+Strg+Entf löscht in Writer vom Cursor bis zum Ende des aktuellen Satzes."
#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need an unnumbered item in a list? Use 'Insert Unnumbered Entry' in the Bullets and Numbering toolbar."
-msgstr "Um einen nicht nummerierten Eintrag in einer Liste einzufügen, verwenden Sie in der Symbolleiste \"Aufzählungszeichen und Nummerierung\" die Option \"Eintrag ohne Nummer einfügen\"."
+msgstr "Um einen nicht nummerierten Eintrag in einer Liste in Writer einzufügen, verwenden Sie in der Symbolleiste \"Aufzählungszeichen und Nummerierung\" die Option \"Eintrag ohne Nummer einfügen\"."
#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a pivot table? Click on drop-list's arrow in the row/col header and select sort method: ascending, descending, or custom."
-msgstr ""
+msgstr "Um eine Pivot-Tabelle zu sortieren, klicken Sie in Calc auf den Pfeil der Dropdown-Liste in der Kopfzeile der Zeile/Spalte und wählen die gewünschte Sortiermethode: Aufsteigend, Absteigend oder Benutzerdefiniert."
#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing > Spacing > Below paragraph at the style/paragraph properties."
-msgstr ""
+msgstr "Anstatt in Writer Leerzeilen einzufügen, um zwei Absätze zu trennen, wählen Sie besser Format - Absatz... - Register: Einzüge und Abstände und ändern Sie im Bereich Abstand die Eigenschaft \"Unter Absatz\" ab oder passen Sie an selber Stelle die Absatzvorlage an."
#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document didn’t reopen with the text cursor at the same editing position it was when you saved it? Check Tools > Options > %PRODUCTNAME > User Data > First/Last name is not empty."
-msgstr ""
+msgstr "Um Ihr Writer-Dokument mit dem Textcursor an der gleichen Bearbeitungsposition zu öffnen, an der Sie es gespeichert haben, wählen Sie Extras - Optionen... - %PRODUCTNAME - Benutzerdaten und überprüfen Sie, dass Vor-/Nachname nicht leer ist."
#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
-msgstr ""
+msgstr "Im Navigator können Sie Überschriften und den zugehörigen Text im Writer-Dokument auswählen und verschieben."
#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME doesn't calculate from left to right but respects the order Parentheses > Exponents > Multiplication > Division > Addition > Subtraction."
-msgstr ""
+msgstr "%PRODUCTNAME Calc berechnet nicht von links nach rechts, sondern berücksichtigt die mathematische Reihenfolge: Klammern > Exponenten > Multiplikation > Division > Addition > Subtraktion."
#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the default function in the status bar: right click on the area."
-msgstr ""
+msgstr "Sie können Standardfunktionen auch in der Statusleiste ändern: Klicken Sie mit der rechten Maustaste auf den Bereich."
#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
-msgstr ""
+msgstr "Um in Calc nicht alle Spalten zu drucken, verstecken oder gruppieren Sie diejenigen, die Sie nicht benötigen."
#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Shift+Space to select the current row and Ctrl+Space to select the current column."
-msgstr "Verwenden Sie Umschalt+Leertaste zur Auswahl der aktuellen Zeile und Strg+Leertaste zur Auswahl der aktuellen Spalte."
+msgstr "Verwenden Sie in Calc Umschalt+Leertaste zur Auswahl der aktuellen Zeile und Strg+Leertaste zur Auswahl der aktuellen Spalte."
#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document use Insert > Field > Date."
-msgstr ""
+msgstr "Um das aktuelle Datum in Ihr Dokument einzufügen, verwenden Sie Einfügen - Feldbefehl - Datum."
#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click at the beginning (end) of a section and press Alt+Enter to insert a paragraph before (after) the section."
-msgstr ""
+msgstr "Klicken Sie in Writer an den Anfang (das Ende) eines Bereichs und drücken Sie Alt+Eingabetaste, um einen Absatz vor (nach) dem Bereich einzufügen."
#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet > Sheet Tab Color."
-msgstr ""
+msgstr "Sie können für jede Registerkarte in Calc eine Farbe festlegen: Klicken Sie mit der rechten Maustaste auf die Registerkarte oder wählen Sie Tabelle - Tabellenregisterfarbe..."
#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with %PRODUCTNAME basic macros? Take a look at the examples under Tools > Macros > Edit Macros."
-msgstr ""
+msgstr "Um zu beginnen, mit %PRODUCTNAME Makros zu arbeiten, schauen Sie sich die Beispiele unter Extras - Makros - Makros bearbeiten... an."
#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert > Table of Contents (or right-click and Edit the previously inserted index). At the Entries tab delete the page number (#) from Structure line."
-msgstr ""
+msgstr "Um die Seitenzahl aus Ihrem Inhaltsverzeichnis in Writer zu entfernen, wählen Sie Einfügen - Verzeichnis - Verzeichnis... (oder klicken Sie mit der rechten Maustaste und bearbeiten Sie das zuvor eingefügte Verzeichnis). Löschen Sie auf der Registerkarte Einträge die Seitenzahl (#) aus der Zeile Struktur."
#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type 'Chapter ' to display 'Chapter 1'"
-msgstr ""
+msgstr "Um festlegen, dass Text vor der Kapitelnummer in Writer angezeigt wird, wählen Sie Extras - Kapitelnummerierung... - Register: Nummerierung und geben Sie beispielsweise \"Kapitel \" im Feld \"Davor\" ein, um \"Kapitel 1\" anzuzeigen."
#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools > Detective > Trace Dependents (Shift+F5)."
-msgstr ""
+msgstr "Um herauszufinden, ob auf eine Zelle in Calc ein Bezug in Formeln anderer Zellen besteht, wählen Sie Extras - Detektiv - Spur zum Nachfolger (Umschalt+F5)."
#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools > Options > %PRODUCTNAME > View > Middle Mouse button."
-msgstr ""
+msgstr "Sie können die mittlere Maustaste unter Extras - Optionen... - %PRODUCTNAME - Ansicht - Dropdown-Menü: Mittlere Maustaste anpassen."
#: cui/inc/tipoftheday.hrc:239
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To repeat rows/columns on every pages use Format > Print Ranges > Edit."
-msgstr ""
+msgstr "Um in Calc festzulegen, dass Zeilen/Spalten im Ausdruck auf allen Seiten wiederholt werden, wählen Sie Format - Druckbereiche - Bearbeiten..."
#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? Alt+arrow Keys move objects (shape, picture, formula) by one pixel."
-msgstr ""
+msgstr "Um Objekten (Formen, Bilder, Formeln) genau zu positionieren, verwenden Sie zum Verschieben um ein Pixel Alt+Pfeiltasten."
#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose ‘Hierarchical View’ in the Styles and Formatting sidebar to see the relation between styles."
-msgstr ""
+msgstr "Wählen Sie in der Seitenleiste Formatvorlagen die Option \"Hierarchische Ansicht\", um die Beziehung zwischen den Formatvorlagen anzuzeigen."
#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can toggle between the field names and the actual value with View > Fields Names (or Ctrl + F9)."
-msgstr ""
+msgstr "Wählen Sie Ansicht > Feldnamen (oder Strg+F9), um in Writer zwischen den Feldnamen und dem tatsächlichen Wert zu wechseln."
#: cui/inc/tipoftheday.hrc:243
#, c-format
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Creating a Style based on another, you can enter a percentage value or a point value (e.g. 110% or -2pt or +5pt)."
-msgstr ""
+msgstr "Wenn Sie in Writer eine Vorlage basierend auf einer anderen erstellen, können Sie einen Prozentwert oder einen Punktwert eingeben (beispielsweise 110% oder -2pt beziehungsweise +5pt)."
#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
-msgstr ""
+msgstr "Um in Writer nach dem Anwenden einer Listenvorlage zu den Standardeinstellungen zurückzukehren, klicken Sie in der Symbolleiste Formatierung auf Aufzählungszeichen/Nummerierte Liste umschalten."
#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the Ctrl key to follow hyperlinks? Tools > Options > %PRODUCTNAME > Security > Options > ‘Ctrl+click required to follow hyperlinks’."
-msgstr ""
+msgstr "Um die Verwendung der Strg-Taste zum Folgen von Hyperlinks zu ändern, wählen Sie Extras - Optionen... - %PRODUCTNAME - Sicherheit - Schaltfläche: Optionen... - Markierfeld: \"Strg beim Klicken halten, um Hyperlinks zu folgen\"."
#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed from the marching ants around cells in Calc. Press escape to stop them; the copied content will remain available for pasting."
-msgstr ""
+msgstr "Um die marschierenden Ameisen um Zellen in Calc zu stoppen, drücken Sie die Taste Esc. Der kopierte Inhalt bleibt zum Einfügen verfügbar."
#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly insert or delete rows, select the desired number of rows (or columns) and press Ctrl+ to add or Ctrl- to delete."
-msgstr ""
+msgstr "Um in Calc schnell Zeilen einzufügen oder zu löschen, wählen Sie die gewünschte Anzahl an Zeilen (oder Spalten) aus und drücken Sie Strg+Plus (+) zum Hinzufügen oder Strg+Minus (-) zum Löschen."
#: cui/inc/tipoftheday.hrc:248
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use Ctrl+* (numeric key pad)."
-msgstr ""
+msgstr "Verwenden Sie in Calc Strg+Stern (*) (auf dem Nummernblock), um einen zusammenhängenden Bereich von Zellen auszuwählen, die Daten enthalten und durch leere Zeilen und Spalten begrenzt sind."
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
-msgstr "Mit Strg+Umschalt+F9 berechnen Sie alle Formeln in allen Tabellen neu."
+msgstr "Mit Strg+Umschalt+F9 berechnen Sie alle Formeln in allen Calc-Tabellen neu."
#: cui/inc/tipoftheday.hrc:250
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Write along a curve? Draw the line, double click, type the text, Format > Text Box and Shape > Fontwork."
-msgstr ""
+msgstr "Um entlang einer Kurve zu schreiben, zeichnen Sie die Linie, doppelklicken auf sie, geben Sie den Text ein und wählen Sie Format - Textfeld und Form - Fontwork..."
#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To enable macro recording, check Tools > Options > %PRODUCTNAME > Advanced > Enable macro recording."
-msgstr ""
+msgstr "Um die Makroaufzeichnung zu aktivieren, wählen Sie Extras - Optionen... - %PRODUCTNAME - Erweitert - Markierfeld: \"Makroaufzeichnung ermöglichen\"."
#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
-msgstr ""
+msgstr "Im Eingabefeld Ersetzen der Autokorrektur-Optionen können Sie den Platzhalter .* verwenden."
#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to export formulas to CSV? File > Save As > Type:Text CSV, check ‘Edit filter settings’, and check ‘Save cell formulas’ in the next dialog."
-msgstr ""
+msgstr "Um Formeln aus Calc in CSV zu exportieren, wählen Sie Datei - Speichern unter... - Typ: \"Text CSV\", aktivieren Sie \"Filtereinstellungen bearbeiten\" und aktivieren Sie im nächsten Dialog \"Formeln anstatt berechneter Werte speichern\"."
#: cui/inc/tipoftheday.hrc:254
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "No need to scroll through the list at Tools > Customize > Keyboard to find a shortcut: just type it."
-msgstr ""
+msgstr "Sie müssen nicht in der Liste unter Extras - Anpassen... - Register: Tastatur blättern, um eine Tastenkombination zu finden. Geben Sie sie einfach ein."
#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in the selection, press / (divide key) on the number pad. Press * to restore entire page in screen."
-msgstr ""
+msgstr "Um in Impress oder Draw die Auswahl schnell zu vergrößern, drücken Sie / (Taste Geteilt) auf dem Ziffernblock. Drücken Sie * (Taste Mal) auf dem Ziffernblock, um die gesamte Seite auf dem Bildschirm wiederherzustellen."
#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal."
-msgstr ""
+msgstr "Um schnell auf einen ausgewählten Bereich zu vergrößern, klicken Sie mit der rechten Maustaste auf den Bereich Maßstab in der Statusleiste und wählen Optimal."
#: cui/inc/tipoftheday.hrc:257
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose 'Format all Comments'."
-msgstr ""
+msgstr "Sie können in Writer alle Kommentare in einem Dokument auf einmal neu formatieren, indem Sie in einem Kommentar auf den Pfeil nach unten klicken und \"Alle Kommentare formatieren\" wählen."
#: cui/inc/tipoftheday.hrc:258
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To convert a formula into static values you don’t need to copy/paste; use Data > Calculate > Formula to Value."
-msgstr ""
+msgstr "Um eine Formel in statische Werte umzuwandeln, müssen Sie sie nicht kopieren und einfügen; wählen Sie Daten - Berechnen - Formel zu Wert."
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Find all expressions in brackets per Edit > Find & Replace > Find > \\([^)]+\\) (check ‘Regular expressions’)"
-msgstr ""
+msgstr "Um alle Ausdrücke in Klammern zu suchen, wählen Sie Bearbeiten - Suchen & Ersetzen... - Textfeld: Suchen - \"\\ ([^)]+\\)\" (aktivieren Sie das Markierfeld \"Reguläre Ausdrücke\")."
#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME at Tools > Options > View > User Interface."
-msgstr ""
+msgstr "Um das Aussehen von %PRODUCTNAME zu ändern, wählen Sie Extras - Optionen... - Ansicht - Benutzeroberfläche."
#: cui/inc/tipoftheday.hrc:263
msgctxt "STR_HELP_LINK"
@@ -3534,7 +3534,7 @@ msgstr "Wörter, die mit ZWei GRoß- oder eINEM kLEINBUCHSTABEN beginnen, lösch
#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
-msgstr "Wörter mit ZWei Groß- oder einem kLEINBUCHSTABEN beginnen"
+msgstr "Wörter, die mit ZWei GRoß- oder eINEM kLEINBUCHSTABEN beginnen"
#: cui/uiconfig/ui/acorreplacepage.ui:47
msgctxt "acorreplacepage|replace"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Nummerierung und Aufzählung"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Ebene"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Typ:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Beginnen mit:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Zeichen:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Auswahl..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Bild auswählen..."
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Breite:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Höhe:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Verhältnis beibehalten"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Vor:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Hinter:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Trenner"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Farbe:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "_Rel. Größe:"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Einrücken:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Breite:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "Relati_v"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Position"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Ausrichtung"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Folie"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Auswahl"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Auf Master anwenden"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Bereich"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Eigenschaften"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Vorschau"
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hilfe"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME-Dialoge _verwenden"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialoge zum Öffnen/Speichern"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME-Dialoge verwende_n"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialoge zum Drucken"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Drucken setzt Status \"Dokument geändert\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentstatus"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretieren als Jahre zwischen"
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "und "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Jahr (zweistellig)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Nutzungsdaten sammeln und an die The Document Foundation senden"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Mithelfen, %PRODUCTNAME zu verbessern"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME beim Systemstart laden"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Schnellstarter aktivieren"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Schnellstarter"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Nächster Tipp"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Wussten Sie schon?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Verknüpfung"
diff --git a/source/de/helpcontent2/source/text/scalc/01.po b/source/de/helpcontent2/source/text/scalc/01.po
index ca1c2949297..ae96b09477a 100644
--- a/source/de/helpcontent2/source/text/scalc/01.po
+++ b/source/de/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-06-03 17:45+0200\n"
-"PO-Revision-Date: 2019-07-11 05:20+0000\n"
+"PO-Revision-Date: 2019-07-20 10:13+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: 1562822448.000000\n"
+"X-POOTLE-MTIME: 1563617607.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -55510,7 +55510,7 @@ msgctxt ""
"par_id371542291684176\n"
"help.text"
msgid "<item type=\"input\">=REGEX(\"123456ABCDEF\";\"[:digit:]\";\"Z\")</item> returns \"Z23456ABCDEF\", where the first match of a digit is replaced by \"Z\"."
-msgstr "<item type=\"input\">=REGAUS(\"123456ABCDEF\";\"[:digit:];\"Z\")</item> ergibt \"Z23456ABCDEF\", wobei die erste Zahl mit \"Z\" ersetzt wurde."
+msgstr "<item type=\"input\">=REGAUS(\"123456ABCDEF\";\"[:digit:]\";\"Z\")</item> ergibt \"Z23456ABCDEF\", wobei die erste Zahl mit \"Z\" ersetzt wurde."
#: func_regex.xhp
msgctxt ""
@@ -55518,7 +55518,7 @@ msgctxt ""
"par_id891542291697194\n"
"help.text"
msgid "<item type=\"input\">=REGEX(\"123456ABCDEF\";\"[:digit:]\";\"Z\";\"g\")</item> returns \"ZZZZZZABCDEF\", where all digits were replaced by \"Z\"."
-msgstr "<item type=\"input\">=REGAUS(\"123456ABCDEF\";\"[:digit:];\"Z\":\"g\")</item> ergibt \"ZZZZZZABCDEF\", wobei jede Zahl mit \"Z\" ersetzt wurde."
+msgstr "<item type=\"input\">=REGAUS(\"123456ABCDEF\";\"[:digit:]\";\"Z\";\"g\")</item> ergibt \"ZZZZZZABCDEF\", wobei jede Zahl mit \"Z\" ersetzt wurde."
#: func_regex.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/00.po b/source/de/helpcontent2/source/text/shared/00.po
index 3dbf0ecc4eb..c8d8b800639 100644
--- a/source/de/helpcontent2/source/text/shared/00.po
+++ b/source/de/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-06-18 04:47+0000\n"
+"PO-Revision-Date: 2019-07-19 04:17+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: 1560833244.000000\n"
+"X-POOTLE-MTIME: 1563509840.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -10430,7 +10430,7 @@ msgctxt ""
"par_id366527\n"
"help.text"
msgid "Choose <emph>Format - Text Box and Shape - Line</emph> (Writer)."
-msgstr "Wählen Sie <emph>Format - Objekt - Linie...</emph> (Writer)."
+msgstr "Wählen Sie <emph>Format - Textfeld und Form - Linie...</emph> (Writer)."
#: 00040502.xhp
msgctxt ""
@@ -10470,7 +10470,7 @@ msgctxt ""
"par_id3154285\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph></caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Line</emph> tab."
-msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Linie... - Register: Linie</emph>."
+msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Linie... - Register: Linie</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10542,7 +10542,7 @@ msgctxt ""
"par_id3151293\n"
"help.text"
msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab.</variable>"
-msgstr "<variable id=\"linienstile\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Linie... - Register: Linienstile</emph>.</variable>"
+msgstr "<variable id=\"linienstile\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Linie... - Register: Linienstile</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10550,7 +10550,7 @@ msgctxt ""
"par_id3149317\n"
"help.text"
msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab.</variable>"
-msgstr "<variable id=\"linienenden\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Linie... - Register: Linienspitzen</emph>.</variable>"
+msgstr "<variable id=\"linienenden\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Linie... - Register: Linienspitzen</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10558,7 +10558,7 @@ msgctxt ""
"par_id3156082\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area</emph>."
-msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche...</emph>."
+msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche...</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10590,7 +10590,7 @@ msgctxt ""
"par_id3154948\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
-msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche</emph>."
+msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10774,7 +10774,7 @@ msgctxt ""
"par_id3150011\n"
"help.text"
msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab.</variable>"
-msgstr "<variable id=\"schatte\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Schatten</emph>.</variable>"
+msgstr "<variable id=\"schatte\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Schatten</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10782,7 +10782,7 @@ msgctxt ""
"par_id3147441\n"
"help.text"
msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab.</variable>"
-msgstr "<variable id=\"verlauf\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche - Schaltfläche: Farbverlauf</emph>.</variable>"
+msgstr "<variable id=\"verlauf\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche - Schaltfläche: Farbverlauf</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10790,7 +10790,7 @@ msgctxt ""
"par_id3155308\n"
"help.text"
msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab.</variable>"
-msgstr "<variable id=\"schraffur\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche - Schaltfläche: Schraffur</emph>.</variable>"
+msgstr "<variable id=\"schraffur\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche - Schaltfläche: Schraffur</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10798,7 +10798,7 @@ msgctxt ""
"par_id3145800\n"
"help.text"
msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab.</variable>"
-msgstr "<variable id=\"bitmap\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche - Schaltfläche: Bild</emph>.</variable>"
+msgstr "<variable id=\"bitmap\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche - Schaltfläche: Bild</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10806,7 +10806,7 @@ msgctxt ""
"par_id3145251\n"
"help.text"
msgid "<variable id=\"formattext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes</emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text - </emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline>.</variable>"
-msgstr "<variable id=\"formattext\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - Text... - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - Text... - </emph></caseinline><defaultinline><emph>Register: Text</emph></defaultinline></switchinline>.</variable>"
+msgstr "<variable id=\"formattext\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - Text... - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - Text... - </emph></caseinline><defaultinline><emph>Register: Text</emph></defaultinline></switchinline>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10814,7 +10814,7 @@ msgctxt ""
"par_id3152810\n"
"help.text"
msgid "<variable id=\"text\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes</emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text</emph> tab.</variable>"
-msgstr "<variable id=\"text\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - Text...</emph> </caseinline><caseinline select=\"CALC\"><emph>Objekt - Text...</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Register: Text</emph>.</variable>"
+msgstr "<variable id=\"text\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - Text...</emph> </caseinline><caseinline select=\"CALC\"><emph>Objekt - Text...</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Register: Text</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10822,7 +10822,7 @@ msgctxt ""
"par_id3151060\n"
"help.text"
msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab.</variable>"
-msgstr "<variable id=\"laufext\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - Text...</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - Text...</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Register: Lauftext</emph>.</variable>"
+msgstr "<variable id=\"laufext\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - Text...</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - Text...</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Register: Lauftext</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10830,7 +10830,7 @@ msgctxt ""
"par_id3149911\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size</emph>."
-msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe...</emph>."
+msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe...</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10878,7 +10878,7 @@ msgctxt ""
"par_id3153099\n"
"help.text"
msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab.</variable>"
-msgstr "<variable id=\"position2\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Position und Größe</emph>.</variable>"
+msgstr "<variable id=\"position2\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Position und Größe</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10886,7 +10886,7 @@ msgctxt ""
"par_id3152973\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Rotation</emph> tab."
-msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Drehung</emph>."
+msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Drehung</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10910,7 +10910,7 @@ msgctxt ""
"par_id3145666\n"
"help.text"
msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab.</variable>"
-msgstr "<variable id=\"ecke\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Schräg stellen / Eckenradius</emph>.</variable>"
+msgstr "<variable id=\"ecke\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Schräg stellen / Eckenradius</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10918,7 +10918,7 @@ msgctxt ""
"par_id3146081\n"
"help.text"
msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab. This is only available for textbox callouts, not for custom shapes callouts.</variable>"
-msgstr "<variable id=\"legende\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Legende</emph>. Dies ist nur für Textfeld-Legenden verfügbar, nicht für Legendensymbole.</variable>"
+msgstr "<variable id=\"legende\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Legende</emph>. Dies ist nur für Textfeld-Legenden verfügbar, nicht für Legendensymbole.</variable>"
#: 00040502.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 27b1e8790f9..105b10d05f2 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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-06 04:15+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-26 05:40+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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1562386513.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1564119633.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -8708,7 +8708,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redacted Export"
-msgstr "Bearbeiteter Export"
+msgstr "Redigierter Export"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10220,7 +10220,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redacted Export (Black)"
-msgstr "Bearbeiteter Export (schwarz)"
+msgstr "Redigierter Export (schwarz)"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10229,7 +10229,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redacted Export (White)"
-msgstr "Bearbeiteter Export (weiß)"
+msgstr "Redigierter Export (weiß)"
#: DrawWindowState.xcu
msgctxt ""
@@ -10589,7 +10589,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Redacted Export"
-msgstr "Bearbeiteter Export"
+msgstr "Redigierter Export"
#: DrawWindowState.xcu
msgctxt ""
@@ -10877,7 +10877,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Redaction"
-msgstr "Bearbeitung"
+msgstr "Redigieren"
#: Effects.xcu
msgctxt ""
@@ -16862,7 +16862,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Rectangle Redaction"
-msgstr "Rechteck-Bearbeitung"
+msgstr "Rechteck-Redigierung"
#: GenericCommands.xcu
msgctxt ""
@@ -20509,7 +20509,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Freeform Redaction"
-msgstr "Freiform-Bearbeitung"
+msgstr "Freiform-Redigierung"
#: GenericCommands.xcu
msgctxt ""
@@ -21054,6 +21054,24 @@ msgstr "~Für LibreOffice spenden"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
@@ -25018,7 +25036,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Styles"
-msgstr "Vorlagen"
+msgstr "Formatvorlagen"
#: Sidebar.xcu
msgctxt ""
@@ -26962,7 +26980,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Text Box and Shap~e"
-msgstr "Ob~jekt"
+msgstr "Textfeld und Form"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/de/sd/messages.po b/source/de/sd/messages.po
index e3b38d9e335..8368c272939 100644
--- a/source/de/sd/messages.po
+++ b/source/de/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-06 04:19+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: 1562386789.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "Ä_nderungen"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Anordnen"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Bearbeiten"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Raster"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "_3D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Grafik"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Farbe"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Medien"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_Bildschirmpräsentation"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "_Rahmen"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Ansicht"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Master_folie"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Einfügen"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "_Zeichnen"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Ansicht"
diff --git a/source/de/sw/messages.po b/source/de/sw/messages.po
index 3ed041cfaac..8e36d7e3e48 100644
--- a/source/de/sw/messages.po
+++ b/source/de/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-07-06 04:29+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: 1562387341.000000\n"
#: sw/inc/app.hrc:29
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Eintrag auswählen: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Bearbeiten"
diff --git a/source/dgo/cui/messages.po b/source/dgo/cui/messages.po
index a1df3d34404..b2a21eb4fe2 100644
--- a/source/dgo/cui/messages.po
+++ b/source/dgo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4542,147 +4542,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9706,77 +9706,77 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदद"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Use %PRODUCTNAME dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Save dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Use %PRODUCTNAME _dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Print dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "दस्तावेज नांऽ \\ वस्तुस्थितिः "
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ते"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "सिस्टम शुरू होने दरान %PRODUCTNAME लोड करो "
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray तुर्त-शुरूकर्ता गी असमर्थ करो"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13514,12 +13514,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 a19bac1aa8b..9e4d6b3dd32 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21410,6 +21410,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/dgo/sd/messages.po b/source/dgo/sd/messages.po
index 42d31b04b18..6017cf8a05d 100644
--- a/source/dgo/sd/messages.po
+++ b/source/dgo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5562,9 +5562,9 @@ msgstr "समीक्षा"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5642,8 +5642,8 @@ msgid "_Edit"
msgstr "~संपादन करो"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5660,60 +5660,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr " ग्राफिक\t"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "रंग "
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "मीडिया"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "~ स्लाइड शो\t"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr " चगाठ "
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr " द्रिश्श\t"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "मास्टर सफे"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "समावेश करो "
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/dgo/sw/messages.po b/source/dgo/sw/messages.po
index 0eea5f43753..d6a0c817bfa 100644
--- a/source/dgo/sw/messages.po
+++ b/source/dgo/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dgo\n"
@@ -8761,7 +8761,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "संपादन"
diff --git a/source/dsb/cui/messages.po b/source/dsb/cui/messages.po
index e39c70f4295..ebd4bccbfb8 100644
--- a/source/dsb/cui/messages.po
+++ b/source/dsb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-04 18:19+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562264344.000000\n"
#: cui/inc/numcategories.hrc:17
@@ -4385,147 +4385,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Naliceńske znamuška a numerěrowanje"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Rownina"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Typ:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Zachopiś wót:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Znamuško:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Wubraś..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Wobraz wubraś..."
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Šyrokosć:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Wusokosć:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Poměr bokow wobchowaś"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Pśed:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Za:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Źěleńske znamuško"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Barwa:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "_Relatiwna wjelikosć:"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Zasunjenje:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Šyrokosć:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "Re_latiwny"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Pozicija"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Wusměrjenje"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Folija"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Wuběrk"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Na globalny dokument nałožyś"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Wobcerk płaśiwosći"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Kakosći"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Pśeglěd"
@@ -9177,72 +9177,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pomoc"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Dialogi %PRODUCTNAME wužywaś"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialogi wócyniś/składowaś"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Dialogi %PRODUCTNAME wužywaś"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Śišćarske dialogi"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Śišćanje _status \"dokument změnjony\" staja"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentowy status"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretěrowaś ako lěta mjazy "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "a "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Lěto (dwuměstnowe)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Wužywańske daty gromaźiś a na załožbu The Document Foundation pósłaś"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pomoc pśi pólěpšanju %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME za systemowy start zacytaś"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Malsny startowak zmóžniś"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Malsny startowak %PRODUCTNAME"
@@ -12771,12 +12771,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Pśiduca pokazka"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Sćo južo wěźeł?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Wótkaz"
diff --git a/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
index 3418e6da94b..5976add2033 100644
--- a/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dsb/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 19:33+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-30 19:07+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1562268835.000000\n"
+"X-POOTLE-MTIME: 1564513652.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -21053,6 +21053,24 @@ msgstr "Za LibreOffice pósćiś"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr "Nowe funkcije a změny"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr "Wócyńśo wersijowe informacije za zainstalěrowanu wersiju w standardnem wobglědowaku"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/dsb/sd/messages.po b/source/dsb/sd/messages.po
index dd14e491ef2..f6a9d8bd164 100644
--- a/source/dsb/sd/messages.po
+++ b/source/dsb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-04 19:39+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562269141.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5344,9 +5344,9 @@ msgstr "_Pśeglědanje"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Rědowaś"
@@ -5414,8 +5414,8 @@ msgid "_Edit"
msgstr "Wo_bźěłaś"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Kśidno"
@@ -5430,52 +5430,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "_3D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Grafika"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Ba_rwa"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Medije"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_Prezentacija"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Wobłu_k"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Naglěd"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "_Folijowy wugótowak"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Zasajźiś"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "K_resliś"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Naglěd"
diff --git a/source/dsb/sw/messages.po b/source/dsb/sw/messages.po
index cf85cc140fb..8c5989cc530 100644
--- a/source/dsb/sw/messages.po
+++ b/source/dsb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-07-04 19:39+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562269173.000000\n"
#: sw/inc/app.hrc:29
@@ -8377,7 +8377,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Zapisk wubraś: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Wobźěłaś"
diff --git a/source/dz/cui/messages.po b/source/dz/cui/messages.po
index af86b99c21c..39167fe71c4 100644
--- a/source/dz/cui/messages.po
+++ b/source/dz/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4512,147 +4512,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9649,78 +9649,78 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "གྲོགས་རམ།"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ཌའི་ལོགསི།"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ཌའི་ལོགསི།"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Document Name\tStatus"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "དང་།"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME འགོ་བཙུགས་རིམ་ལུགས་སྐབས་ མངོན་གསལ་འབད།"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "རིམ་ལུགས་ཤོག་སྣོད་ཀུའིཀ་སི་ཊ་ཊར་ ལྕོགས་མིན་བཟོ་"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13452,12 +13452,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 add92cb091c..008e573f67f 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21367,6 +21367,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/dz/sd/messages.po b/source/dz/sd/messages.po
index 38e66173ee4..163f22308f5 100644
--- a/source/dz/sd/messages.po
+++ b/source/dz/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5559,9 +5559,9 @@ msgstr "བསྐྱར་ཞིབ།"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5639,8 +5639,8 @@ msgid "_Edit"
msgstr "ཞུན་དག(~E)"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5657,60 +5657,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "ཚད་རིས།"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ཚོས་གཞི།"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "བརྡ་ལམ་"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "བཤུད་བརྙན་གྱི་ མཐོང་སྣང་།()~S"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "གཞི་ཁྲམ།"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "སྟོན།"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "ཨམ་གྱི་ཤོག་ལེབ་ཚུ།"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "བཙུགས།"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/dz/sw/messages.po b/source/dz/sw/messages.po
index abdfaf3a5d4..cb72c5dae49 100644
--- a/source/dz/sw/messages.po
+++ b/source/dz/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8821,7 +8821,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
#, fuzzy
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
diff --git a/source/el/cui/messages.po b/source/el/cui/messages.po
index 0760901f438..a089d5e060c 100644
--- a/source/el/cui/messages.po
+++ b/source/el/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-08 07:33+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: 1562571180.000000\n"
#: cui/inc/numcategories.hrc:17
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Κουκκίδες και αρίθμηση"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Επίπεδο"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Τύπος:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Έναρξη στο:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Χαρακτήρας:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Επιλογή..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Επιλογή εικόνας..."
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Πλάτος:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Ύψος:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Διατήρηση αναλογιών"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Πριν:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Μετά από:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Διαχωριστικό"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Χρώμα:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "_Σχετ. μέγεθος:"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Εσοχή:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Πλάτος:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "Σχετι_κά"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Θέση"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Στοίχιση"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Διαφάνεια"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Επιλογή"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Εφαρμογή στο κύριο"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Εμβέλεια"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Ιδιότητες"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Προεπισκόπηση"
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Βοήθεια"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Χρήση διαλόγων του %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Διάλογοι Άνοιγμα/Αποθήκευση"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "_Χρήση διαλόγων του %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Διάλογοι εκτύπωσης"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Η εκτύπωση ορίζει την κατάσταση \"τροποποιημένο έγγραφο\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Κατάσταση εγγράφου"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Να ερμηνεύεται ως χρόνια μεταξύ "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "και "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Έτος (δύο ψηφία)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Συλλογή δεδομένων χρήσης και αποστολή της στη Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Βοηθήστε στη βελτίωση του %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Φόρτωση του %PRODUCTNAME κατά την εκκίνηση του συστήματος"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Ενεργοποίηση γρήγορης εκκίνησης περιοχής ειδοποιήσεων"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Γρήγορη έναρξη του %PRODUCTNAME"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Επόμενη συμβουλή"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Γνωρίζατε ότι;"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Σύνδεσμος"
diff --git a/source/el/helpcontent2/source/auxiliary.po b/source/el/helpcontent2/source/auxiliary.po
index c7767037da6..cf2034f2dde 100644
--- a/source/el/helpcontent2/source/auxiliary.po
+++ b/source/el/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-06-21 05:41+0000\n"
+"PO-Revision-Date: 2019-07-30 09:36+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: 1561095714.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564479362.000000\n"
#: sbasic.tree
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"1102\n"
"node.text"
msgid "Command and Menu Reference"
-msgstr ""
+msgstr "Παραπομπές εντολών και μενού"
#: sdraw.tree
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/sbasic/python.po b/source/el/helpcontent2/source/text/sbasic/python.po
index 1f2c75b19d9..4cf2d4a5ac0 100644
--- a/source/el/helpcontent2/source/text/sbasic/python.po
+++ b/source/el/helpcontent2/source/text/sbasic/python.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-02 09:38+0000\n"
+"PO-Revision-Date: 2019-07-30 15:17+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: 1562060297.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564499854.000000\n"
#: main0000.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"N0651\n"
"help.text"
msgid "REM controller.Events module"
-msgstr ""
+msgstr "REM controller.Events module"
#: python_document_events.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"N0653\n"
"help.text"
msgid "Private _obj As Object ' controller.ConsoleLogger instance"
-msgstr ""
+msgstr "Στιγμιότυπο Private _obj As Object ' controller.ConsoleLogger"
#: python_document_events.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"N0655\n"
"help.text"
msgid "Sub OnLoad(evt As com.sun.star.document.DocumentEvent) ' >> Open Document <<"
-msgstr ""
+msgstr "Sub OnLoad(evt As com.sun.star.document.DocumentEvent) ' >> Open Document <<"
#: python_document_events.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"N0659\n"
"help.text"
msgid "REM controller.ConsoleLogger class module"
-msgstr ""
+msgstr "Άρθρωμα κλάσης REM controller.ConsoleLogger"
#: python_document_events.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"N0664\n"
"help.text"
msgid "' ADAPTER design pattern object to be instantiated in « Open Document » event"
-msgstr ""
+msgstr "'Αντικείμενο μοτίβου σχεδίασης ADAPTER για αρχικοποίηση στο συμβάν « Open Document »"
#: python_document_events.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"N0668\n"
"help.text"
msgid "' CONSTRUCTOR/DESTRUCTOR"
-msgstr ""
+msgstr "'ΚΑΤΑΣΚΕΥΑΣΤΗΣ/ΚΑΤΑΣΤΡΟΦΕΑΣ"
#: python_document_events.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"N0674\n"
"help.text"
msgid "' MEMBERS"
-msgstr ""
+msgstr "'ΜΕΛΗ"
#: python_document_events.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"N0679\n"
"help.text"
msgid "''' System-dependent filename '''"
-msgstr ""
+msgstr "''' Συστημαεξαρτώμενο όνομα αρχείου '''"
#: python_document_events.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"N0686\n"
"help.text"
msgid "' METHODS"
-msgstr ""
+msgstr "'ΜΕΘΟΔΟΙ"
#: python_document_events.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"N0706\n"
"help.text"
msgid "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events are being logged\", _"
-msgstr ""
+msgstr "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events are being logged\", _"
#: python_document_events.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"N0717\n"
"help.text"
msgid "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events have been logged\", _"
-msgstr ""
+msgstr "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events have been logged\", _"
#: python_document_events.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"N0734\n"
"help.text"
msgid "\"\"\" Display document events \"\"\""
-msgstr ""
+msgstr "\"\"\" Display document events \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"N0747\n"
"help.text"
msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer\">Alternative Python Script Organizer (APSO)</link> extension is used to render events information on screen."
-msgstr ""
+msgstr "Η επέκταση <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer\">Alternative Python Script Organizer (APSO)</link> χρησιμοποιείται για να αποδώσει πληροφορίες συμβάντων στην οθόνη."
#: python_document_events.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"N0106\n"
"help.text"
msgid "Unlike Basic language macros development in %PRODUCTNAME, developing Python scripts for %PRODUCTNAME requires to configure an external Integrated Development Environment (IDE). Multiple IDEs are available that range from beginners to advanced Python coders. While using a Python IDE programmers benefit from numerous features such as syntax highlighting, code folding, class browsing, code completion, coding standard enforcement, test driven development, debugging, version control and many more. You can refer to <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"Designing & Developing Python Applications\">Designing & Developing Python Applications</link> on the Wiki for more in-depth information about the setup of a bridge between your IDE and a running instance %PRODUCTNAME."
-msgstr ""
+msgstr "Αντίθετα με την ανάπτυξη μακροεντολών της γλώσσας Basic στο %PRODUCTNAME, η ανάπτυξη σεναρίων Python για το %PRODUCTNAME απαιτεί τη διαμόρφωση εξωτερικού ολοκληρωμένου περιβάλλοντος ανάπτυξης (IDE). Πολλαπλά IDEs είναι διαθέσιμα σε εύρος από αρχάριους μέχρι προχωρημένους κωδικογράφους Python. Χρησιμοποιώντας IDE Python οι προγραμματιστές επωφελούνται από πολυάριθμα χαρακτηριστικά όπως τονισμό σύνταξης, αναδίπλωση κώδικα, πλοήγηση τάξεων, συμπλήρωση κώδικα, αναγκαστική πρότυπη κωδικοποίηση, καθοδηγούμενη ανάπτυξη δοκιμών, αποσφαλμάτωση, έλεγχο έκδοσης και πολλά άλλα. Μπορείτε να δείτε το <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"Designing & Developing Python Applications\">Σχεδίαση & ανάπτυξη εφαρμογών Python</link> στο Wiki για μεγαλύτερη εμβάθυνση πληροφοριών σχετικά με τη ρύθμιση γέφυρας μεταξύ του δικού σας IDE και της εκτέλεσης στιγμιοτύπου του %PRODUCTNAME."
#: python_ide.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"N0104\n"
"help.text"
msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer (APSO)\">Alternative Python Script Organizer (APSO)</link> extension eases the edition of Python scripts, in particular when embedded in a document. Using APSO you can configure your preferred source code editor, start the integrated Python shell and debug Python scripts. Extensions exist that help inspect arbitrary UNO objects, refer to <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"eDesigning & Developing Python Applications\">Designing & Developing Python Applications</link> for additional details on such extensions."
-msgstr ""
+msgstr "Η επέκταση <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer (APSO)\">Alternative Python Script Organizer (APSO)</link> διευκολύνει την επεξεργασία δεσμών ενεργειών Python, ιδιαίτερα όταν ενσωματώνονται σε έγγραφα. Χρησιμοποιώντας το APSO, μπορείτε να ρυθμίσετε τον αγαπημένο σας επεξεργαστή πηγαίου κώδικα και να ξεκινήσετε το ολοκληρωμένο κέλυφος Python και τις δέσμες ενεργειών αποσφαλμάτωσης Python. Υπάρχουν επεκτάσεις που βοηθούν την επιθεώρηση αυθαίρετων αντικειμένων UNO, δείτε το <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"eDesigning & Developing Python Applications\">Σχεδίαση & Ανάπτυξη εφαρμογών Python</link> για περισσότερες λεπτομέρειες για τέτοιες επεκτάσεις."
#: python_import.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"N0461\n"
"help.text"
msgid "<bookmark_value>Python;import</bookmark_value> <bookmark_value>Python;Modules</bookmark_value> <bookmark_value>Python;pythonpath</bookmark_value> <bookmark_value>PythonLibraries</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;εισαγωγή</bookmark_value><bookmark_value>Python;αρθρώματα</bookmark_value><bookmark_value>Python;pythonpath</bookmark_value><bookmark_value>PythonLibraries</bookmark_value>"
#: python_import.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"N0462\n"
"help.text"
msgid "<variable id=\"pythonimporth1\"><link href=\"text/sbasic/python/python_import.xhp\" name=\"python imports\">Importing Python Modules</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonimporth1\"><link href=\"text/sbasic/python/python_import.xhp\" name=\"εισαγωγές python\">Εισαγωγή αρθρωμάτων Python</link></variable>"
#: python_import.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"N0463\n"
"help.text"
msgid "%PRODUCTNAME Python scripts come in three distinct flavors, they can be personal, shared or embedded in documents. They are stored in varying places described in <link href=\"text/sbasic/python/python_locations.xhp\">Python Scripts Organization and Location</link>. In order to import Python modules, their locations must be known from Python at run time."
-msgstr ""
+msgstr "Οι δέσμες ενεργειών Python του %PRODUCTNAME έρχονται σε τρεις διαφορετικές εκδόσεις, μπορούν να εξατομικευτούν, να μοιραστούν ή να ενσωματωθούν σε έγγραφα. Αποθηκεύονται σε διάφορες θέσεις που περιγράφονται στο <link href=\"text/sbasic/python/python_locations.xhp\">Python Scripts Organization and Location</link>. Για να εισάγετε αρθρώματα Python, οι τοποθεσίες τους πρέπει να είναι γνωστές από το Python κατά τον χρόνο εκτέλεσης."
#: python_import.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"N0464\n"
"help.text"
msgid "This mechanism is illustrated for file system based modules and document based modules. Exception handling is omitted for clarity. The terms library or directory, scripts or modules are used interchangeably. A Python macro refers to a function inside a module."
-msgstr ""
+msgstr "Αυτός ο μηχανισμός απεικονίζεται για σύστημα αρχείου με βάση αρθρώματα και έγγραφο με βάση αρθρώματα. Ο χειρισμός εξαίρεσης παραλείπεται για σαφήνεια. Οι όροι βιβλιοθήκη ή κατάλογος, δέσμη ενεργειών ή αρθρώματα χρησιμοποιούνται εναλλακτικά. Μια μακροεντολή Python αναφέρεται σε συνάρτηση σε άρθρωμα."
#: python_import.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"N0465\n"
"help.text"
msgid "Note that <literal><User Profile>/Scripts/python/pythonpath</literal> local directory is always explored when running a Python macro from <literal><User Profile>/Scripts/python</literal>."
-msgstr ""
+msgstr "Σημειώστε ότι ο τοπικός κατάλογος <literal><User Profile>/Scripts/python/pythonpath</literal> εξερευνάται πάντα όταν εκτελείται μακροεντολή Python από το <literal><User Profile>/Scripts/python</literal>."
#: python_import.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"N0466\n"
"help.text"
msgid "File System module import"
-msgstr ""
+msgstr "Εισαγωγή αρθρώματος συστήματος αρχείων"
#: python_import.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"N0467\n"
"help.text"
msgid "User or Shared Modules"
-msgstr ""
+msgstr "Αρθρώματα χρήστη ή κοινόχρηστα"
#: python_import.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"N0468\n"
"help.text"
msgid "Personal & shared Python scripts can be imported once their directories are included in Python run time path. Refer to <link href=\"text/sbasic/python/python_session.xhp\">Getting session information</link> page for more details regarding omitted Session Class."
-msgstr ""
+msgstr "Προσωπικές κοινόχρηστες δέσμες ενεργειών Python μπορούν να εισαχθούν μόλις οι κατάλογοί τους συμπεριληφθούν στη διαδρομή χρόνου εκτέλεσης Python. Δείτε τη σελίδα <link href=\"text/sbasic/python/python_session.xhp\">Λήψη πληροφοριών συνεδρίας</link> για περισσότερες λεπτομέρειες αναφορικά με τις παραλειπόμενες κλάσεις συνεδρίας."
#: python_import.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"N0473\n"
"help.text"
msgid "user_lib = Session().UserPythonScripts # User scripts location"
-msgstr ""
+msgstr "user_lib = Session().UserPythonScripts # Τοποθεσία δέσμης ενεργειών χρήστη"
#: python_import.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"N0475\n"
"help.text"
msgid "sys.path.insert(0, user_lib) # Add to search path"
-msgstr ""
+msgstr "sys.path.insert(0, user_lib) # Προσθήκη στη διαδρομή αναζήτησης"
#: python_import.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"N0476\n"
"help.text"
msgid "import screen_io as ui # 'screen_io.py' module resides in user_lib directory"
-msgstr ""
+msgstr "import screen_io as ui # το άρθρωμα 'screen_io.py' βρίσκεται στον κατάλογο user_lib"
#: python_import.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"N0477\n"
"help.text"
msgid "# Your code follows here"
-msgstr ""
+msgstr "# Ο κώδικας σας ακολουθεί εδώ"
#: python_import.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"N0478\n"
"help.text"
msgid "This Python example exposes a local XSCRIPTCONTEXT variable to an imported module:"
-msgstr ""
+msgstr "Αυτό το παράδειγμα Python εκθέτει μια τοπική μεταβλητή XSCRIPTCONTEXT σε εισαγόμενο άρθρωμα:"
#: python_import.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"N0483\n"
"help.text"
msgid "share_lib = Session.SharedPythonScripts() # Shared scripts location"
-msgstr ""
+msgstr "share_lib = Session.SharedPythonScripts() # Κοινόχρηστη τοποθεσία δέσμης ενεργειών"
#: python_import.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"N0485\n"
"help.text"
msgid "sys.path.insert(0, share_lib) # Add to search path"
-msgstr ""
+msgstr "sys.path.insert(0, share_lib) # Προσθήκη στη διαδρομή αναζήτησης"
#: python_import.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"N0486\n"
"help.text"
msgid "from IDE_utils import ScriptContext # 'IDE_utils.py' sits with shared Python scripts."
-msgstr ""
+msgstr "from IDE_utils import ScriptContext # το 'IDE_utils.py' βρίσκεται με τις κοινόχρηστες δέσμες ενεργειών του Python."
#: python_import.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"N0488\n"
"help.text"
msgid "# Your code follows here"
-msgstr ""
+msgstr "# Ο κώδικας σας ακολουθεί εδώ"
#: python_import.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"N0489\n"
"help.text"
msgid "Installation Modules for Applications"
-msgstr ""
+msgstr "Εγκατάσταση αρθρωμάτων για εφαρμογές"
#: python_import.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"N0490\n"
"help.text"
msgid "Unlike personal and shared scripts, %PRODUCTNAME installation scripts can be imported any time. Next to <literal>uno</literal> & <literal>unohelper</literal> %PRODUCTNAME Python modules, other scripts present in <literal><installation_path>/program</literal> directory can be imported directly, such as the <literal>msgbox</literal> module."
-msgstr ""
+msgstr "Αντίθετα με τις προσωπικές και κοινόχρηστες δέσμες ενεργειών, η εγκατάσταση δεσμών ενεργειών του %PRODUCTNAME μπορεί να εισαχθεί οποτεδήποτε. Πέρα από τα αρθρώματα Python <literal>uno</literal> & <literal>unohelper</literal> του %PRODUCTNAME, άλλες δέσμες ενεργειών που εμφανίζονται στον κατάλογο <literal><installation_path>/program</literal> μπορούν να εισαχθούν απευθείας, όπως το άρθρωμα <literal>msgbox</literal>."
#: python_import.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"N0491\n"
"help.text"
msgid "With Python shell:"
-msgstr ""
+msgstr "Με κέλυφος Python:"
#: python_import.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"N0534\n"
"help.text"
msgid "Document Module Import"
-msgstr ""
+msgstr "Εισαγωγή αρθρώματος εγγράφου"
#: python_import.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"N0535\n"
"help.text"
msgid "Importing a Python document embedded module is illustrated below. Error handling is not detailed. Python run time path is updated when document has been opened and before closure. Refer to <link href=\"text/sbasic/shared/01040000.xhp\">Event-Driven Macros</link> to learn how to associate Python macros to document events."
-msgstr ""
+msgstr "Η εισαγωγή ενσωματωμένου αρθρώματος εγγράφου Python περιγράφεται παρακάτω. Ο χειρισμός σφαλμάτων δεν είναι λεπτομερής. Η διαδρομή χρόνου εκτέλεσης Python ενημερώνεται όταν το έγγραφο έχει ανοιχθεί και πριν το κλείσιμο. Δείτε το <link href=\"text/sbasic/shared/01040000.xhp\">Συμβαντοοδηγούμενες μακροεντολές (Event-Driven Macros)</link> για να μάθετε πώς να συνδέσετε τις μακροεντολές Python με τα συμβάντα του εγγράφου."
#: python_import.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"N0542\n"
"help.text"
msgid "PythonLibraries.loadLibrary('lib/subdir') # Add directory to search path"
-msgstr ""
+msgstr "PythonLibraries.loadLibrary('lib/subdir') # Προσθήκη καταλόγου στη διαδρομή αναζήτησης"
#: python_import.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"N0543\n"
"help.text"
msgid "PythonLibraries.loadLibrary('my_gui', 'screen_io') # Add dir. & import screen_io"
-msgstr ""
+msgstr "PythonLibraries.loadLibrary('my_gui', 'screen_io') # Προσθήκη dir. & import screen_io"
#: python_import.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"N0547\n"
"help.text"
msgid "PythonLibraries.unloadLibrary('my_gui') # Python runtime path cleanup"
-msgstr ""
+msgstr "PythonLibraries.unloadLibrary('my_gui') # Καθαρισμός διαδρομής χρόνου εκτέλεσης Python"
#: python_import.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"N0548\n"
"help.text"
msgid "# Note: imported modules remain loaded in this example.."
-msgstr ""
+msgstr "# Σημείωση: τα εισαγόμενα αρθρώματα παραμένουν φορτωμένα σε αυτό το παράδειγμα."
#: python_import.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"N0555\n"
"help.text"
msgid "adapted from 'Bibliothèque de fonctions' by Hubert Lambert"
-msgstr ""
+msgstr "προσαρμοσμένο από το 'Bibliothèque de fonctions' του Hubert Lambert"
#: python_import.xhp
msgctxt ""
@@ -998,7 +998,7 @@ msgctxt ""
"N0556\n"
"help.text"
msgid "at https://forum.openoffice.org/fr/forum/viewtopic.php?p=286213 \"\"\""
-msgstr ""
+msgstr "στο https://forum.openoffice.org/fr/forum/viewtopic.php?p=286213\"\"\""
#: python_import.xhp
msgctxt ""
@@ -1038,7 +1038,7 @@ msgctxt ""
"N0580\n"
"help.text"
msgid "Refer to <link href=\"text/sbasic/python/python_listener.xhp\">Creating a Python Listener</link> for examples of event-driven macros."
-msgstr ""
+msgstr "Δείτε το <link href=\"text/sbasic/python/python_listener.xhp\">Δημιουργία ακρόασης Python (Creating a Python Listener)</link> για παραδείγματα συμβαντοεξαρτώμενων μακροεντολών."
#: python_listener.xhp
msgctxt ""
@@ -1086,7 +1086,7 @@ msgctxt ""
"N0389\n"
"help.text"
msgid "Creating an event listener"
-msgstr ""
+msgstr "Δημιουργία ακροατή συμβάντος"
#: python_listener.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/swriter/guide.po b/source/el/helpcontent2/source/text/swriter/guide.po
index fc13c0b12d4..1fdf998e61b 100644
--- a/source/el/helpcontent2/source/text/swriter/guide.po
+++ b/source/el/helpcontent2/source/text/swriter/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-06-26 10:19+0000\n"
+"PO-Revision-Date: 2019-07-30 14:44+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: 1561544354.000000\n"
+"X-POOTLE-MTIME: 1564497859.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -8383,7 +8383,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Changing the Chapter Level of Numbered and Bulleted Lists"
-msgstr ""
+msgstr "Αλλαγή του επιπέδου κεφαλαίου σε λίστες με κουκκίδες και αρίθμηση"
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8391,7 +8391,7 @@ msgctxt ""
"bm_id3145078\n"
"help.text"
msgid "<bookmark_value>tab stops; inserting in lists</bookmark_value><bookmark_value>numbering; changing the level of</bookmark_value><bookmark_value>lists;changing levels</bookmark_value><bookmark_value>levels;changing chapter levels</bookmark_value><bookmark_value>levels;changing outline levels</bookmark_value><bookmark_value>bullet lists;changing levels</bookmark_value><bookmark_value>lowering chapter levels</bookmark_value><bookmark_value>rising chapter levels</bookmark_value><bookmark_value>changing;chapter levels</bookmark_value><bookmark_value>lowering outline levels</bookmark_value><bookmark_value>rising outline levels</bookmark_value><bookmark_value>changing;outline levels</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>στάσεις στηλοθέτη; εισαγωγή σε λίστες</bookmark_value><bookmark_value>αρίθμηση; αλλαγή επιπέδου</bookmark_value><bookmark_value>κατάλογοι;αλλαγή επιπέδων</bookmark_value><bookmark_value>επίπεδα;αλλαγή επιπέδων κεφαλαίου</bookmark_value><bookmark_value>επίπεδα;αλλαγή επιπέδων διάρθρωσης</bookmark_value><bookmark_value>λίστες με κουκκίδες;αλλαγή επιπέδων</bookmark_value><bookmark_value>Υποβιβασμός επιπέδων κεφαλαίου</bookmark_value><bookmark_value>προαγωγή επιπέδων κεφαλαίου</bookmark_value><bookmark_value>αλλαγή;επίπεδα κεφαλαίου</bookmark_value><bookmark_value>υποβιβασμός επιπέδων διάρθρωσης</bookmark_value><bookmark_value>προαγωγή επιπέδων διάρθρωσης</bookmark_value><bookmark_value>αλλαγή;επίπεδα διάρθρωσης</bookmark_value>"
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8399,7 +8399,7 @@ msgctxt ""
"hd_id3145078\n"
"help.text"
msgid "<variable id=\"insert_tab_innumbering\"><link href=\"text/swriter/guide/insert_tab_innumbering.xhp\" name=\"Changing the Outline Level of Numbered and Bulleted Lists\">Changing the Chapter Level of Numbered and Bulleted Lists</link></variable>"
-msgstr ""
+msgstr "<variable id=\"insert_tab_innumbering\"><link href=\"text/swriter/guide/insert_tab_innumbering.xhp\" name=\"Αλλαγή του επιπέδου διάρθρωσης σε λίστες με κουκκίδες και αρίθμηση\">Αλλαγή του επιπέδου κεφαλαίου σε λίστες με κουκκίδες και αρίθμηση</link></variable>"
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8407,7 +8407,7 @@ msgctxt ""
"par_id3155909\n"
"help.text"
msgid "To move a numbered or bulleted paragraph down one chapter level, click at the beginning of the paragraph, and then press Tab."
-msgstr ""
+msgstr "Για να μετακινηθεί αριθμημένη ή με κουκκίδες παράγραφος ένα επίπεδο κεφαλαίου κάτω στην ιεραρχία, πατήστε στην αρχή της παραγράφου, και ύστερα πιέστε το πλήκτρο Tab."
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8415,7 +8415,7 @@ msgctxt ""
"par_id3155859\n"
"help.text"
msgid "To move a numbered or bulleted paragraph up one chapter level, click at the beginning of the paragraph, and then press Shift+Tab."
-msgstr ""
+msgstr "Για να να μετακινηθεί μια παράγραφος αριθμημένη ή με κουκκίδες ένα επίπεδο κεφαλαίου πάνω, πατήστε στην αρχή της παραγράφου και ύστερα πατήστε Shift+Tab."
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8423,7 +8423,7 @@ msgctxt ""
"par_id3153403\n"
"help.text"
msgid "To insert a tab between the number or bullet and the paragraph text, click at the beginning of the paragraph, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab."
-msgstr ""
+msgstr "Για να εισάγετε έναν στηλοθέτη μεταξύ του αριθμού ή της κουκκίδας και του κειμένου της παραγράφου, πατήστε στην αρχή της παραγράφου και ύστερα πατήστε <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab."
#: join_numbered_lists.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 5af960f9683..65ee77843fa 100644
--- a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/el/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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-08 07:44+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: 1562571877.000000\n"
@@ -21055,6 +21055,24 @@ msgstr "Δωρεά στο LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/el/sd/messages.po b/source/el/sd/messages.po
index 07052443659..c8941f3d6c9 100644
--- a/source/el/sd/messages.po
+++ b/source/el/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-08 07: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: 1562572253.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "Επι_θεώρηση"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Τ_αξινόμηση"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "Επε_ξεργασία"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "Πλέ_γμα"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_Δ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Γραφικό"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Χρώμα"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Μέσα"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Προβολή _παρουσίασης"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Π_λαίσιο"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Προ_βολή"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "_Κύρια σελίδα"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Ει_σαγωγή"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Σ_χέδιο"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "Προ_βολή"
diff --git a/source/el/sw/messages.po b/source/el/sw/messages.po
index c811b8218f1..6da7e5ea649 100644
--- a/source/el/sw/messages.po
+++ b/source/el/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-07-08 07:52+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: 1562572361.000000\n"
#: sw/inc/app.hrc:29
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Επιλογή αντικειμένου: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Επεξεργασία"
diff --git a/source/en-GB/cui/messages.po b/source/en-GB/cui/messages.po
index 6112a63a53f..9b2a76eb85f 100644
--- a/source/en-GB/cui/messages.po
+++ b/source/en-GB/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-12 12:06+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@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: 1562933207.000000\n"
#: cui/inc/numcategories.hrc:17
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Bullets and Numbering"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Level"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Type:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Start at:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Character:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Select..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Select image..."
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Width:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Height:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Keep ratio"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Before:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "After:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Separator"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Colour:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "_Rel. size:"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Indent:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Width:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0.00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0.00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "Relati_ve"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Position"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Alignment"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Slide"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Selection"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Apply to Master"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Scope"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Properties"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Preview"
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Help"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Use %PRODUCTNAME dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Save Dialogue Boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Use %PRODUCTNAME _dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Print Dialogue Boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Printing sets \"document modified\" status"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Document Status"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpret as years between "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "and "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Year (Two Digits)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Collect usage data and send it to The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Help Improve %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Load %PRODUCTNAME during system start-up"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Enable systray Quickstarter"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Next Tip"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Did you know?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Link"
diff --git a/source/en-GB/helpcontent2/source/auxiliary.po b/source/en-GB/helpcontent2/source/auxiliary.po
index e956add93ce..ad72beb7cec 100644
--- a/source/en-GB/helpcontent2/source/auxiliary.po
+++ b/source/en-GB/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-04-08 17:22+0000\n"
+"PO-Revision-Date: 2019-07-18 10:58+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: 1554744158.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563447496.000000\n"
#: sbasic.tree
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"11\n"
"help_section.text"
msgid "Drawings (Draw)"
-msgstr ""
+msgstr "Drawings (Draw)"
#: sdraw.tree
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"1101\n"
"node.text"
msgid "General Information and User Interface Usage"
-msgstr ""
+msgstr "General Information and User Interface Usage"
#: sdraw.tree
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"1102\n"
"node.text"
msgid "Command and Menu Reference"
-msgstr ""
+msgstr "Command and Menu Reference"
#: sdraw.tree
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"11020201\n"
"node.text"
msgid "Menus"
-msgstr ""
+msgstr "Menus"
#: sdraw.tree
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"11020202\n"
"node.text"
msgid "Toolbars"
-msgstr ""
+msgstr "Toolbars"
#: sdraw.tree
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"1103\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
-msgstr ""
+msgstr "Loading, Saving, Importing and Exporting"
#: sdraw.tree
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"1104\n"
"node.text"
msgid "Formatting"
-msgstr ""
+msgstr "Formatting"
#: sdraw.tree
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"1105\n"
"node.text"
msgid "Printing"
-msgstr ""
+msgstr "Printing"
#: sdraw.tree
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"1106\n"
"node.text"
msgid "Effects"
-msgstr ""
+msgstr "Effects"
#: sdraw.tree
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"1107\n"
"node.text"
msgid "Objects, Graphics, and Bitmaps"
-msgstr ""
+msgstr "Objects, Graphics and Bitmaps"
#: sdraw.tree
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"1108\n"
"node.text"
msgid "Groups and Layers"
-msgstr ""
+msgstr "Groups and Layers"
#: sdraw.tree
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"1109\n"
"node.text"
msgid "Text in Drawings"
-msgstr ""
+msgstr "Text in Drawings"
#: sdraw.tree
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"1110\n"
"node.text"
msgid "Viewing"
-msgstr ""
+msgstr "Viewing"
#: shared.tree
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"04\n"
"help_section.text"
msgid "Presentations (Impress)"
-msgstr ""
+msgstr "Presentations (Impress)"
#: simpress.tree
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"0409\n"
"node.text"
msgid "Text in Presentations"
-msgstr ""
+msgstr "Text in Presentations"
#: simpress.tree
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/sbasic/guide.po b/source/en-GB/helpcontent2/source/text/sbasic/guide.po
index 7dca194590d..abed0d70b99 100644
--- a/source/en-GB/helpcontent2/source/text/sbasic/guide.po
+++ b/source/en-GB/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2018-07-07 22:12+0000\n"
+"PO-Revision-Date: 2019-07-29 11: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: 1531001532.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564399095.000000\n"
#: access2base.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Basic Programming Examples"
-msgstr ""
+msgstr "Basic Programming Examples"
#: basic_examples.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"bm_id171559140731329\n"
"help.text"
msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Basic;programming examples</bookmark_value>"
#: basic_examples.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"hd_id471559139063621\n"
"help.text"
msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
-msgstr ""
+msgstr "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
#: control_properties.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"hd_id3155338\n"
"help.text"
msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link> </variable>"
#: sample_code.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Opening a Dialog With Basic"
-msgstr ""
+msgstr "Opening a Dialog With Basic"
#: show_dialog.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"bm_id3154140\n"
"help.text"
msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
#: show_dialog.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/sbasic/python.po b/source/en-GB/helpcontent2/source/text/sbasic/python.po
index ae448eeccf6..f4f616a41c9 100644
--- a/source/en-GB/helpcontent2/source/text/sbasic/python.po
+++ b/source/en-GB/helpcontent2/source/text/sbasic/python.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-04-20 09:35+0000\n"
+"PO-Revision-Date: 2019-07-29 11: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: 1555752929.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564399125.000000\n"
#: main0000.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Opening a Dialog with Python"
-msgstr ""
+msgstr "Opening a Dialog with Python"
#: python_dialogs.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"N0336\n"
"help.text"
msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
#: python_dialogs.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python : Monitoring Document Events"
-msgstr ""
+msgstr "Python : Monitoring Document Events"
#: python_document_events.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"N0526\n"
"help.text"
msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
#: python_document_events.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"N0527\n"
"help.text"
msgid "<variable id=\"pythonmonitor\"><link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitoring Document Events\">Monitoring Document Events</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonmonitor\"><link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitoring Document Events\">Monitoring Document Events</link></variable>"
#: python_document_events.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"N0528\n"
"help.text"
msgid "Next to <link href=\"text/sbasic/shared/01040000.xhp\" name=\"assigning macros to events\">assigning macros to events</link>, one can monitor events raised by %PRODUCTNAME documents. Application Programming Interface (API) broadcasters are responsible for calling event scripts. Unlike listeners that require to define all supported methods, even if unused, document monitors require only two methods next to hooked event scripts."
-msgstr ""
+msgstr "Next to <link href=\"text/sbasic/shared/01040000.xhp\" name=\"assigning macros to events\">assigning macros to events</link>, one can monitor events raised by %PRODUCTNAME documents. Application Programming Interface (API) broadcasters are responsible for calling event scripts. Unlike listeners that require to define all supported methods, even if unused, document monitors require only two methods next to hooked event scripts."
#: python_document_events.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"N0529\n"
"help.text"
msgid "Listening to Document Events"
-msgstr ""
+msgstr "Listening to Document Events"
#: python_document_events.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/sbasic/shared.po b/source/en-GB/helpcontent2/source/text/sbasic/shared.po
index 9e801cd6300..f6fca8290a4 100644
--- a/source/en-GB/helpcontent2/source/text/sbasic/shared.po
+++ b/source/en-GB/helpcontent2/source/text/sbasic/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-04-20 09:40+0000\n"
+"PO-Revision-Date: 2019-07-29 11:17+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: 1555753206.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564399048.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -26158,7 +26158,7 @@ msgctxt ""
"par_id941552915528262\n"
"help.text"
msgid "When VBA support is enabled, %PRODUCTNAME Basic function arguments and return values are the same as their VBA functions counterparts. When the support is disabled, %PRODUCTNAME Basic functions may accept arguments and return values different of their VBA counterparts."
-msgstr ""
+msgstr "When VBA support is enabled, %PRODUCTNAME Basic function arguments and return values are the same as their VBA functions counterparts. When the support is disabled, %PRODUCTNAME Basic functions may accept arguments and return values different from their VBA counterparts."
#: 03103350.xhp
msgctxt ""
@@ -28022,7 +28022,7 @@ msgctxt ""
"par_id3149295\n"
"help.text"
msgid "<emph>Expression:</emph> a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value."
-msgstr ""
+msgstr "<emph>Expression:</emph> a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value."
#: 03120102.xhp
msgctxt ""
@@ -28030,7 +28030,7 @@ msgctxt ""
"par_id991552913928635\n"
"help.text"
msgid "When VBA compatibility mode is enabled (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>OPTION VBASUPPORT 1</literal></link>), <emph>Expression</emph> is a numeric expression that represents a valid 8-bit ASCII value (0-255) only."
-msgstr ""
+msgstr "When VBA compatibility mode is enabled (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>OPTION VBASUPPORT 1</literal></link>), <emph>Expression</emph> is a numeric expression that represents a valid 8-bit ASCII value (0-255) only."
#: 03120102.xhp
msgctxt ""
@@ -36198,7 +36198,7 @@ msgctxt ""
"hd_id3154232\n"
"help.text"
msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
-msgstr ""
+msgstr "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
#: main0601.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/sbasic/shared/03.po b/source/en-GB/helpcontent2/source/text/sbasic/shared/03.po
index 8891b4e138b..45bb1be39b9 100644
--- a/source/en-GB/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/en-GB/helpcontent2/source/text/sbasic/shared/03.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-02-03 21:17+0000\n"
+"PO-Revision-Date: 2019-07-29 11:17+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: 1549228678.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564399069.000000\n"
#: lib_depot.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id261558858921700\n"
"help.text"
msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
-msgstr ""
+msgstr "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
#: lib_tools.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/scalc/01.po b/source/en-GB/helpcontent2/source/text/scalc/01.po
index b3932489e14..6aa091eecca 100644
--- a/source/en-GB/helpcontent2/source/text/scalc/01.po
+++ b/source/en-GB/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: 2019-06-03 17:45+0200\n"
-"PO-Revision-Date: 2019-04-10 09:08+0000\n"
+"PO-Revision-Date: 2019-07-18 11:08+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: 1554887303.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563448097.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -6358,7 +6358,7 @@ msgctxt ""
"bm_id3159147\n"
"help.text"
msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECT function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECT function</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -6366,7 +6366,7 @@ msgctxt ""
"hd_id3159147\n"
"help.text"
msgid "EFFECT"
-msgstr ""
+msgstr "EFFECT"
#: 04060103.xhp
msgctxt ""
@@ -6390,7 +6390,7 @@ msgctxt ""
"par_id3148805\n"
"help.text"
msgid "EFFECT(Nom; P)"
-msgstr ""
+msgstr "EFFECT(Nom; P)"
#: 04060103.xhp
msgctxt ""
@@ -6422,7 +6422,7 @@ msgctxt ""
"par_id3150772\n"
"help.text"
msgid "<item type=\"input\">=EFFECT(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
-msgstr ""
+msgstr "<item type=\"input\">=EFFECT(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
#: 04060103.xhp
msgctxt ""
@@ -40950,7 +40950,7 @@ msgctxt ""
"par_id3153192\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialogue box to locate the file containing the data you want to insert.</ahelp>"
#: 04090000.xhp
msgctxt ""
@@ -40982,7 +40982,7 @@ msgctxt ""
"par_id3145366\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialogue box that opens. Only then will the URL be requested from the network or file system."
#: 04090000.xhp
msgctxt ""
@@ -41006,7 +41006,7 @@ msgctxt ""
"par_id3147397\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
#: 04090000.xhp
msgctxt ""
@@ -46294,7 +46294,7 @@ msgctxt ""
"par_id3153836\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
#: 12070000.xhp
msgctxt ""
@@ -51558,7 +51558,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "CONCAT function"
-msgstr ""
+msgstr "CONCAT function"
#: func_concat.xhp
msgctxt ""
@@ -51566,7 +51566,7 @@ msgctxt ""
"bm_id741556228031712\n"
"help.text"
msgid "<bookmark_value>CONCAT function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>CONCAT function</bookmark_value>"
#: func_concat.xhp
msgctxt ""
@@ -51574,7 +51574,7 @@ msgctxt ""
"hd_id471556226436779\n"
"help.text"
msgid "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
-msgstr ""
+msgstr "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
#: func_concat.xhp
msgctxt ""
@@ -51582,7 +51582,7 @@ msgctxt ""
"par_id891556226436781\n"
"help.text"
msgid "<variable id=\"concatfunction\"><ahelp hid=\".\">Concatenates one or more strings</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"concatfunction\"><ahelp hid=\".\">Concatenates one or more strings</ahelp></variable>"
#: func_concat.xhp
msgctxt ""
@@ -51590,7 +51590,7 @@ msgctxt ""
"par_id701556226865876\n"
"help.text"
msgid "CONCAT is an enhancement of CONCATENATE, as CONCAT also accepts ranges as arguments, like B2:E5, K:K or K:M."
-msgstr ""
+msgstr "CONCAT is an enhancement of CONCATENATE, as CONCAT also accepts ranges as arguments, like B2:E5, K:K or K:M."
#: func_concat.xhp
msgctxt ""
@@ -51598,7 +51598,7 @@ msgctxt ""
"par_id461556226873963\n"
"help.text"
msgid "When ranges are used, the cells are traversed row by row (from top to bottom) to concatenate."
-msgstr ""
+msgstr "When ranges are used, the cells are traversed row by row (from top to bottom) to concatenate."
#: func_concat.xhp
msgctxt ""
@@ -51606,7 +51606,7 @@ msgctxt ""
"par_id911556226813411\n"
"help.text"
msgid "CONCAT( string1[, string2][, …] )"
-msgstr ""
+msgstr "CONCAT( string1[, string2][, …] )"
#: func_concat.xhp
msgctxt ""
@@ -51614,7 +51614,7 @@ msgctxt ""
"par_id581556227044166\n"
"help.text"
msgid "<emph>string1[, string2][, …]</emph> are strings or references to cells or ranges that contains strings to concatenate."
-msgstr ""
+msgstr "<emph>string1[, string2][, …]</emph> are strings or references to cells or ranges that contain strings to concatenate."
#: func_concat.xhp
msgctxt ""
@@ -51622,7 +51622,7 @@ msgctxt ""
"par_id531556227248228\n"
"help.text"
msgid "<input>=CONCAT(\"Hello \", A1:C3)</input> concatenates the string \"Hello\" with all strings in range <literal>A1:C3</literal>."
-msgstr ""
+msgstr "<input>=CONCAT(\"Hello \", A1:C3)</input> concatenates the string \"Hello\" with all strings in range <literal>A1:C3</literal>."
#: func_concat.xhp
msgctxt ""
@@ -51630,7 +51630,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
#: func_countifs.xhp
msgctxt ""
@@ -53574,7 +53574,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "IFS function"
-msgstr ""
+msgstr "IFS function"
#: func_ifs.xhp
msgctxt ""
@@ -53582,7 +53582,7 @@ msgctxt ""
"bm_id901556242230198\n"
"help.text"
msgid "<bookmark_value>IFS function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>IFS function</bookmark_value>"
#: func_ifs.xhp
msgctxt ""
@@ -53590,7 +53590,7 @@ msgctxt ""
"hd_id271556234923654\n"
"help.text"
msgid "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\" name=\"function ifs\">IFS</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\" name=\"function ifs\">IFS</link></variable>"
#: func_ifs.xhp
msgctxt ""
@@ -53598,7 +53598,7 @@ msgctxt ""
"par_id171556234923655\n"
"help.text"
msgid "<variable id=\"variable name\"><ahelp hid=\".\">IFS is a multiple IF-function.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"variable name\"><ahelp hid=\".\">IFS is a multiple IF-function.</ahelp></variable>"
#: func_ifs.xhp
msgctxt ""
@@ -53606,7 +53606,7 @@ msgctxt ""
"par_id271556235333493\n"
"help.text"
msgid "IFS( expression1, result1[, expression2, result2][, …] )"
-msgstr ""
+msgstr "IFS( expression1, result1[, expression2, result2][, …] )"
#: func_ifs.xhp
msgctxt ""
@@ -53614,7 +53614,7 @@ msgctxt ""
"par_id31556235655212\n"
"help.text"
msgid "<emph>expression1, expression2, ...</emph> are any boolean values or expressions that can be TRUE or FALSE"
-msgstr ""
+msgstr "<emph>expression1, expression2, ...</emph> are any boolean values or expressions that can be TRUE or FALSE"
#: func_ifs.xhp
msgctxt ""
@@ -53622,7 +53622,7 @@ msgctxt ""
"par_id441556235649549\n"
"help.text"
msgid "<emph>result1, result2, ... </emph> are the values that are returned if the logical test is TRUE"
-msgstr ""
+msgstr "<emph>result1, result2, ... </emph> are the values that are returned if the logical test is TRUE"
#: func_ifs.xhp
msgctxt ""
@@ -53630,7 +53630,7 @@ msgctxt ""
"par_id641556235704257\n"
"help.text"
msgid "IFS( expression1, result1, expression2, result2, expression3, result3 ) is executed as"
-msgstr ""
+msgstr "IFS( expression1, result1, expression2, result2, expression3, result3 ) is executed as"
#: func_ifs.xhp
msgctxt ""
@@ -53638,7 +53638,7 @@ msgctxt ""
"par_id551556235712759\n"
"help.text"
msgid "IF expression1 is TRUE"
-msgstr ""
+msgstr "IF expression1 is TRUE"
#: func_ifs.xhp
msgctxt ""
@@ -53646,7 +53646,7 @@ msgctxt ""
"par_id1001556235718948\n"
"help.text"
msgid "THEN result1"
-msgstr ""
+msgstr "THEN result1"
#: func_ifs.xhp
msgctxt ""
@@ -53654,7 +53654,7 @@ msgctxt ""
"par_id571556235725969\n"
"help.text"
msgid "ELSE IF expression2 is TRUE"
-msgstr ""
+msgstr "ELSE IF expression2 is TRUE"
#: func_ifs.xhp
msgctxt ""
@@ -53662,7 +53662,7 @@ msgctxt ""
"par_id581556235731982\n"
"help.text"
msgid "THEN result2"
-msgstr ""
+msgstr "THEN result2"
#: func_ifs.xhp
msgctxt ""
@@ -53670,7 +53670,7 @@ msgctxt ""
"par_id961556235738258\n"
"help.text"
msgid "ELSE IF expression3 is TRUE"
-msgstr ""
+msgstr "ELSE IF expression3 is TRUE"
#: func_ifs.xhp
msgctxt ""
@@ -53678,7 +53678,7 @@ msgctxt ""
"par_id951556235743954\n"
"help.text"
msgid "THEN result3"
-msgstr ""
+msgstr "THEN result3"
#: func_ifs.xhp
msgctxt ""
@@ -53686,7 +53686,7 @@ msgctxt ""
"par_id671556235758504\n"
"help.text"
msgid "To get a default result should no expression be TRUE, add a last expression that is always TRUE, like TRUE or 1=1 followed by the default result."
-msgstr ""
+msgstr "To get a default result should no expression be TRUE, add a last expression that is always TRUE, like TRUE or 1=1 followed by the default result."
#: func_ifs.xhp
msgctxt ""
@@ -53694,7 +53694,7 @@ msgctxt ""
"par_id541556235771022\n"
"help.text"
msgid "If there is a result missing for an expression or is no expression is TRUE, a #N/A error is returned."
-msgstr ""
+msgstr "If there is a result missing for an expression or is no expression is TRUE, a #N/A error is returned."
#: func_ifs.xhp
msgctxt ""
@@ -53702,7 +53702,7 @@ msgctxt ""
"par_id181556235788473\n"
"help.text"
msgid "If expression is neither TRUE or FALSE, a #VALUE error is returned."
-msgstr ""
+msgstr "If expression is neither TRUE or FALSE, a #VALUE error is returned."
#: func_ifs.xhp
msgctxt ""
@@ -53710,7 +53710,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
#: func_imcos.xhp
msgctxt ""
@@ -55990,7 +55990,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "SWITCH function"
-msgstr ""
+msgstr "SWITCH function"
#: func_switch.xhp
msgctxt ""
@@ -55998,7 +55998,7 @@ msgctxt ""
"bm_id571556244875552\n"
"help.text"
msgid "<bookmark_value>SWITCH function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>SWITCH function</bookmark_value>"
#: func_switch.xhp
msgctxt ""
@@ -56006,7 +56006,7 @@ msgctxt ""
"hd_id21556242313791\n"
"help.text"
msgid "<variable id=\"switchfunct\"><link href=\"text/scalc/01/func_switch.xhp\" name=\"switch\">SWITCH</link></variable>"
-msgstr ""
+msgstr "<variable id=\"switchfunct\"><link href=\"text/scalc/01/func_switch.xhp\" name=\"switch\">SWITCH</link></variable>"
#: func_switch.xhp
msgctxt ""
@@ -56014,7 +56014,7 @@ msgctxt ""
"par_id361556242313793\n"
"help.text"
msgid "<variable id=\"functionswitch\"><ahelp hid=\".\">SWITCH compares <emph>expression</emph> with <emph>value1</emph> to <emph>valuen</emph> and returns the result belonging to the first value that equals expression. If there is no match and default_result is given, that will be returned.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"functionswitch\"><ahelp hid=\".\">SWITCH compares <emph>expression</emph> with <emph>value1</emph> to <emph>valuen</emph> and returns the result belonging to the first value that equals expression. If there is no match and default_result is given, that will be returned.</ahelp></variable>"
#: func_switch.xhp
msgctxt ""
@@ -56022,7 +56022,7 @@ msgctxt ""
"par_id521556242803283\n"
"help.text"
msgid "SWITCH( expression, value1, result1[, value2, result2][, … ][, default_result] )"
-msgstr ""
+msgstr "SWITCH( expression, value1, result1[, value2, result2][, … ][, default_result] )"
#: func_switch.xhp
msgctxt ""
@@ -56030,7 +56030,7 @@ msgctxt ""
"par_id341556242996378\n"
"help.text"
msgid "<emph>expression</emph> is a text, numeric, logical or date input or reference to a cell."
-msgstr ""
+msgstr "<emph>expression</emph> is a text, numeric, logical or date input or reference to a cell."
#: func_switch.xhp
msgctxt ""
@@ -56038,7 +56038,7 @@ msgctxt ""
"par_id321556243790332\n"
"help.text"
msgid "<emph>value1, value2, ...</emph> is any value or reference to a cell. Each value must have a result given."
-msgstr ""
+msgstr "<emph>value1, value2, ...</emph> is any value or reference to a cell. Each value must have a result given."
#: func_switch.xhp
msgctxt ""
@@ -56046,7 +56046,7 @@ msgctxt ""
"par_id171556243796068\n"
"help.text"
msgid "<emph>result1, result2, ...</emph> is any value or reference to a cell."
-msgstr ""
+msgstr "<emph>result1, result2, ...</emph> is any value or reference to a cell."
#: func_switch.xhp
msgctxt ""
@@ -56054,7 +56054,7 @@ msgctxt ""
"par_id331556245422283\n"
"help.text"
msgid "<emph>default_result</emph>: any value or reference to a cell that is returned when there is no match."
-msgstr ""
+msgstr "<emph>default_result</emph>: any value or reference to a cell that is returned when there is no match."
#: func_switch.xhp
msgctxt ""
@@ -56062,7 +56062,7 @@ msgctxt ""
"par_id871556243022881\n"
"help.text"
msgid "If no <emph>value</emph> equals <emph>expression</emph> and no default result is given, a #N/A error is returned."
-msgstr ""
+msgstr "If no <emph>value</emph> equals <emph>expression</emph> and no default result is given, a #N/A error is returned."
#: func_switch.xhp
msgctxt ""
@@ -56070,7 +56070,7 @@ msgctxt ""
"par_id851556243961783\n"
"help.text"
msgid "<input>=SWITCH(MONTH(A3),1,\"January\",2,\"February\",3,\"March\",\"No match\")</input> returns \"January\" when A3=1, February when A3=2 , etc..."
-msgstr ""
+msgstr "<input>=SWITCH(MONTH(A3),1,\"January\",2,\"February\",3,\"March\",\"No match\")</input> returns \"January\" when A3=1, February when A3=2 , etc..."
#: func_switch.xhp
msgctxt ""
@@ -56078,7 +56078,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
#: func_textjoin.xhp
msgctxt ""
@@ -56086,7 +56086,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "TEXTJOIN function"
-msgstr ""
+msgstr "TEXTJOIN function"
#: func_textjoin.xhp
msgctxt ""
@@ -56094,7 +56094,7 @@ msgctxt ""
"bm_id581556228060864\n"
"help.text"
msgid "<bookmark_value>TEXTJOIN function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>TEXTJOIN function</bookmark_value>"
#: func_textjoin.xhp
msgctxt ""
@@ -56102,7 +56102,7 @@ msgctxt ""
"hd_id551556227727946\n"
"help.text"
msgid "<variable id=\"textjoinfunct\"><link href=\"text/scalc/01/func_textjoin.xhp\" name=\"textjoinfunction\">TEXTJOIN</link></variable>"
-msgstr ""
+msgstr "<variable id=\"textjoinfunct\"><link href=\"text/scalc/01/func_textjoin.xhp\" name=\"textjoinfunction\">TEXTJOIN</link></variable>"
#: func_textjoin.xhp
msgctxt ""
@@ -56110,7 +56110,7 @@ msgctxt ""
"par_id121556227727948\n"
"help.text"
msgid "<variable id=\"textjoinfunction\"><ahelp hid=\".\">Concatenates one or more strings, and uses delimiters between them.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"textjoinfunction\"><ahelp hid=\".\">Concatenates one or more strings, and inserts delimiters between them.</ahelp></variable>"
#: func_textjoin.xhp
msgctxt ""
@@ -56118,7 +56118,7 @@ msgctxt ""
"par_id541556228253979\n"
"help.text"
msgid "TEXTJOIN( delimiter, skip_empty, string1[, string2][, …] )"
-msgstr ""
+msgstr "TEXTJOIN( delimiter, skip_empty, string1[, string2][, …] )"
#: func_textjoin.xhp
msgctxt ""
@@ -56126,7 +56126,7 @@ msgctxt ""
"par_id741556228390897\n"
"help.text"
msgid "<emph>delimiter</emph> is a text string and can be a range."
-msgstr ""
+msgstr "<emph>delimiter</emph> is a text string and can be a range."
#: func_textjoin.xhp
msgctxt ""
@@ -56134,7 +56134,7 @@ msgctxt ""
"par_id621556228397269\n"
"help.text"
msgid "<emph>skip_empty</emph> is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE, empty strings will be ignored."
-msgstr ""
+msgstr "<emph>skip_empty</emph> is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE, empty strings will be ignored."
#: func_textjoin.xhp
msgctxt ""
@@ -56142,7 +56142,7 @@ msgctxt ""
"par_id631556228516997\n"
"help.text"
msgid "<emph>string1[, string2][, …]</emph> are strings or references to cells or ranges that contains text to join."
-msgstr ""
+msgstr "<emph>string1[, string2][, …]</emph> are strings or references to cells or ranges that contain text to join."
#: func_textjoin.xhp
msgctxt ""
@@ -56150,7 +56150,7 @@ msgctxt ""
"par_id1001556228523394\n"
"help.text"
msgid "Ranges are traversed row by row (from top to bottom)."
-msgstr ""
+msgstr "Ranges are traversed row by row (from top to bottom)."
#: func_textjoin.xhp
msgctxt ""
@@ -56158,7 +56158,7 @@ msgctxt ""
"par_id81556228530082\n"
"help.text"
msgid "If <emph>delimiter</emph> is a range, the range need not be of the same size as the number of strings to be joined."
-msgstr ""
+msgstr "If <emph>delimiter</emph> is a range, the range need not be of the same size as the number of strings to be joined."
#: func_textjoin.xhp
msgctxt ""
@@ -56166,7 +56166,7 @@ msgctxt ""
"par_id831556228543099\n"
"help.text"
msgid "If there are more delimiters than strings to be joined, not all delimiters will be used."
-msgstr ""
+msgstr "If there are more delimiters than strings to be joined, not all delimiters will be used."
#: func_textjoin.xhp
msgctxt ""
@@ -56174,7 +56174,7 @@ msgctxt ""
"par_id321556228557611\n"
"help.text"
msgid "If there are less delimiters than strings to be joined, the delimiters will be used again from the start."
-msgstr ""
+msgstr "If there are fewer delimiters than strings to be joined, the delimiters will be used again from the start."
#: func_textjoin.xhp
msgctxt ""
@@ -56182,7 +56182,7 @@ msgctxt ""
"par_id441556229012536\n"
"help.text"
msgid "<input>=TEXTJOIN(\" \",TRUE, \"Here\", \"comes\", \"the\", \"sun\")</input> returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored."
-msgstr ""
+msgstr "<input>=TEXTJOIN(\" \",TRUE, \"Here\", \"comes\", \"the\", \"sun\")</input> returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored."
#: func_textjoin.xhp
msgctxt ""
@@ -56190,7 +56190,7 @@ msgctxt ""
"par_id441556239012536\n"
"help.text"
msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, <input>=TEXTJOIN(\"-\",TRUE,A1:B2)</input> returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored."
-msgstr ""
+msgstr "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, <input>=TEXTJOIN(\"-\",TRUE,A1:B2)</input> returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored."
#: func_textjoin.xhp
msgctxt ""
@@ -56198,7 +56198,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
#: func_time.xhp
msgctxt ""
@@ -58742,7 +58742,7 @@ msgctxt ""
"par_id841554943563747\n"
"help.text"
msgid "F-critical"
-msgstr ""
+msgstr "F-critical"
#: statistics.xhp
msgctxt ""
@@ -58758,7 +58758,7 @@ msgctxt ""
"par_id411554944014360\n"
"help.text"
msgid "3.340385558"
-msgstr ""
+msgstr "3.340385558"
#: statistics.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/schart/00.po b/source/en-GB/helpcontent2/source/text/schart/00.po
index 880d525bc48..4c29d4f039a 100644
--- a/source/en-GB/helpcontent2/source/text/schart/00.po
+++ b/source/en-GB/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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-01-18 21:20+0000\n"
+"PO-Revision-Date: 2019-07-18 10:58+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: 1547846419.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563447536.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_id733359\n"
"help.text"
msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
-msgstr ""
+msgstr "<variable id=\"smlp\">In the Chart Type dialogue box of a Line chart or X-Y chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
#: 00000004.xhp
msgctxt ""
@@ -494,4 +494,4 @@ msgctxt ""
"par_id8513095\n"
"help.text"
msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
-msgstr ""
+msgstr "<variable id=\"stlp\">In the Chart Type dialogue box of a Line chart or X-Y chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
diff --git a/source/en-GB/helpcontent2/source/text/sdraw.po b/source/en-GB/helpcontent2/source/text/sdraw.po
index a396f5bef8b..90272925a63 100644
--- a/source/en-GB/helpcontent2/source/text/sdraw.po
+++ b/source/en-GB/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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-10-19 14:38+0000\n"
+"PO-Revision-Date: 2019-07-18 11:26+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: 1508423929.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563449177.000000\n"
#: main0000.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Edit"
#: main_edit.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"hd_id3150868\n"
"help.text"
msgid "<link href=\"text/sdraw/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_edit.xhp\" name=\"Edit\">Edit</link>"
#: main_edit.xhp
msgctxt ""
@@ -654,7 +654,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 ""
+msgstr "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
#: main_edit.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"hd_id3147396\n"
"help.text"
msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
#: main_edit.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"hd_id3149400\n"
"help.text"
msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
#: main_edit.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"hd_id3153713\n"
"help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
#: main_edit.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"par_id3147340\n"
"help.text"
msgid "Enables you to edit points on your drawing."
-msgstr ""
+msgstr "Enables you to edit points on your drawing."
#: main_edit.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"hd_id3149258\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue Points\">Glue Points</link>"
#: main_edit.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id3146315\n"
"help.text"
msgid "Enables you to edit glue points on your drawing."
-msgstr ""
+msgstr "Enables you to edit glue points on your drawing."
#: main_edit.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"hd_id3147005\n"
"help.text"
msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
#: main_edit.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"hd_id3150205\n"
"help.text"
msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
#: main_edit.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"hd_id3154650\n"
"help.text"
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
#: main_edit.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"hd_id3156446\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
#: main_edit.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"hd_id3157867\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
#: main_format.xhp
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Format"
#: main_format.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"hd_id3153770\n"
"help.text"
msgid "<link href=\"text/sdraw/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_format.xhp\" name=\"Format\">Format</link>"
#: main_format.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"par_id3152578\n"
"help.text"
msgid "Contains commands for formatting the layout and the contents of your document."
-msgstr ""
+msgstr "Contains commands for formatting the layout and the contents of your document."
#: main_format.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"hd_id3155111\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
#: main_format.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"hd_id3146979\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
#: main_format.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"hd_id3166426\n"
"help.text"
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
#: main_format.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"hd_id3146971\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
#: main_format.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"hd_id3148576\n"
"help.text"
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
#: main_format.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"hd_id3151076\n"
"help.text"
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
#: main_format.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"hd_id3153878\n"
"help.text"
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
#: main_format.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"hd_id3153913\n"
"help.text"
msgid "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">Layer</link>"
#: main_insert.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "Insert"
#: main_insert.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"hd_id3148797\n"
"help.text"
msgid "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insert\">Insert</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insert\">Insert</link>"
#: main_insert.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
-msgstr ""
+msgstr "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
#: main_insert.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"hd_id3146974\n"
"help.text"
msgid "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Layer</link>"
#: main_insert.xhp
msgctxt ""
@@ -870,7 +870,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 ""
+msgstr "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Insert Snap Point/Line</link>"
#: main_insert.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"hd_id0915200910361385\n"
"help.text"
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
#: main_insert.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
#: main_insert.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"hd_id3150749\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
#: main_insert.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"hd_id3156385\n"
"help.text"
msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
#: main_insert.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"hd_id3147003\n"
"help.text"
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
-msgstr ""
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
#: main_insert.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id0302200904020595\n"
"help.text"
msgid "Inserts a chart."
-msgstr ""
+msgstr "Inserts a chart."
#: main_insert.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"hd_id3155111\n"
"help.text"
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
#: main_insert.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"hd_id3157867\n"
"help.text"
msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
#: main_page.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Page"
#: main_page.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"hd_id41556822227733\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Page</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Page</link>"
#: main_page.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"par_id771556822318420\n"
"help.text"
msgid "This menu provides page management and navigation commands."
-msgstr ""
+msgstr "This menu provides page management and navigation commands."
#: main_page.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"hd_id131556822326832\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
#: main_page.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"hd_id3155091\n"
"help.text"
msgid "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Properties</link>"
#: main_tools.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Tools"
-msgstr ""
+msgstr "Tools"
#: main_tools.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/sdraw/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_tools.xhp\" name=\"Tools\">Tools</link>"
#: main_tools.xhp
msgctxt ""
@@ -998,7 +998,7 @@ msgctxt ""
"par_id3156443\n"
"help.text"
msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
-msgstr ""
+msgstr "This menu provides tools for $[officename] Draw as well as access to language and system settings."
#: main_tools.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"hd_id3148699\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
#: main_tools.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"hd_id3153415\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
#: main_tools.xhp
msgctxt ""
@@ -1022,4 +1022,4 @@ msgctxt ""
"hd_id3150044\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customise\">Customise</link>"
diff --git a/source/en-GB/helpcontent2/source/text/sdraw/00.po b/source/en-GB/helpcontent2/source/text/sdraw/00.po
index ead63b32776..3ee9e57a66b 100644
--- a/source/en-GB/helpcontent2/source/text/sdraw/00.po
+++ b/source/en-GB/helpcontent2/source/text/sdraw/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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-09 20:38+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-18 10:59+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"
@@ -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: 1494362321.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563447571.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Menu"
-msgstr ""
+msgstr "Page Menu"
#: page_menu.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id341556823034391\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <emph>Page - Properties</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Choose <emph>Page - Properties</emph> </variable>"
#: page_menu.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id561556823042778\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <emph>Page - Properties</emph> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Choose <emph>Page - Properties</emph> and then click the <emph>Page</emph> tab </variable>"
#: page_menu.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id321556823043909\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <emph>Page - Properties</emph> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Choose <emph>Page - Properties</emph> and then click the <emph>Background</emph> tab </variable>"
#: page_menu.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id941556823044342\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Page - Master Page</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Choose <emph>Page - Master Page</emph> </variable>"
#: page_menu.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id191556823044529\n"
"help.text"
msgid "Choose <emph>Page - New Page</emph>"
-msgstr ""
+msgstr "Choose <emph>Page - New Page</emph>"
#: page_menu.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id1001556823044677\n"
"help.text"
msgid "On the <emph>Insert</emph> bar, click"
-msgstr ""
+msgstr "On the <emph>Insert</emph> bar, click"
#: page_menu.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id351556823072396\n"
"help.text"
msgid "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Icon</alt></image>"
#: page_menu.xhp
msgctxt ""
@@ -102,4 +102,4 @@ msgctxt ""
"par_id831556823072396\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "New Page"
diff --git a/source/en-GB/helpcontent2/source/text/sdraw/01.po b/source/en-GB/helpcontent2/source/text/sdraw/01.po
index 60fe2cf7d30..34a391aa24a 100644
--- a/source/en-GB/helpcontent2/source/text/sdraw/01.po
+++ b/source/en-GB/helpcontent2/source/text/sdraw/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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-09 20:38+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-18 10:59+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"
@@ -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: 1494362321.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563447592.000000\n"
#: new_page.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "New Page"
#: new_page.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3150202\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
#: new_page.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id3152988\n"
"help.text"
msgid "<variable id=\"seitetext\">Inserts a blank page after the selected page.</variable>"
-msgstr ""
+msgstr "<variable id=\"seitetext\">Inserts a blank page after the selected page.</variable>"
#: page_properties.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Page"
#: page_properties.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"hd_id231556821873595\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Page"
#: page_properties.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id571556821811542\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
#: page_properties.xhp
msgctxt ""
@@ -70,4 +70,4 @@ msgctxt ""
"par_id691556822054550\n"
"help.text"
msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialogue box."
diff --git a/source/en-GB/helpcontent2/source/text/shared/00.po b/source/en-GB/helpcontent2/source/text/shared/00.po
index a461560fe07..d37fc133a62 100644
--- a/source/en-GB/helpcontent2/source/text/shared/00.po
+++ b/source/en-GB/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-04-10 09:10+0000\n"
+"PO-Revision-Date: 2019-07-18 11:31+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: 1554887442.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563449510.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -11958,7 +11958,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit Menu"
-msgstr ""
+msgstr "Edit Menu"
#: edit_menu.xhp
msgctxt ""
@@ -11966,7 +11966,7 @@ msgctxt ""
"hd_id3147273\n"
"help.text"
msgid "Edit Menu"
-msgstr ""
+msgstr "Edit Menu"
#: edit_menu.xhp
msgctxt ""
@@ -11974,7 +11974,7 @@ msgctxt ""
"par_id3085157\n"
"help.text"
msgid "Choose <emph>Edit - Undo</emph>."
-msgstr ""
+msgstr "Choose <emph>Edit - Undo</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -11982,7 +11982,7 @@ msgctxt ""
"par_id3145160\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
#: edit_menu.xhp
msgctxt ""
@@ -11990,7 +11990,7 @@ msgctxt ""
"par_id3154094\n"
"help.text"
msgid "On the <emph>Standard</emph> bar or <emph>Table Data</emph> bar, click"
-msgstr ""
+msgstr "On the <emph>Standard</emph> bar or <emph>Table Data</emph> bar, click"
#: edit_menu.xhp
msgctxt ""
@@ -11998,7 +11998,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 ""
+msgstr "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icon</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12006,7 +12006,7 @@ msgctxt ""
"par_id3148563\n"
"help.text"
msgid "Undo"
-msgstr ""
+msgstr "Undo"
#: edit_menu.xhp
msgctxt ""
@@ -12014,7 +12014,7 @@ msgctxt ""
"par_id3145068\n"
"help.text"
msgid "Choose <emph>Edit - Redo</emph>."
-msgstr ""
+msgstr "Choose <emph>Edit - Redo</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12022,7 +12022,7 @@ msgctxt ""
"par_id3153897\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "On the <emph>Standard</emph> bar, click"
#: edit_menu.xhp
msgctxt ""
@@ -12030,7 +12030,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 ""
+msgstr "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icon</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12038,7 +12038,7 @@ msgctxt ""
"par_id3151211\n"
"help.text"
msgid "Redo"
-msgstr ""
+msgstr "Redo"
#: edit_menu.xhp
msgctxt ""
@@ -12046,7 +12046,7 @@ msgctxt ""
"par_id3154365\n"
"help.text"
msgid "<variable id=\"letzter\">Choose <emph>Edit - Repeat</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"letzter\">Choose <emph>Edit - Repeat</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12054,7 +12054,7 @@ msgctxt ""
"par_id3149765\n"
"help.text"
msgid "Choose <emph>Edit - Cut</emph>."
-msgstr ""
+msgstr "Choose <emph>Edit - Cut</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12062,7 +12062,7 @@ msgctxt ""
"par_id3144762\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
#: edit_menu.xhp
msgctxt ""
@@ -12070,7 +12070,7 @@ msgctxt ""
"par_id3148744\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "On the <emph>Standard</emph> bar, click"
#: edit_menu.xhp
msgctxt ""
@@ -12078,7 +12078,7 @@ msgctxt ""
"par_id3145173\n"
"help.text"
msgid "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icon</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12086,7 +12086,7 @@ msgctxt ""
"par_id3154153\n"
"help.text"
msgid "Cut"
-msgstr ""
+msgstr "Cut"
#: edit_menu.xhp
msgctxt ""
@@ -12094,7 +12094,7 @@ msgctxt ""
"par_id3150742\n"
"help.text"
msgid "Choose <emph>Edit - Copy</emph>."
-msgstr ""
+msgstr "Choose <emph>Edit - Copy</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12102,7 +12102,7 @@ msgctxt ""
"par_id3148923\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
#: edit_menu.xhp
msgctxt ""
@@ -12110,7 +12110,7 @@ msgctxt ""
"par_id3159254\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "On the <emph>Standard</emph> bar, click"
#: edit_menu.xhp
msgctxt ""
@@ -12118,7 +12118,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 ""
+msgstr "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Icon</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12126,7 +12126,7 @@ msgctxt ""
"par_id3150685\n"
"help.text"
msgid "Copy"
-msgstr ""
+msgstr "Copy"
#: edit_menu.xhp
msgctxt ""
@@ -12134,7 +12134,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "Choose <emph>Edit - Paste</emph>."
-msgstr ""
+msgstr "Choose <emph>Edit - Paste</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12142,7 +12142,7 @@ msgctxt ""
"par_id3155860\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
#: edit_menu.xhp
msgctxt ""
@@ -12150,7 +12150,7 @@ msgctxt ""
"par_id3159083\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "On the <emph>Standard</emph> bar, click"
#: edit_menu.xhp
msgctxt ""
@@ -12158,7 +12158,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 ""
+msgstr "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icon</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12166,7 +12166,7 @@ msgctxt ""
"par_id3154471\n"
"help.text"
msgid "Paste"
-msgstr ""
+msgstr "Paste"
#: edit_menu.xhp
msgctxt ""
@@ -12174,7 +12174,7 @@ msgctxt ""
"par_id3152791\n"
"help.text"
msgid "<variable id=\"inhalte\">Choose <emph>Edit - Paste Special</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"inhalte\">Choose <emph>Edit - Paste Special</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12182,7 +12182,7 @@ msgctxt ""
"par_id3148555\n"
"help.text"
msgid "Choose <emph>Edit - Select All</emph>."
-msgstr ""
+msgstr "Choose <emph>Edit - Select All</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12190,7 +12190,7 @@ msgctxt ""
"par_id3152417\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
#: edit_menu.xhp
msgctxt ""
@@ -12198,7 +12198,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 ""
+msgstr "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Icon</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12206,7 +12206,7 @@ msgctxt ""
"par_id3153139\n"
"help.text"
msgid "Select All"
-msgstr ""
+msgstr "Select All"
#: edit_menu.xhp
msgctxt ""
@@ -12214,7 +12214,7 @@ msgctxt ""
"par_id3145251\n"
"help.text"
msgid "<variable id=\"aenderungen\">Choose <emph>Edit - Track Changes</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"aenderungen\">Choose <emph>Edit - Track Changes</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12222,7 +12222,7 @@ msgctxt ""
"par_id3153336\n"
"help.text"
msgid "<variable id=\"aufzeichnen\">Choose <emph>Edit - Track Changes - Record</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"aufzeichnen\">Choose <emph>Edit - Track Changes - Record</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12230,7 +12230,7 @@ msgctxt ""
"par_id3150594\n"
"help.text"
msgid "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Edit - Track Changes - Show</emph>.</caseinline><caseinline select=\"CALC\">Choose <emph>Edit - Track Changes - Show</emph>.</caseinline></switchinline></variable>"
-msgstr ""
+msgstr "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Edit - Track Changes - Show</emph>.</caseinline><caseinline select=\"CALC\">Choose <emph>Edit - Track Changes - Show</emph>.</caseinline></switchinline></variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12238,7 +12238,7 @@ msgctxt ""
"par_id3153845\n"
"help.text"
msgid "<variable id=\"rotlinie\">Choose <emph>Edit - Track Changes - Manage</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"rotlinie\">Choose <emph>Edit - Track Changes - Manage</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12246,7 +12246,7 @@ msgctxt ""
"par_id3148587\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Manage - List</emph> tab."
-msgstr ""
+msgstr "Choose <emph>Edit - Track Changes - Manage - List</emph> tab."
#: edit_menu.xhp
msgctxt ""
@@ -12254,7 +12254,7 @@ msgctxt ""
"par_id3150396\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect - Apply and Edit Changes</emph>. The <emph>AutoCorrect</emph> dialog appears.<br/>Click the <emph>Edit Changes</emph> button and navigate to the <emph>List</emph> tab."
-msgstr ""
+msgstr "Choose <emph>Tools - AutoCorrect - Apply and Edit Changes</emph>. The <emph>AutoCorrect</emph> dialogue box appears.<br/>Click the <emph>Edit Changes</emph> button and navigate to the <emph>List</emph> tab."
#: edit_menu.xhp
msgctxt ""
@@ -12262,7 +12262,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "<variable id=\"rotliniefilter\">Choose <emph>Edit - Track Changes - Manage - Filter</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"rotliniefilter\">Choose <emph>Edit - Track Changes - Manage - Filter</emph> tab.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12270,7 +12270,7 @@ msgctxt ""
"par_id3151281\n"
"help.text"
msgid "<variable id=\"einfuegen\">Choose <emph>Edit - Track Changes - Merge Document</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"einfuegen\">Choose <emph>Edit - Track Changes - Merge Document</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12278,7 +12278,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\">Choose <emph>Edit - Track Changes - Compare Document</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12286,7 +12286,7 @@ msgctxt ""
"par_id3148773\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Comment</emph>."
-msgstr ""
+msgstr "Choose <emph>Edit - Track Changes - Comment</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12294,7 +12294,7 @@ msgctxt ""
"par_id3149488\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Manage - List</emph> tab.<br/>Click an entry in the list and open the context menu.<br/>Choose <emph>Edit Comment</emph>."
-msgstr ""
+msgstr "Choose <emph>Edit - Track Changes - Manage - List</emph> tab.<br/>Click an entry in the list and open the context menu.<br/>Choose <emph>Edit Comment</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12302,7 +12302,7 @@ msgctxt ""
"par_id31562971\n"
"help.text"
msgid "Choose <emph>Edit - Find</emph>."
-msgstr ""
+msgstr "Choose <emph>Edit - Find</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12310,7 +12310,7 @@ msgctxt ""
"par_id31545031\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F"
#: edit_menu.xhp
msgctxt ""
@@ -12318,7 +12318,7 @@ msgctxt ""
"par_id3156297\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace</emph>."
-msgstr ""
+msgstr "Choose <emph>Edit - Find & Replace</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12326,7 +12326,7 @@ msgctxt ""
"par_id3154503\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H"
#: edit_menu.xhp
msgctxt ""
@@ -12334,7 +12334,7 @@ msgctxt ""
"par_id3155083\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "On the <emph>Standard</emph> bar, click"
#: edit_menu.xhp
msgctxt ""
@@ -12342,7 +12342,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 ""
+msgstr "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Icon</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12350,7 +12350,7 @@ msgctxt ""
"par_id3144748\n"
"help.text"
msgid "Find & Replace"
-msgstr ""
+msgstr "Find & Replace"
#: edit_menu.xhp
msgctxt ""
@@ -12358,7 +12358,7 @@ msgctxt ""
"par_id3156357\n"
"help.text"
msgid "<variable id=\"suchenattribute\">Choose <emph>Edit - Find & Replace - Attributes</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchenattribute\">Choose <emph>Edit - Find & Replace - Attributes</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12366,7 +12366,7 @@ msgctxt ""
"par_id3153840\n"
"help.text"
msgid "<variable id=\"suchenformat\">Choose <emph>Edit - Find & Replace - Format</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchenformat\">Choose <emph>Edit - Find & Replace - Format</emph> button.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12374,7 +12374,7 @@ msgctxt ""
"par_id3146971\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace - Similarity search</emph> check box, then click the <emph>Similarities</emph> button."
-msgstr ""
+msgstr "Choose <emph>Edit - Find & Replace - Similarity search</emph> check box, then click the <emph>Similarities</emph> button."
#: edit_menu.xhp
msgctxt ""
@@ -12382,7 +12382,7 @@ msgctxt ""
"par_id3153709\n"
"help.text"
msgid "On the <emph>Table Data</emph> bar, click <emph>Find</emph> icon, then <emph>Similarity search</emph> check box,<br/>then click the <emph>Similarities</emph> button (database table view)."
-msgstr ""
+msgstr "On the <emph>Table Data</emph> bar, click <emph>Find</emph> icon, then <emph>Similarity search</emph> check box,<br/>then click the <emph>Similarities</emph> button (database table view)."
#: edit_menu.xhp
msgctxt ""
@@ -12390,7 +12390,7 @@ msgctxt ""
"par_id3150749\n"
"help.text"
msgid "On the <emph>Form Design</emph> bar, click <emph>Record Search</emph> icon, then <emph>Similarity search</emph> check box,<br/>then click the <emph>Similarities</emph> button (form view)."
-msgstr ""
+msgstr "On the <emph>Form Design</emph> bar, click <emph>Record Search</emph> icon, then <emph>Similarity search</emph> check box,<br/>then click the <emph>Similarities</emph> button (form view)."
#: edit_menu.xhp
msgctxt ""
@@ -12398,7 +12398,7 @@ msgctxt ""
"par_id3152960\n"
"help.text"
msgid "Choose <emph>View - Navigator</emph>."
-msgstr ""
+msgstr "Choose <emph>View - Navigator</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12406,7 +12406,7 @@ msgctxt ""
"par_id3163824\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "On the <emph>Standard</emph> bar, click"
#: edit_menu.xhp
msgctxt ""
@@ -12414,7 +12414,7 @@ msgctxt ""
"par_id3159183\n"
"help.text"
msgid "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Icon</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12422,7 +12422,7 @@ msgctxt ""
"par_id3147359\n"
"help.text"
msgid "Navigator On/Off"
-msgstr ""
+msgstr "Navigator On/Off"
#: edit_menu.xhp
msgctxt ""
@@ -12430,7 +12430,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "<variable id=\"litdat\">Choose <emph>Tools - Bibliography Database</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"litdat\">Choose <emph>Tools - Bibliography Database</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12438,7 +12438,7 @@ msgctxt ""
"par_id3149281\n"
"help.text"
msgid "<variable id=\"link\">Choose <emph>Edit - Links</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"link\">Choose <emph>Edit - Links</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12446,7 +12446,7 @@ msgctxt ""
"par_id3159339\n"
"help.text"
msgid "<variable id=\"linkae\">Choose <emph>Edit - Links to External Files - Modify...</emph> (DDE links only).</variable>"
-msgstr ""
+msgstr "<variable id=\"linkae\">Choose <emph>Edit - Links to External Files - Modify...</emph> (DDE links only).</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12454,7 +12454,7 @@ msgctxt ""
"par_id3148927\n"
"help.text"
msgid "Select a frame, then choose <emph>Edit - Object - Properties</emph>."
-msgstr ""
+msgstr "Select a frame, then choose <emph>Edit - Object - Properties</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12462,7 +12462,7 @@ msgctxt ""
"par_id3156315\n"
"help.text"
msgid "Open context menu of selected frame, choose <emph>Properties</emph>."
-msgstr ""
+msgstr "Open context menu of selected frame, choose <emph>Properties</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12470,7 +12470,7 @@ msgctxt ""
"par_id3156091\n"
"help.text"
msgid "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw.</variable>"
-msgstr ""
+msgstr "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12478,7 +12478,7 @@ msgctxt ""
"par_id3155936\n"
"help.text"
msgid "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw,<br/>then select a section of the ImageMap and click <emph>Properties - Description</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw,<br/>then select a section of the ImageMap and click <emph>Properties - Description</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12486,7 +12486,7 @@ msgctxt ""
"par_id3149259\n"
"help.text"
msgid "<variable id=\"edit1\">Choose <emph>Edit - Object</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"edit1\">Choose <emph>Edit - Object</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12494,7 +12494,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 ""
+msgstr "<variable id=\"edit2\">Choose <emph>Edit - Object - Edit</emph>, also in the context menu of selected object.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12502,7 +12502,7 @@ msgctxt ""
"par_id3149565\n"
"help.text"
msgid "<variable id=\"edit3\">Choose <emph>Edit - Object - Open</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"edit3\">Choose <emph>Edit - Object - Open</emph>.</variable>"
#: icon_alt.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 0f804264bed..b07f8cf9997 100644
--- a/source/en-GB/helpcontent2/source/text/shared/01.po
+++ b/source/en-GB/helpcontent2/source/text/shared/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-04-10 09:12+0000\n"
-"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
+"PO-Revision-Date: 2019-07-21 12:44+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\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: 1554887579.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563713061.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -6254,7 +6254,7 @@ msgctxt ""
"bm_id891558923816062\n"
"help.text"
msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
#: 02100000.xhp
msgctxt ""
@@ -6262,7 +6262,7 @@ msgctxt ""
"hd_id261558922782067\n"
"help.text"
msgid "Formatted display"
-msgstr ""
+msgstr "Formatted display"
#: 02100000.xhp
msgctxt ""
@@ -6270,7 +6270,7 @@ msgctxt ""
"par_id971558923550517\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6750,7 +6750,7 @@ msgctxt ""
"hd_id3146925\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulae</caseinline></switchinline></caseinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulae</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/shared/02.po b/source/en-GB/helpcontent2/source/text/shared/02.po
index e46f09296ca..27f057437d6 100644
--- a/source/en-GB/helpcontent2/source/text/shared/02.po
+++ b/source/en-GB/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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-02-03 12:07+0000\n"
+"PO-Revision-Date: 2019-07-18 11:26+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: 1549195671.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563449207.000000\n"
#: 01110000.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 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\">Specifies whether a text selection on a control remains selected when 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."
#: 01170101.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 5ffca582efc..c75d86b1b8c 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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-04-10 09:15+0000\n"
+"PO-Revision-Date: 2019-07-18 11:41+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: 1554887724.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563450099.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -3094,7 +3094,7 @@ msgctxt ""
"par_writer0\n"
"help.text"
msgid "AbiWord Document"
-msgstr ""
+msgstr "AbiWord Document"
#: convertfilters.xhp
msgctxt ""
@@ -3102,7 +3102,7 @@ msgctxt ""
"par_writer3\n"
"help.text"
msgid "Apple Pages"
-msgstr ""
+msgstr "Apple Pages"
#: convertfilters.xhp
msgctxt ""
@@ -3110,7 +3110,7 @@ msgctxt ""
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
-msgstr ""
+msgstr "BroadBand eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3118,7 +3118,7 @@ msgctxt ""
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
+msgstr "ClarisWorks/AppleWorks Document"
#: convertfilters.xhp
msgctxt ""
@@ -3126,7 +3126,7 @@ msgctxt ""
"par_writer12\n"
"help.text"
msgid "EPUB Document"
-msgstr ""
+msgstr "EPUB Document"
#: convertfilters.xhp
msgctxt ""
@@ -3134,7 +3134,7 @@ msgctxt ""
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
-msgstr ""
+msgstr "FictionBook 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -3142,7 +3142,7 @@ msgctxt ""
"par_writer18\n"
"help.text"
msgid "HTML Document"
-msgstr ""
+msgstr "HTML Document"
#: convertfilters.xhp
msgctxt ""
@@ -3150,7 +3150,7 @@ msgctxt ""
"par_writer21\n"
"help.text"
msgid "HTML Document"
-msgstr ""
+msgstr "HTML Document"
#: convertfilters.xhp
msgctxt ""
@@ -3158,7 +3158,7 @@ msgctxt ""
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
-msgstr ""
+msgstr "Hangul WP 97"
#: convertfilters.xhp
msgctxt ""
@@ -3166,7 +3166,7 @@ msgctxt ""
"par_writer27\n"
"help.text"
msgid "Help content"
-msgstr ""
+msgstr "Help content"
#: convertfilters.xhp
msgctxt ""
@@ -3174,7 +3174,7 @@ msgctxt ""
"par_writer28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -3182,7 +3182,7 @@ msgctxt ""
"par_writer30\n"
"help.text"
msgid "Legacy Mac Text Document"
-msgstr ""
+msgstr "Legacy Mac Text Document"
#: convertfilters.xhp
msgctxt ""
@@ -3190,7 +3190,7 @@ msgctxt ""
"par_writer31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -3198,7 +3198,7 @@ msgctxt ""
"par_writer33\n"
"help.text"
msgid "Legacy StarOffice Text Document"
-msgstr ""
+msgstr "Legacy StarOffice Text Document"
#: convertfilters.xhp
msgctxt ""
@@ -3206,7 +3206,7 @@ msgctxt ""
"par_writer34\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -3214,7 +3214,7 @@ msgctxt ""
"par_writer36\n"
"help.text"
msgid "LotusWordPro Document"
-msgstr ""
+msgstr "LotusWordPro Document"
#: convertfilters.xhp
msgctxt ""
@@ -3222,7 +3222,7 @@ msgctxt ""
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
-msgstr ""
+msgstr "MS Word 95 Template"
#: convertfilters.xhp
msgctxt ""
@@ -3230,7 +3230,7 @@ msgctxt ""
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
-msgstr ""
+msgstr "MacWrite Document"
#: convertfilters.xhp
msgctxt ""
@@ -3238,7 +3238,7 @@ msgctxt ""
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
-msgstr ""
+msgstr "Mariner Write Mac Classic v1.6 - v3.5"
#: convertfilters.xhp
msgctxt ""
@@ -3246,7 +3246,7 @@ msgctxt ""
"par_writer48\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -3254,7 +3254,7 @@ msgctxt ""
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -3262,7 +3262,7 @@ msgctxt ""
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -3270,7 +3270,7 @@ msgctxt ""
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
-msgstr ""
+msgstr "Microsoft WinWord 1/2/5"
#: convertfilters.xhp
msgctxt ""
@@ -3278,7 +3278,7 @@ msgctxt ""
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
-msgstr ""
+msgstr "Microsoft Word 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3286,7 +3286,7 @@ msgctxt ""
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
-msgstr ""
+msgstr "Microsoft Word 95"
#: convertfilters.xhp
msgctxt ""
@@ -3294,7 +3294,7 @@ msgctxt ""
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
-msgstr ""
+msgstr "Microsoft Word for DOS"
#: convertfilters.xhp
msgctxt ""
@@ -3302,7 +3302,7 @@ msgctxt ""
"par_writer67\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -3310,7 +3310,7 @@ msgctxt ""
"par_writer69\n"
"help.text"
msgid "Microsoft Word for Mac (v1 - v5)"
-msgstr ""
+msgstr "Microsoft Word for Mac (v1 - v5)"
#: convertfilters.xhp
msgctxt ""
@@ -3318,7 +3318,7 @@ msgctxt ""
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
+msgstr "Microsoft Works Document"
#: convertfilters.xhp
msgctxt ""
@@ -3326,7 +3326,7 @@ msgctxt ""
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
-msgstr ""
+msgstr "Microsoft Works for Mac Document (v1 - v4)"
#: convertfilters.xhp
msgctxt ""
@@ -3334,7 +3334,7 @@ msgctxt ""
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
-msgstr ""
+msgstr "Microsoft Write"
#: convertfilters.xhp
msgctxt ""
@@ -3342,7 +3342,7 @@ msgctxt ""
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
-msgstr ""
+msgstr "Office Open XML Text Document"
#: convertfilters.xhp
msgctxt ""
@@ -3350,7 +3350,7 @@ msgctxt ""
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
-msgstr ""
+msgstr "Office Open XML Text Template"
#: convertfilters.xhp
msgctxt ""
@@ -3358,7 +3358,7 @@ msgctxt ""
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
-msgstr ""
+msgstr "OpenDocument Text (Flat XML)"
#: convertfilters.xhp
msgctxt ""
@@ -3366,7 +3366,7 @@ msgctxt ""
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
+msgstr "OpenOffice.org 1.0 Text Document"
#: convertfilters.xhp
msgctxt ""
@@ -3374,7 +3374,7 @@ msgctxt ""
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
+msgstr "OpenOffice.org 1.0 Text Document"
#: convertfilters.xhp
msgctxt ""
@@ -3382,7 +3382,7 @@ msgctxt ""
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
+msgstr "OpenOffice.org 1.0 Text Document"
#: convertfilters.xhp
msgctxt ""
@@ -3390,7 +3390,7 @@ msgctxt ""
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3398,7 +3398,7 @@ msgctxt ""
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3406,7 +3406,7 @@ msgctxt ""
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3414,7 +3414,7 @@ msgctxt ""
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
-msgstr ""
+msgstr "Palm Text Document"
#: convertfilters.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
-msgstr ""
+msgstr "PalmDoc eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
-msgstr ""
+msgstr "Plucker eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3438,7 +3438,7 @@ msgctxt ""
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
+msgstr "Rich Text Format"
#: convertfilters.xhp
msgctxt ""
@@ -3446,7 +3446,7 @@ msgctxt ""
"par_writer120\n"
"help.text"
msgid "T602 Document"
-msgstr ""
+msgstr "T602 Document"
#: convertfilters.xhp
msgctxt ""
@@ -3454,7 +3454,7 @@ msgctxt ""
"par_writer123\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Text"
#: convertfilters.xhp
msgctxt ""
@@ -3462,7 +3462,7 @@ msgctxt ""
"par_writer124\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_writer126\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Text"
#: convertfilters.xhp
msgctxt ""
@@ -3478,7 +3478,7 @@ msgctxt ""
"par_writer127\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3486,7 +3486,7 @@ msgctxt ""
"par_writer129\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Text"
#: convertfilters.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"par_writer130\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3502,7 +3502,7 @@ msgctxt ""
"par_writer132\n"
"help.text"
msgid "Word 2007–2019"
-msgstr ""
+msgstr "Word 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -3510,7 +3510,7 @@ msgctxt ""
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
-msgstr ""
+msgstr "Word 2007–2019 Template"
#: convertfilters.xhp
msgctxt ""
@@ -3518,7 +3518,7 @@ msgctxt ""
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
-msgstr ""
+msgstr "Word 2007–2019 VBA"
#: convertfilters.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
-msgstr ""
+msgstr "Word 97–2000 Template"
#: convertfilters.xhp
msgctxt ""
@@ -3534,7 +3534,7 @@ msgctxt ""
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
-msgstr ""
+msgstr "Word 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
-msgstr ""
+msgstr "WordPerfect Document"
#: convertfilters.xhp
msgctxt ""
@@ -3550,7 +3550,7 @@ msgctxt ""
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
-msgstr ""
+msgstr "WriteNow Document"
#: convertfilters.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"par_writer153\n"
"help.text"
msgid "Writer 6.0 Master Document"
-msgstr ""
+msgstr "Writer 6.0 Master Document"
#: convertfilters.xhp
msgctxt ""
@@ -3566,7 +3566,7 @@ msgctxt ""
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
-msgstr ""
+msgstr "Writer 6.0 Template"
#: convertfilters.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"par_writer159\n"
"help.text"
msgid "Writer 8"
-msgstr ""
+msgstr "Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3582,7 +3582,7 @@ msgctxt ""
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
-msgstr ""
+msgstr "Writer 8 Master Document"
#: convertfilters.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
-msgstr ""
+msgstr "Writer 8 Master Document Template"
#: convertfilters.xhp
msgctxt ""
@@ -3598,7 +3598,7 @@ msgctxt ""
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
-msgstr ""
+msgstr "Writer 8 Template"
#: convertfilters.xhp
msgctxt ""
@@ -3606,7 +3606,7 @@ msgctxt ""
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
-msgstr ""
+msgstr "Writer Layout Dump"
#: convertfilters.xhp
msgctxt ""
@@ -3614,7 +3614,7 @@ msgctxt ""
"par_writer172\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -3622,7 +3622,7 @@ msgctxt ""
"par_writer174\n"
"help.text"
msgid "Writer/Web 6.0 Template"
-msgstr ""
+msgstr "Writer/Web 6.0 Template"
#: convertfilters.xhp
msgctxt ""
@@ -3630,7 +3630,7 @@ msgctxt ""
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
-msgstr ""
+msgstr "Writer/Web 8 Template"
#: convertfilters.xhp
msgctxt ""
@@ -3654,7 +3654,7 @@ msgctxt ""
"par_calc0\n"
"help.text"
msgid "Apple Numbers"
-msgstr ""
+msgstr "Apple Numbers"
#: convertfilters.xhp
msgctxt ""
@@ -3662,7 +3662,7 @@ msgctxt ""
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
-msgstr ""
+msgstr "Calc 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3670,7 +3670,7 @@ msgctxt ""
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
-msgstr ""
+msgstr "Calc 6.0 Template"
#: convertfilters.xhp
msgctxt ""
@@ -3678,7 +3678,7 @@ msgctxt ""
"par_calc9\n"
"help.text"
msgid "Calc 8"
-msgstr ""
+msgstr "Calc 8"
#: convertfilters.xhp
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
-msgstr ""
+msgstr "Calc 8 Template"
#: convertfilters.xhp
msgctxt ""
@@ -3694,7 +3694,7 @@ msgctxt ""
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
-msgstr ""
+msgstr "ClarisResolve Document"
#: convertfilters.xhp
msgctxt ""
@@ -3702,7 +3702,7 @@ msgctxt ""
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
+msgstr "ClarisWorks/AppleWorks Document"
#: convertfilters.xhp
msgctxt ""
@@ -3710,7 +3710,7 @@ msgctxt ""
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
-msgstr ""
+msgstr "Data Interchange Format"
#: convertfilters.xhp
msgctxt ""
@@ -3718,7 +3718,7 @@ msgctxt ""
"par_calc22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -3726,7 +3726,7 @@ msgctxt ""
"par_calc24\n"
"help.text"
msgid "Excel 2007–2019"
-msgstr ""
+msgstr "Excel 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -3734,7 +3734,7 @@ msgctxt ""
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
-msgstr ""
+msgstr "Excel 2007–2019 Template"
#: convertfilters.xhp
msgctxt ""
@@ -3742,7 +3742,7 @@ msgctxt ""
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
-msgstr ""
+msgstr "Excel 97–2000 Template"
#: convertfilters.xhp
msgctxt ""
@@ -3750,7 +3750,7 @@ msgctxt ""
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
-msgstr ""
+msgstr "Excel 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -3758,7 +3758,7 @@ msgctxt ""
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
+msgstr "Gnumeric Spreadsheet"
#: convertfilters.xhp
msgctxt ""
@@ -3766,7 +3766,7 @@ msgctxt ""
"par_calc39\n"
"help.text"
msgid "HTML Document"
-msgstr ""
+msgstr "HTML Document"
#: convertfilters.xhp
msgctxt ""
@@ -3774,7 +3774,7 @@ msgctxt ""
"par_calc40\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -3782,7 +3782,7 @@ msgctxt ""
"par_calc42\n"
"help.text"
msgid "HTML Table"
-msgstr ""
+msgstr "HTML Table"
#: convertfilters.xhp
msgctxt ""
@@ -3790,7 +3790,7 @@ msgctxt ""
"par_calc43\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -3798,7 +3798,7 @@ msgctxt ""
"par_calc45\n"
"help.text"
msgid "Legacy Mac Database"
-msgstr ""
+msgstr "Legacy Mac Database"
#: convertfilters.xhp
msgctxt ""
@@ -3806,7 +3806,7 @@ msgctxt ""
"par_calc46\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -3814,7 +3814,7 @@ msgctxt ""
"par_calc48\n"
"help.text"
msgid "Legacy Mac Spreadsheet"
-msgstr ""
+msgstr "Legacy Mac Spreadsheet"
#: convertfilters.xhp
msgctxt ""
@@ -3822,7 +3822,7 @@ msgctxt ""
"par_calc49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -3830,7 +3830,7 @@ msgctxt ""
"par_calc51\n"
"help.text"
msgid "Legacy StarOffice Spreadsheet"
-msgstr ""
+msgstr "Legacy StarOffice Spreadsheet"
#: convertfilters.xhp
msgctxt ""
@@ -3838,7 +3838,7 @@ msgctxt ""
"par_calc52\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -3846,7 +3846,7 @@ msgctxt ""
"par_calc54\n"
"help.text"
msgid "Lotus"
-msgstr ""
+msgstr "Lotus"
#: convertfilters.xhp
msgctxt ""
@@ -3854,7 +3854,7 @@ msgctxt ""
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
-msgstr ""
+msgstr "Lotus Wk1-Wk3"
#: convertfilters.xhp
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"par_calc58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -3870,7 +3870,7 @@ msgctxt ""
"par_calc60\n"
"help.text"
msgid "MS Excel 4.0 Template"
-msgstr ""
+msgstr "Microsoft Excel 4.0 Template"
#: convertfilters.xhp
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
-msgstr ""
+msgstr "Microsoft Excel 5.0 Template"
#: convertfilters.xhp
msgctxt ""
@@ -3886,7 +3886,7 @@ msgctxt ""
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
-msgstr ""
+msgstr "Microsoft Excel 95 Template"
#: convertfilters.xhp
msgctxt ""
@@ -3894,7 +3894,7 @@ msgctxt ""
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
-msgstr ""
+msgstr "Microsoft Excel 2007 Binary"
#: convertfilters.xhp
msgctxt ""
@@ -3902,7 +3902,7 @@ msgctxt ""
"par_calc70\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -3910,7 +3910,7 @@ msgctxt ""
"par_calc72\n"
"help.text"
msgid "Microsoft Excel 2007-2016 VBA XML"
-msgstr ""
+msgstr "Microsoft Excel 2007-2016 VBA XML"
#: convertfilters.xhp
msgctxt ""
@@ -3918,7 +3918,7 @@ msgctxt ""
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -3926,7 +3926,7 @@ msgctxt ""
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -3934,7 +3934,7 @@ msgctxt ""
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -3942,7 +3942,7 @@ msgctxt ""
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
-msgstr ""
+msgstr "Microsoft Multiplan"
#: convertfilters.xhp
msgctxt ""
@@ -3950,7 +3950,7 @@ msgctxt ""
"par_calc85\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -3958,7 +3958,7 @@ msgctxt ""
"par_calc87\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
+msgstr "Microsoft Works Document"
#: convertfilters.xhp
msgctxt ""
@@ -3966,7 +3966,7 @@ msgctxt ""
"par_calc88\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -3974,7 +3974,7 @@ msgctxt ""
"par_calc90\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
-msgstr ""
+msgstr "Microsoft Works for Mac Document (v1 - v4)"
#: convertfilters.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
-msgstr ""
+msgstr "Office Open XML Spreadsheet"
#: convertfilters.xhp
msgctxt ""
@@ -3990,7 +3990,7 @@ msgctxt ""
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
-msgstr ""
+msgstr "Office Open XML Spreadsheet Template"
#: convertfilters.xhp
msgctxt ""
@@ -3998,7 +3998,7 @@ msgctxt ""
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
-msgstr ""
+msgstr "OpenDocument Spreadsheet (Flat XML)"
#: convertfilters.xhp
msgctxt ""
@@ -4006,7 +4006,7 @@ msgctxt ""
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4014,7 +4014,7 @@ msgctxt ""
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
-msgstr ""
+msgstr "Quattro Pro 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4022,7 +4022,7 @@ msgctxt ""
"par_calc106\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -4030,7 +4030,7 @@ msgctxt ""
"par_calc108\n"
"help.text"
msgid "QuattroPro Document"
-msgstr ""
+msgstr "QuattroPro Document"
#: convertfilters.xhp
msgctxt ""
@@ -4038,7 +4038,7 @@ msgctxt ""
"par_calc109\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -4046,7 +4046,7 @@ msgctxt ""
"par_calc111\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
+msgstr "Rich Text Format"
#: convertfilters.xhp
msgctxt ""
@@ -4054,7 +4054,7 @@ msgctxt ""
"par_calc114\n"
"help.text"
msgid "SYLK"
-msgstr ""
+msgstr "SYLK"
#: convertfilters.xhp
msgctxt ""
@@ -4062,7 +4062,7 @@ msgctxt ""
"par_calc115\n"
"help.text"
msgid "text/spreadsheet"
-msgstr ""
+msgstr "text/spreadsheet"
#: convertfilters.xhp
msgctxt ""
@@ -4070,7 +4070,7 @@ msgctxt ""
"par_calc117\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Text"
#: convertfilters.xhp
msgctxt ""
@@ -4078,7 +4078,7 @@ msgctxt ""
"par_calc118\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -4086,7 +4086,7 @@ msgctxt ""
"par_calc120\n"
"help.text"
msgid "dBASE"
-msgstr ""
+msgstr "dBASE"
#: convertfilters.xhp
msgctxt ""
@@ -4094,7 +4094,7 @@ msgctxt ""
"par_calc121\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -4118,7 +4118,7 @@ msgctxt ""
"par_impress0\n"
"help.text"
msgid "Apple Keynote"
-msgstr ""
+msgstr "Apple Keynote"
#: convertfilters.xhp
msgctxt ""
@@ -4126,7 +4126,7 @@ msgctxt ""
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
-msgstr ""
+msgstr "ClarisWorks/AppleWorks Presentation"
#: convertfilters.xhp
msgctxt ""
@@ -4134,7 +4134,7 @@ msgctxt ""
"par_impress6\n"
"help.text"
msgid "Draw 8"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -4142,7 +4142,7 @@ msgctxt ""
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
-msgstr ""
+msgstr "Impress 6.0 Template"
#: convertfilters.xhp
msgctxt ""
@@ -4150,7 +4150,7 @@ msgctxt ""
"par_impress12\n"
"help.text"
msgid "Impress 8"
-msgstr ""
+msgstr "Impress 8"
#: convertfilters.xhp
msgctxt ""
@@ -4158,7 +4158,7 @@ msgctxt ""
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
-msgstr ""
+msgstr "Impress 8 Template"
#: convertfilters.xhp
msgctxt ""
@@ -4166,7 +4166,7 @@ msgctxt ""
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
-msgstr ""
+msgstr "Legacy Mac Presentation"
#: convertfilters.xhp
msgctxt ""
@@ -4174,7 +4174,7 @@ msgctxt ""
"par_impress19\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -4182,7 +4182,7 @@ msgctxt ""
"par_impress21\n"
"help.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "Legacy StarOffice Presentation"
#: convertfilters.xhp
msgctxt ""
@@ -4190,7 +4190,7 @@ msgctxt ""
"par_impress22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -4198,7 +4198,7 @@ msgctxt ""
"par_impress24\n"
"help.text"
msgid "Microsoft PowerPoint 1-4"
-msgstr ""
+msgstr "Microsoft PowerPoint 1-4"
#: convertfilters.xhp
msgctxt ""
@@ -4206,7 +4206,7 @@ msgctxt ""
"par_impress25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -4214,7 +4214,7 @@ msgctxt ""
"par_impress27\n"
"help.text"
msgid "Office Open XML Presentation"
-msgstr ""
+msgstr "Office Open XML Presentation"
#: convertfilters.xhp
msgctxt ""
@@ -4222,7 +4222,7 @@ msgctxt ""
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
-msgstr ""
+msgstr "Office Open XML Presentation AutoPlay"
#: convertfilters.xhp
msgctxt ""
@@ -4230,7 +4230,7 @@ msgctxt ""
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
-msgstr ""
+msgstr "Office Open XML Presentation Template"
#: convertfilters.xhp
msgctxt ""
@@ -4238,7 +4238,7 @@ msgctxt ""
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
-msgstr ""
+msgstr "OpenDocument Presentation (Flat XML)"
#: convertfilters.xhp
msgctxt ""
@@ -4246,7 +4246,7 @@ msgctxt ""
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
+msgstr "OpenOffice.org 1.0 Drawing"
#: convertfilters.xhp
msgctxt ""
@@ -4254,7 +4254,7 @@ msgctxt ""
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
-msgstr ""
+msgstr "OpenOffice.org 1.0 Presentation"
#: convertfilters.xhp
msgctxt ""
@@ -4262,7 +4262,7 @@ msgctxt ""
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4270,7 +4270,7 @@ msgctxt ""
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4278,7 +4278,7 @@ msgctxt ""
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4286,7 +4286,7 @@ msgctxt ""
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
-msgstr ""
+msgstr "PowerPoint 2007–2019 Template"
#: convertfilters.xhp
msgctxt ""
@@ -4294,7 +4294,7 @@ msgctxt ""
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
-msgstr ""
+msgstr "PowerPoint 2007–2019 VBA"
#: convertfilters.xhp
msgctxt ""
@@ -4302,7 +4302,7 @@ msgctxt ""
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
-msgstr ""
+msgstr "PowerPoint 97–2000 Template"
#: convertfilters.xhp
msgctxt ""
@@ -4310,7 +4310,7 @@ msgctxt ""
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -4318,7 +4318,7 @@ msgctxt ""
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -4342,7 +4342,7 @@ msgctxt ""
"par_draw0\n"
"help.text"
msgid "Adobe PageMaker"
-msgstr ""
+msgstr "Adobe PageMaker"
#: convertfilters.xhp
msgctxt ""
@@ -4350,7 +4350,7 @@ msgctxt ""
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
-msgstr ""
+msgstr "Adobe/Macromedia Freehand"
#: convertfilters.xhp
msgctxt ""
@@ -4358,7 +4358,7 @@ msgctxt ""
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
+msgstr "ClarisWorks/AppleWorks Document"
#: convertfilters.xhp
msgctxt ""
@@ -4366,7 +4366,7 @@ msgctxt ""
"par_draw9\n"
"help.text"
msgid "Corel Draw"
-msgstr ""
+msgstr "Corel Draw"
#: convertfilters.xhp
msgctxt ""
@@ -4374,7 +4374,7 @@ msgctxt ""
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
-msgstr ""
+msgstr "Corel Presentation Exchange"
#: convertfilters.xhp
msgctxt ""
@@ -4382,7 +4382,7 @@ msgctxt ""
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
-msgstr ""
+msgstr "Draw 6.0 Template"
#: convertfilters.xhp
msgctxt ""
@@ -4390,7 +4390,7 @@ msgctxt ""
"par_draw18\n"
"help.text"
msgid "Draw 8"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -4398,7 +4398,7 @@ msgctxt ""
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
-msgstr ""
+msgstr "Draw 8 Template"
#: convertfilters.xhp
msgctxt ""
@@ -4406,7 +4406,7 @@ msgctxt ""
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
-msgstr ""
+msgstr "Legacy Mac Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_draw25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -4422,7 +4422,7 @@ msgctxt ""
"par_draw27\n"
"help.text"
msgid "Legacy Mac Drawing"
-msgstr ""
+msgstr "Legacy Mac Drawing"
#: convertfilters.xhp
msgctxt ""
@@ -4430,7 +4430,7 @@ msgctxt ""
"par_draw28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -4438,7 +4438,7 @@ msgctxt ""
"par_draw30\n"
"help.text"
msgid "Legacy StarOffice Drawing"
-msgstr ""
+msgstr "Legacy StarOffice Drawing"
#: convertfilters.xhp
msgctxt ""
@@ -4446,7 +4446,7 @@ msgctxt ""
"par_draw31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -4454,7 +4454,7 @@ msgctxt ""
"par_draw33\n"
"help.text"
msgid "Microsoft Publisher 2003"
-msgstr ""
+msgstr "Microsoft Publisher 2003"
#: convertfilters.xhp
msgctxt ""
@@ -4462,7 +4462,7 @@ msgctxt ""
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
-msgstr ""
+msgstr "Microsoft Visio"
#: convertfilters.xhp
msgctxt ""
@@ -4470,7 +4470,7 @@ msgctxt ""
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
-msgstr ""
+msgstr "OpenDocument Drawing (Flat XML)"
#: convertfilters.xhp
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
+msgstr "OpenOffice.org 1.0 Drawing"
#: convertfilters.xhp
msgctxt ""
@@ -4486,7 +4486,7 @@ msgctxt ""
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4494,7 +4494,7 @@ msgctxt ""
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
-msgstr ""
+msgstr "QuarkXPress"
#: convertfilters.xhp
msgctxt ""
@@ -4502,7 +4502,7 @@ msgctxt ""
"par_draw49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -4510,7 +4510,7 @@ msgctxt ""
"par_draw51\n"
"help.text"
msgid "WordPerfect Graphics"
-msgstr ""
+msgstr "WordPerfect Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -4518,7 +4518,7 @@ msgctxt ""
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
-msgstr ""
+msgstr "Zoner Callisto/Draw"
#: convertfilters.xhp
msgctxt ""
@@ -4526,7 +4526,7 @@ msgctxt ""
"par_draw55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -4550,7 +4550,7 @@ msgctxt ""
"par_math0\n"
"help.text"
msgid "Math 8"
-msgstr ""
+msgstr "Math 8"
#: convertfilters.xhp
msgctxt ""
@@ -4558,7 +4558,7 @@ msgctxt ""
"par_math3\n"
"help.text"
msgid "MathML 2.0"
-msgstr ""
+msgstr "MathML 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -4566,7 +4566,7 @@ msgctxt ""
"par_math6\n"
"help.text"
msgid "MathType3.x"
-msgstr ""
+msgstr "MathType3.x"
#: convertfilters.xhp
msgctxt ""
@@ -4574,7 +4574,7 @@ msgctxt ""
"par_math7\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -4582,7 +4582,7 @@ msgctxt ""
"par_math9\n"
"help.text"
msgid "OpenOffice.org 1.0 Formula"
-msgstr ""
+msgstr "OpenOffice.org 1.0 Formula"
#: convertfilters.xhp
msgctxt ""
@@ -4590,7 +4590,7 @@ msgctxt ""
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4614,7 +4614,7 @@ msgctxt ""
"par_base0\n"
"help.text"
msgid "OpenDocument Database"
-msgstr ""
+msgstr "OpenDocument Database"
#: convertfilters.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"par_graphicfilter0\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
+msgstr "BMP - Windows Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -4646,7 +4646,7 @@ msgctxt ""
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
+msgstr "BMP - Windows Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -4654,7 +4654,7 @@ msgctxt ""
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
-msgstr ""
+msgstr "CGM - Computer Graphics Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -4662,7 +4662,7 @@ msgctxt ""
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
-msgstr ""
+msgstr "DXF - AutoCAD Interchange Format"
#: convertfilters.xhp
msgctxt ""
@@ -4670,7 +4670,7 @@ msgctxt ""
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
+msgstr "EMF - Enhanced Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -4678,7 +4678,7 @@ msgctxt ""
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
+msgstr "EMF - Enhanced Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -4686,7 +4686,7 @@ msgctxt ""
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
+msgstr "EPS - Encapsulated PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -4694,7 +4694,7 @@ msgctxt ""
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
+msgstr "EPS - Encapsulated PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -4702,7 +4702,7 @@ msgctxt ""
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
+msgstr "GIF - Graphics Interchange"
#: convertfilters.xhp
msgctxt ""
@@ -4710,7 +4710,7 @@ msgctxt ""
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
+msgstr "GIF - Graphics Interchange"
#: convertfilters.xhp
msgctxt ""
@@ -4718,7 +4718,7 @@ msgctxt ""
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -4726,7 +4726,7 @@ msgctxt ""
"par_graphicfilter31\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -4734,7 +4734,7 @@ msgctxt ""
"par_graphicfilter33\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -4742,7 +4742,7 @@ msgctxt ""
"par_graphicfilter34\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -4750,7 +4750,7 @@ msgctxt ""
"par_graphicfilter36\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -4758,7 +4758,7 @@ msgctxt ""
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -4766,7 +4766,7 @@ msgctxt ""
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -4774,7 +4774,7 @@ msgctxt ""
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
+msgstr "MET - OS/2 Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -4782,7 +4782,7 @@ msgctxt ""
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
+msgstr "MET - OS/2 Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -4790,7 +4790,7 @@ msgctxt ""
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
-msgstr ""
+msgstr "MOV - QuickTime File Format"
#: convertfilters.xhp
msgctxt ""
@@ -4798,7 +4798,7 @@ msgctxt ""
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -4806,7 +4806,7 @@ msgctxt ""
"par_graphicfilter55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -4814,7 +4814,7 @@ msgctxt ""
"par_graphicfilter57\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -4822,7 +4822,7 @@ msgctxt ""
"par_graphicfilter58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "None"
#: convertfilters.xhp
msgctxt ""
@@ -4830,7 +4830,7 @@ msgctxt ""
"par_graphicfilter60\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
+msgstr "PBM - Portable Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -4838,7 +4838,7 @@ msgctxt ""
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
+msgstr "PBM - Portable Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -4846,7 +4846,7 @@ msgctxt ""
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
-msgstr ""
+msgstr "PCD - Photo CD Base"
#: convertfilters.xhp
msgctxt ""
@@ -4854,7 +4854,7 @@ msgctxt ""
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
-msgstr ""
+msgstr "PCD - Photo CD Base16"
#: convertfilters.xhp
msgctxt ""
@@ -4862,7 +4862,7 @@ msgctxt ""
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
-msgstr ""
+msgstr "PCD - Photo CD Base4"
#: convertfilters.xhp
msgctxt ""
@@ -4870,7 +4870,7 @@ msgctxt ""
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
+msgstr "PCT - Mac Pict"
#: convertfilters.xhp
msgctxt ""
@@ -4878,7 +4878,7 @@ msgctxt ""
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
+msgstr "PCT - Mac Pict"
#: convertfilters.xhp
msgctxt ""
@@ -4886,7 +4886,7 @@ msgctxt ""
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
-msgstr ""
+msgstr "PCX - Zsoft Paintbrush"
#: convertfilters.xhp
msgctxt ""
@@ -4894,7 +4894,7 @@ msgctxt ""
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: convertfilters.xhp
msgctxt ""
@@ -4902,7 +4902,7 @@ msgctxt ""
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: convertfilters.xhp
msgctxt ""
@@ -4910,7 +4910,7 @@ msgctxt ""
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -4918,7 +4918,7 @@ msgctxt ""
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -4926,7 +4926,7 @@ msgctxt ""
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -4934,7 +4934,7 @@ msgctxt ""
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -4942,7 +4942,7 @@ msgctxt ""
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: convertfilters.xhp
msgctxt ""
@@ -4950,7 +4950,7 @@ msgctxt ""
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: convertfilters.xhp
msgctxt ""
@@ -4958,7 +4958,7 @@ msgctxt ""
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
-msgstr ""
+msgstr "PSD - Adobe Photoshop"
#: convertfilters.xhp
msgctxt ""
@@ -4966,7 +4966,7 @@ msgctxt ""
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
+msgstr "RAS - Sun Raster Image"
#: convertfilters.xhp
msgctxt ""
@@ -4974,7 +4974,7 @@ msgctxt ""
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
+msgstr "RAS - Sun Raster Image"
#: convertfilters.xhp
msgctxt ""
@@ -4982,7 +4982,7 @@ msgctxt ""
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -4990,7 +4990,7 @@ msgctxt ""
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -4998,7 +4998,7 @@ msgctxt ""
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -5006,7 +5006,7 @@ msgctxt ""
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -5014,7 +5014,7 @@ msgctxt ""
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics Draw"
#: convertfilters.xhp
msgctxt ""
@@ -5022,7 +5022,7 @@ msgctxt ""
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics Draw"
#: convertfilters.xhp
msgctxt ""
@@ -5030,7 +5030,7 @@ msgctxt ""
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
-msgstr ""
+msgstr "SVM - StarView Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5038,7 +5038,7 @@ msgctxt ""
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
-msgstr ""
+msgstr "SVM - StarView Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5046,7 +5046,7 @@ msgctxt ""
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
-msgstr ""
+msgstr "TGA - Truevision Targa"
#: convertfilters.xhp
msgctxt ""
@@ -5054,7 +5054,7 @@ msgctxt ""
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
-msgstr ""
+msgstr "TIFF - Tagged Image File Format"
#: convertfilters.xhp
msgctxt ""
@@ -5062,7 +5062,7 @@ msgctxt ""
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
-msgstr ""
+msgstr "TIFF - Tagged Image File Format"
#: convertfilters.xhp
msgctxt ""
@@ -5070,7 +5070,7 @@ msgctxt ""
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
+msgstr "WMF - Windows Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5078,7 +5078,7 @@ msgctxt ""
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
+msgstr "WMF - Windows Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5086,7 +5086,7 @@ msgctxt ""
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
-msgstr ""
+msgstr "XBM - X Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5094,7 +5094,7 @@ msgctxt ""
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
+msgstr "XPM - X PixMap"
#: convertfilters.xhp
msgctxt ""
@@ -5102,7 +5102,7 @@ msgctxt ""
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
+msgstr "XPM - X PixMap"
#: copy_drawfunctions.xhp
msgctxt ""
@@ -11542,7 +11542,7 @@ msgctxt ""
"par_idN1068A\n"
"help.text"
msgid "With the image selected, choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw. You see the <link href=\"text/shared/01/02220000.xhp\">ImageMap Editor</link>, which displays the image at the background."
-msgstr ""
+msgstr "With the image selected, choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw. You see the <link href=\"text/shared/01/02220000.xhp\">ImageMap Editor</link>, which displays the image at the background."
#: imagemap.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/simpress.po b/source/en-GB/helpcontent2/source/text/simpress.po
index c57a43b5886..a1679f3ae38 100644
--- a/source/en-GB/helpcontent2/source/text/simpress.po
+++ b/source/en-GB/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-01-16 00:12+0000\n"
+"PO-Revision-Date: 2019-07-18 10:50+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: 1547597526.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563447015.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Edit"
#: main_edit.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Edit</link>"
#: main_edit.xhp
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
#: main_edit.xhp
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"hd_id3154649\n"
"help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
#: main_edit.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id3154766\n"
"help.text"
msgid "Switches the <emph>Edit Points</emph> mode on and off."
-msgstr ""
+msgstr "Switches the <emph>Edit Points</emph> mode on and off."
#: main_edit.xhp
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"hd_id3145116\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue Points\">Glue Points</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue Points\">Glue Points</link>"
#: main_edit.xhp
msgctxt ""
@@ -1398,7 +1398,7 @@ msgctxt ""
"par_id3147403\n"
"help.text"
msgid "Switches the <emph>Edit Glue Points</emph> mode on and off."
-msgstr ""
+msgstr "Switches the <emph>Edit Glue Points</emph> mode on and off."
#: main_edit.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"hd_id3150396\n"
"help.text"
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
#: main_edit.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"hd_id3149355\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
#: main_edit.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"hd_id0914201502131542\n"
"help.text"
msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
#: main_format.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Format"
#: main_format.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"hd_id3152596\n"
"help.text"
msgid "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Format</link>"
#: main_format.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Contains commands for formatting the layout and the content of your document.</ahelp>"
#: main_format.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"hd_id3147401\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
#: main_format.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"hd_id3149941\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
#: main_format.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"hd_id3147299\n"
"help.text"
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
#: main_format.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"hd_id3149499\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
#: main_format.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"hd_id3154510\n"
"help.text"
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
#: main_format.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"hd_id3149021\n"
"help.text"
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
#: main_format.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"hd_id3155961\n"
"help.text"
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
#: main_format.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"hd_id3156286\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slide Design</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slide Design</link>"
#: main_format.xhp
msgctxt ""
@@ -1518,7 +1518,7 @@ msgctxt ""
"hd_id3163827\n"
"help.text"
msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide Layout</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide Layout</link>"
#: main_slide.xhp
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Slide"
#: main_slide.xhp
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"hd_id0908201507475698\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Slide</link>"
#: main_slide.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"par_id0908201507482661\n"
"help.text"
msgid "This menu provides slide management and navigation commands."
-msgstr ""
+msgstr "This menu provides slide management and navigation commands."
#: main_slide.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"hd_id3145801\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
#: main_slide.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"hd_id551556824896520\n"
"help.text"
msgid "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
#: main_tools.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Tools"
-msgstr ""
+msgstr "Tools"
#: main_tools.xhp
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"hd_id3154017\n"
"help.text"
msgid "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Tools</link>"
#: main_tools.xhp
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "<ahelp hid=\".\">Contains spelling tools, a gallery of object art that you can add to your document, as well as tools for configuring menus, and setting program preferences.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Contains spelling tools, a gallery of object art that you can add to your document, as well as tools for configuring menus, and setting program preferences.</ahelp>"
#: main_tools.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"hd_id3145590\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
#: main_tools.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"hd_id3153248\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
#: main_tools.xhp
msgctxt ""
@@ -1606,4 +1606,4 @@ msgctxt ""
"hd_id3149130\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customise\">Customise</link>"
diff --git a/source/en-GB/helpcontent2/source/text/simpress/00.po b/source/en-GB/helpcontent2/source/text/simpress/00.po
index bc6b25e9838..62fead181e3 100644
--- a/source/en-GB/helpcontent2/source/text/simpress/00.po
+++ b/source/en-GB/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-09 16:05+0000\n"
+"PO-Revision-Date: 2019-07-18 11:19+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: 1554825908.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563448745.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_id3134264\n"
"help.text"
msgid "Choose <emph>Slide - New Slide</emph>"
-msgstr ""
+msgstr "Choose <emph>Slide - New Slide</emph>"
#: slide_menu.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3685251\n"
"help.text"
msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Icon</alt></image>"
#: slide_menu.xhp
msgctxt ""
@@ -1310,4 +1310,4 @@ msgctxt ""
"par_id7354512\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "New Slide"
diff --git a/source/en-GB/helpcontent2/source/text/simpress/01.po b/source/en-GB/helpcontent2/source/text/simpress/01.po
index e5578a1b971..4429501bd45 100644
--- a/source/en-GB/helpcontent2/source/text/simpress/01.po
+++ b/source/en-GB/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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-04-09 16:05+0000\n"
+"PO-Revision-Date: 2019-07-18 11:19+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: 1554825930.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563448779.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
#: 03070000.xhp
msgctxt ""
@@ -8158,7 +8158,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "New Slide"
#: new_slide.xhp
msgctxt ""
@@ -8166,7 +8166,7 @@ msgctxt ""
"bm_id3159155\n"
"help.text"
msgid "<bookmark_value>inserting; slides</bookmark_value><bookmark_value>slides; inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>inserting; slides</bookmark_value><bookmark_value>slides; inserting</bookmark_value>"
#: new_slide.xhp
msgctxt ""
@@ -8174,7 +8174,7 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
#: new_slide.xhp
msgctxt ""
@@ -8182,7 +8182,7 @@ msgctxt ""
"par_id3146119\n"
"help.text"
msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
#: remoteconnections.xhp
msgctxt ""
@@ -8326,7 +8326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Slide"
#: slide_properties.xhp
msgctxt ""
@@ -8334,7 +8334,7 @@ msgctxt ""
"hd_id3149379\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Slide"
#: slide_properties.xhp
msgctxt ""
@@ -8342,7 +8342,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Sets slide orientation, slide margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Sets slide orientation, slide margins, background and other layout options.</ahelp></variable>"
#: slide_properties.xhp
msgctxt ""
@@ -8350,7 +8350,7 @@ msgctxt ""
"par_id3145587\n"
"help.text"
msgid "To change the background of all of the slides in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "To change the background of all of the slides in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialogue box."
#: slidesorter.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/simpress/02.po b/source/en-GB/helpcontent2/source/text/simpress/02.po
index 43a0efa967e..c4e95592a18 100644
--- a/source/en-GB/helpcontent2/source/text/simpress/02.po
+++ b/source/en-GB/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2017-10-20 11:54+0000\n"
+"PO-Revision-Date: 2019-07-18 11:19+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: 1508500470.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563448782.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"hd_id3149028\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
#: 10110000.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 61a22d231c7..a91224b590a 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/01.po
+++ b/source/en-GB/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-09 16:04+0000\n"
+"PO-Revision-Date: 2019-07-18 11:22+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: 1554825883.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563448928.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -15534,7 +15534,7 @@ msgctxt ""
"par_idN10A8E\n"
"help.text"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Keep inside text boundaries"
#: 05060100.xhp
msgctxt ""
@@ -15550,7 +15550,7 @@ msgctxt ""
"par_idN10AA6\n"
"help.text"
msgid "By default, the <emph>Keep inside text boundaries</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 "By default, the <emph>Keep inside text boundaries</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)."
#: 05060100.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 b20eae8ee0f..dc04c14f738 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-GB/helpcontent2/source/text/swriter/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2018-11-13 09:07+0000\n"
+"PO-Revision-Date: 2019-07-18 11: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: 1542100031.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563449059.000000\n"
#: anchor_object.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\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
-msgstr ""
+msgstr "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</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\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
-msgstr ""
+msgstr "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</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\" width=\"0.566cm\" height=\"0.566cm\"><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 "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\" width=\"0.566cm\" height=\"0.566cm\"><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>."
#: 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\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</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 "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</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\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
-msgstr ""
+msgstr "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
#: auto_numbering.xhp
msgctxt ""
@@ -8382,7 +8382,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Changing the Chapter Level of Numbered and Bulleted Lists"
-msgstr ""
+msgstr "Changing the Chapter Level of Numbered and Bulleted Lists"
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8390,7 +8390,7 @@ msgctxt ""
"bm_id3145078\n"
"help.text"
msgid "<bookmark_value>tab stops; inserting in lists</bookmark_value><bookmark_value>numbering; changing the level of</bookmark_value><bookmark_value>lists;changing levels</bookmark_value><bookmark_value>levels;changing chapter levels</bookmark_value><bookmark_value>levels;changing outline levels</bookmark_value><bookmark_value>bullet lists;changing levels</bookmark_value><bookmark_value>lowering chapter levels</bookmark_value><bookmark_value>rising chapter levels</bookmark_value><bookmark_value>changing;chapter levels</bookmark_value><bookmark_value>lowering outline levels</bookmark_value><bookmark_value>rising outline levels</bookmark_value><bookmark_value>changing;outline levels</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>tab stops; inserting in lists</bookmark_value><bookmark_value>numbering; changing the level of</bookmark_value><bookmark_value>lists;changing levels</bookmark_value><bookmark_value>levels;changing chapter levels</bookmark_value><bookmark_value>levels;changing outline levels</bookmark_value><bookmark_value>bullet lists;changing levels</bookmark_value><bookmark_value>lowering chapter levels</bookmark_value><bookmark_value>rising chapter levels</bookmark_value><bookmark_value>changing;chapter levels</bookmark_value><bookmark_value>lowering outline levels</bookmark_value><bookmark_value>rising outline levels</bookmark_value><bookmark_value>changing;outline levels</bookmark_value>"
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8398,7 +8398,7 @@ msgctxt ""
"hd_id3145078\n"
"help.text"
msgid "<variable id=\"insert_tab_innumbering\"><link href=\"text/swriter/guide/insert_tab_innumbering.xhp\" name=\"Changing the Outline Level of Numbered and Bulleted Lists\">Changing the Chapter Level of Numbered and Bulleted Lists</link></variable>"
-msgstr ""
+msgstr "<variable id=\"insert_tab_innumbering\"><link href=\"text/swriter/guide/insert_tab_innumbering.xhp\" name=\"Changing the Outline Level of Numbered and Bulleted Lists\">Changing the Chapter Level of Numbered and Bulleted Lists</link></variable>"
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8406,7 +8406,7 @@ msgctxt ""
"par_id3155909\n"
"help.text"
msgid "To move a numbered or bulleted paragraph down one chapter level, click at the beginning of the paragraph, and then press Tab."
-msgstr ""
+msgstr "To move a numbered or bulleted paragraph down one chapter level, click at the beginning of the paragraph, and then press Tab."
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8414,7 +8414,7 @@ msgctxt ""
"par_id3155859\n"
"help.text"
msgid "To move a numbered or bulleted paragraph up one chapter level, click at the beginning of the paragraph, and then press Shift+Tab."
-msgstr ""
+msgstr "To move a numbered or bulleted paragraph up one chapter level, click at the beginning of the paragraph, and then press Shift+Tab."
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8422,7 +8422,7 @@ msgctxt ""
"par_id3153403\n"
"help.text"
msgid "To insert a tab between the number or bullet and the paragraph text, click at the beginning of the paragraph, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab."
-msgstr ""
+msgstr "To insert a tab between the number or bullet and the paragraph text, click at the beginning of the paragraph, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab."
#: join_numbered_lists.xhp
msgctxt ""
@@ -12230,7 +12230,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using Regular Expressions in Text Searches"
-msgstr ""
+msgstr "Using Regular Expressions in Text Searches"
#: search_regexp.xhp
msgctxt ""
@@ -12238,7 +12238,7 @@ msgctxt ""
"bm_id3150099\n"
"help.text"
msgid "<bookmark_value>wildcards, see regular expressions</bookmark_value><bookmark_value>searching; with regular expressions</bookmark_value><bookmark_value>regular expressions;searching</bookmark_value><bookmark_value>examples for regular expressions</bookmark_value><bookmark_value>characters;finding all</bookmark_value><bookmark_value>invisible characters;finding</bookmark_value><bookmark_value>paragraph marks;searching</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>wildcards, see regular expressions</bookmark_value><bookmark_value>searching; with regular expressions</bookmark_value><bookmark_value>regular expressions;searching</bookmark_value><bookmark_value>examples for regular expressions</bookmark_value><bookmark_value>characters;finding all</bookmark_value><bookmark_value>invisible characters;finding</bookmark_value><bookmark_value>paragraph marks;searching</bookmark_value>"
#: search_regexp.xhp
msgctxt ""
@@ -12246,7 +12246,7 @@ msgctxt ""
"hd_id3150099\n"
"help.text"
msgid "<variable id=\"search_regexp\"><link href=\"text/swriter/guide/search_regexp.xhp\">Using Regular Expressions in Text Searches</link></variable>"
-msgstr ""
+msgstr "<variable id=\"search_regexp\"><link href=\"text/swriter/guide/search_regexp.xhp\">Using Regular Expressions in Text Searches</link></variable>"
#: search_regexp.xhp
msgctxt ""
@@ -12254,7 +12254,7 @@ msgctxt ""
"par_id0509200916345516\n"
"help.text"
msgid "Regular expressions can be used to search for some unspecified or even invisible characters."
-msgstr ""
+msgstr "Regular expressions can be used to search for some unspecified or even invisible characters."
#: search_regexp.xhp
msgctxt ""
@@ -12262,7 +12262,7 @@ msgctxt ""
"par_id421554926388821\n"
"help.text"
msgid "Searching with regular expressions is different from searching with wildcards. %PRODUCTNAME Writer only supports searching with regular expressions."
-msgstr ""
+msgstr "Searching with regular expressions is different from searching with wildcards. %PRODUCTNAME Writer only supports searching with regular expressions."
#: search_regexp.xhp
msgctxt ""
@@ -12270,7 +12270,7 @@ msgctxt ""
"par_id3155182\n"
"help.text"
msgid "You can use regular expressions when you find and replace text in a document. For example, \"s.n\" finds \"sun\" and \"son\"."
-msgstr ""
+msgstr "You can use regular expressions when you find and replace text in a document. For example, \"s.n\" finds \"sun\" and \"son\"."
#: search_regexp.xhp
msgctxt ""
@@ -12302,7 +12302,7 @@ msgctxt ""
"par_id3149843\n"
"help.text"
msgid "In the <item type=\"menuitem\">Find</item> box, type the search term and the regular expression(s) that you want to use in your search."
-msgstr ""
+msgstr "In the <item type=\"menuitem\">Find</item> box, type the search term and the regular expression(s) that you want to use in your search."
#: search_regexp.xhp
msgctxt ""
@@ -12326,7 +12326,7 @@ msgctxt ""
"par_id3149641\n"
"help.text"
msgid "The regular expression for a single character is a period (.)."
-msgstr ""
+msgstr "The regular expression for a single character is a period (.)."
#: search_regexp.xhp
msgctxt ""
@@ -12334,7 +12334,7 @@ msgctxt ""
"par_id3153136\n"
"help.text"
msgid "The regular expression for zero or more occurrences of the previous character is an asterisk. For example: \"123*\" finds \"12\" \"123\", and \"1233\"."
-msgstr ""
+msgstr "The regular expression for zero or more occurrences of the previous character is an asterisk. For example: \"123*\" finds \"12\" \"123\", and \"1233\"."
#: search_regexp.xhp
msgctxt ""
@@ -12342,7 +12342,7 @@ msgctxt ""
"par_id3149609\n"
"help.text"
msgid "The regular expression combination to search for zero or more occurrences of any character is a period and asterisk (.*)."
-msgstr ""
+msgstr "The regular expression combination to search for zero or more occurrences of any character is a period and asterisk (.*)."
#: search_regexp.xhp
msgctxt ""
@@ -12350,7 +12350,7 @@ msgctxt ""
"par_id3149854\n"
"help.text"
msgid "The regular expression for the end of a paragraph is a dollar sign ($). The regular expression character combination for the start of a paragraph is a caret and a period (^.)."
-msgstr ""
+msgstr "The regular expression for the end of a paragraph is a dollar sign ($). The regular expression character combination for the start of a paragraph is a caret and a period (^.)."
#: search_regexp.xhp
msgctxt ""
@@ -12358,7 +12358,7 @@ msgctxt ""
"par_id0509200916345545\n"
"help.text"
msgid "The regular expression for a tab character is \\t."
-msgstr ""
+msgstr "The regular expression for a tab character is \\t."
#: search_regexp.xhp
msgctxt ""
@@ -12374,7 +12374,7 @@ msgctxt ""
"par_id3149875\n"
"help.text"
msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of regular expressions\">List of regular expressions</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02100001.xhp\" name=\"List of regular expressions\">List of regular expressions</link>"
#: section_edit.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 0906d49e71b..feec98fa9b5 100644
--- a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-12 12:08+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@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: 1562933312.000000\n"
#: BaseWindowState.xcu
@@ -21054,6 +21054,24 @@ msgstr "Donate to LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/en-GB/sd/messages.po b/source/en-GB/sd/messages.po
index 2540b853b7d..4b9ce71b70e 100644
--- a/source/en-GB/sd/messages.po
+++ b/source/en-GB/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-12 12:10+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@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: 1562933451.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "_Review"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Arrange"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Edit"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Grid"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3-_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Graphic"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "C_olour"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_Slide Show"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "F_rame"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_View"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "_Master Page"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Insert"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "D_raw"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_View"
diff --git a/source/en-GB/sw/messages.po b/source/en-GB/sw/messages.po
index cffd75eeaab..0273861d1e6 100644
--- a/source/en-GB/sw/messages.po
+++ b/source/en-GB/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-07-12 12:08+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@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: 1562933331.000000\n"
#: sw/inc/app.hrc:29
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Choose Item: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Edit"
diff --git a/source/en-ZA/cui/messages.po b/source/en-ZA/cui/messages.po
index 5a144a36334..b2677383397 100644
--- a/source/en-ZA/cui/messages.po
+++ b/source/en-ZA/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4522,147 +4522,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9661,78 +9661,78 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Help"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME Dialogues"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME Dialogues"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Document Name\tStatus"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "and"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Load %PRODUCTNAME During System Start-Up"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Disable systray Quickstarter"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13455,12 +13455,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 7bff8c6b46a..73002acb884 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21360,6 +21360,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/en-ZA/sd/messages.po b/source/en-ZA/sd/messages.po
index 2448d15a8ec..235501df7c6 100644
--- a/source/en-ZA/sd/messages.po
+++ b/source/en-ZA/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5535,9 +5535,9 @@ msgstr "Review"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5615,8 +5615,8 @@ msgid "_Edit"
msgstr "~Edit"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5633,60 +5633,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Graphic"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Colour"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Media"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "~Slide Show"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Frame"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "View"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Master Pages"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Insert"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/en-ZA/sw/messages.po b/source/en-ZA/sw/messages.po
index 4a59c806570..bc2dfd929dd 100644
--- a/source/en-ZA/sw/messages.po
+++ b/source/en-ZA/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8755,7 +8755,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Edit"
diff --git a/source/eo/cui/messages.po b/source/eo/cui/messages.po
index 9b83e54672e..9fc1e2e6514 100644
--- a/source/eo/cui/messages.po
+++ b/source/eo/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-06-03 07:43+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-26 22:46+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\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: 1559547830.000000\n"
+"X-POOTLE-MTIME: 1564181160.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1767,7 +1767,7 @@ msgstr "LibreOffice estas bazita sur OpenOffice.org"
#: cui/inc/strings.hrc:400
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
-msgstr ""
+msgstr "%PRODUCTNAME estas derivaĵo de LibreOffice kiu estas bazita sur OpenOffice.org"
#: cui/inc/strings.hrc:401
msgctxt "aboutdialog|locale"
@@ -1777,22 +1777,22 @@ msgstr "Lokaĵo: $LOCALE"
#: cui/inc/strings.hrc:402
msgctxt "aboutdialog|uilocale"
msgid "UI-Language: $LOCALE"
-msgstr ""
+msgstr "Interfaca lingvo: $LOCALE"
#: cui/inc/strings.hrc:403
msgctxt "aboutdialog|releasenotes"
msgid "~Release Notes"
-msgstr ""
+msgstr "Eldonaj notoj"
#: cui/inc/strings.hrc:404
msgctxt "aboutdialog|website"
msgid "~Website"
-msgstr ""
+msgstr "Retejo"
#: cui/inc/strings.hrc:405
msgctxt "aboutdialog|credits"
msgid "Cre~dits"
-msgstr ""
+msgstr "Dankoj"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -1815,1101 +1815,1101 @@ msgstr "Verkilo povas trakti stilojn kondiĉe: alineaj stiloj, kiuj havas malsam
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With File > Versions you can store multiple versions of the document in the same file. You can also open, delete, and compare previous versions."
-msgstr ""
+msgstr "Kun Dosiero > Versioj, vi povas konservi plurajn versiojn de la dokumento en la sama dosiero. Ankaŭ vi povas malfermi, forigi, kaj kompari antaŭajn versiojn."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/01190000.html
#: cui/inc/tipoftheday.hrc:49
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
-msgstr ""
+msgstr "Vi povas krei ilustritan indekson el objektaj nomoj, ne nur el apudskriboj."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/05190000.html
#: cui/inc/tipoftheday.hrc:50
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To temporarily starts with a fresh user profile or to restore a non-working %PRODUCTNAME instance start Help > Restart in Safe Mode."
-msgstr ""
+msgstr "Por provizore komenci kun nova profilo aŭ por restaŭri ne-funkciantan %PRODUCTNAME-ekzemplon, startu per Helpo > Restartigi en sekura reĝimo."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
-msgstr ""
+msgstr "Ŝanĝu la bazajn tiparojn por la antaŭe agordita ŝablono aŭ aktuala dokumento per Iloj > Agordoj > %PRODUCTNAME Verkilo > Bazaj tiparoj."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
#: cui/inc/tipoftheday.hrc:52
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
-msgstr ""
+msgstr "Difinu ofte uzatajn tekstojn Aŭtomata Teksto. Vi povos enmeti tian laŭ ĝi nomo, fulmoklavo aŭ ilobreto en iu ajn dokumento de Verkilo."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/autotext.html
#: cui/inc/tipoftheday.hrc:53
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools > Options > %PRODUCTNAME Writer > AutoCaption."
-msgstr ""
+msgstr "%PRODUCTNAME povas aŭtomate aldoni numeritan titolon kiam vi enmetas objektojn. Vidu en Iloj > Agordaĵoj > %PRODUCTNAME Verkilo > Aŭtomata apudskribo."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01041100.html
#: cui/inc/tipoftheday.hrc:54
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools > Sort."
-msgstr ""
+msgstr "Vi povas ordigi alineojn aŭ tabelajn vicojn alfabete aŭ numere per Iloj > Ordigi."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/06100000.html
#: cui/inc/tipoftheday.hrc:55
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sections in %PRODUCTNAME Writer to protect part of a text, show/hide text, reuse parts from other documents, use different column layout."
-msgstr ""
+msgstr "Uzu sekciojn en %PRODUCTNAME Verkilo por protekti parton de teksto, vidigi/kaŝi tekston, reuzi partojn el aliaj dokumentoj, uzi diferencan kolumnan aranĝon."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/04020100.html
#: cui/inc/tipoftheday.hrc:56
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet > Fill Cells > Random Number to generate a random series based on various distributions."
-msgstr ""
+msgstr "Uzu Folio > Plenigi ĉelojn > Hazarda numero por generi hazardan serion bazitan sur diversaj distribuaĵoj."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/02140700.html
#: cui/inc/tipoftheday.hrc:57
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format > Conditional Formatting > Manage in Calc to find out which cells have been defined with conditional formatting."
-msgstr ""
+msgstr "Uzu je Formato > Kondiĉa formatado > Bonteni, en Tabelilo por eltrovi kiuj ĉeloj estas agorditaj kun kondiĉa formatado."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/05120000.html
#: cui/inc/tipoftheday.hrc:58
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
-msgstr ""
+msgstr "Krom la enhavolisto, %PRODUCTNAME povas krei indeksojn alfabetajn, ilustraĵajn, tabelajn, objektajn, bibliografiajn, uzulajn."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/indices_toc.html
#: cui/inc/tipoftheday.hrc:59
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a series in %PRODUCTNAME Calc such as A1, A2, A3, A11, A15, not in alphabetical order but on the number? Enable natural sort in the Options tab."
-msgstr ""
+msgstr "Ĉu vi volas ordigi serion en %PRODUCTNAME Tabelilo, ekzemple A1, A2, A3, A11, A15, ne laŭ la alfabeta ordo sed laŭ la numero? Enŝaltu la naturan ordigon en la langeto Agordaĵoj. "
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/12030200.html
#: cui/inc/tipoftheday.hrc:60
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools > Options > OpenCL."
-msgstr ""
+msgstr "Enŝaltu masivajn paralelajn kalkulojn de formulaj ĉeloj per Iloj > Agordaĵoj > OpenCL."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/opencl.html
#: cui/inc/tipoftheday.hrc:61
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
-msgstr ""
+msgstr "%PRODUCTNAME subtenas kvar sekurecajn nivelojn por makrooj (de malalta ĝis tre alta) kaj fidatajn fontojn."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:63
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
-msgstr ""
+msgstr "Ĉi vi volas scii la validajn komandliniajn parametrojn? Startigu je soofice kun --help aŭ -h aŭ -?"
#. local help missing
#: cui/inc/tipoftheday.hrc:64
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
-msgstr ""
+msgstr "Ĉu vi volas mastrumi la vidigon de hiperligiloj en kalkultabelo? Enmetu ilin per la funkcio HIPERLIGILO."
#. local help missing
#: cui/inc/tipoftheday.hrc:65
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Can not get what you want with VLOOKUP? With INDEX and MATCH you can do everything!"
-msgstr ""
+msgstr "Ĉi vi sukcesis per VSERĈO? Per INDEKSO kaj KONGRUI vi povas fari ĉion!"
#. local help missing
#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
-msgstr ""
+msgstr "Vi povas subskribi ekzistantajn PDF-dosierojn kaj kontroli tiujn subskribojn."
#. local help missing
#: cui/inc/tipoftheday.hrc:67
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer includes LibreLogo: simple Logo-like programming environment with turtle vector graphics, DTP and graphic design."
-msgstr ""
+msgstr "Verkilo enhavas LibreLogon: simplan Logo-similan programadan reĝimon kun vektora grafiko, perkomputila eldonado kaj grafika fasonado."
#. local help missing
#: cui/inc/tipoftheday.hrc:68
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format > Cells > Protection. To prevent insert, delete, rename, move/copy of sheets use Tools > Protect Sheet."
-msgstr ""
+msgstr "Vi povas protekti ĉelojn per Formato > Ĉeloj > Ĉelprotektado. Por malebligi enmeti, forigi, renomi, movi/kopii foliojn, uzu je Iloj > Protekti folion."
#. local help missing
#: cui/inc/tipoftheday.hrc:69
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
-msgstr ""
+msgstr "Ĉu vi volas aldoni x monatojn al dato? Uzu je =EDATO(dato;monatoj)."
#. local help missing
#: cui/inc/tipoftheday.hrc:70
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependants (Shift+F5) (or use Tools > Detective). For each hit you go one more step in the chain."
-msgstr ""
+msgstr "Spuri ĉelojn uzitajn en formulo, antaŭkalkuleroj (Maj+F9) aŭ dependaĵoj (Maj+F5) (aŭ iru al Iloj > Spurilo). Por ĉiu trafo vi iras unu paŝon en la serio."
#. local help missing
#: cui/inc/tipoftheday.hrc:71
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a serie? Select the cell range and Sheet > Fill Cells > Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Ĉu vi volas plenigi serion? Elektu la ĉelaron kaj iru al Folio > Plenigi ĉelojn > Plenigi serion, kaj elektu inter Linia, Kreska, Dato kaj Aŭtomate plenigi."
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
-msgstr ""
+msgstr "Per %PRODUCTNAME vi povas uzi vian konton ĉe Google Mail por kunfandi retpoŝtojn. Iru al Iloj > Agordaĵoj > %PRODUCTNAME Verkilo > Retpoŝta kunfando."
#. local help missing
#: cui/inc/tipoftheday.hrc:73
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Data > Validity allows you to create drop-down lists where the user selects a value instead of typing."
-msgstr ""
+msgstr "Datumoj > Valideco ebligas al vi krei falliston kie la uzanto elektas valoron anstataŭ tajpi."
#. local help missing
#: cui/inc/tipoftheday.hrc:74
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use View > Value Highlighting to display cell contents in colors: Text/black, Formulas/green, Numbers/blue, Protected cells/grey background."
-msgstr ""
+msgstr "Iru al Vido > Valoremfazo, por emfazi ĉelenhavon en koloroj: Teksto/nigra, Formuloj/verda, Numeroj/blua, Protektitaj ĉeloj/griza fono."
#. local help missing
#: cui/inc/tipoftheday.hrc:75
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
-msgstr ""
+msgstr "Ĉu stranga erarkodo en Tabelilo, Eraro: kaj sekva numero? Ĉi tiu paĝo klarigas."
#. local help missing
#: cui/inc/tipoftheday.hrc:76
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find the words in bold in a Writer document? Edit > Find & Replace > Other options > Attributes > Font weight."
-msgstr ""
+msgstr "Ĉu vi volas serĉi grasajn vortojn en dokumento de Verkilo? Redakti > Serĉi kaj anstataŭigi > Aliaj agordoj> Atributoj > Tipara pezo."
#. local help missing
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit > Find & Replace: Search = [<|>], Replace = blank and check ‘Regular expressions’ under Other options."
-msgstr ""
+msgstr "Ĉu vi volas forigi ĉiujn <> kaj konservi la enan tekston? Redakti > Serĉi kaj anstataŭigi: Serĉi = [<|>], Anstataŭigi = vaka, kaj marku je ‘Regulaj esprimoj’ sub Aliaj agordoj."
#. local help missing
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > Detective > Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
-msgstr ""
+msgstr "Iloj > Spurilo > marku nevalidajn datumojn emfazante ĉiujn ĉelojn en la folio kiuj enhavas valorojn ekster la validigaj reguloj."
#. local help missing
#: cui/inc/tipoftheday.hrc:79
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to allow changes to parts of a read-only document in Writer? Insert frames or sections that can authorize changes."
-msgstr ""
+msgstr "Ĉu vi volas permesi ŝanĝojn ĉe partoj de nurlega dokumento en Verkilo? Enmetu kadrojn aŭ sekciojn kiuj povas rajtigi ŝanĝojn."
#. local help missing
#: cui/inc/tipoftheday.hrc:80
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writing a book? %PRODUCTNAME master document lets you manage large documents as a container for individual %PRODUCTNAME Writer files."
-msgstr ""
+msgstr "Ĉu vi verkas libron? Modela dokumento de %PRODUCTNAME ebligas al vi mastrumi grandajn dokumentojn kiel ujon por unuopaj %PRODUCTNAME -Verkilo-dosieroj."
#. local help missing
#: cui/inc/tipoftheday.hrc:81
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
-msgstr ""
+msgstr "En Tabelilo uzu la funkcion MEZUMO.REDUKTITA por liveri la mezumon de datumaro ekskludante la plej altan kaj plej malaltan valorojn."
#. local help missing
#: cui/inc/tipoftheday.hrc:82
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
-msgstr ""
+msgstr "Kalkuli pruntaĵajn repagojn per Tabelilo: ekzemple PAGO(2%/12;36;2500) intereza elcento por pagoperiodo 2%/12, 36 monatoj, pruntaĵo 2500."
#. local help missing
#: cui/inc/tipoftheday.hrc:83
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
-msgstr ""
+msgstr "Uzu vian Android- aŭ iPhone-poŝtelefonon por fore regi vian Prezentilo-prezentaĵon."
#. local help missing
#: cui/inc/tipoftheday.hrc:84
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
-msgstr ""
+msgstr "La Prezentilo-konzolo estas bonega eblo kiam vi laboras per %PRODUCTNAME-Prezentilo."
#. local help missing
#: cui/inc/tipoftheday.hrc:85
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
-msgstr ""
+msgstr "Aŭtomate marku alfabetajn indekserojn per dosiero de kongruado."
#. local help missing
#: cui/inc/tipoftheday.hrc:86
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
-msgstr ""
+msgstr "Eblas ligi kadrojn por ke teksto fluu el unu al alia, kiel en perkomputila eldonado ."
#. local help missing
#: cui/inc/tipoftheday.hrc:88
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get help from the community via the Ask portal."
-msgstr ""
+msgstr "Serĉu helpon ĉe la komunumo per la portalo Ask."
#: cui/inc/tipoftheday.hrc:89
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has great extensions to increase your productivity, check them out."
-msgstr ""
+msgstr "%PRODUCTNAME havas bonegajn kromprogramojn por pliigi vian produktivon. Provu ilin."
#: cui/inc/tipoftheday.hrc:90
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents, check it out."
-msgstr ""
+msgstr "%PRODUCTNAME havas centron por ŝablonoj por krei belaspektajn dokumentojn."
#: cui/inc/tipoftheday.hrc:91
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by clicking on F1, if you've installed it. Otherwise check online at:"
-msgstr ""
+msgstr "Enkorpigita helpo haveblas klakante al F1, se vi instalis ĝin. Alie, rigardu en la interreto ĉe:"
#: cui/inc/tipoftheday.hrc:92
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
-msgstr ""
+msgstr "Aliru dokumentojn de %PRODUCTNAME kaj senpagajn manlibrojn por uzantoj ĉe: "
#: cui/inc/tipoftheday.hrc:93
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
-msgstr ""
+msgstr "Viaj donacoj subtenas nian tutmondan komunumon."
#: cui/inc/tipoftheday.hrc:94
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as an extension."
-msgstr ""
+msgstr "Per %PRODUCTNAME estas facile instali novan vortaron: ili haveblas kiel aldonaĵoj."
#: cui/inc/tipoftheday.hrc:95
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
-msgstr ""
+msgstr "%PRODUCTNAME estas evoluigata de amikeca komunumo, el centoj da kontribuantoj ĉirkaŭ la mondo. Aliĝu al ni kun viaj lertoj pri kodado kaj aliaj aferoj."
#: cui/inc/tipoftheday.hrc:96
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
-msgstr ""
+msgstr "%PRODUCTNAME havas porteblan version kiu donas al vi moviĝpovon. Eĉ sen la rajtoj de adminstranto ĉe via komputilo, vi povas instali %PRODUCTNAME-porteblan al via diskaparato."
#: cui/inc/tipoftheday.hrc:97
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
-msgstr ""
+msgstr "%PRODUCTNAME ebligas al vi uzi helpoteknologion, ekzemple eksterekranlegilo, brajlaj iloj aŭ parolrekonaj enigiloj."
#: cui/inc/tipoftheday.hrc:98
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create editable Hybrid PDFs with %PRODUCTNAME."
-msgstr ""
+msgstr "Kreu redakteblajn hibridajn PDF-ojn per %PRODUCTNAME."
#: cui/inc/tipoftheday.hrc:99
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management ? Use a 3rd party extension."
-msgstr ""
+msgstr "Ĉu mastrumi citaĵojn? Uzu kromprogramon de ekstera liveranto."
#: cui/inc/tipoftheday.hrc:100
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You plan to change the computer and want to recover your customizations? See:"
-msgstr ""
+msgstr "Ĉu vi planas ŝanĝi la komputilon kaj vi volas ripari viajn tajloradojn?"
#: cui/inc/tipoftheday.hrc:101
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
-msgstr ""
+msgstr "%PRODUCTNAME subtenas pli ol 150 lingvojn."
#: cui/inc/tipoftheday.hrc:102
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
-msgstr ""
+msgstr "Ĉu vi volas iĝi %PRODUCTNAME-ambasadoro? Ekzistas atestiloj por programistoj, administrantoj, kaj trejnistoj."
#: cui/inc/tipoftheday.hrc:103
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
+msgstr "%PRODUCTNAME intencas proponi sin kiel organizaĵon por Google Summer of Code (GSoC). Vidu ĉe:"
#: cui/inc/tipoftheday.hrc:104
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create fillable form documents (even PDF's) with %PRODUCTNAME."
-msgstr ""
+msgstr "Kreu plenigeblajn formularojn (eĉ PDF) per %PRODUCTNAME."
#: cui/inc/tipoftheday.hrc:105
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
-msgstr ""
+msgstr "Rulu je %PRODUCTNAME en ajna foliumilo per rollApp."
#: cui/inc/tipoftheday.hrc:106
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and xml filters?"
-msgstr ""
+msgstr "Ĉu vi evoluigas novajn XSLT kaj xml-filtrilojn?"
#: cui/inc/tipoftheday.hrc:108
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
-msgstr ""
+msgstr "Facile konvertu viajn dokumentojn al PDF per unu alklako al la PDF-bildsimbolo en la ilobreto."
#: cui/inc/tipoftheday.hrc:109
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select a different icon set from Tools > Options > %PRODUCTNAME > View > User Interface > Icon size and style."
-msgstr ""
+msgstr "Elektu alian bildsimbolaron per Iloj > Agordaĵoj > %PRODUCTNAME > Vido > Uzinterfaco > Bildsimbola grando kaj stilo."
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File > Properties > Font."
-msgstr ""
+msgstr "Enkorpigu tiparon por plibona kunfunkcipovo kun aliaj oficejaj programaroj ĉe Dosiero > Atributoj > Tiparo."
#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Generate fully customized PDF documents with the exact format, image compression, comments, access rights, password, etc., via File > Export as PDF."
-msgstr ""
+msgstr "Generu tajloritajn PDF-dokumentojn kun la ĝustaj formato, bildodensigo, komentoj, alirorajtoj, pasvorto, ktp, per Dosiero > Eksporti kiel PDF."
#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data > Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
-msgstr ""
+msgstr "Uzu je Datumoj > Statistikoj por specimeni, priskribaj statistikoj, analizi variancon, korelacii, kaj multe pli en %PRODUCTNAME-Tabelilo."
#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select 'Selection count' to display the number of selected cells."
-msgstr ""
+msgstr "Dekstre alklaku la statan breton en %PRODUCTNAME Tabelilo kaj elektu je 'Elektaĵo' por vidigi la nombron da elektitaj ĉeloj."
#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress use Insert > Media > Photo Album to create a slideshow from a series of pictures with the 'Photo Album' feature."
-msgstr ""
+msgstr "En %PRODUCTNAME-Prezentilo, uzu je Enmeti > Aŭdvidaĵo > Albumo de fotoj, por krei bildoserion el serio da bildoj per la funkcio 'Albumo de fotoj'."
#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use shortcut Ctrl+Alt+C for it."
-msgstr ""
+msgstr "Ĉu vi scias ke vi povas kunligi komentojn al partoj de teksto? Simple uzu la fulmoklavojn Stir+Alt+C por tio."
#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to insert the date in a spreadsheet cell? Type Ctrl+; or Shift+Ctrl+; to insert the time."
-msgstr ""
+msgstr "Ĉu vi bezonas enmeti daton en kalkultabelan ĉelon? Tajpu je Stir+; aŭ Maj+Stir+; por enmeti la horon."
#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut Ctrl+Alt+Arrow (Up/Down)"
-msgstr ""
+msgstr "Ĉu vi bezonas movi unu aŭ pliajn alineojn? Ne necesas eltondi kaj alglui. Uzu la fulmoklavojn Stir+Alt+Sago (Supren/Malsupren)."
#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File > Wizards > Document converter."
-msgstr ""
+msgstr "Staple konverti viajn MS-Office-dokumentojn al la formato OpenDokument per la konvertila asistanto en la menuo Dosiero > Asistantoj > Dokumenkonvertilo."
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
-msgstr ""
+msgstr "Malmarku ĉe Iloj > Agordaĵoj > %PRODUCTNAME Tabelilo > Vido > Zomi: 'Sinkronigi folion', por ke ĉiu folio en Tabelilo havu la propran zomfaktoron."
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet > Sheet from file."
-msgstr ""
+msgstr "Malfermu CSV-dosieron kiel novan folion en la aktuala kalkultabelo per Folio > Enmeti folion el dosiero."
#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table > Select > Table and Insert > Frame… and move where you want."
-msgstr ""
+msgstr "Ĉu vi volas movi Verkilotabelon? Iru al Tabelo > Elekti > Tabelo, kaj Enmeti > Kadro... kaj movu al kie vi volas."
#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
-msgstr ""
+msgstr "En %PRODUCTNAME-Desegnilo, por ŝanĝi la 0/0-punton de la mezuriloj, ŝovu la intersekcon de la du mezuriloj, en la supra maldekstra angulo, en la laborspacon."
#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Hold down Ctrl and turn the mouse wheel to change the zoom factor."
-msgstr ""
+msgstr "Tenu je Stir kaj turnu la musan rulumilon por ŝanĝi la zomfaktoron."
#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit > Find & Replace lets you insert special characters directly: right click in input fields or press Shift+Ctrl+S."
-msgstr ""
+msgstr "Redakti > Serĉi kaj Anstataŭigi ebligas al vi rekte enmeti specialajn signojn: dekstre alkaku en eniga kampo aŭ premu je Maj+Stir+S."
#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don't use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
-msgstr ""
+msgstr "Ne uzu tabojn por apartigi erojn en Verkilo-dokumento. Depende de tio, kion vi provas fari, senbordera tabelo povas esti pli taŭga elekto."
#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
-msgstr ""
+msgstr "Ŝovu formatadan objekton al la fenestro Stiloj kaj Formatado. Dialogujo malfermiĝas. Simple enigu la nomon de la nova stilo."
#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the 'leading zeroes' cell format option or format the cell as text before entering the number."
-msgstr ""
+msgstr "Por montri la nulojn antaŭ numero, uzu la ĉelformatan eblon 'antaŭaj nuloj', aŭ formatu la ĉelon kiel tekston antaŭ ol enigi la numeron."
#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except ‘Comments’ in dialog. Use Operations ‘Add’ to not override existing content."
-msgstr ""
+msgstr "Por kopii komenton sen perdi la enhavon de la cela ĉelo, uzu je Alglui speciale, kaj malmarku ĉion escepte de 'Komentoj' en la dialogo. Uzu je Operacioj 'Aldoni' por ne anstataŭigi enhavon."
#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
-msgstr ""
+msgstr "Elektu objekton en la dokumenta fono per la ilo Elekti en la ilobreto Desegni, porĉirkaŭigi la objekton elektatan."
#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apply Heading paragraph styles in Writer with shortcut keys: Ctrl+1 applies Heading 1, Ctrl+2 applies Heading 2, etc."
-msgstr ""
+msgstr "Apliki titolajn alinestilojn en Verkilo per fulmoklavoj: Stir+1 aplikas Titolon 1, Stir+2 aplikas Titolon 2, ktp."
#: cui/inc/tipoftheday.hrc:131
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
-msgstr ""
+msgstr "Miksu vertikalan kaj horizontalan orientiĝojn en Tabelilo-kalkultabelo aplikante diversajn stilojn al folioj."
#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create different master pages in a presentation template: View > Master Slide and Slide > New Master (or per toolbar or right click in slide pane)."
-msgstr ""
+msgstr "Krei diversajn ĉefajn paĝojn en prezentaĵa ŝablono: Vido > Ĉefa lumbildo, kaj Lumbildo > Nova ĉefa lumbildo (aŭ per ilobreto aŭ dekstra alklako en lumbilda panelo)."
#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Page/Slide > Properties > 'Fit object to paper format' in Draw/Impress to resize the objects so that they fit on your chosen paper format."
-msgstr ""
+msgstr "Uzu Paĝo/Lumbildo > Atributoj > 'Adapti objekton lau papergrando' en Desegnilo aŭ Prezentilo por ŝanĝi grandon de objektoj por ke ili adaptiĝu al via elektita paperformato."
#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
-msgstr ""
+msgstr "Por modifi Autoplay-prezentaĵon, malfermu ĝin kaj, kiam ĝi estas preta, dekstre alklaku kaj elektu Redakti en la kunteksta menuo."
#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define 'Go to page' interactions and to have a summary more explicit than Slide1, Slide2…"
-msgstr ""
+msgstr "Alinomu viajn lumbildoj en Prezentilo por helpi vin agordi la interagojn 'Iri al paĝo' kaj por havi resumon pli eksplican ol Lumbildo1, Lumbildo2..."
#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the ‘Apply to All Slides’ button."
-msgstr ""
+msgstr "Aŭdigu muzikon tra la tuta prezentaĵo agordante sonon al la unua lumbilda transiro sen alklaki la butonon 'Apliki al ĉiuj lumbildoj'."
#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With ‘Slide Show > Custom Slide Show’, reorder and pick slides to fit a slideshow to the needs of your public."
-msgstr ""
+msgstr "Per 'Prezentaĵo > Propra prezentaĵo', reordigu kaj elektu lumbildojn por adapti la prezentaĵon al la bezonoj de via spektontoj."
#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
-msgstr ""
+msgstr "Por inkludi alineon kiu ne havas titolon en la enhavtabelo, ŝanĝu je Skemo kaj Numerado, en la alineaj agordoj de skema nivelo."
#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
-msgstr ""
+msgstr "Uzu la Konektilon el la Desegna ilobreto en Desegnilo aŭ Prezentilo por krei plaĉajn stirfluajn diagramojn kaj eble kopii/alglui la objekton en Verkilon."
#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the ‘Printable’ flag is not set (right click on the tab and ‘Modify Layer’)."
-msgstr ""
+msgstr "Ĉu vi volas vidi, sed ne presi, objekton en Desegnilo? Desegnu ĝin sur tavolo por kiu la flago 'Presebla' ne estas markita (dekstre alklaku la tabon kaj 'Ŝanĝi tavolon'."
#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File > Print and select 2 at ‘Pages per sheet’."
-msgstr ""
+msgstr "Ĉu vi volas presi du vertikalajn paĝojn en unu horizontala (redukti A4 al A5)? Dosiero > Presi, kaj elektu je 2 ĉe 'Paĝoj en folio'."
#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the ‘Vertical Text’ tool in the Drawing toolbar, check Tools > Options > Language Settings > Languages > Default languages > Asian (and make the button visible with right click)."
-msgstr ""
+msgstr "Por vidigi la ilon 'Vertikala teksto' en la ilobreto Desegnilo, marku je Iloj > Agordaĵoj > Lingvaj agordoj > Lingvoj > Aprioraj lingvoj > Azia, (kaj videbligu la butonon per dekstra alklako)."
#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to add many shapes in Draw/Impress? Double-click a tool in the drawing toolbar to use it for repeated tasks."
-msgstr ""
+msgstr "Ĉu vi volas aldoni multajn formojn en Desegnilo/Prezentilo? Duoble alklaku ilon en la desegna ilobreto por uzi ĝin por ripetaj taskoj."
#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data > AutoFilter, click the drop-down arrow, and chose ‘Top10’."
-msgstr ""
+msgstr "Ĉu vi volas vidigi nur la plej altajn valorojn en kalkultabelo? Elektu menuerojn Datumoj > Aŭtomata filtrilo, alklaku la fallistan sagon, kaj elektu je 'Supraj 10'."
#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
-msgstr ""
+msgstr "Ĉu vi ne povas ŝanĝi aŭ forigi propran ĉelstilon? Kontrolu ĉiujn foliojn. Ĉiuj devas esti neprotektitaj."
#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
-msgstr ""
+msgstr "Ĉu vi volas scii kiom da tagoj estas en la aktuala monato? Uzu la funkcion TAGOJENMONATO(HODIAŬ())."
#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert > Image or drag a background from the Gallery, then Format > Arrange > To Background."
-msgstr ""
+msgstr "Aldonu fonajn bildojn al kalkultabeloj per Enmeti > Bildo, aŭ ŝovu fonon el la Galerio, tiam Formato > Aranĝi > Al fono."
#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert > Object > Formula to convert the text."
-msgstr ""
+msgstr "Por rapide akiri matematikan objekton en Verkilo, tajpu vian formulon, marku ĝin, kaj iru al Enmeti > Objekto > Formulo, por konverti la tekston."
#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check ‘Print automatically inserted blank pages’ in the print dialog’s Writer tab."
-msgstr ""
+msgstr "Verkilo povas enmeti vakan paĝon inter du malparaj (paraj) paĝoj sekvantaj. Marku je 'Presi aŭtomate enmetitajn vakajn paĝojn', en la Verkilo-tabo de la presi-dialogo."
#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
-msgstr ""
+msgstr "La 4-a malnepra parametro, de la Tabelilo-funkcio VSERĈO, indikas ĉu ordigi la unuan kolumnon de datumoj. Se ne, enigu je FALSA aŭ 0."
#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format > Columns > Show."
-msgstr ""
+msgstr "Ĉu vi volas vidigi kaŝitan kolumnon A? Alklaku ĉelon en kolumno B, premu la maldekstran musbutonon, movu la muson maldekstren, maltenu ĝin. Ŝaltu ĝin per Formato > Kolumnoj > Vidigi."
#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File > Save a Copy you create a new document continuing to work on the original."
-msgstr ""
+msgstr "Verkilo helpas al vi fari restaŭrkopiojn: per Dosiero > Konservi kopion, vi kreas novan dokumenton kaj daŭre prilaboras la originan."
#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File > Send > Outline to Presentation automatically creates a slideshow from the outline."
-msgstr ""
+msgstr "Ĉu vi prezentos raporton verkitan per Verkilo? Dosiero > Sendi > Skemo al Prezentilo, aŭtomate kreas prezentaĵon el la skemo."
#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
-msgstr ""
+msgstr "Ŝovi kaj demeti ĉelojn el Tabelilo en la normalan vidon de lumbildo kreas tabelon; en la skeman vidon, ĉiu ĉelo kreas linion en la skemo."
#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format > Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
-msgstr ""
+msgstr "Uzu je Formato > Ĝisrandigi (aŭ la kunteksta menuo) por precize pozicii objektojn en Desegnilo/Prezentilo: ĝi centrigas en la paĝo, se unu objekto estas elektita, aŭ movas la grupon respektive."
#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Repeat the heading on a subsequent page when a table spans over more than one page with Table > Table Properties > Text Flow > Repeat heading."
-msgstr ""
+msgstr "Ripetu la titolon en sekva paĝo kiam tabelo ampleksas tra pli ol unu paĝo, per Tabelo > Atributoj > Teksta fluo > Ripeti titolon."
#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, ‘Time’ and ‘KM’, use =Time/KM to get minutes per kilometer."
-msgstr ""
+msgstr "Uzu kolumnajn aŭ vicajn etikedojn en formuloj. Ekzemple, se vi havas du kolumnojn, 'tempo' kaj 'km', uzu =tempo/km por kalkuli minutojn en unu kilometro."
#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break > Insert and enter the number."
-msgstr ""
+msgstr "Por ŝanĝi la numeron de paĝo en Verkilo, iru al la atributoj de la unua alineo kaj, ĉe la langeto Teksta fluo, marku je Salto > Enmeti, kaj enigu la numeron."
#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
-msgstr ""
+msgstr "Ĉu la kursoro iru en la ĉelon dekstre, post enigo valoron en Tabelilo? Uzu la tab-klavon anstataŭ la eniga klavo."
#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Show or hide comments in Writer by clicking the comment toggle button in the ruler."
-msgstr ""
+msgstr "Vidigu aŭ kaŝu komentojn en Verkilo alklakante la komentbaskulan butonon en la mezurilo."
#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format > Page > Sheet Tab > Scaling Mode."
-msgstr ""
+msgstr "Adaptu vian folion aŭ presotajn zonojn per Formato > Paĝo > Folia langeto > Skala reĝimo."
#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View > Freeze Cells > Freeze First Row."
-msgstr ""
+msgstr "Lasu videblaj kolumnajn titolojn de folio kiam rulumante liniojn per Vido > Fiksi ĉelojn > Fiksi unuan vicon."
#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) > Text Flow > Breaks and check Insert > Page > Before."
-msgstr ""
+msgstr "Ĉu viaj ĉapitraj stiloj ĉiam komencigu novan paĝon? Redakti je Titolo1 (alinean stilon) > Teksta fluo > Saltoj, kaj marku je Enmeti > Paĝo > Antaŭ."
#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to keep the text from, but remove a hyperlink, in Writer? Right click the link and ‘Remove Hyperlink’."
-msgstr ""
+msgstr "Ĉu konservi la tekston el, sed forigi hiperligilon, en Verkilo? Dekstre alklaku la ligilon kaj 'Forigi hiperligilon'."
#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert > Chart."
-msgstr ""
+msgstr "Kreu diagramon bazitan sur Verkilo-tabelo, alklakante en la tabelo kaj elektante je Enmeti > Diagramo."
#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with Alt key."
-msgstr ""
+msgstr "Kiel unupaŝe movi kolumnon en Tabelilo inter du aliaj? Alklaku la titolon kaj ĉelon en la kolumo, tenu la musbutonon kaj la Alt-klavon kaj ŝovu al la celo."
#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Backspace key instead of Delete in Calc. You can choose what to delete."
-msgstr ""
+msgstr "Uzu la retropaŝan klavon anstataŭ la Forigi-klavo en Tabelilo. Tiel vi povas elekti kion forigi."
#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To distribute some text in multi-columns select the text and apply Format > Columns."
-msgstr ""
+msgstr "Por dismeti iun tekston en pluraj kolumnoj, elektu la tekston kaj apliku je Formato > Kolumnoj."
#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show > Settings > Presentation always on top if you need another program displays its window to the front of your presentation."
-msgstr ""
+msgstr "Malmarku je Prezentaĵo > Agordaĵoj > Prezentaĵo ĉiam supre, se vi bezonas alian programon vidigi sian fenestron antaŭe de via prezentaĵo."
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
-msgstr ""
+msgstr "Agordi eblojn en Iloj > Agordaĵoj > %PRODUCTNAME-Verkilo > Formata Asistanto > Vidiga formato, por kiuj nepresendaj signoj vidigi."
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
-msgstr ""
+msgstr "Ĉu vi volas la saman aranĝon por la ekranaspekto kaj por presado? Marku en Iloj > Agordaĵoj > %PRODUCTNAME Tabelilo > Ĝenerala > Uzi presilan metrikon por formati dokumenton."
#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize your footnotes page with Tools > Footnotes and Endnotes…"
-msgstr ""
+msgstr "Adapti viajn piednotan paĝon per Iloj > Piednotoj kaj finnotoj..."
#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sum a cell through several sheets? Refer to the range of sheets e.g. =SUM(Sheet1.A1:Sheet3.A1)."
-msgstr ""
+msgstr "Ĉu sumi ĉelon tra pluraj folioj? Referu al la amplekso de folioj, ekzemple, =SUMO(Folio1.A1:Folio3.A1)."
#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, Ctrl+click the target sheet's tab and use Sheet > Fill Cells > Fill Sheets."
-msgstr ""
+msgstr "Vi povas kopii de unu folio al alia sen la Tondejo. Elektu la zonon kopiotan, Stir+alklaku la langeton de la cela folio kaj uzu je Folio > Plenigi ĉelojn > Plenigi foliojn."
#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down Ctrl key and click their tabs before entering."
-msgstr ""
+msgstr "Ĉu enmeti valoron en la saman lokon en pluraj folioj? Elektu la foliojn: tenu Stir-klavon kaj alklaku iliajn langetojn antaŭ ol enigi."
#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click a column field (row) PivotTable and press F12 to group data. Choices adapt to content: Date (month, quarter, year), number (classes)"
-msgstr ""
+msgstr "Alklaku kolumnan kampon (vico) pivottabelon kaj premu je F12 por grupigi datumojn. Elektoj adaptiĝas al enhavo: Dato (monato, kvaronjaro, jaro) numero (klasoj)"
#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to count words for just one particular paragraph style? Use Edit > Find & Replace > Paragraph Styles, select the style > Find All and read the number from the status bar."
-msgstr ""
+msgstr "Ĉu nombri vortojn por nur unu alinestilo? En Redakti > Serĉi kaj anstataŭigi > Alineaj stiloj, elektu la stilon > Serĉi ĉiujn, kaj legu la nombron el la stata breto."
#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Toolbars are contextual, they open depending on the context. If you do not want that, uncheck them from View > Toolbars."
-msgstr ""
+msgstr "Ilobretoj estas situaci-dependaj; ili malfermiĝas depende de la enhavo. Se vi ne deziras tion, malmarku ilin en Vido > Ilobretoj."
#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
-msgstr ""
+msgstr "Enmetu kaj numeru viajn formulojn en unu paŝo: tajpu fn kaj F3. Aŭtomata teksto enmetiĝas kun formulo kaj numero vicigitaj en tabelo."
#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To automatically number your table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
-msgstr ""
+msgstr "Por aŭtomate numeri tabelajn vicojn en Verkilo, elektu la koncernan kolumnon, kaj apliki numeradan stilon el Listaj Stiloj."
#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete in one step all of your printing areas: select all sheets then Format > Print Ranges > Clear."
-msgstr ""
+msgstr "Forigi unupaŝe ĉiujn viajn presotajn zonojn: elektu ĉiujn foliojn, kaj iru al Formato > Presotaj zonoj > Viŝi."
#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools > AutoCorrect Options > Options > Ignore double spaces."
-msgstr ""
+msgstr "%PRODUCTNAME helpas al vi ne enmeti du aŭ pliajn spacetojn en Verkilo. Kontrolu en Iloj > Agordoj por aŭtomate korekti > Agordaĵoj > Malatenti duopajn spacetojn."
#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special > Formatted text in Writer."
-msgstr ""
+msgstr "Transponi Verkilo-tabelon? Kopiu kaj algluu en Tabelilo, transponu per kopii/alglui speciale, tiam en Verkilo, kopii/alglui speciale > Formatita teksto. "
#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools > Footnotes and Endnotes > Footnotes tab > Counting."
-msgstr ""
+msgstr "Verkilo ebligas numeri viajn piednotojn en unu paĝo, ĉapitro, dokumento: Iloj > Piednotoj kaj finnotoj > langeto Finnotoj > Numerado."
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
-msgstr ""
+msgstr "Ĉu maldekstramanulo? En Iloj > Agordaĵoj > Lingvaj agordoj > Lingvoj > marku je Azia, kaj en Iloj > Agordaĵoj > %PRODUCTNAME Verkilo > Vido > Mezurilo > Ĝisrandigita dekstren, kiu vidigas la rulumilon maldekstre."
#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools > Options > Language Settings > Languages > Complex text and check Sheet > Right-To-Left."
-msgstr ""
+msgstr "Por vidigi la rulumilon maldekstre, enŝaltu en Iloj > Agordaĵoj > Lingvaj agordoj > Lingvoj > Kompleksa teksto, Folio > De dekstro maldekstren."
#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
-msgstr ""
+msgstr "Ĉu viaj numeroj vidiĝas kiel # # # en via kalkultabelo? La kolumno estas tro mallarĝa por montri ĉiujn ciferojn."
#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Ctrl+Alt+Shift+V to paste the contents of the clipboard as unformatted text."
-msgstr ""
+msgstr "Stir+Alt+Maj+V estas por alglui la enhavon de la tondejo kiel neformatitan kekston."
#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title etc."
-msgstr ""
+msgstr "Dum vi redaktas ĉelon, vi povas dekstre alklaki kaj enmeti kampojn: Dato, Nomo de folio, Titolo de dokumento, ktp."
#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can restarts the slide show after a pause specified at Slide Show > Slide Show Settings > Loop and repeat."
-msgstr ""
+msgstr "Vi povas restartigi la prezentadon post paŭzo agordita ĉe: Vidigu prezentaĵon > Prezentaĵa agordaro > Ripeti post."
#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can not see all the text in a cell? Expand the input line in the formula bar and you can scroll."
-msgstr ""
+msgstr "Ĉu vi ne povas vidi la tutan tekston en ĉelo? Etendi la enigan linion en la formula breto kaj vi povas rulumi."
#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You often create a document from another? Have you considered using a template?"
-msgstr ""
+msgstr "Ĉu vi ofte kreas dokumenton el alia? Ĉu vi konsideris uzi ŝablonon?"
#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions do not bring that new features and bug fixes. They also include security patches. Be safe, put yourself updated!"
-msgstr ""
+msgstr "Novaj versioj ne nur provizas novajn funkciojn kaj cimoriparojn. Ili ankaŭ enhavas sekurecajn flikaĵojn. Estu sekura, ĝisdatigi vian sistemon!"
#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press Ctrl + D or use Sheet > Fill Cells > Fill Down."
-msgstr ""
+msgstr "Ĉu vi volas duobligi la linion super la aktuala? Premu je Stir+D aŭ uzu Folio >Plenigi ĉelojn > Malsupre."
#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can easily optimize your table per Table > Size > Distribute Rows / Columns Evenly."
-msgstr ""
+msgstr "Vi povas facile optimumigi vian tabelon per Tabelo > Grando > Egale distribui vicojn / kolumnojn."
#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Best way to fix bad looking MS Word table cells via Table > Size > Optimal Row Height / Column Width."
-msgstr ""
+msgstr "La plej bona metodo ripari malbelan MS-Word-tabelajn ĉelojn estas per Tabelo > Grando > Optimuma vicalto / Kolumna larĝo."
#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don't get lost in large documents. Use the Navigator (F5) to find your way through the content."
-msgstr ""
+msgstr "Ne perdiĝu en grandaj dokumentoj. Uzu la Navigilon (F5) por trovi vojon tra la enhavo."
#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table > AutoFormat."
-msgstr ""
+msgstr "Vi povas uzi stilojn por koherigi la tabelojn en via dokumento. Elektu el la antaŭe difinitaj Stiloj (F11) aŭ per Tabelo > Aŭtomate formati."
#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter"
-msgstr ""
+msgstr "Ĉu vi volas elekti grandan ĉelaron sen rulumi? Tajpu la referencon de la ĉelaro (ekzemple, A1:A1000) en la noma kampo kaj Enigi."
#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page in Calc? Format > Page, Page > Layout settings > Table alignment."
-msgstr ""
+msgstr "Ĉu vi volas centrigi ĉelojn en presota paĝo en Tabelilo? Formato > Paĝo, Paĝo > Aranĝa agordaro > Tabela ĝisrandigo."
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
-msgstr ""
+msgstr "Vi povas vidigi formulojn anstataŭ rezultojn per Vido > Vidigi formulon (alternative Iloj > Agordaĵoj > %PRODUCTNAME Tabelilo > Vido > Vidigi > Formuloj)."
#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit > Go To Page… or press Ctrl+G."
-msgstr ""
+msgstr "Ĉu vi volas salti al specifa paĝo laŭ ties numero? Alklaku la plejmaldekstran statbreteron, aŭ iru al Redakti > Iri al paĝo... aŭ tajpu Stir+G."
#: cui/inc/tipoftheday.hrc:203
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools > AutoText > AutoText > Import you can select Word document or template containing the AutoText entries that you want to import."
-msgstr ""
+msgstr "Per Iloj > Aŭtomata teksto > Aŭtomata teksto > Importi, vi povas elekti Word-dokumenton aŭ ŝablonon kiu enhavas la aŭtomatan tekston importotan."
#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can display a number as a fraction (0.125 = 1/8): Format > Cells, Number > Fraction."
-msgstr ""
+msgstr "Vi povas vidigi numeron kiel frakcion (0.125 = 1/8): per Formato > Ĉeloj, Numero > Frakcio."
#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To print the notes of your slides go to File > Print > Impress tab and select Notes under Document > Type."
-msgstr ""
+msgstr "Por presi la notojn pri viaj lumbildoj, iru al Dosiero > Presi > langeto Prezentilo, kaj sub Dokumento > Tipo, elektu Notojn."
#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can move an object to another layer by holding it until its edges flash, then drag it to the tab of the layer you want to move it to."
-msgstr ""
+msgstr "Vi povas movi objekton al malsama tavolo, tenante ĝin ĝis fulmas ĝiaj eĝoj, kaj ŝovante ĝin al la langeto de la cela tavolo."
#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words more than 10 characters? Edit > Find & Replace > Search > [a-z]{10,} > Other Options > check Regular expressions."
-msgstr ""
+msgstr "Ĉu vi volas serĉi vortojn pli ol dek signojn larĝajn? Redakti > Serĉi kaj anstataŭigi > Serĉi > [a-z]{10,} > Aliaj agordoj > marku Regulajn esprimojn."
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Make it easy to insert a picture in a Writer template by Insert > Fields > More fields > Functions > PlaceHolder > Image. One click to select an image."
-msgstr ""
+msgstr "Faciligu enmeti bildon en Verkilo-ŝablonon per Enmeti > Kampoj > Pliaj kampoj > Funkcioj > Lokokupilo > Bildo. Unufoje alklaku por elekti bildon."
#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create a master document from the current Writer document? File > Send > Create Master Document (sub-documents are created depending of outline)."
-msgstr ""
+msgstr "Ĉu kreu ĉefan dokumenton el la aktuala Verkilo-dokumento? Dosiero > Sendi > Krei ĉefan dokumenton (subdokumentoj estas kreataj depende de skemo)."
#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your date acceptance pattern is inappropriate? Tools > Options > Language Settings > Language > Date acceptance patterns allows to tweak the pattern."
-msgstr ""
+msgstr "Ĉu via ŝablono por akcepteblaj datoj ne validas? Iloj > Agordaĵoj > Lingvaj agordoj > Lingvo > Ŝablonoj por akcepteblaj datoj, ebligas adapti la ŝablonon."
#: cui/inc/tipoftheday.hrc:211
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using only the shortcut Ctrl+Shift+X (remove direct character formats)."
-msgstr ""
+msgstr "Tajpante en grasaj, kursivaj, aŭ substrekaj en Verkilo, vi povas daŭrigi kun la aprioraj atributoj uzante nur la fulmoklavojn Stir+Maj+X (forigi rektajn signoformatojn)."
#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You will search in several sheets when you select them before you start the search."
-msgstr ""
+msgstr "Vi serĉos en pluraj folioj kiam vi elektas ilin antaŭ ol vi komencas serĉi."
#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style."
-msgstr ""
+msgstr "Ĉu vi volas ŝanĝi literumkontroladon por iu parto de la teksto? Alklaku en la lingva zono de la stata breto, aŭ pli bone, apliku stilon."
#: cui/inc/tipoftheday.hrc:214
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "A date is a formatted number of days since a date origin. An hour is a day divided by 24 with noon = 0.5."
-msgstr ""
+msgstr "Dato estas formatita nombro da tagoj post la data origino. Horo estas tago dividita per 24 kun tagmezo = 0,5."
#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File > Properties > Custom Properties tab lets you create what you want."
-msgstr ""
+msgstr "Ĉu vi bezonas propran enhavon por metadatumaj atributoj? Dosiero > Atributoj > langeto Propraj atributoj, ebligas al vi krei kion vi volas."
#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert your metadata in your document with Insert > Fields > More Fields… > Document or DocInformation."
-msgstr ""
+msgstr "Enmeti viajn metadatumojn per Enmeti > Kampoj > Pliaj kampoj... > Dokumento aŭ Dokumenta Informo."
#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, copy the range, paste special, and select everything except comments."
-msgstr ""
+msgstr "Por forigi plurajn komentojn, kopiu la amplekson, algluu speciale, kaj elektu ĉion escepte de komentoj."
#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
-msgstr ""
+msgstr "Se vi volas vidigi la kalkulon de unuopaj elementoj de formulo, elektu la respektivajn elementojn kaj premu F9."
#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table > Properties… > Text Flow > Text orientation."
-msgstr ""
+msgstr "Vi povas turni la orientiĝon de ĉela tabelo per Tabelo > Atributoj... > Teksta fluo > Teksta orientiĝo. "
#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Many images in your Writer document? Speed up the display by disabling View > Images and charts."
-msgstr ""
+msgstr "Ĉu vi havas multajn bildojn en via erkilo-dokumento? Plirapidigu la vidigon malŝaltante Vido > Bildoj kaj diagramoj."
#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+Ctrl+del deletes from cursor to the end of the current sentence."
-msgstr ""
+msgstr "Maj+Stir+For forigas ek de la kursoro ĝis la fino de la aktuala frazo."
#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need an unnumbered item in a list? Use 'Insert Unnumbered Entry' in the Bullets and Numbering toolbar."
-msgstr ""
+msgstr "Ĉu vi bezonas nenumeritan eron en listo? Uzu 'Enmeti nenumeritan elementon' en la ilobreto Buloj kaj numerado."
#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a pivot table? Click on drop-list's arrow in the row/col header and select sort method: ascending, descending, or custom."
-msgstr ""
+msgstr "Ĉu ordigi pivottabelon? Alklaku la fallistan sagon en la vico/kolumna titolo kaj elektu ordigan metodon: kreska, malkreska, aŭ propra."
#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing > Spacing > Below paragraph at the style/paragraph properties."
-msgstr ""
+msgstr "Ne enmetu manajn saltojn por apartigi du alineojn. Prefere ŝanĝu al Krommarĝenoj kaj interspacoj > Interspacoj > Sub alineo, ĉe la stilo/alineaj atributoj."
#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document didn’t reopen with the text cursor at the same editing position it was when you saved it? Check Tools > Options > %PRODUCTNAME > User Data > First/Last name is not empty."
-msgstr ""
+msgstr "Se via Verkilo-dokumento ne malfermiĝis kun la tekstakursoro ĉe la sama redakta pozicio kiun ĝ havis kiam vi konservis ĝin? Kontrolu ke, en Iloj > Agordaĵoj > %PRODUCTNAME > Uzulaj datumoj > Unua/Lasta nomo ne estas vaka."
#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
-msgstr ""
+msgstr "Per la Navigilo, vi povas elekti kaj movi supren/malsupren titolojn kaj la tekston sub la titolo, en la Navigilo kaj en la dokumento."
#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME doesn't calculate from left to right but respects the order Parentheses > Exponents > Multiplication > Division > Addition > Subtraction."
-msgstr ""
+msgstr "%PRODUCTNAME ne kalkulas de maldekstro dekstren, sed respektas la ordon Krampo > Eksponento > Multipliko > Divido > Adicio > Subtraho."
#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the default function in the status bar: right click on the area."
-msgstr ""
+msgstr "Vi povas ŝanĝi la aprioran funkcion en la stata breto: dekstre alklaku la zonon."
#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
-msgstr ""
+msgstr "Ĉu presi ĉiujn kolumnojn? Kaŝu aŭ grupigu tiujn, kiujn vi ne bezonas."
#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Shift+Space to select the current row and Ctrl+Space to select the current column."
-msgstr ""
+msgstr "Uzu Maj+Spaceto por elekti la aktualan vicon kaj Stir+Spaceto por elekti la aktualan kolumnon."
#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document use Insert > Field > Date."
-msgstr ""
+msgstr "Por enmeti la aktualan daton en vian dokumenton, iru al Enmeti > Kampo > Dato."
#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click at the beginning (end) of a section and press Alt+Enter to insert a paragraph before (after) the section."
-msgstr ""
+msgstr "Alklaku ĉe la komenco (fino) de sekcio kaj premu je Alt+Enigi por enmeti alineon antaŭ (post) la sekcio."
#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet > Sheet Tab Color."
-msgstr ""
+msgstr "Vi povas agordi koloron por ĉiu langeto: Dekstre alklaku la langeton aŭ iru al Folio > Koloro de langeto."
#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with %PRODUCTNAME basic macros? Take a look at the examples under Tools > Macros > Edit Macros."
-msgstr ""
+msgstr "Ĉu vi volas eklabori pri makrooj de %PRODUCTNAME-BASIC? Rigardu la ekzemplojn ĉe Iloj > Makrooj > Redakti makroojn."
#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert > Table of Contents (or right-click and Edit the previously inserted index). At the Entries tab delete the page number (#) from Structure line."
-msgstr ""
+msgstr "Por forigi la paĝnumeron el via enhavolisto, iru al Enmeti > Enhavolisto (aŭ dekstre alklaku kaj Redakti la antaŭe enmetitan enhavoliston).Ĉe la langeto Elementoj, forigu la paĝnumeron (#) el Struktura linio."
#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type 'Chapter ' to display 'Chapter 1'"
-msgstr ""
+msgstr "La dialogo Ĉapitra numerado ebligas al vi agordi tekston vidigotan antaŭ la ĉapitra numero. Ekzemple, tajpu 'Capitro' por vidigi 'Ĉapitro 1'."
#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools > Detective > Trace Dependents (Shift+F5)."
-msgstr ""
+msgstr "Ĉu vi volas scii ĉu iu ĉelo estas menciita en formuloj de aliaj ĉeloj? Iloj > Spurilo > Spuri Dependaĵojn (Maj+F5)."
#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools > Options > %PRODUCTNAME > View > Middle Mouse button."
-msgstr ""
+msgstr "Vi povas adapti la mezan musbutonon per Iloj > Agordaĵoj > %PRODUCTNAME > Vido > Meza musbutono."
#: cui/inc/tipoftheday.hrc:239
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To repeat rows/columns on every pages use Format > Print Ranges > Edit."
-msgstr ""
+msgstr "Por ripeti vicojn/kolumnojn en ĉiuj paĝoj, iru al Formato > Presotaj zonoj > Redakti."
#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? Alt+arrow Keys move objects (shape, picture, formula) by one pixel."
-msgstr ""
+msgstr "Ĉu vi bezonas precize pozicii? Klavoj Alt+sago movas objektojn (formo, bildo, formulo) je unu bildero."
#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose ‘Hierarchical View’ in the Styles and Formatting sidebar to see the relation between styles."
-msgstr ""
+msgstr "En la flanka breto Stiloj kaj formatado, elektu je 'Hierarkia vido' por vidi la rilaton inter stiloj."
#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can toggle between the field names and the actual value with View > Fields Names (or Ctrl + F9)."
-msgstr ""
+msgstr "Vi povas baskuli inter la kampaj nomoj kaj la aktuala valoro per Vido > Kampaj nomoj (aŭ Stir+F9)."
#: cui/inc/tipoftheday.hrc:243
#, c-format
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Creating a Style based on another, you can enter a percentage value or a point value (e.g. 110% or -2pt or +5pt)."
-msgstr ""
+msgstr "Krei stilon bazitan sur alia, vi povas enigi valoron kiel elcenton aŭ tiparan grandon (ekzemple 110% aŭ -2pt aŭ +5pt)."
#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
-msgstr ""
+msgstr "Ĉu reiri al apriora, aplikinte listan stilon? Alklaku Bulojn aŭ Numeradon ek/for, en la formatada ilobreto."
#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the Ctrl key to follow hyperlinks? Tools > Options > %PRODUCTNAME > Security > Options > ‘Ctrl+click required to follow hyperlinks’."
-msgstr ""
+msgstr "Ĉu agordu la uzmanieron de la Stir-klavo por sekvi hiperligilojn? Iloj > Agordaĵoj > %PRODUCTNAME > Sekureco > Agordaĵoj > 'Stir+alklako bezonata post hiperligiloj'."
#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed from the marching ants around cells in Calc. Press escape to stop them; the copied content will remain available for pasting."
-msgstr ""
+msgstr "Ĉu ĝenas vin la marŝantaj formikoj ĉirkaŭ ĉeloj en Tabelilo? Premu je Eskapi por haltigi ilin; la kopiita enhavo restos havebla por alglui."
#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly insert or delete rows, select the desired number of rows (or columns) and press Ctrl+ to add or Ctrl- to delete."
-msgstr ""
+msgstr "Por rapide enigi aŭ forigi vicojn, elektu la deziratan nombron da vicoj (aŭ kolumnoj) kaj premu Stir+ por aldoni aŭ Stir- por forigi."
#: cui/inc/tipoftheday.hrc:248
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use Ctrl+* (numeric key pad)."
-msgstr ""
+msgstr "Por elekti koneksan ĉelaron, kiu enhavas datumojn, kaj estas ĉirkaŭita de vakaj vico kaj kolumno, uzu Stir+* (en numera klavareto)."
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
-msgstr ""
+msgstr "Stir+Maj+F9 rekalkulas ĉiujn formulojn en ĉiuj folioj."
#: cui/inc/tipoftheday.hrc:250
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Write along a curve? Draw the line, double click, type the text, Format > Text Box and Shape > Fontwork."
-msgstr ""
+msgstr "Por skribi laŭ kurbo, desegnu la linion, duoble alklaku ĝin, tajpu la tekston, Formato > Teksta kadro kaj formo > FontWork."
#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To enable macro recording, check Tools > Options > %PRODUCTNAME > Advanced > Enable macro recording."
-msgstr ""
+msgstr "Por enŝalti registri makroojn, marku je Iloj > Agordaĵoj > %PRODUCTNAME > Specialaj > Ebligi registri makroojn."
#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
-msgstr ""
+msgstr "En la kampo anstataŭigi enigon, de aŭtomataj korektaj agordoj, vi povas uzi la ĵokerojn .*"
#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to export formulas to CSV? File > Save As > Type:Text CSV, check ‘Edit filter settings’, and check ‘Save cell formulas’ in the next dialog."
-msgstr ""
+msgstr "Ĉu eksportu formulojn al CSV? Dosiero > Konservi kiel > Tipo:Teksto CSV, marku je 'Redakti filtrilajn agordojn', kaj marku je 'Konservi ĉelajn formulojn' en la sekva dialogo."
#: cui/inc/tipoftheday.hrc:254
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "No need to scroll through the list at Tools > Customize > Keyboard to find a shortcut: just type it."
-msgstr ""
+msgstr "Ne necesas rulumi tra la listo ĉe Iloj > Adapti > Klavaro, por serĉi fulmoklavon: simple tajpi ĝin."
#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in the selection, press / (divide key) on the number pad. Press * to restore entire page in screen."
-msgstr ""
+msgstr "Por rapide zomi en la elektaĵo, premu / (divida klavo) en la numera klavareto. Premu je * por restaŭri la tutan paĝon en la ekrano."
#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal."
-msgstr ""
+msgstr "Por rapide zomi al amplekselekto, dekstre alklaku en la zoma parto de la stata breto kaj elektu je Optimuma."
#: cui/inc/tipoftheday.hrc:257
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose 'Format all Comments'."
-msgstr ""
+msgstr "Vi povas reformati ĉiujn komentojn en dokumento, alklakante la malsupran sagon en komento kaj elektante je 'Formati ĉiujn komentojn'."
#: cui/inc/tipoftheday.hrc:258
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To convert a formula into static values you don’t need to copy/paste; use Data > Calculate > Formula to Value."
-msgstr ""
+msgstr "Por konverti formulon en statikajn valorojn, ne necesas kopii/alglui; uzu Datumoj > Kalkuli > Formulo al valoro."
#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Find all expressions in brackets per Edit > Find & Replace > Find > \\([^)]+\\) (check ‘Regular expressions’)"
-msgstr ""
+msgstr "Serĉu ĉiujn espriojn en rondaj krampoj per Redakti > Serĉi kaj anstataŭigi > Serĉi \\([^)]+\\) (marku je 'Regulaj esprimoj')"
#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME at Tools > Options > View > User Interface."
-msgstr ""
+msgstr "Vi povas ŝanĝi la aspekton de %PRODUCTNAME ĉe Iloj > Agordaĵoj > Vido > Uzinterfaco."
#: cui/inc/tipoftheday.hrc:263
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
-msgstr ""
+msgstr "%PRODUCTNAME-Helpo"
#: cui/inc/tipoftheday.hrc:264
msgctxt "STR_MORE_LINK"
msgid "More info"
-msgstr ""
+msgstr "Pli da informo"
#: cui/inc/treeopt.hrc:30
msgctxt "SID_GENERAL_OPTIONS_RES"
@@ -3964,7 +3964,7 @@ msgstr "Fonta dosiero"
#: cui/uiconfig/ui/baselinksdialog.ui:172
msgctxt "baselinksdialog|LINKS"
msgid "Element"
-msgstr ""
+msgstr "Elemento"
#: cui/uiconfig/ui/baselinksdialog.ui:185
msgctxt "baselinksdialog|TYPE"
@@ -4374,162 +4374,162 @@ msgstr "Minimuma vortlongo"
#: cui/uiconfig/ui/bulletandposition.ui:50
msgctxt "bulletandposition|fromfile"
msgid "From file..."
-msgstr ""
+msgstr "El dosiero..."
#: cui/uiconfig/ui/bulletandposition.ui:58
msgctxt "bulletandposition|gallery"
msgid "Gallery"
-msgstr ""
+msgstr "Galerio"
#: cui/uiconfig/ui/bulletandposition.ui:95
msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Buloj kaj numerado"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
-msgstr ""
+msgstr "Nivelo"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
-msgstr ""
+msgstr "Tipo:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
-msgstr ""
+msgstr "Komenci ĉe:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
-msgstr ""
+msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
-msgstr ""
+msgstr "Signo:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
-msgstr ""
+msgstr "Elekti..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
-msgstr ""
+msgstr "Elekti bildon..."
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
-msgstr ""
+msgstr "Larĝo:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
-msgstr ""
+msgstr "Alto:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
-msgstr ""
+msgstr "Konservi la proporciojn"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
-msgstr ""
+msgstr "Antaŭ:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
-msgstr ""
+msgstr "Post:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
-msgstr ""
+msgstr "Apartigilo"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
-msgstr ""
+msgstr "Koloro:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
-msgstr ""
+msgstr "Relativa grando:"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
-msgstr ""
+msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
-msgstr ""
+msgstr "Krommarĝeno:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
-msgstr ""
+msgstr "Larĝo:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
-msgstr ""
+msgstr "Relative"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
-msgstr ""
+msgstr "Pozicio"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
-msgstr ""
+msgstr "Ĝisrandigo"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
-msgstr ""
+msgstr "Lumbildo"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
-msgstr ""
+msgstr "Elekto"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
-msgstr ""
+msgstr "Apliki al modelo"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
-msgstr ""
+msgstr "Amplekso"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
-msgstr ""
+msgstr "Atributoj"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
-msgstr ""
+msgstr "Antaŭrigardo"
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
@@ -5724,12 +5724,12 @@ msgstr "Redakti datumbazan ligilon"
#: cui/uiconfig/ui/dbregisterpage.ui:73
msgctxt "dbregisterpage|type"
msgid "Registered name"
-msgstr ""
+msgstr "Registrita nomo"
#: cui/uiconfig/ui/dbregisterpage.ui:95
msgctxt "dbregisterpage|path"
msgid "Database file"
-msgstr ""
+msgstr "Datumbaza dosiero"
#: cui/uiconfig/ui/dbregisterpage.ui:123
msgctxt "dbregisterpage|new"
@@ -6780,22 +6780,22 @@ msgstr "Formato"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:285
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
-msgstr ""
+msgstr "Hanja supre"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:301
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
-msgstr ""
+msgstr "Hanja malsupre"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:317
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
-msgstr ""
+msgstr "Hangul supre"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:333
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
-msgstr ""
+msgstr "Hangul malsupre"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
msgctxt "hangulhanjaconversiondialog|simpleconversion"
@@ -6855,7 +6855,7 @@ msgstr "Abstataŭigi laŭ signo"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:552
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
-msgstr ""
+msgstr "Agordaĵoj..."
#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:8
msgctxt "hangulhanjaeditdictdialog|HangulHanjaEditDictDialog"
@@ -8042,12 +8042,12 @@ msgstr "Dentrada menuo"
#: cui/uiconfig/ui/menuassignpage.ui:481
msgctxt "menuassignpage|menugearbtn"
msgid "Contains commands to modify or delete the selected top level menu, and the command to add new top level menus."
-msgstr ""
+msgstr "Enhavas komandojn por ŝanĝi aŭ forigi la elektitan supranivelan menuon, kaj la komandon por aldoni novajn supranivelajn menuojn."
#: cui/uiconfig/ui/menuassignpage.ui:503
msgctxt "menuassignpage|toolbargearbtn"
msgid "Contains commands to modify or delete the selected toolbar, and the command to add new toolbars."
-msgstr ""
+msgstr "Enhavas komandojn por ŝanĝi aŭ forigi la elektitan ilobreton, kaj la komandon por aldoni novajn ilobretojn."
#: cui/uiconfig/ui/menuassignpage.ui:671
msgctxt "menuassignpage|insert"
@@ -9031,12 +9031,12 @@ msgstr "Signa emfazo"
#: cui/uiconfig/ui/optfltrembedpage.ui:207
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
-msgstr ""
+msgstr "Krei MSO-ŝlosilan dosieron"
#: cui/uiconfig/ui/optfltrembedpage.ui:230
msgctxt "optfltrembedpage|label5"
msgid "Lock files"
-msgstr ""
+msgstr "Ŝlosaj dosieroj"
#: cui/uiconfig/ui/optfltrpage.ui:29
msgctxt "optfltrpage|wo_basic"
@@ -9171,79 +9171,79 @@ msgstr "Vidigi ŝprucfenestron \"Eksterreta helpo ne instalita\""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
-msgstr ""
+msgstr "Vidigi dialogon \"Konsileto de la tago\" je startigo"
#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Helpo"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Uzi %PRODUCTNAME-dialogojn"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Malfermi/Konservi dialogojn"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Uzi dialogojn de %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Presaj dialogoj"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Preso agordas staton \"dokumento modifita\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumenta stato"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Interpreti kiel jarojn inter "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "kaj "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Jaro (du ciferoj)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Kolekti uzinformon kaj sendi ĝin al The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Helpi plibonigi je %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Ŝargi je %PRODUCTNAME dum sistemstarto"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Enŝalti sistempletan Rapidstartilon"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Rapidstartilo"
@@ -9471,7 +9471,7 @@ msgstr "Apriora valuto:"
#: cui/uiconfig/ui/optlanguagespage.ui:93
msgctxt "optlanguagespage|dataaccpatterns"
msgid "Date acceptance _patterns:"
-msgstr "Ŝablonoj por acepteblaj dataj:"
+msgstr "Ŝablonoj por akcepteblaj dataj:"
#: cui/uiconfig/ui/optlanguagespage.ui:153
msgctxt "optlanguagespage|decimalseparator"
@@ -10138,7 +10138,7 @@ msgstr "Telefonnumero de laborejo"
#: cui/uiconfig/ui/optuserpage.ui:386
msgctxt "fax-atkobject"
msgid "Fax number"
-msgstr ""
+msgstr "Faksnumero"
#: cui/uiconfig/ui/optuserpage.ui:404
msgctxt "email-atkobject"
@@ -11119,7 +11119,7 @@ msgstr "Antaŭinstalita etoso"
#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
msgid "LibreOffice Themes"
-msgstr ""
+msgstr "Etosoj LibreOffice"
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -12750,37 +12750,37 @@ msgstr "Anstataŭigi per:"
#: cui/uiconfig/ui/thesaurus.ui:259
msgctxt "thesaurus|RID_SVXSTR_ERR_TEXTNOTFOUND"
msgid "No alternatives found."
-msgstr ""
+msgstr "Ne trovis alternativojn."
#: cui/uiconfig/ui/tipofthedaydialog.ui:8
msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
-msgstr ""
+msgstr "Konsileto de la tago"
#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
-msgstr ""
+msgstr "Vidigi konsiletojn je startigo"
#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
-msgstr ""
+msgstr "Enŝalti la dialogon ree ĉe Iloj > Agordaĵoj > Ĝenerala"
#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
-msgstr ""
+msgstr "Sekva konsileto"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
-msgstr ""
+msgstr "Ĉu vi scias?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
-msgstr ""
+msgstr "Ligilo"
#: cui/uiconfig/ui/transparencytabpage.ui:77
msgctxt "transparencytabpage|RBT_TRANS_OFF"
diff --git a/source/eo/dbaccess/messages.po b/source/eo/dbaccess/messages.po
index ddb35842555..4d4e630d518 100644
--- a/source/eo/dbaccess/messages.po
+++ b/source/eo/dbaccess/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-05-19 03:57+0000\n"
+"PO-Revision-Date: 2019-07-18 22:31+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -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: 1558238250.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563489111.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -3234,7 +3234,7 @@ msgstr "Poste"
#: dbaccess/uiconfig/ui/migrwarndlg.ui:61
msgctxt "migrationwarndialog|link"
msgid "Click for important information about migration."
-msgstr ""
+msgstr "Alklaku por grava informo pri migrado."
#: dbaccess/uiconfig/ui/mysqlnativepage.ui:47
msgctxt "mysqlnativepage|connectionheader"
diff --git a/source/eo/editeng/messages.po b/source/eo/editeng/messages.po
index 5fac8dc12da..a7c273b2b14 100644
--- a/source/eo/editeng/messages.po
+++ b/source/eo/editeng/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2018-01-13 20:21+0000\n"
+"PO-Revision-Date: 2019-07-25 02:41+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -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: 1515874901.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564022481.000000\n"
#: editeng/uiconfig/ui/spellmenu.ui:12
msgctxt "spellmenu|ignore"
@@ -680,7 +680,7 @@ msgstr "tvipo"
#: include/editeng/editrids.hrc:170
msgctxt "RID_SVXITEMS_METRIC_PIXEL"
msgid "pixel"
-msgstr "rastrumero"
+msgstr "bildero"
#. GetValueText of BoolItems
#: include/editeng/editrids.hrc:173
diff --git a/source/eo/extras/source/autocorr/emoji.po b/source/eo/extras/source/autocorr/emoji.po
index abdba5faa92..0116eb70ad6 100644
--- a/source/eo/extras/source/autocorr/emoji.po
+++ b/source/eo/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: 2017-12-20 08:16+0100\n"
-"PO-Revision-Date: 2019-03-09 20:30+0000\n"
+"PO-Revision-Date: 2019-07-25 02:32+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\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: 1552163430.000000\n"
+"X-POOTLE-MTIME: 1564021967.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9482,7 +9482,7 @@ msgctxt ""
"SLEUTH_OR_SPY\n"
"LngText.text"
msgid "detective"
-msgstr "detektivo"
+msgstr "spurilo"
#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/eo/helpcontent2/source/text/shared/04.po b/source/eo/helpcontent2/source/text/shared/04.po
index 5b189d7d4d4..12fd9ad52bd 100644
--- a/source/eo/helpcontent2/source/text/shared/04.po
+++ b/source/eo/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: 2019-01-07 11:14+0100\n"
-"PO-Revision-Date: 2018-07-08 16:06+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-21 12:45+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\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: 1531066006.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563713148.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"hd_id3154198\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Ctrl+Shift+J</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/>Stir+Maj+J</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Stir+Maj+J</defaultinline></switchinline>"
#: 01010000.xhp
msgctxt ""
diff --git a/source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 02c1fb20853..4501197b928 100644
--- a/source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ 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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-01-31 02:43+0000\n"
+"PO-Revision-Date: 2019-07-18 22:43+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"Language: eo\n"
@@ -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: 1548902615.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563489833.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"OOO_CONTROL_7\n"
"LngText.text"
msgid "{&DialogDefaultBold}Change Current Destination Folder"
-msgstr ""
+msgstr "{&DialogDefaultBold}Ŝanĝi aktualan celan dosierujon"
#: Control.ulf
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"OOO_CONTROL_27\n"
"LngText.text"
msgid "{&DialogDefaultBold}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogDefaultBold}Bonvenon al la instala asistanto por [ProductName]"
#: Control.ulf
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"OOO_CONTROL_36\n"
"LngText.text"
msgid "{\\DialogDefault}{80}"
-msgstr ""
+msgstr "{\\DialogDefault}{80}"
#: Control.ulf
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"OOO_CONTROL_40\n"
"LngText.text"
msgid "{&DialogDefaultBold}User Information"
-msgstr ""
+msgstr "{&DialogDefaultBold}Informo pri uzanto"
#: Control.ulf
msgctxt ""
@@ -1230,7 +1230,7 @@ msgctxt ""
"OOO_CONTROL_41\n"
"LngText.text"
msgid "{\\DialogDefault}{50}"
-msgstr ""
+msgstr "{\\DialogDefault}{50}"
#: Control.ulf
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"OOO_CONTROL_54\n"
"LngText.text"
msgid "{&DialogDefaultBold}Custom Setup"
-msgstr ""
+msgstr "{&DialogDefaultBold}Propra agordado"
#: Control.ulf
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"OOO_CONTROL_65\n"
"LngText.text"
msgid "{&DialogDefaultBold}Custom Setup Tips"
-msgstr ""
+msgstr "{&DialogDefaultBold}Konsiletoj pri propra agordado"
#: Control.ulf
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"OOO_CONTROL_90\n"
"LngText.text"
msgid "{&DialogDefaultBold}Destination Folder"
-msgstr ""
+msgstr "{&DialogDefaultBold}Cela dosierujo"
#: Control.ulf
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"OOO_CONTROL_98\n"
"LngText.text"
msgid "{&DialogDefaultBold}Disk Space Requirements"
-msgstr ""
+msgstr "{&DialogDefaultBold}Bezonata diskospaco"
#: Control.ulf
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"OOO_CONTROL_105\n"
"LngText.text"
msgid "{&DialogDefaultBold}Files in Use"
-msgstr ""
+msgstr "{&DialogDefaultBold}Dosieroj uzataj"
#: Control.ulf
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"OOO_CONTROL_115\n"
"LngText.text"
msgid "{&DialogDefaultBold}Change Current Destination Folder"
-msgstr ""
+msgstr "{&DialogDefaultBold}Ŝanĝi aktualan celan dosierujon"
#: Control.ulf
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"OOO_CONTROL_126\n"
"LngText.text"
msgid "{&DialogHeading}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogHeading}Bonvenon al la instala asistanto por [ProductName]"
#: Control.ulf
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"OOO_CONTROL_133\n"
"LngText.text"
msgid "{&DialogDefaultBold}License Agreement"
-msgstr ""
+msgstr "{&DialogDefaultBold}Permesilo"
#: Control.ulf
msgctxt ""
@@ -1766,7 +1766,7 @@ msgctxt ""
"OOO_CONTROL_140\n"
"LngText.text"
msgid "{&DialogDefaultBold}Program Maintenance"
-msgstr ""
+msgstr "{&DialogDefaultBold}Bontenado programon"
#: Control.ulf
msgctxt ""
@@ -1830,7 +1830,7 @@ msgctxt ""
"OOO_CONTROL_149\n"
"LngText.text"
msgid "{&DialogDefaultBold}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogDefaultBold}Bonvenon al la instala asistanto por [ProductName]"
#: Control.ulf
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"OOO_CONTROL_155\n"
"LngText.text"
msgid "{&DialogDefaultBold}Out of Disk Space"
-msgstr ""
+msgstr "{&DialogDefaultBold}Mankas diskospaco"
#: Control.ulf
msgctxt ""
@@ -1910,7 +1910,7 @@ msgctxt ""
"OOO_CONTROL_161\n"
"LngText.text"
msgid "{&DialogHeading}Welcome to the Patch for [ProductName]"
-msgstr ""
+msgstr "{&DialogHeading}Bonvenon al la flikaĵo por [ProductName]"
#: Control.ulf
msgctxt ""
@@ -1966,7 +1966,7 @@ msgctxt ""
"OOO_CONTROL_170\n"
"LngText.text"
msgid "{&DialogDefaultBold}Ready to Modify the Program"
-msgstr ""
+msgstr "{&DialogDefaultBold}Preta por modifi la programon"
#: Control.ulf
msgctxt ""
@@ -1974,7 +1974,7 @@ msgctxt ""
"OOO_CONTROL_171\n"
"LngText.text"
msgid "{&DialogDefaultBold}Ready to Repair the Program"
-msgstr ""
+msgstr "{&DialogDefaultBold}Preta por ripari la programon"
#: Control.ulf
msgctxt ""
@@ -1982,7 +1982,7 @@ msgctxt ""
"OOO_CONTROL_172\n"
"LngText.text"
msgid "{&DialogDefaultBold}Ready to Install the Program"
-msgstr ""
+msgstr "{&DialogDefaultBold}Preta por instali la programon"
#: Control.ulf
msgctxt ""
@@ -2038,7 +2038,7 @@ msgctxt ""
"OOO_CONTROL_181\n"
"LngText.text"
msgid "{&DialogDefaultBold}Remove the Program"
-msgstr ""
+msgstr "{&DialogDefaultBold}Forigi la programon"
#: Control.ulf
msgctxt ""
@@ -2110,7 +2110,7 @@ msgctxt ""
"OOO_CONTROL_190\n"
"LngText.text"
msgid "{&DialogHeading}Installation Wizard Completed"
-msgstr ""
+msgstr "{&DialogHeading}Instala asistanto finis"
#: Control.ulf
msgctxt ""
@@ -2150,7 +2150,7 @@ msgctxt ""
"OOO_CONTROL_198\n"
"LngText.text"
msgid "{&DialogHeading}Installation Wizard Completed"
-msgstr ""
+msgstr "{&DialogHeading}Instala asistanto finis"
#: Control.ulf
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"OOO_CONTROL_217\n"
"LngText.text"
msgid "{&DialogHeading}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogHeading}Bonvenon al la instala asistanto por [ProductName]"
#: Control.ulf
msgctxt ""
@@ -2334,7 +2334,7 @@ msgctxt ""
"OOO_CONTROL_226\n"
"LngText.text"
msgid "{&DialogHeading}Installation Wizard Completed"
-msgstr ""
+msgstr "{&DialogHeading}Instala asistanto finis"
#: Control.ulf
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"OOO_CONTROL_238\n"
"LngText.text"
msgid "{&DialogDefaultBold}Installing [ProductName]"
-msgstr ""
+msgstr "{&DialogDefaultBold}Instalado de [ProductName]"
#: Control.ulf
msgctxt ""
@@ -2414,7 +2414,7 @@ msgctxt ""
"OOO_CONTROL_239\n"
"LngText.text"
msgid "{&DialogDefaultBold}Uninstalling [ProductName]"
-msgstr ""
+msgstr "{&DialogDefaultBold}Malinstalado de [ProductName]"
#: Control.ulf
msgctxt ""
@@ -2494,7 +2494,7 @@ msgctxt ""
"OOO_CONTROL_250\n"
"LngText.text"
msgid "{&DialogHeading}Resuming the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogHeading}Daŭrigas la instalan asistanton por [ProductName]"
#: Control.ulf
msgctxt ""
@@ -2550,7 +2550,7 @@ msgctxt ""
"OOO_CONTROL_259\n"
"LngText.text"
msgid "{&DialogDefaultBold}Setup Type"
-msgstr ""
+msgstr "{&DialogDefaultBold}Tipo de agordado"
#: Control.ulf
msgctxt ""
@@ -2646,7 +2646,7 @@ msgctxt ""
"OOO_CONTROL_278\n"
"LngText.text"
msgid "{&DialogDefaultBold}File Type"
-msgstr ""
+msgstr "{&DialogDefaultBold}Tipo de dosiero"
#: Control.ulf
msgctxt ""
@@ -2782,7 +2782,7 @@ msgctxt ""
"OOO_CONTROL_324\n"
"LngText.text"
msgid "{&DialogDefaultBold}Files in Use"
-msgstr ""
+msgstr "{&DialogDefaultBold}Dosieroj uzataj"
#: Control.ulf
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 9a47a4baf75..4944d13d49a 100644
--- a/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/eo/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-06-03 04:44+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-25 02:23+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.org>\n"
"Language: eo\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: 1559537066.000000\n"
+"X-POOTLE-MTIME: 1564021380.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -3227,7 +3227,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sheet ~Tab Color..."
-msgstr "Folia langeta koloro..."
+msgstr "Koloro de langeto..."
#: CalcCommands.xcu
msgctxt ""
@@ -21054,6 +21054,24 @@ msgstr "Donaci al LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
@@ -25657,7 +25675,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr ""
+msgstr "Taboj kompaktaj"
#: ToolbarMode.xcu
msgctxt ""
diff --git a/source/eo/sc/messages.po b/source/eo/sc/messages.po
index 4bdbd1d3f8f..d10a0a2861d 100644
--- a/source/eo/sc/messages.po
+++ b/source/eo/sc/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-06-03 04:48+0000\n"
+"PO-Revision-Date: 2019-07-25 02:34+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -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: 1559537287.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564022054.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -350,7 +350,7 @@ msgstr "Forigi Precedencon"
#: sc/inc/globstr.hrc:89
msgctxt "STR_UNDO_DETADDSUCC"
msgid "Trace Dependents"
-msgstr "Spuri Dependantojn"
+msgstr "Spuri dependaĵojn"
#: sc/inc/globstr.hrc:90
msgctxt "STR_UNDO_DETDELSUCC"
@@ -19038,7 +19038,7 @@ msgstr "Desegni"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13435
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Konverti"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13735
msgctxt "CalcNotebookbar|frame:MenuDraw"
@@ -19098,7 +19098,7 @@ msgstr "Dosiero"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:2897
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "Dosiero"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:2969
msgctxt "notebookbar_compact|HomeMenuButton"
@@ -19114,7 +19114,7 @@ msgstr "Agordi la borderojn de la elektitaj ĉeloj."
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4513
msgctxt "notebookbar_compact|CalcLabel"
msgid "~Home"
-msgstr ""
+msgstr "Hejmo"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4565
msgctxt "notebookbar_compact|InsertMenuButton"
@@ -19129,7 +19129,7 @@ msgstr "Kampo"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5590
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "Enmeti"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6225
msgctxt "notebookbar_compact|PageMenuButton"
@@ -19139,7 +19139,7 @@ msgstr "Paĝo"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6277
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "Aranĝo"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6323
msgctxt "notebookbar_compact|DataMenuButton"
@@ -19154,7 +19154,7 @@ msgstr "Statistikoj"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7253
msgctxt "notebookbar_compact|DataLabel"
msgid "~Data"
-msgstr ""
+msgstr "Datumoj"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7970
msgctxt "notebookbar_compact|ReviewMenuButton"
@@ -19164,7 +19164,7 @@ msgstr "Kontroli"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8003
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "Recenzo"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8685
msgctxt "notebookbar_compact|ViewMenuButton"
@@ -19174,17 +19174,17 @@ msgstr "Vido"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8737
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "Vido"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10146
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
-msgstr ""
+msgstr "Bildo"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10179
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Bildo"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11592
msgctxt "notebookbar_compact|DrawMenuButton"
@@ -19194,7 +19194,7 @@ msgstr "Desegni"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11644
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "Desegni"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12622
msgctxt "notebookbar_compact|ObjectMenuButton"
@@ -19204,37 +19204,37 @@ msgstr "Objekto"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12674
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "Objekto"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13394
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "Aŭdvidaĵoj"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13447
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "Aŭdvideaĵo"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:14021
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
-msgstr ""
+msgstr "Presi"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:14073
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "Presi"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15428
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Formularo"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15480
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Formularo"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15530
msgctxt "notebookbar_compact|ToolsMenuButton"
@@ -19244,7 +19244,7 @@ msgstr "Iloj"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16568
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "Iloj"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3282
msgctxt "notebookbar_groupedbar_compact|MenuButton"
@@ -19370,7 +19370,7 @@ msgstr "Krado"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7476
msgctxt "notebookbar_groupedbar_compact|ImageButton"
msgid "Im_age"
-msgstr ""
+msgstr "Bildo"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8148
msgctxt "notebookbar_groupedbar_compact|ColorButton"
@@ -19535,7 +19535,7 @@ msgstr "Vido"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5762
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "Im_age"
-msgstr ""
+msgstr "Bildo"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6114
msgctxt "notebookbar_groupedbar_full|arrange"
diff --git a/source/eo/sd/messages.po b/source/eo/sd/messages.po
index d82c7ff7c7c..01beec597bf 100644
--- a/source/eo/sd/messages.po
+++ b/source/eo/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-06-03 04:55+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-18 22:50+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\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: 1559537706.000000\n"
+"X-POOTLE-MTIME: 1563490238.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -3183,7 +3183,7 @@ msgstr "Spektaĵoj"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:15410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Formularo"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:16299
msgctxt "DrawNotebookbar|FormLabel"
@@ -3208,7 +3208,7 @@ msgstr "Ĉefa"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17897
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
-msgstr ""
+msgstr "Ĉefa"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17930
msgctxt "drawnotebookbar|ToolsMenuButton"
@@ -4915,7 +4915,7 @@ msgstr "Spektaĵoj"
#: sd/uiconfig/simpress/ui/notebookbar.ui:15171
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Formularo"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16060
msgctxt "ImpressNotebookbar|FormLabel"
@@ -4925,32 +4925,32 @@ msgstr "Formularo"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16091
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
-msgstr ""
+msgstr "Ĉefa"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16957
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
-msgstr ""
+msgstr "Ĉefa"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16988
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
-msgstr ""
+msgstr "Vido"
#: sd/uiconfig/simpress/ui/notebookbar.ui:17870
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
-msgstr ""
+msgstr "Konturo"
#: sd/uiconfig/simpress/ui/notebookbar.ui:17901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
-msgstr ""
+msgstr "3_d"
#: sd/uiconfig/simpress/ui/notebookbar.ui:18793
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
-msgstr ""
+msgstr "3~d"
#: sd/uiconfig/simpress/ui/notebookbar.ui:18824
msgctxt "impressnotebookbar|ToolsMenuButton"
@@ -4965,167 +4965,167 @@ msgstr "Iloj"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:2611
msgctxt "notebookbar_impress_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "Dosiero"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:3244
msgctxt "notebookbar_impress_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "Dosiero"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:3292
msgctxt "notebookbar_impress_compact|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "Hejmo"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:4710
msgctxt "notebookbar_impress_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "Hejmo"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5284
msgctxt "notebookbar_impress_compact|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Kampo"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5841
msgctxt "notebookbar_impress_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "Enmeti"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5892
msgctxt "notebookbar_impress_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "Enmeti"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6696
msgctxt "notebookbar_impress_compact|LayoutMenuButton"
msgid "Layout"
-msgstr ""
+msgstr "Aranĝo"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6748
msgctxt "notebookbar_impress_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "Aranĝo"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7297
msgctxt "notebookbar_impress_compact|LayoutMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "Vidigi prezentaĵon"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7349
msgctxt "notebookbar_impress_compact|LayoutLabel"
msgid "~Slide Show"
-msgstr ""
+msgstr "Vidigi prezentaĵon"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7895
msgctxt "notebookbar_impress_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Recenzo"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7928
msgctxt "notebookbar_impress_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "Recenzo"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8779
msgctxt "notebookbar_impress_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "Vido"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8831
msgctxt "notebookbar_impress_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "Vido"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8955
msgctxt "notebookbar_impress_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "Tabelo"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10701
msgctxt "notebookbar_impress_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "Tabelo"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10753
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
-msgstr ""
+msgstr "Bildo"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:12181
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Bildo"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14012
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Desegni"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14067
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "Desegni"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15095
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
-msgstr ""
+msgstr "Objekto"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15151
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "Objekto"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16327
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "Aŭdvidaĵoj"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16381
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "Aŭdvideaĵoj"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17659
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Formularo"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17714
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Formularo"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18483
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
-msgstr ""
+msgstr "Ĉefa"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18535
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
-msgstr ""
+msgstr "Ĉefa"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19523
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
-msgstr ""
+msgstr "3_d"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19578
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
-msgstr ""
+msgstr "3~d"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19628
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Iloj"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20666
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "Iloj"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2269
msgctxt "impress_notebookbar_groupedbar_compact|MenubarAction"
@@ -5345,9 +5345,9 @@ msgstr "Recenzo"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Aranĝi"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "Redakti"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "Krado"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Grafiko"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Koloro"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Aŭdvidaĵoj"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Vidigi prezentaĵon"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Kadro"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Vido"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Modela paĝo"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Enmeti"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Desegni"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "Vido"
diff --git a/source/eo/sfx2/messages.po b/source/eo/sfx2/messages.po
index 87e017afca1..8d8a40c3c7e 100644
--- a/source/eo/sfx2/messages.po
+++ b/source/eo/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-06-03 17:46+0200\n"
-"PO-Revision-Date: 2019-06-03 04:57+0000\n"
+"PO-Revision-Date: 2019-07-18 22:48+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -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: 1559537862.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563490119.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -891,7 +891,7 @@ msgstr "Enmeti"
#: include/sfx2/strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL_IMAGES"
msgid "<All images>"
-msgstr ""
+msgstr "<Ĉiuj bildoj>"
#: include/sfx2/strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
diff --git a/source/eo/starmath/messages.po b/source/eo/starmath/messages.po
index 6b2fc50e984..1ee93fa3b1a 100644
--- a/source/eo/starmath/messages.po
+++ b/source/eo/starmath/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-06-03 05:07+0000\n"
+"PO-Revision-Date: 2019-07-18 22:51+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -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: 1559538452.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563490282.000000\n"
#: starmath/inc/smmod.hrc:16
msgctxt "RID_UI_SYMBOLSET_NAMES"
@@ -1074,7 +1074,7 @@ msgstr "Vektora sago"
#: starmath/inc/strings.hrc:168
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
-msgstr ""
+msgstr "Harpuno"
#: starmath/inc/strings.hrc:169
msgctxt "RID_UNDERLINEX_HELP"
@@ -1534,7 +1534,7 @@ msgstr "Granda vektora sago"
#: starmath/inc/strings.hrc:260
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
-msgstr ""
+msgstr "Granda harpuno"
#: starmath/inc/strings.hrc:261
msgctxt "RID_HBAR_HELP"
diff --git a/source/eo/sw/messages.po b/source/eo/sw/messages.po
index d95392c6d2a..5f83b39927e 100644
--- a/source/eo/sw/messages.po
+++ b/source/eo/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-06-03 05:10+0000\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-18 22:52+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\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: 1559538644.000000\n"
+"X-POOTLE-MTIME: 1563490324.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1891,7 +1891,7 @@ msgstr "Kaŝi ĉiujn komentojn de $1"
#: sw/inc/strings.hrc:290
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
-msgstr ""
+msgstr "Ĉapitra numerado"
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
@@ -7314,7 +7314,7 @@ msgstr "Kategorio"
#: sw/uiconfig/swriter/ui/autotext.ui:475
msgctxt "autotext|example-atkobject"
msgid "Preview"
-msgstr ""
+msgstr "Antaŭmontro"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:8
msgctxt "bibliographyentry|BibliographyEntryDialog"
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Elekti elementon: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Redakti"
@@ -11443,7 +11443,7 @@ msgstr "Tuta paĝo"
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:375
msgctxt "mmlayoutpage|example-atkobject"
msgid "Preview"
-msgstr ""
+msgstr "Antaŭmontro"
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:402
msgctxt "mmlayoutpage|label1"
@@ -12248,7 +12248,7 @@ msgstr "Tabelo"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11698
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Im_age"
-msgstr ""
+msgstr "Bildo"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11732
msgctxt "notebookbar_compact|ImageLabel"
@@ -12573,7 +12573,7 @@ msgstr "Vido"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:16260
msgctxt "notebookbar_groupedbar_full|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Formularo"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7163
msgctxt "notebookbar_groupedbar_full|TableButton"
diff --git a/source/es/cui/messages.po b/source/es/cui/messages.po
index d2509d0cdbc..797fdbed943 100644
--- a/source/es/cui/messages.po
+++ b/source/es/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-15 08:54+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-28 13:11+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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563180869.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1564319509.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1941,7 +1941,7 @@ msgstr "¿Quiere agregar X meses a una fecha? Use =FECHA.MES(FechaInicio; Meses)
#: cui/inc/tipoftheday.hrc:70
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependants (Shift+F5) (or use Tools > Detective). For each hit you go one more step in the chain."
-msgstr ""
+msgstr "Rastree las celdas utilizadas en una fórmula, precedentes (Mayús+F9) o dependientes (Mayús+F5) (o bien, vaya a Herramientas ▸ Detective). Con cada pulsación Ud. avanza un paso en la cadena."
#. local help missing
#: cui/inc/tipoftheday.hrc:71
@@ -1959,7 +1959,7 @@ msgstr "Con %PRODUCTNAME puede usar su cuenta de Google Mail para combinar corre
#: cui/inc/tipoftheday.hrc:73
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Data > Validity allows you to create drop-down lists where the user selects a value instead of typing."
-msgstr ""
+msgstr "Datos ▸ Validez le permite crear listas desplegables en las que un usuario puede seleccionar un valor en lugar de tener que escribirlo."
#. local help missing
#: cui/inc/tipoftheday.hrc:74
@@ -1989,7 +1989,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > Detective > Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
-msgstr ""
+msgstr "Herramientas ▸ Detective ▸ Marcar datos no válidos resalta todas las celdas de la hoja que contienen valores que no se ajustan a las reglas de validación."
#. local help missing
#: cui/inc/tipoftheday.hrc:79
@@ -2048,12 +2048,12 @@ msgstr "Consiga ayuda comunitaria en el portal Ask."
#: cui/inc/tipoftheday.hrc:89
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has great extensions to increase your productivity, check them out."
-msgstr ""
+msgstr "Existen extensiones excelentes para %PRODUCTNAME que pueden mejorar su productividad. Eche un vistazo."
#: cui/inc/tipoftheday.hrc:90
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents, check it out."
-msgstr ""
+msgstr "Visite el centro de plantillas de %PRODUCTNAME y cree documentos llamativos."
#: cui/inc/tipoftheday.hrc:91
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2083,7 +2083,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:96
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
-msgstr ""
+msgstr "Existe una versión portátil de %PRODUCTNAME que le brinda movilidad. Además de dispositivos USB, puede instalar %PRODUCTNAME Portátil en el disco duro del equipo, aunque carezca de permisos administrativos."
#: cui/inc/tipoftheday.hrc:97
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2098,7 +2098,7 @@ msgstr "Cree archivos PDF híbridos editables con %PRODUCTNAME."
#: cui/inc/tipoftheday.hrc:99
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management ? Use a 3rd party extension."
-msgstr ""
+msgstr "¿Necesita gestionar citas académicas? Instale una extensión de terceros."
#: cui/inc/tipoftheday.hrc:100
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2178,7 +2178,7 @@ msgstr "¿Sabía que puede adjuntar comentarios a porciones de texto? Basta con
#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to insert the date in a spreadsheet cell? Type Ctrl+; or Shift+Ctrl+; to insert the time."
-msgstr ""
+msgstr "¿Necesita insertar la fecha en una celda de la hoja? Oprima Ctrl + ; o bien Mayús + Ctrl + ; para la hora."
#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2223,7 +2223,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don't use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
-msgstr ""
+msgstr "No utilice tabuladores para espaciar los elementos en un documento de Writer. En función de lo que desee hacer, una tabla sin bordes puede ser una mejor opción."
#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2243,7 +2243,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
-msgstr ""
+msgstr "Para seleccionar un objeto en el fondo del documento, sírvase de la herramienta Seleccionar de la barra de herramientas Dibujo."
#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2298,7 +2298,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the ‘Printable’ flag is not set (right click on the tab and ‘Modify Layer’)."
-msgstr ""
+msgstr "¿Quiere ver, pero no imprimir, un objeto en Draw? Colóquelo en una capa cuya impresión esté desactivada (pulse con el botón secundario del ratón en la pestaña y seleccione «Modificar capa»)."
#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2323,7 +2323,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
-msgstr ""
+msgstr "¿No puede modificar o eliminar un estilo de celda personalizado? Revise todas las hojas: ninguna debe estar protegida."
#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2403,7 +2403,7 @@ msgstr "Muestre u oculte los comentarios en Writer pulsando en el botón que se
#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format > Page > Sheet Tab > Scaling Mode."
-msgstr "Ajuste su hoja o sus zonas de impresión a una página con Formato > Página > pestaña Hoja > Modo de escala."
+msgstr "Ajuste su hoja o sus zonas de impresión a una página con Formato ▸ Página ▸ pestaña Hoja ▸ Modo de escala."
#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2503,7 +2503,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete in one step all of your printing areas: select all sheets then Format > Print Ranges > Clear."
-msgstr "Elimine de una sola vez todas las zonas de impresión: seleccione todas las hojas y vaya a Formato > Zonas de impresión > Limpiar."
+msgstr "Elimine de una sola vez todas las zonas de impresión: seleccione todas las hojas y vaya a Formato ▸ Zonas de impresión ▸ Limpiar."
#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2633,7 +2633,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words more than 10 characters? Edit > Find & Replace > Search > [a-z]{10,} > Other Options > check Regular expressions."
-msgstr "¿Quiere encontrar las palabras de más de 10 caracteres? Editar > Buscar y reemplazar > Buscar > [a-z]{10,} > Otras opciones > active Expresiones regulares."
+msgstr "¿Quiere encontrar las palabras de más de 10 caracteres? Editar ▸ Buscar y reemplazar ▸ Buscar ▸ [a-z]{10,} ▸ Otras opciones ▸ active Expresiones regulares."
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2673,7 +2673,7 @@ msgstr "Una fecha es un número formateado de días contados desde un punto de o
#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File > Properties > Custom Properties tab lets you create what you want."
-msgstr "¿Necesita metadatos personalizados? Diríjase a Archivo > Propiedades > pestaña Propiedades personalizadas, donde puede crear las que desee."
+msgstr "¿Necesita metadatos personalizados? Diríjase a Archivo ▸ Propiedades ▸ pestaña Propiedades personalizadas, donde puede crear las que desee."
#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Numeración y viñetas"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Nivel"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Tipo:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Iniciar en:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Carácter:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Seleccionar…"
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Seleccionar imagen…"
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Anchura:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Altura:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Mantener proporciones"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Antes:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Después:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Separador"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Color:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Sangría:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Anchura:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Posición"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Alineación"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Diapositiva"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Selección"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Aplicar a patrón"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Alcance"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Propiedades"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Previsualización"
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ayuda"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Usar los diálogos de %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Cuadros de diálogo para abrir y guardar"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Usar los _diálogos de %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Cuadros de diálogo de impresión"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Considerar como _modificado el documento al imprimirlo"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estado del documento"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar como años entre "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "y "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Año (dos dígitos)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Recopilar datos de uso y enviarlos a The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Ayúdenos a mejorar %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Cargar %PRODUCTNAME durante el inicio del sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activar Inicio rápido en el área de notificación"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Inicio rápido de %PRODUCTNAME"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "Consejo _siguiente"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "¿Lo sabía?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Enlace"
diff --git a/source/es/helpcontent2/source/text/sdraw.po b/source/es/helpcontent2/source/text/sdraw.po
index c6d8d736100..5f64772e5a2 100644
--- a/source/es/helpcontent2/source/text/sdraw.po
+++ b/source/es/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-06-21 21:13+0000\n"
+"PO-Revision-Date: 2019-07-20 03:08+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: 1561151614.000000\n"
+"X-POOTLE-MTIME: 1563592100.000000\n"
#: main0000.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
-msgstr ""
+msgstr "Este menú permite insertar en documentos Draw elementos tales como imágenes y guías."
#: main_insert.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/01.po b/source/es/helpcontent2/source/text/shared/01.po
index 58e6557b9fb..82f59ecd477 100644
--- a/source/es/helpcontent2/source/text/shared/01.po
+++ b/source/es/helpcontent2/source/text/shared/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-06-18 23:31+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-07-21 20:26+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\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: 1560900665.000000\n"
+"X-POOTLE-MTIME: 1563740777.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -36270,7 +36270,7 @@ msgctxt ""
"par_id3154350\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".\">Enter or edit file information for an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"\">Escriba o edite la información de archivo para un <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">filtro XML</link>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".\">Escriba o edite la información de archivo para un <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">filtro XML</link>.</ahelp>"
#: 06150120.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/02.po b/source/es/helpcontent2/source/text/shared/02.po
index 7208d5a7c08..d5aed6de345 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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-06-18 23:30+0000\n"
+"PO-Revision-Date: 2019-07-29 14:39+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: 1560900607.000000\n"
+"X-POOTLE-MTIME: 1564411145.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -14214,7 +14214,7 @@ msgctxt ""
"par_id3148481\n"
"help.text"
msgid "In this case, standard formatting is formatting that refers to the internally stored data. It is not always visible to the user, especially if it is used for simulating data types (for example, time fields in dBASE databases). This depends on the database used and the individual data type. Searching with field formatting is appropriate if you only want to find what is actually shown. This includes fields of type Date, Time, Date/Time and Number/Double."
-msgstr "En este caso, el formato estandar es aquel que se refiere al almacenado internamente. No siempre es visible al usuario, especialmente si es usado para simular tipos de datos (por ejemplo, campos de tiempo en bases de datos dBASE). Esto depende al uso de la base de datos y el tipo de datos individuales. Realize busquedas con el formato apropiado si solo dese encontrar lo que actualmente se muestra. Esto incluye campos de tipo Fecha, Tiempo, Fecha/hora y Números/Doble."
+msgstr "En este caso, el formato estándar es aquél referente a los datos almacenados internamente. Este formato no siempre es visible para el usuario, en particular si se utiliza para simular tipos de datos (por ejemplo, campos horarios en bases de datos dBASE). Esto depende de la base de datos empleada y de cada tipo de datos. La búsqueda con formato de campo es conveniente si únicamente desea encontrar lo que en efecto se muestra. Ello comprende campos de tipo Fecha, Hora, Fecha/hora y Número/doble."
#: 12100200.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/autopi.po b/source/es/helpcontent2/source/text/shared/autopi.po
index 8575ec07589..194559cb71f 100644
--- a/source/es/helpcontent2/source/text/shared/autopi.po
+++ b/source/es/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: 2018-04-24 12:21+0200\n"
-"PO-Revision-Date: 2019-06-18 23:27+0000\n"
+"PO-Revision-Date: 2019-07-29 14: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: 1560900468.000000\n"
+"X-POOTLE-MTIME: 1564411282.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_id3155805\n"
"help.text"
msgid "<ahelp hid=\".\">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 ""
+msgstr "<ahelp hid=\".\">Enumera los campos seleccionados en la página anterior del asistente. Para agrupar los informes por un campo, seleccione el nombre de este y pulse en el botón <emph>></emph>. Puede seleccionar un máximo de cuatro niveles de agrupación.</ahelp>"
#: 01100200.xhp
msgctxt ""
@@ -3702,7 +3702,7 @@ msgctxt ""
"par_id3155892\n"
"help.text"
msgid "<ahelp hid=\".\">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 ""
+msgstr "<ahelp hid=\".\">Enumera los campos por los que se agrupa el informe. Para quitar un nivel de agrupación, seleccione el nombre del campo y pulse en el botón <emph><</emph>. Puede seleccionar un máximo de cuatro niveles de agrupación.</ahelp>"
#: 01100200.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/guide.po b/source/es/helpcontent2/source/text/shared/guide.po
index 4f368b670f0..a928f379f95 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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-06-20 22:05+0000\n"
+"PO-Revision-Date: 2019-07-29 14: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: 1561068354.000000\n"
+"X-POOTLE-MTIME: 1564411719.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -3038,7 +3038,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "File Conversion Filters Tables"
-msgstr ""
+msgstr "Tablas de los filtros de conversión de archivos"
#: convertfilters.xhp
msgctxt ""
@@ -3366,7 +3366,7 @@ msgctxt ""
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
+msgstr "Documento de texto de OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -3374,7 +3374,7 @@ msgctxt ""
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
+msgstr "Documento de texto de OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -3382,7 +3382,7 @@ msgctxt ""
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
+msgstr "Documento de texto de OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter/00.po b/source/es/helpcontent2/source/text/swriter/00.po
index 940d077889b..da56f40d500 100644
--- a/source/es/helpcontent2/source/text/swriter/00.po
+++ b/source/es/helpcontent2/source/text/swriter/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-06-01 02:14+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-07-20 09:41+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\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: 1559355267.000000\n"
+"X-POOTLE-MTIME: 1563615688.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "Choose <emph>View - Styles</emph> - open context menu <emph>Modify/New - Columns</emph> tab."
-msgstr ""
+msgstr "Vaya a <emph>Ver ▸ Estilos</emph>, abra el menú contextual y seleccione <emph>Modificar/nuevo ▸</emph> pestaña <emph>Columnas</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"par_id3143276\n"
"help.text"
msgid "Choose <emph>Insert/Format - Section(s) - Columns</emph> tab."
-msgstr ""
+msgstr "Vaya a <emph> Insertar/Formato ▸ Sección(es) ▸</emph> pestaña <emph>Columnas</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"par_id3149817\n"
"help.text"
msgid "Choose <emph>Format - Page - Footnote</emph> tab."
-msgstr ""
+msgstr "Vaya a <emph>Formato ▸ Página ▸</emph> pestaña <emph>Nota al pie</emph>."
#: 00000405.xhp
msgctxt ""
diff --git a/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 18c472ee8e3..1207d1310b5 100644
--- a/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/es/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-05 04:55+0000\n"
+"PO-Revision-Date: 2019-07-25 16: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: 1562302555.000000\n"
+"X-POOTLE-MTIME: 1564070793.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"OOO_ACTIONTEXT_1\n"
"LngText.text"
msgid "Advertising application"
-msgstr "Mostrar aplicación"
+msgstr "Anunciando la aplicación"
#: ActionTe.ulf
msgctxt ""
@@ -1142,7 +1142,7 @@ msgctxt ""
"OOO_CONTROL_28\n"
"LngText.text"
msgid "The Installation Wizard will create a server image of [ProductName] at a specified network location. To continue, click Next."
-msgstr "El asistente de instalación creará una imagen de servidor de [ProductName] en una ubicación de red específica. Para continuar, pulse Siguiente."
+msgstr "El asistente de instalación creará una imagen de servidor de [ProductName] en una ubicación de red específica. Para continuar, pulse en Siguiente."
#: Control.ulf
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"OOO_CONTROL_38\n"
"LngText.text"
msgid "Please enter your information."
-msgstr "Introduzca su información."
+msgstr "Proporcione su información."
#: Control.ulf
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"OOO_CONTROL_92\n"
"LngText.text"
msgid "Install [ProductName] to:"
-msgstr "Instalar[ProductName] en:"
+msgstr "Instalar [ProductName] en:"
#: Control.ulf
msgctxt ""
@@ -1950,7 +1950,7 @@ msgctxt ""
"OOO_CONTROL_168\n"
"LngText.text"
msgid "Click Install to begin the installation."
-msgstr "Pulse Instalar para comenzar el proceso de instalación."
+msgstr "Pulse en Instalar para comenzar la instalación."
#: Control.ulf
msgctxt ""
@@ -2102,7 +2102,7 @@ msgctxt ""
"OOO_CONTROL_189\n"
"LngText.text"
msgid "Click Restore or Continue Later to exit the wizard."
-msgstr "Pulse Restaurar o Continuar luego para salir del asistente."
+msgstr "Para salir del asistente, pulse en Restaurar o en Continuar luego."
#: Control.ulf
msgctxt ""
@@ -2950,7 +2950,7 @@ msgctxt ""
"OOO_ERROR_17\n"
"LngText.text"
msgid "Installer is no longer responding."
-msgstr "El instalador no responde."
+msgstr "El instalador ya no responde."
#: Error.ulf
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 79a74b27397..fa53e4f4e52 100644
--- a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-05 10:09+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=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562321373.000000\n"
#: BaseWindowState.xcu
@@ -21054,6 +21054,24 @@ msgstr "Donar a LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/es/sc/messages.po b/source/es/sc/messages.po
index 19a0a40d23e..f4d63374e8f 100644
--- a/source/es/sc/messages.po
+++ b/source/es/sc/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-05 04:56+0000\n"
+"PO-Revision-Date: 2019-07-25 16:08+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: 1562302581.000000\n"
+"X-POOTLE-MTIME: 1564070923.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -14892,7 +14892,7 @@ msgstr "R² ajustado"
#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
-msgstr ""
+msgstr "Recuento de variables X"
#: sc/inc/strings.hrc:302
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
@@ -15579,7 +15579,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/autosum.ui:20
msgctxt "autosum|average"
msgid "Average"
-msgstr ""
+msgstr "Promedio"
#: sc/uiconfig/scalc/ui/autosum.ui:28
msgctxt "autosum|min"
@@ -19037,7 +19037,7 @@ msgstr "Di~bujo"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13435
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Convertir"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13735
msgctxt "CalcNotebookbar|frame:MenuDraw"
@@ -19097,7 +19097,7 @@ msgstr "_Archivo"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:2897
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Archivo"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:2969
msgctxt "notebookbar_compact|HomeMenuButton"
@@ -19153,7 +19153,7 @@ msgstr "E_stadísticas"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7253
msgctxt "notebookbar_compact|DataLabel"
msgid "~Data"
-msgstr ""
+msgstr "~Datos"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7970
msgctxt "notebookbar_compact|ReviewMenuButton"
@@ -19173,7 +19173,7 @@ msgstr "_Ver"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8737
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Ver"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10146
msgctxt "notebookbar_compact|GraphicMenuButton"
@@ -19208,12 +19208,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13394
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "_Multimedia"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13447
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Multimedia"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:14021
msgctxt "notebookbar_compact|PrintPreviewButton"
@@ -19243,7 +19243,7 @@ msgstr "_Herramientas"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16568
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Herramientas"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3282
msgctxt "notebookbar_groupedbar_compact|MenuButton"
diff --git a/source/es/scp2/source/winexplorerext.po b/source/es/scp2/source/winexplorerext.po
index 86a5d7056cb..66ca5db630b 100644
--- a/source/es/scp2/source/winexplorerext.po
+++ b/source/es/scp2/source/winexplorerext.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2013-05-24 07:16+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-26 04:18+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: 1369379785.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564114701.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -30,4 +30,4 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
-msgstr ""
+msgstr "Permite que el Explorador de archivos de Windows muestre información relativa a documentos de %PRODUCTNAME, como previsualizaciones en miniatura, y realice búsquedas de texto completo."
diff --git a/source/es/sd/messages.po b/source/es/sd/messages.po
index 8f05be8a7aa..864d0efbb96 100644
--- a/source/es/sd/messages.po
+++ b/source/es/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-05 04:57+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-22 15:24+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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1562302636.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1563809077.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -3308,7 +3308,7 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12700
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
-msgstr ""
+msgstr "Imagen"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12752
msgctxt "notebookbar_draw_compact|ImageLabel"
@@ -3328,7 +3328,7 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15664
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
-msgstr ""
+msgstr "Objeto"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15720
msgctxt "notebookbar_draw_compact|FrameLabel"
@@ -3509,7 +3509,7 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8447
msgctxt "draw_notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "_Fontwork"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8561
msgctxt "draw_notebookbar_groupedbar_compact|GridButton"
@@ -5032,12 +5032,12 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8779
msgctxt "notebookbar_impress_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Ver"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8831
msgctxt "notebookbar_impress_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Ver"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8955
msgctxt "notebookbar_impress_compact|TableMenuButton"
@@ -5052,7 +5052,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10753
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
-msgstr ""
+msgstr "Imagen"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:12181
msgctxt "notebookbar_impress_compact|ImageLabel"
@@ -5072,7 +5072,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15095
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
-msgstr ""
+msgstr "Objeto"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15151
msgctxt "notebookbar_impress_compact|FrameLabel"
@@ -5255,7 +5255,7 @@ msgstr "3_D"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8405
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "_Fontwork"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8519
msgctxt "notebookbar_groupedbar_compact|GridButton"
@@ -5350,9 +5350,9 @@ msgstr "_Revisión"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5423,8 +5423,8 @@ msgid "_Edit"
msgstr "_Editar"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5441,55 +5441,55 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Imagen"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Color"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Multimedia"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_Pase de diapositivas"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Ma_rco"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Ver"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Patrón de página"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Insertar"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Di_bujo"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Ver"
diff --git a/source/es/setup_native/source/mac.po b/source/es/setup_native/source/mac.po
index 7ff987cb70b..c35e3d108db 100644
--- a/source/es/setup_native/source/mac.po
+++ b/source/es/setup_native/source/mac.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://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: 2018-11-16 19:46+0000\n"
+"PO-Revision-Date: 2019-07-25 15: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: 1542397576.000000\n"
+"X-POOTLE-MTIME: 1564069525.000000\n"
#: macinstall.ulf
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"StartInstallText1\n"
"LngText.text"
msgid "Click Install to start the installation"
-msgstr "Pulse Instalar para comenzar la instalación"
+msgstr "Pulse en Instalar para comenzar la instalación"
#: macinstall.ulf
msgctxt ""
diff --git a/source/es/sw/messages.po b/source/es/sw/messages.po
index fd5c8d84e55..237402a70df 100644
--- a/source/es/sw/messages.po
+++ b/source/es/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-07-05 04:59+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=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562302748.000000\n"
#: sw/inc/app.hrc:29
@@ -8367,7 +8367,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Elija el elemento: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Editar"
diff --git a/source/et/cui/messages.po b/source/et/cui/messages.po
index 9ccb387f33e..c02ddcfad8d 100644
--- a/source/et/cui/messages.po
+++ b/source/et/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Abi"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Kasutatakse %PRODUCTNAME'i dialooge"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Avamise/salvestamise dialoogid"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Kasutatakse %PRODUCTNAME'i dialooge"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Printimise dialoogid"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Printimist loetakse dokumendi muutmiseks"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumendi olek"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Tõlgendatakse aastatena vahemikus "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ja "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Kahekohalised aastaarvud"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Kasutusteabe kogumine ja The Document Foundationile edastamine"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "%PRODUCTNAME'i täiustamisele kaasaaitamine"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME laaditakse sisselogimisel mällu"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Kiirkäivitaja lubamine süsteemisalves"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME'i kiirkäivitaja"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/et/helpcontent2/source/text/sbasic/shared.po b/source/et/helpcontent2/source/text/sbasic/shared.po
index 9c861ee41eb..6c888f89a2a 100644
--- a/source/et/helpcontent2/source/text/sbasic/shared.po
+++ b/source/et/helpcontent2/source/text/sbasic/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2018-10-21 20:14+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-21 12:50+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\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: 1540152844.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563713454.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -3638,7 +3638,7 @@ msgctxt ""
"par_id3153801\n"
"help.text"
msgid "In the Basic IDE, right-click the name of the module or dialog in the tabs at the bottom of the screen, choose <emph>Rename</emph> and type in the new name."
-msgstr "Klõpsa parema hiirenupuga Basic IDE ekraani allosas oleval kaardil mooduli või dialoogi nime, vali <emph>Nimeta ümber/emph> ja sisesta uus nimi."
+msgstr "Klõpsa parema hiirenupuga Basic IDE ekraani allosas oleval kaardil mooduli või dialoogi nime, vali <emph>Nimeta ümber</emph> ja sisesta uus nimi."
#: 01030400.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/shared/02.po b/source/et/helpcontent2/source/text/shared/02.po
index d66015257d6..8dbc4268071 100644
--- a/source/et/helpcontent2/source/text/shared/02.po
+++ b/source/et/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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2018-11-12 13:35+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-21 12:54+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\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: 1542029723.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563713663.000000\n"
#: 01110000.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 "Valitud kirje andmete ülekandel loendiboksist või liitboksist arvestatakse sektsiooni <emph>Loendi kirjed</emph> kaardile <link href=\"text/shared/02/01170101.xhp\" name=\"Üldine\"><emph>Üldine</emph> sisestatud vormil kuvatud väärtuste loendit ja sektsiooni <emph>Loendi sisu</emph> kaardile <emph>Andmed</emph> sisestatud väärtuste loendit: kui väärtuste loendis on valitud asukohas (mitte-tühi) tekst (<OPTION VALUE=...>), kantakse see üle. Vastasel korral saadetakse juhtelemendis (<OPTION>) kuvatud tekst."
+msgstr "Valitud kirje andmete ülekandel loendiboksist või liitboksist arvestatakse sektsiooni <emph>Loendi kirjed</emph> kaardile <link href=\"text/shared/02/01170101.xhp\" name=\"Üldine\"><emph>Üldine</emph></link> sisestatud vormil kuvatud väärtuste loendit ja sektsiooni <emph>Loendi sisu</emph> kaardile <emph>Andmed</emph> sisestatud väärtuste loendit: kui väärtuste loendis on valitud asukohas (mitte-tühi) tekst (<OPTION VALUE=...>), kantakse see üle. Vastasel korral saadetakse juhtelemendis (<OPTION>) kuvatud tekst."
#: 01170102.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/shared/explorer/database.po b/source/et/helpcontent2/source/text/shared/explorer/database.po
index 8e7e04cfb72..7227646d131 100644
--- a/source/et/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/et/helpcontent2/source/text/shared/explorer/database.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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2018-11-12 13:35+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-21 12:58+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\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: 1542029729.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563713893.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -7582,7 +7582,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 "Enne, kui on võimalik kasutada JDBC draiverit, tuleb määrata selle klassi asukoht. Vali <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Eelistused</caseinline><defaultinline>Tööriistad - Sätted</defaultinline></switchinline> - %PRODUCTNAME - Edasijõudnuile</emph> ja klõpsa nupul <emph>CLASSPATH</emph>. Pärast asukoha teabe lisamist taaskäivita <item type=\"productname\">%PRODUCTNAME<emph>."
+msgstr "Enne, kui on võimalik kasutada JDBC draiverit, tuleb määrata selle klassi asukoht. Vali <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Eelistused</emph></caseinline><defaultinline><emph>Tööriistad - Sätted</emph></defaultinline></switchinline><emph> - %PRODUCTNAME</emph><emph>- Edasijõudnuile</emph> ja klõpsa nupul <emph>CLASSPATH</emph>. Pärast asukoha teabe lisamist taaskäivita <item type=\"productname\">%PRODUCTNAME</item>."
#: dabawiz02jdbc.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/swriter/01.po b/source/et/helpcontent2/source/text/swriter/01.po
index bfe1291f1e9..082e61bdfdb 100644
--- a/source/et/helpcontent2/source/text/swriter/01.po
+++ b/source/et/helpcontent2/source/text/swriter/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2018-10-21 20:14+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-21 13:25+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\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: 1540152873.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563715507.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -2326,7 +2326,7 @@ msgctxt ""
"par_id3149106\n"
"help.text"
msgid "If you select a <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE\">DDE</link> link in your document, and then choose <item type=\"menuitem\">Edit - Fields</item>, the <link href=\"text/shared/01/02180000.xhp\" name=\"Edit Links\"><emph>Edit Links</emph></link> dialog opens."
-msgstr "Kui valid dokumendis <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE\">DDE</link>-lingi ja seejärel valid <emph>Redigeerimine - Väljad, </emph>avaneb dialoog <link href=\"text/shared/01/02180000.xhp\" name=\"Linkide redigeermine\"><emph>Linkide redigeermine</emph></link>."
+msgstr "Kui valid dokumendis <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE\">DDE</link>-lingi ja seejärel valid <item type=\"menuitem\">Redigeerimine - Väljad, </item>avaneb dialoog <link href=\"text/shared/01/02180000.xhp\" name=\"Linkide redigeermine\"><emph>Linkide redigeermine</emph></link>."
#: 02140000.xhp
msgctxt ""
@@ -2334,7 +2334,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 "Kui klõpsad tüüpi \"Saatja\" välja ees ja seejärel valid <emph>Redigeerimine - Väljad</emph>, avaneb dialoog <link href=\"text/shared/optionen/01010100.xhp\" name=\"Isikuandmed\"><emph>Isikuandmed</emph></link>."
+msgstr "Kui klõpsad tüüpi \"Saatja\" välja ees ja seejärel valid <item type=\"menuitem\">Redigeerimine - Väljad</item>, avaneb dialoog <link href=\"text/shared/optionen/01010100.xhp\" name=\"Isikuandmed\"><emph>Isikuandmed</emph></link>."
#: 02140000.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/swriter/guide.po b/source/et/helpcontent2/source/text/swriter/guide.po
index 4f768b4542f..22babdd5a6e 100644
--- a/source/et/helpcontent2/source/text/swriter/guide.po
+++ b/source/et/helpcontent2/source/text/swriter/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2018-11-12 13:35+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-21 13:39+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\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: 1542029739.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563716373.000000\n"
#: anchor_object.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 "Klõpsa ikoonil <item type=\"menuitem\">Valem/item> ja vali loendis Statistilised funktsioonid suvand \"Keskväärtus\"."
+msgstr "Klõpsa ikoonil <item type=\"menuitem\">Valem</item> ja vali loendis Statistilised funktsioonid suvand \"Keskväärtus\"."
#: calculate_intext.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 "Paiguta kursor näite esimeses osas määratud välja ette ja seejärel vali <emph>Redigeerimine - Väljad/emph>."
+msgstr "Paiguta kursor näite esimeses osas määratud välja ette ja seejärel vali <emph>Redigeerimine - Väljad</emph>."
#: conditional_text.xhp
msgctxt ""
@@ -5030,7 +5030,7 @@ msgctxt ""
"par_id3150508\n"
"help.text"
msgid "In the <item type=\"menuitem\">Type</item> area, select <item type=\"menuitem\">Footnote</item> or <item type=\"menuitem\">Endnote</item>."
-msgstr "Vali alal <item type=\"menuitem\">Tüüp</item> säte <item type=\"menuitem\">Allmärkus</item> või <item type=\"menuitem\">Lõpumärkus/item>."
+msgstr "Vali alal <item type=\"menuitem\">Tüüp</item> säte <item type=\"menuitem\">Allmärkus</item> või <item type=\"menuitem\">Lõpumärkus</item>."
#: footnote_usage.xhp
msgctxt ""
@@ -5518,7 +5518,7 @@ msgctxt ""
"par_id5878780\n"
"help.text"
msgid "To avoid confusion, use the same document template for the master document and its subdocuments. This happens automatically when you create the master document and its subdocuments from an existing document with headings, using the command <emph>File - Send - Create Master Document</emph>."
-msgstr "Segaduse vältimiseks kasuta põhidokumendi ja selle alamdokumentide jaoks sama dokumendimalli. See toimub automaatselt, kui lood põhidokumendi ja selle alamdokumendid olemasolevast dokumendist päistega käsu <emph>Fail - Saatmine - Loo põhidokument/emph>."
+msgstr "Segaduse vältimiseks kasuta põhidokumendi ja selle alamdokumentide jaoks sama dokumendimalli. See toimub automaatselt, kui lood põhidokumendi ja selle alamdokumendid olemasolevast dokumendist päistega käsu <emph>Fail - Saatmine - Loo põhidokument</emph>."
#: globaldoc.xhp
msgctxt ""
@@ -5686,7 +5686,7 @@ msgctxt ""
"par_id3149982\n"
"help.text"
msgid "To reorder the subdocuments in a master document, drag a subdocument to a new location in the Navigator list. You can also select a subdocument in the list, and click the <item type=\"menuitem\">Move down</item> or <item type=\"menuitem\">Move up</item> icon."
-msgstr "Põhidokumendis alamdokumentide järjestuse muutmiseks lohista alamdokument Navigaatori loendis uude asukohta. Lisaks saad valida loendis alamdokumendi ja klõpsata ikoonil <item type=\"menuitem\">Nihuta alla/item> või <item type=\"menuitem\">Nihuta üles</item> ."
+msgstr "Põhidokumendis alamdokumentide järjestuse muutmiseks lohista alamdokument Navigaatori loendis uude asukohta. Lisaks saad valida loendis alamdokumendi ja klõpsata ikoonil <item type=\"menuitem\">Nihuta alla</item> või <item type=\"menuitem\">Nihuta üles</item> ."
#: globaldoc_howtos.xhp
msgctxt ""
@@ -5886,7 +5886,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "You can also choose <item type=\"menuitem\">Format - Page</item>, click the <item type=\"menuitem\">Header</item> or <item type=\"menuitem\">Footer</item> tab, and then select <item type=\"menuitem\">Header on</item> or <item type=\"menuitem\">Footer on</item>. Clear the <item type=\"menuitem\">Same content left/right</item> check box if you want to define different headers and footers for even and odd pages."
-msgstr "Lisaks saad valida <item type=\"menuitem\">Vormindus - Lehekülg</item>, klõpsata kaardil <item type=\"menuitem\">Päis</item> või <item type=\"menuitem\">Jalus</item> ja seejärel valida <item type=\"menuitem\">Päis sees</item> või <item type=\"menuitem\">Jalus sees</item>. Tühjenda ruut <item type=\"menuitem\">Sama sisu vasakul/paremal/item>, kui soovid paaris ja paaritute lehekülgede jaoks erinevad päised ja jalused määrata."
+msgstr "Lisaks saad valida <item type=\"menuitem\">Vormindus - Lehekülg</item>, klõpsata kaardil <item type=\"menuitem\">Päis</item> või <item type=\"menuitem\">Jalus</item> ja seejärel valida <item type=\"menuitem\">Päis sees</item> või <item type=\"menuitem\">Jalus sees</item>. Tühjenda ruut <item type=\"menuitem\">Sama sisu vasakul/paremal</item>, kui soovid paaris ja paaritute lehekülgede jaoks erinevad päised ja jalused määrata."
#: header_footer.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 "Kui soovid kasutada registrifaili, siis vali alal <item type=\"menuitem\">Sätted</item <item type=\"menuitem\">Registrifail</item> > , klõpsa nupul <item type=\"menuitem\">Fail</item> ja otsi olemasolev fail või loo uus registrifail."
+msgstr "Kui soovid kasutada registrifaili, siis vali alal <item type=\"menuitem\">Sätted</item> <item type=\"menuitem\">Registrifail</item> , klõpsa nupul <item type=\"menuitem\">Fail</item> ja otsi olemasolev fail või loo uus registrifail."
#: indices_index.xhp
msgctxt ""
@@ -10534,7 +10534,7 @@ msgctxt ""
"par_id2118594\n"
"help.text"
msgid "To insert a manual page break at the cursor position, press <item type=\"keycode\">Ctrl+Enter</item> or choose <item type=\"menuitem\">Insert - Manual Break</item> and just click OK."
-msgstr "Kursori asukohta manuaalse leheküljepiiri lisamiseks vajuta klahvikombinatsiooni item type=\"keycode\">Ctrl+Enter</item> või vali <item type=\"menuitem\">Lisamine - Manuaalne piir</item> ja klõpsa Sobib."
+msgstr "Kursori asukohta manuaalse leheküljepiiri lisamiseks vajuta klahvikombinatsiooni <item type=\"keycode\">Ctrl+Enter</item> või vali <item type=\"menuitem\">Lisamine - Manuaalne piir</item> ja klõpsa Sobib."
#: pageorientation.xhp
msgctxt ""
@@ -14374,7 +14374,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 "Teksti tabelikülgedele mähkimiseks ja kahe tabeli kõrvuti paigutamiseks pead tabelid paneeli lisama. Klõpsa tabelis, vajuta <switchinline select=\"sys\"><caseinline select=\"MAC\">käsuklahvi </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A kaks korda kogu tabeli valimiseks ja seejärel vali <emph>Lisamine - Paneel/emph>."
+msgstr "Teksti tabelikülgedele mähkimiseks ja kahe tabeli kõrvuti paigutamiseks pead tabelid paneeli lisama. Klõpsa tabelis, vajuta <switchinline select=\"sys\"><caseinline select=\"MAC\">käsuklahvi </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A kaks korda kogu tabeli valimiseks ja seejärel vali <emph>Lisamine - Paneel</emph>."
#: table_sizing.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 16cad0baaae..07a76d1211e 100644
--- a/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -21054,6 +21054,24 @@ msgstr "Anneta LibreOffice'ile..."
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/et/sd/messages.po b/source/et/sd/messages.po
index 2e51ce6edfc..4d16f62e8b6 100644
--- a/source/et/sd/messages.po
+++ b/source/et/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5345,9 +5345,9 @@ msgstr "Läbivaatus"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Korraldamine"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Redigeerimine"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "Alusvõrk"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "Ruumilisus"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Pilt"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Värvid"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Multimeedium"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Slai_diseanss"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Paneel"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Vaade"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Juhtleht"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Lisamine"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Joonistamine"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Vaade"
diff --git a/source/et/sw/messages.po b/source/et/sw/messages.po
index bab5b826a33..c9f80d16ef2 100644
--- a/source/et/sw/messages.po
+++ b/source/et/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8363,7 +8363,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Elemendi valimine: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Redigeerimine"
diff --git a/source/eu/cui/messages.po b/source/eu/cui/messages.po
index 5308d3b7efa..438aebdbf18 100644
--- a/source/eu/cui/messages.po
+++ b/source/eu/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-05 06: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: 1562308054.000000\n"
#: cui/inc/numcategories.hrc:17
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Buletak eta numerazioa"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Maila"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Mota:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Hasi hemen:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Karakterea:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Hautatu..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Hautatu irudia..."
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Zabalera:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Altuera:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Mantendu proportzioa"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Aurretik:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Ondoren:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Bereizlea"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Kolorea:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "_Tam. erlatiboa:"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Koska:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Zabalera:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "Erlati_boa"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Kokagunea"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Lerrokatzea"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Diapositiba"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Hautapena"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Aplikatu maisuari"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Esparrua"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Propietateak"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Aurrebista"
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Laguntza"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Erabili %PRODUCTNAME elkarrizketa-koadroak"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Irekitzeko eta gordetzeko elkarrizketa-koadroak"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Erabili %PRODUCTNAME _elkarrizketa-koadroak"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Inprimatzeko elkarrizketa-koadroak"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Inpri_matzean \"dokumentu aldatua\" egoera ezartzen du"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentuaren egoera"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretatu bitarte honetako urteak bezala: "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "eta "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Urtea (bi digitu)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Bildu erabilera-datuak eta bidali The Document Foundation fundazioari"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Lagundu %PRODUCTNAME hobetzen"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Kargatu %PRODUCTNAME sistema abiaraztean"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Gaitu erretiluko abiarazle bizkorra"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME abiarazle bizkorra"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Hurrengo aholkua"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Ba al zenekien?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Esteka"
diff --git a/source/eu/helpcontent2/source/text/sbasic/python.po b/source/eu/helpcontent2/source/text/sbasic/python.po
index 977d5f7a9bf..58e993c2ef3 100644
--- a/source/eu/helpcontent2/source/text/sbasic/python.po
+++ b/source/eu/helpcontent2/source/text/sbasic/python.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-16 17:57+0000\n"
+"PO-Revision-Date: 2019-07-20 05:43+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: 1563299834.000000\n"
+"X-POOTLE-MTIME: 1563601431.000000\n"
#: main0000.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"N0529\n"
"help.text"
msgid "Listening to Document Events"
-msgstr "Dokumentuen gertaerak entzutea"
+msgstr "Dokumentu-gertaerak entzutea"
#: python_document_events.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"N0530\n"
"help.text"
msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning <literal>OnLoad</literal> script, to the <literal>Open Document</literal> event, suffices to initiate and terminate document event monitoring. <menuitem>Tools – Customise...</menuitem> menu <menuitem>Events</menuitem> tab is used to assign either scripts."
-msgstr "Kontrolaren adibide bat erakusten da ondoren Basic eta Python lengoaietarako, objektuei orientatutako programazioa erabilita. <literal>OnLoad</literal> scripta <literal>Dokumentu irekia</literal> gertaerari esleituta, aski da dokumentuaren gertaeren kontrola abiarazteko eta amaitzeko. Scriptak esleitzeko, <menuitem>Tresnak - Pertsonalizatu...</menuitem> menuko <menuitem>Gertareak</menuitem> fitxa erabiltzen da."
+msgstr "Kontrolaren adibide bat erakusten da ondoren Basic eta Python lengoaietarako, objektuei orientatutako programazioa erabilita. <literal>OnLoad</literal> scripta <literal>Dokumentu irekia</literal> gertaerari esleituta, aski da dokumentu-gertaeren kontrola abiarazteko eta amaitzeko. Scriptak esleitzeko, <menuitem>Tresnak - Pertsonalizatu...</menuitem> menuko <menuitem>Gertareak</menuitem> fitxa erabiltzen da."
#: python_document_events.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"N0550\n"
"help.text"
msgid "\"\"\" Document events monitor \"\"\""
-msgstr "\"\"\" Dokumentuko gertaeren kontrola \"\"\""
+msgstr "\"\"\" Dokumentu-gertaeren kontrola \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"N0701\n"
"help.text"
msgid "''' Initialize document events logging '''"
-msgstr "''' Hasieratu dokumentuko gertaerak egunkarian gordetzea '''"
+msgstr "''' Hasieratu dokumentu-gertaerak egunkarian gordetzea '''"
#: python_document_events.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"N0706\n"
"help.text"
msgid "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events are being logged\", _"
-msgstr "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Dokumentuko gertaerak egunkarian gordetzen ari dira\", _"
+msgstr "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Dokumentu-gertaerak egunkarian gordetzen ari dira\", _"
#: python_document_events.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"N0714\n"
"help.text"
msgid "''' Terminate document events logging '''"
-msgstr "''' Amaitu dokumentuko gertaerak egunkarian gordetzea '''"
+msgstr "''' Amaitu dokumentu-gertaerak egunkarian gordetzea '''"
#: python_document_events.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"N0717\n"
"help.text"
msgid "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events have been logged\", _"
-msgstr "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Dokumentuko gertaerak egunkarian gorde dira\", _"
+msgstr "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Dokumentu-gertaerak egunkarian gorde dira\", _"
#: python_document_events.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"N0535\n"
"help.text"
msgid "Importing a Python document embedded module is illustrated below. Error handling is not detailed. Python run time path is updated when document has been opened and before closure. Refer to <link href=\"text/sbasic/shared/01040000.xhp\">Event-Driven Macros</link> to learn how to associate Python macros to document events."
-msgstr "Dokumentu batean kapsulatutako Python modulu bat inportatzea azaltzen da behean. Erroreen maneiua ez da azaltzen. Pythonen exekuzio-garaiko bide-izena eguneratu egiten da dokumentua ireki denean eta itxi baino lehen. Ikus <link href=\"text/sbasic/shared/01040000.xhp\">Gertaeren mendeko makroak</link> Python makroak dokumentuen gertaerekin nola lotu ikasteko."
+msgstr "Dokumentu batean kapsulatutako Python modulu bat inportatzea azaltzen da behean. Erroreen maneiua ez da azaltzen. Pythonen exekuzio-garaiko bide-izena eguneratu egiten da dokumentua ireki denean eta itxi baino lehen. Ikus <link href=\"text/sbasic/shared/01040000.xhp\">Gertaeren mendeko makroak</link> Python makroak dokumentu-gertaerekin nola lotu ikasteko."
#: python_import.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"N0390\n"
"help.text"
msgid "Listeners get attached to controls held in dialogs, as well as to document or form events. Listeners are also used when creating runtime dialogs or when adding controls to a dialog on the fly."
-msgstr "Entzuleak elkarrizketa-koadroetako kontrolei lotzen zaizkie, edo dokumentuetako edo inprimakietako gertaerei. Entzuleak exekuzio-garaiko elkarrizketa-koadroak sortzeko edo koadro bati kontrolak dinamikoki gehitzeko ere erabiltzen dira."
+msgstr "Entzuleak elkarrizketa-koadroetako kontrolei lotzen zaizkie, edo dokumentu- edo inprimaki-gertaerei. Entzuleak exekuzio-garaiko elkarrizketa-koadroak sortzeko edo koadro bati kontrolak dinamikoki gehitzeko ere erabiltzen dira."
#: python_listener.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/scalc/01.po b/source/eu/helpcontent2/source/text/scalc/01.po
index dfc40d7560d..4f9abe3512d 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: 2019-06-03 17:45+0200\n"
-"PO-Revision-Date: 2019-07-13 07:23+0000\n"
+"PO-Revision-Date: 2019-07-20 05: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: 1563002590.000000\n"
+"X-POOTLE-MTIME: 1563601210.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -44230,7 +44230,7 @@ msgctxt ""
"par_id3153362\n"
"help.text"
msgid "The <emph>Protect Sheet</emph> or <emph>Protect Spreadsheet Structure</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> Babestu orria</emph> edo <emph>Babestu kalkulu-orriaren egitura</emph> komandoek eragotzi egiten du orrietako gelaxketan edo dokumentuko orrietan aldaketak egitea. Nahi izanez gero, pasahitz bat defini dezakezu. Pasahitza definitzen baduzu, gero pasahitza sartu beharko da babesa kentzeko."
+msgstr "<emph>Babestu orria</emph> edo <emph>Babestu kalkulu-orriaren egitura</emph> komandoek eragotzi egiten du orrietako gelaxketan edo dokumentuko orrietan aldaketak egitea. Nahi izanez gero, pasahitz bat defini dezakezu. Pasahitza definitzen baduzu, gero pasahitza sartu beharko da babesa kentzeko."
#: 06060000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/01.po b/source/eu/helpcontent2/source/text/shared/01.po
index 3597da6830c..ff5e638f2be 100644
--- a/source/eu/helpcontent2/source/text/shared/01.po
+++ b/source/eu/helpcontent2/source/text/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-07-14 06:22+0000\n"
+"PO-Revision-Date: 2019-07-20 05: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: 1563085364.000000\n"
+"X-POOTLE-MTIME: 1563601251.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -35758,7 +35758,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 "<ahelp hid=\"cui/ui/eventsconfigpage/savein\">Lehenik hautatu non gorde nahi duzun lotura-gertaera: uneko dokumentuan edo %PRODUCTNAME(e)n.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/eventsconfigpage/savein\">Lehenik hautatu non gorde nahi duzun gertaera-lotura: uneko dokumentuan edo %PRODUCTNAME(e)n.</ahelp>"
#: 06140500.xhp
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 147eb3c7230..6172288eb2f 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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-06 06:19+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-31 08:15+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: 1562393941.000000\n"
+"X-POOTLE-MTIME: 1564560909.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -21054,6 +21054,24 @@ msgstr "Lagundu LibreOffice diruarekin"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr "Berritasunak"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr "Ireki instalatutako bertsioaren oharrak nabigatzaile lehenetsian"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/eu/sd/messages.po b/source/eu/sd/messages.po
index 7ae9047e1e8..e290ed23ce5 100644
--- a/source/eu/sd/messages.po
+++ b/source/eu/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-06 06:20+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: 1562394047.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "_Berrikusi"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "A_ntolatu"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Editatu"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Sareta"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Grafikoa"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "K_olorea"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Multimedia"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_Diapositiba-aurkezpena"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "_Markoa"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Ikusi"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Orrialde _maisua"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Txertatu"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "M_arraztu"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Ikusi"
diff --git a/source/eu/sw/messages.po b/source/eu/sw/messages.po
index 5ad9442ce16..cf8a0ff6bfd 100644
--- a/source/eu/sw/messages.po
+++ b/source/eu/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-07-06 06:21+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: 1562394087.000000\n"
#: sw/inc/app.hrc:29
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Aukeratu elementua: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Editatu"
diff --git a/source/fa/cui/messages.po b/source/fa/cui/messages.po
index 59c599274aa..d95380bc4a6 100644
--- a/source/fa/cui/messages.po
+++ b/source/fa/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4552,147 +4552,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9657,76 +9657,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "راهنما"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "محاوره‌های %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "محاوره‌های %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "وضعیت سند"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "و"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "بار کردن %PRODUCTNAME در حین راه‌اندازی سیستم"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13447,12 +13447,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 0a8ab99c0e8..33ecc3dd054 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21400,6 +21400,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/fa/sd/messages.po b/source/fa/sd/messages.po
index 38c110d747d..adc891d4b8a 100644
--- a/source/fa/sd/messages.po
+++ b/source/fa/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5538,9 +5538,9 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5618,8 +5618,8 @@ msgid "_Edit"
msgstr "~ویرایش"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5636,59 +5636,59 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "گرافیک"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "رنگ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "نمایش ا~سلایدی"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "چارچوب"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "نما"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "صفحات اصلی"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "درج"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/fa/sw/messages.po b/source/fa/sw/messages.po
index 4d0ab2ebcf7..a36bd365246 100644
--- a/source/fa/sw/messages.po
+++ b/source/fa/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
@@ -8700,7 +8700,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "ویرایش"
diff --git a/source/fi/basctl/messages.po b/source/fi/basctl/messages.po
index a127c40decc..c94a5c07dd5 100644
--- a/source/fi/basctl/messages.po
+++ b/source/fi/basctl/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-16 10:04+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-27 11:19+0000\n"
+"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563271467.000000\n"
+"X-POOTLE-MTIME: 1564226374.000000\n"
#: basctl/inc/strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
@@ -606,12 +606,12 @@ msgstr "Käytettävissä olevat kielet:"
#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:254
msgctxt "defaultlanguage|defined"
msgid "Select a language to define the default user interface language. All currently present strings will be assigned to the resources created for the selected language."
-msgstr "Valitse kieli, jota käytetään käyttöliittymän oletuskielenä. Kaikki nykyiset merkkijonot korvataan valitun kielen vastaavilla merkkijonoilla."
+msgstr "Valitse kieli, jota käytetään käyttöliittymän oletuskielenä. Kaikki nykyiset tekstit korvataan valitun kielen vastaavilla teksteillä."
#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:269
msgctxt "defaultlanguage|added"
msgid "Select languages to be added. Resources for these languages will be created in the library. Strings of the current default user interface language will be copied to these new resources by default."
-msgstr "Valitse lisättävät kielet. Näihin kieliin liittyvät resurssit luodaan kirjastoon. Nykyisen oletuskielen merkkijonot kopioidaan valmiiksi näihin uusiin resursseihin."
+msgstr "Valitse lisättävät kielet. Näihin kieliin liittyvät resurssit luodaan kirjastoon. Nykyisen oletuskielen tekstit kopioidaan valmiiksi näihin uusiin resursseihin."
#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:284
msgctxt "defaultlanguage|alttitle"
@@ -631,7 +631,7 @@ msgstr "Haluatko poistaa valittujen kielten kieliresurssit?"
#: basctl/uiconfig/basicide/ui/deletelangdialog.ui:15
msgctxt "deletelangdialog|DeleteLangDialog"
msgid "You are about to delete the resources for the selected language(s). All user interface strings for this language(s) will be deleted."
-msgstr "Olet poistamassa valittuun kieleen tai kieliin liittyviä resursseja. Kielen kaikki käyttöliittymämerkkijonot poistetaan."
+msgstr "Olet poistamassa valittuun kieleen tai kieliin liittyviä resursseja. Kielen kaikki käyttöliittymätekstit poistetaan."
#: basctl/uiconfig/basicide/ui/dialogpage.ui:38
msgctxt "dialogpage|label1"
@@ -771,7 +771,7 @@ msgstr "Nykyiset kielet:"
#: basctl/uiconfig/basicide/ui/managelanguages.ui:94
msgctxt "managelanguages|label2"
msgid "The default language is used if no localization for a user interface locale is present. Furthermore all strings from the default language are copied to resources of newly added languages."
-msgstr "Oletuskieltä käytetään, jos lokalisoitua käyttöliittymää ei ole saatavilla. Lisäksi kaikki oletuskielen merkkijonot kopioidaan uusien käännösten pohjaksi."
+msgstr "Oletuskieltä käytetään, jos lokalisoitua käyttöliittymää ei ole saatavilla. Lisäksi kaikki oletuskielen tekstit kopioidaan uusien käännösten pohjaksi."
#: basctl/uiconfig/basicide/ui/managelanguages.ui:120
msgctxt "managelanguages|add"
diff --git a/source/fi/chart2/messages.po b/source/fi/chart2/messages.po
index 9d65b498fc7..908800fe84c 100644
--- a/source/fi/chart2/messages.po
+++ b/source/fi/chart2/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-16 12:30+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-23 15:04+0000\n"
+"Last-Translator: tjhietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563280241.000000\n"
+"X-POOTLE-MTIME: 1563894248.000000\n"
#: chart2/inc/chart.hrc:17
msgctxt "tp_ChartType|liststore1"
@@ -54,7 +54,7 @@ msgstr "Porrastetut viivat"
#: chart2/inc/strings.hrc:27
msgctxt "STR_DLG_REMOVE_DATA_TABLE"
msgid "This chart currently contains an internal data table. Do you want to proceed, deleting the internal data table, and set a new data range?"
-msgstr ""
+msgstr "Tämä kaavio sisältää sisäisen tietotaulukon. Haluatko jatkaa ja korvata sisäisen taulukon uudella tietoalueella?"
#: chart2/inc/strings.hrc:28
msgctxt "STR_PAGE_CHARTTYPE"
@@ -2884,12 +2884,12 @@ msgstr "Piirtoasetukset"
#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:385
msgctxt "tp_SeriesToAxis|CB_LEGEND_ENTRY_HIDDEN"
msgid "Hide legend entry"
-msgstr ""
+msgstr "Piilota selitemerkintä"
#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:406
msgctxt "tp_SeriesToAxis|label4"
msgid "Legend Entry"
-msgstr ""
+msgstr "Selitemerkintä"
#: chart2/uiconfig/ui/tp_Trendline.ui:65
msgctxt "tp_Trendline|linear"
diff --git a/source/fi/connectivity/messages.po b/source/fi/connectivity/messages.po
index 603bafdfb5f..f7934d552a4 100644
--- a/source/fi/connectivity/messages.po
+++ b/source/fi/connectivity/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-09-03 13:23+0200\n"
-"PO-Revision-Date: 2019-07-16 12:08+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-23 16:55+0000\n"
+"Last-Translator: tjhietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563278914.000000\n"
+"X-POOTLE-MTIME: 1563900933.000000\n"
#. = the mozab driver's resource strings
#: connectivity/inc/strings.hrc:26
@@ -283,7 +283,7 @@ msgstr "Indeksiä ei voitu luoda, koska tapahtui tuntematon virhe."
#: connectivity/inc/strings.hrc:80
msgctxt "STR_COULD_NOT_CREATE_INDEX_NAME"
msgid "The index could not be created. The file '$filename$' is used by another index."
-msgstr "Indeksiä ei voitu luoda. Tiedosto '$filename$' on jo toisen indeksin käytössä."
+msgstr "Indeksiä ei voitu luoda. Tiedosto '$filename$' on toisen indeksin käytössä."
#: connectivity/inc/strings.hrc:81
msgctxt "STR_COULD_NOT_CREATE_INDEX_KEYSIZE"
diff --git a/source/fi/cui/messages.po b/source/fi/cui/messages.po
index 075b44bd406..427ec2a3b1c 100644
--- a/source/fi/cui/messages.po
+++ b/source/fi/cui/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-16 12:44+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-27 17:05+0000\n"
+"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563281079.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1564247139.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -330,7 +330,7 @@ msgstr "Sähköposti"
#: cui/inc/strings.hrc:80
msgctxt "RID_SVXSTR_HYPERDLG_HLMAILTP_HELP"
msgid "This is where you create a hyperlink to an email address."
-msgstr ""
+msgstr "Tässä voit luoda hyperlinkin sähköpostiosoitteeseen."
#: cui/inc/strings.hrc:81
msgctxt "RID_SVXSTR_HYPERDLG_HLDOCTP"
@@ -416,12 +416,12 @@ msgstr "Lisää rivejä"
#: cui/inc/strings.hrc:99
msgctxt "RID_SVXSTR_INSERTROW_BEFORE"
msgid "Above selection"
-msgstr ""
+msgstr "Valinnan yläpuolelle"
#: cui/inc/strings.hrc:100
msgctxt "RID_SVXSTR_INSERTROW_AFTER"
msgid "Below selection"
-msgstr ""
+msgstr "Valinnan alapuolelle"
#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
@@ -431,7 +431,7 @@ msgstr "Poista suosikeista"
#: cui/inc/strings.hrc:102
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
-msgstr ""
+msgstr "Puuttuva merkki"
#: cui/inc/strings.hrc:103
msgctxt "RID_SVXSTR_ADD_FAVORITES"
@@ -453,12 +453,12 @@ msgstr "Lisää sarakkeita"
#: cui/inc/strings.hrc:108
msgctxt "RID_SVXSTR_INSERTCOL_BEFORE"
msgid "Before selection"
-msgstr ""
+msgstr "Ennen valintaa"
#: cui/inc/strings.hrc:109
msgctxt "RID_SVXSTR_INSERTCOL_AFTER"
msgid "After selection"
-msgstr ""
+msgstr "Valinnan jälkeen"
#: cui/inc/strings.hrc:110
msgctxt "RID_SVXSTR_AUTO_ENTRY"
@@ -1252,7 +1252,7 @@ msgstr ""
#: cui/inc/strings.hrc:290
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
-msgstr ""
+msgstr "Taipuu kuin"
#: cui/inc/strings.hrc:291
msgctxt "STR_MODIFY"
@@ -1551,12 +1551,12 @@ msgstr ""
#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than %1"
-msgstr ""
+msgstr "Yhdistä yhden rivin kappaleet, jos pituus on suurempi kuin %1"
#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: %1"
-msgstr ""
+msgstr "Luettelot ja numeroidut listat. Luettelomerkki: %1"
#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_BORDER"
@@ -1631,7 +1631,7 @@ msgstr "Otetaan teemaa käyttöön..."
#: cui/inc/strings.hrc:369
msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
-msgstr ""
+msgstr "Kirjoita kelvollinen teeman osoite tai hakuehto."
#: cui/inc/strings.hrc:371
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
@@ -1767,7 +1767,7 @@ msgstr "LibreOffice pohjautuu OpenOffice.orgiin."
#: cui/inc/strings.hrc:400
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
-msgstr ""
+msgstr "%PRODUCTNAME on johdettu LibreOfficesta, joka pohjautuu OpenOffice.orgiin"
#: cui/inc/strings.hrc:401
msgctxt "aboutdialog|locale"
@@ -1792,18 +1792,18 @@ msgstr "~Verkkosivusto"
#: cui/inc/strings.hrc:405
msgctxt "aboutdialog|credits"
msgid "Cre~dits"
-msgstr ""
+msgstr "Tekijät"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can open and save files stored on remote servers per CMIS."
-msgstr ""
+msgstr "%PRODUCTNAME voi avata ja tallentaa etäpalvelimille tallennettuja tiedostoja CMIS-kohtaisesti."
#. https://help.libreoffice.org/6.2/en-US/text/shared/guide/cmis-remote-files.html
#: cui/inc/tipoftheday.hrc:46
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > AutoCorrect > AutoCorrect Options… > Replace provides a list of common substitutions. Take a look and complete with your own replacements."
-msgstr ""
+msgstr "Työkalut > Automaattinen korjaus > Automaattisen korjauksen asetukset… > Korvaa tarjoaa listan yleisistä korvauksista. Sitä voi täydentää omin korvauksin."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/06040100.html
#: cui/inc/tipoftheday.hrc:47
@@ -1815,7 +1815,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With File > Versions you can store multiple versions of the document in the same file. You can also open, delete, and compare previous versions."
-msgstr ""
+msgstr "Tiedosto > Versiot -toiminnolla voit tallentaa samaan tiedostoon useita asiakirjan versioita. Voit myös avata, poistaa ja vertailla aiempia versioita."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/01190000.html
#: cui/inc/tipoftheday.hrc:49
@@ -1827,7 +1827,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:50
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To temporarily starts with a fresh user profile or to restore a non-working %PRODUCTNAME instance start Help > Restart in Safe Mode."
-msgstr ""
+msgstr "Käynnistääksesi tilapäisesti tyhjällä käyttäjäprofiililla tai palauttaaksesi %PRODUCTNAMEn toimintakuntoon, valitse Ohje > Käynnistä uudelleen vikasietotilassa."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
@@ -1839,7 +1839,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:52
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
-msgstr ""
+msgstr "Määritä usein käyttämäsi tekstit automaattisiksi teksteiksi. Niitä voi lisätä mihin tahansa Writer-tiedostoon nimen perusteella, pikanäppäimellä tai työkaluriviltä."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/autotext.html
#: cui/inc/tipoftheday.hrc:53
@@ -1851,7 +1851,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:54
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools > Sort."
-msgstr ""
+msgstr "Kappaleita tai taulukon rivejä voi lajitella aakkosellisesti tai numeerisesti kohdasta Työkalut > Lajittele."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/06100000.html
#: cui/inc/tipoftheday.hrc:55
@@ -1863,7 +1863,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:56
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet > Fill Cells > Random Number to generate a random series based on various distributions."
-msgstr ""
+msgstr "Käytä toimintoa Taulukko > Täytä solut > Satunnaisluvut luodaksesi satunnaissarjan eri jakaumien perusteella."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/02140700.html
#: cui/inc/tipoftheday.hrc:57
@@ -1881,49 +1881,49 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:59
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a series in %PRODUCTNAME Calc such as A1, A2, A3, A11, A15, not in alphabetical order but on the number? Enable natural sort in the Options tab."
-msgstr ""
+msgstr "Haluatko lajitella A1, A2, A3, A11, A15 -tyyppisen sarjan %PRODUCTNAME Calcissa aakkosjärjestyksen sijaan numerojärjestyksessä? Ota käyttöön luonnollinen lajittelu Asetukset-välilehdellä."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/12030200.html
#: cui/inc/tipoftheday.hrc:60
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools > Options > OpenCL."
-msgstr ""
+msgstr "Ota käyttöön kaavasolujen massiivinen rinnakkaislaskenta kohdasta Työkalut > Asetukset > OpenCL."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/opencl.html
#: cui/inc/tipoftheday.hrc:61
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
-msgstr ""
+msgstr "%PRODUCTNAME tukee neljää makrojen turvallisuustasoa (alhaisesta hyvin korkeaan) ja luotettuja lähteitä."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:63
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
-msgstr ""
+msgstr "Haluatko tietää, mitä komentoriviparametreja voit käyttää? Käynnistä soffice parametrilla --help tai -h tai -?"
#. local help missing
#: cui/inc/tipoftheday.hrc:64
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
-msgstr ""
+msgstr "Haluatko hallita hyperlinkkien esitystapaa laskentataulukossa? Lisää ne HYPERLINKKI-funktiolla."
#. local help missing
#: cui/inc/tipoftheday.hrc:65
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Can not get what you want with VLOOKUP? With INDEX and MATCH you can do everything!"
-msgstr ""
+msgstr "Eikö PHAKU löydä, mitä tarvitset? INDEKSI ja VASTINE auttavat!"
#. local help missing
#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
-msgstr ""
+msgstr "Voit allekirjoittaa olemassa olevia PDF-tiedostoja ja todentaa allekirjoitukset."
#. local help missing
#: cui/inc/tipoftheday.hrc:67
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer includes LibreLogo: simple Logo-like programming environment with turtle vector graphics, DTP and graphic design."
-msgstr ""
+msgstr "Writeriin sisältyy LibreLogo: yksinkertainen Logo-tyyppinen ohjelmointiympäristö, johon sisältyy kilpikonnavektorigrafiikka, työpöytäjulkaiseminen ja graafinen suunnittelu."
#. local help missing
#: cui/inc/tipoftheday.hrc:68
@@ -1935,7 +1935,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:69
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
-msgstr ""
+msgstr "Haluatko lisätä päivämäärään x kuukautta? Käytä seuraavaa: =PÄIVÄ.KUUKAUSI(päivämäärä;kuukautta)"
#. local help missing
#: cui/inc/tipoftheday.hrc:70
@@ -1971,7 +1971,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:75
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
-msgstr ""
+msgstr "Outo virhekoodi Calcissa, Err: jonka perässä on numero? Selitys löytyy tältä sivulta:"
#. local help missing
#: cui/inc/tipoftheday.hrc:76
@@ -2007,7 +2007,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:81
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
-msgstr ""
+msgstr "Käytä Calcissa KESKIARVO.TASATTU() -funktiota saadaksesi keskiarvon tietojoukosta, poislukien korkeimman ja matallimman arvon."
#. local help missing
#: cui/inc/tipoftheday.hrc:82
@@ -2019,13 +2019,13 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:83
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
-msgstr ""
+msgstr "Käytä Android- tai iPhone-puhelintasi Impress-esityksen kauko-ohjaimena."
#. local help missing
#: cui/inc/tipoftheday.hrc:84
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
-msgstr ""
+msgstr "Esittäjän apunäyttö on mainio ominaisuus %PRODUCTNAME Impressissä. Oletko kokeillut?"
#. local help missing
#: cui/inc/tipoftheday.hrc:85
@@ -2043,12 +2043,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:88
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get help from the community via the Ask portal."
-msgstr ""
+msgstr "Saat apua yhteisöltä Ask-portaalissa."
#: cui/inc/tipoftheday.hrc:89
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has great extensions to increase your productivity, check them out."
-msgstr ""
+msgstr "%PRODUCTNAMEen on saatavilla mainioita lisäosia, jotka parantavat tuottavuuttasi."
#: cui/inc/tipoftheday.hrc:90
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2058,27 +2058,27 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:91
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by clicking on F1, if you've installed it. Otherwise check online at:"
-msgstr ""
+msgstr "Sisäänrakennettu ohje on saatavilla F1-näppäimestä, mikäli olet asentanut sen. Muussa tapauksessa katso verkosta:"
#: cui/inc/tipoftheday.hrc:92
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
-msgstr ""
+msgstr "%PRODUCTNAMEn dokumentaatio ja ilmaiset ohjekirjat löytyvät osoitteesta:"
#: cui/inc/tipoftheday.hrc:93
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
-msgstr ""
+msgstr "Lahjoituksesi tukevat maailmanlaajuista yhteisöämme."
#: cui/inc/tipoftheday.hrc:94
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as an extension."
-msgstr ""
+msgstr "%PRODUCTNAMEen on helppo asentaa uusia sanastoja: ne ovat saatavilla lisäosina."
#: cui/inc/tipoftheday.hrc:95
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
-msgstr ""
+msgstr "%PRODUCTNAMEa kehittää ystävällinen yhteisö, joka koostuu sadoista osallistujista ympäri maailman. Liity mukaan, muutkin taidot kuin koodaaminen ovat hyödyksi."
#: cui/inc/tipoftheday.hrc:96
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2088,57 +2088,57 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:97
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
-msgstr ""
+msgstr "%PRODUCTNAME tukee käyttöä helpottavia työkaluja, kuten ulkoisia ruudunlukijoita, Braille-laitteita tai puhetta tunnistavia syöttölaitteita."
#: cui/inc/tipoftheday.hrc:98
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create editable Hybrid PDFs with %PRODUCTNAME."
-msgstr ""
+msgstr "Luo muokattavia hybridi-PDF-tiedostoja %PRODUCTNAMEn avulla."
#: cui/inc/tipoftheday.hrc:99
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management ? Use a 3rd party extension."
-msgstr ""
+msgstr "Viitteidenhallinta? Käytä kolmannen osapuolen lisäosaa."
#: cui/inc/tipoftheday.hrc:100
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You plan to change the computer and want to recover your customizations? See:"
-msgstr ""
+msgstr "Aiotko vaihtaa tietokonetta ja haluat palauttaa omat asetuksesi? Katso:"
#: cui/inc/tipoftheday.hrc:101
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
-msgstr ""
+msgstr "%PRODUCTNAME tukee yli 150 kieltä."
#: cui/inc/tipoftheday.hrc:102
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
-msgstr ""
+msgstr "Haluatko %PRODUCTNAME-lähettilääksi? Kehittäjille, ylläpitäjille ja kouluttajille on sertifiointeja."
#: cui/inc/tipoftheday.hrc:103
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
+msgstr "%PRODUCTNAME aikoo pyrkiä Google Summer of Code (GSoC) -ohjelmaan:"
#: cui/inc/tipoftheday.hrc:104
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create fillable form documents (even PDF's) with %PRODUCTNAME."
-msgstr ""
+msgstr "Luo täytettäviä lomakeasiakirjoja (jopa PDF-tiedostoja) %PRODUCTNAMEn avulla."
#: cui/inc/tipoftheday.hrc:105
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
-msgstr ""
+msgstr "Käytä %PRODUCTNAMEa kaikissa selaimissa rollAppin avulla."
#: cui/inc/tipoftheday.hrc:106
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and xml filters?"
-msgstr ""
+msgstr "Kehitätkö uusia XSLT- ja XML-suodattimia?"
#: cui/inc/tipoftheday.hrc:108
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
-msgstr ""
+msgstr "Muunna helposti asiakirjasi PDF-muotoon yhdellä napsautuksella työkalurivin PDF-kuvakkeesta."
#: cui/inc/tipoftheday.hrc:109
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2168,7 +2168,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress use Insert > Media > Photo Album to create a slideshow from a series of pictures with the 'Photo Album' feature."
-msgstr ""
+msgstr "%PRODUCTNAME Impressissä Lisää > Media > Valokuva-albumi luo diaesityksen valokuvasarjasta."
#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2178,12 +2178,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to insert the date in a spreadsheet cell? Type Ctrl+; or Shift+Ctrl+; to insert the time."
-msgstr ""
+msgstr "Haluatko lisätä päiväyksen laskentataulukon soluun? Paina Ctrl+; tai Shift+Ctrl+; lisätäksesi ajan."
#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut Ctrl+Alt+Arrow (Up/Down)"
-msgstr ""
+msgstr "Haluatko siirtää yhtä tai useampaa kappaletta? Leikkaaminen ja liittäminen ei ole välttämätöntä: käytä näppäinoikotietä Ctrl+Alt+nuoli (ylös/alas)"
#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2198,7 +2198,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet > Sheet from file."
-msgstr ""
+msgstr "Avaa CSV-tiedosto uutena taulukkona nykyisessä laskentataulukossa: Taulukko > Lisää taulukko tiedostosta."
#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2213,7 +2213,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Hold down Ctrl and turn the mouse wheel to change the zoom factor."
-msgstr ""
+msgstr "Pidä Ctrl painettuna ja pyöritä hiiren rullaa muuttaaksesi zoomausta."
#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2223,7 +2223,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don't use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
-msgstr ""
+msgstr "Älä käytä sarkaimia kohteiden sijoitteluun Writer-asiakirjassa. Riippuen mitä yrität tehdä, reunaton tauluko voi olla parempi valinta."
#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2328,7 +2328,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
-msgstr ""
+msgstr "Haluatko tietää, montako päivää tässä kuussa on? Käytä PÄIVIÄ.KUUKAUDESSA(TÄMÄ.PÄIVÄ()) -funktiota."
#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2909,7 +2909,7 @@ msgstr "%PRODUCTNAME-ohje"
#: cui/inc/tipoftheday.hrc:264
msgctxt "STR_MORE_LINK"
msgid "More info"
-msgstr ""
+msgstr "Lisätietoja"
#: cui/inc/treeopt.hrc:30
msgctxt "SID_GENERAL_OPTIONS_RES"
@@ -3029,7 +3029,7 @@ msgstr "Välityspalvelin"
#: cui/inc/treeopt.hrc:61
msgctxt "SID_INET_DLG_RES"
msgid "Email"
-msgstr ""
+msgstr "Sähköposti"
#: cui/inc/treeopt.hrc:66
msgctxt "SID_SW_EDITOPTIONS_RES"
@@ -3104,7 +3104,7 @@ msgstr "Automaattiotsikointi"
#: cui/inc/treeopt.hrc:80
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Mail Merge Email"
-msgstr ""
+msgstr "Joukkokirje-sähköposti"
#: cui/inc/treeopt.hrc:85
msgctxt "SID_SW_ONLINEOPTIONS_RES"
@@ -3402,10 +3402,9 @@ msgid "Edit"
msgstr "Muokkaa"
#: cui/uiconfig/ui/aboutconfigdialog.ui:183
-#, fuzzy
msgctxt "aboutconfigdialog|reset"
msgid "Reset"
-msgstr "Palauta oletus"
+msgstr "Palauta"
#: cui/uiconfig/ui/aboutconfigvaluedialog.ui:8
msgctxt "aboutconfigvaluedialog|AboutConfigValueDialog"
@@ -3420,7 +3419,7 @@ msgstr "Arvo:"
#: cui/uiconfig/ui/aboutdialog.ui:11
msgctxt "aboutdialog|AboutDialog"
msgid "About %PRODUCTNAME"
-msgstr "Tietoja %PRODUCTNAME-ohjelmistosta"
+msgstr "Tietoja %PRODUCTNAMEsta"
#: cui/uiconfig/ui/aboutdialog.ui:13
msgctxt "aboutdialog|description"
@@ -3521,7 +3520,7 @@ msgstr "A_utomaattinen sisällytys"
#: cui/uiconfig/ui/acorexceptpage.ui:292
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
-msgstr ""
+msgstr "Uudet sanat, joissa on kaksi isoa alkukirjainta tai pieni alkukirjain"
#: cui/uiconfig/ui/acorexceptpage.ui:304
msgctxt "acorexceptpage|replace1"
@@ -3531,12 +3530,12 @@ msgstr "_Korvaa"
#: cui/uiconfig/ui/acorexceptpage.ui:328
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
-msgstr ""
+msgstr "Poista sanat, joissa on kaksi isoa alkukirjainta tai pieni alkukirjain"
#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
-msgstr ""
+msgstr "Sanat, joissa on KAksi ISoa ALkukirjainta tai pIENI aLKUKIRJAIN"
#: cui/uiconfig/ui/acorreplacepage.ui:47
msgctxt "acorreplacepage|replace"
@@ -3786,7 +3785,7 @@ msgstr "Salli riippuva välimerkitys"
#: cui/uiconfig/ui/asiantypography.ui:59
msgctxt "asiantypography|checkApplySpacing"
msgid "Apply spacing between Asian and non-Asian text"
-msgstr ""
+msgstr "Käytä välejä aasialaisten ja ei-aasialaisten tekstien välissä"
#: cui/uiconfig/ui/asiantypography.ui:82
msgctxt "asiantypography|labelLineChange"
@@ -3966,7 +3965,7 @@ msgstr "Lähdetiedosto"
#: cui/uiconfig/ui/baselinksdialog.ui:172
msgctxt "baselinksdialog|LINKS"
msgid "Element"
-msgstr ""
+msgstr "Elementti"
#: cui/uiconfig/ui/baselinksdialog.ui:185
msgctxt "baselinksdialog|TYPE"
@@ -4026,7 +4025,7 @@ msgstr "Tyyli:"
#: cui/uiconfig/ui/bitmaptabpage.ui:149
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Custom position/size"
-msgstr ""
+msgstr "Mukautettu sijainti/koko"
#: cui/uiconfig/ui/bitmaptabpage.ui:150
msgctxt "bitmaptabpage|bitmapstyle"
@@ -4316,7 +4315,7 @@ msgstr "Synkronoi"
#: cui/uiconfig/ui/borderpage.ui:479
msgctxt "borderpage|label10"
msgid "Padding"
-msgstr ""
+msgstr "Täyte"
#: cui/uiconfig/ui/borderpage.ui:555
msgctxt "borderpage|label22"
@@ -4386,152 +4385,152 @@ msgstr "Galleria"
#: cui/uiconfig/ui/bulletandposition.ui:95
msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Luettelomerkit ja numerointi"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
-msgstr ""
+msgstr "Tyyppi:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
-msgstr ""
+msgstr "Aloita kohdasta:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
-msgstr ""
+msgstr "Merkki:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Valitse..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Valitse kuva..."
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Leveys:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Korkeus:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Säilytä kuvasuhde"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
-msgstr ""
+msgstr "Ennen:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
-msgstr ""
+msgstr "Jälkeen:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
-msgstr ""
+msgstr "Erotin"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Väri:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
-msgstr ""
+msgstr "Sisennys:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Leveys:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
-msgstr ""
+msgstr "Suhteellinen"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
-msgstr ""
+msgstr "Sijainti"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
-msgstr ""
+msgstr "Tasaus"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
-msgstr ""
+msgstr "Dia"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Valinta"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Ominaisuudet"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
-msgstr ""
+msgstr "Esikatselu"
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
@@ -5116,7 +5115,7 @@ msgstr "Teksti"
#: cui/uiconfig/ui/colorconfigwin.ui:885
msgctxt "colorconfigwin|protectedcells"
msgid "Protected cells background"
-msgstr ""
+msgstr "Suojattujen solujen tausta"
#: cui/uiconfig/ui/colorconfigwin.ui:897
msgctxt "colorconfigwin|draw"
@@ -5726,7 +5725,7 @@ msgstr "Muokkaa tietokantalinkkiä"
#: cui/uiconfig/ui/dbregisterpage.ui:73
msgctxt "dbregisterpage|type"
msgid "Registered name"
-msgstr ""
+msgstr "Rekisteröity nimi"
#: cui/uiconfig/ui/dbregisterpage.ui:95
msgctxt "dbregisterpage|path"
@@ -6461,7 +6460,7 @@ msgstr ""
#: cui/uiconfig/ui/fontfeaturesdialog.ui:166
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
-msgstr ""
+msgstr "Esikatselu"
#: cui/uiconfig/ui/formatcellsdialog.ui:8
msgctxt "formatcellsdialog|FormatCellsDialog"
@@ -6577,7 +6576,7 @@ msgstr "Hakemisto"
#: cui/uiconfig/ui/gallerythemedialog.ui:8
msgctxt "gallerythemedialog|GalleryThemeDialog"
msgid "Properties of %1"
-msgstr ""
+msgstr "Teeman %1 ominaisuudet"
#: cui/uiconfig/ui/gallerythemedialog.ui:135
msgctxt "gallerythemedialog|general"
@@ -6675,10 +6674,9 @@ msgid "A_utomatic"
msgstr "Automaattinen"
#: cui/uiconfig/ui/gradientpage.ui:310
-#, fuzzy
msgctxt "gradientpage|centerft"
msgid "Center ( X / Y ):"
-msgstr "Keskipiste ( X / Y ) :"
+msgstr "Keskipiste ( X / Y ):"
#: cui/uiconfig/ui/gradientpage.ui:375
msgctxt "gradientpage|borderft"
@@ -6693,24 +6691,22 @@ msgstr "K_ulma:"
#: cui/uiconfig/ui/gradientpage.ui:471
msgctxt "gradientpage|colortoft"
msgid "_To Color:"
-msgstr ""
+msgstr "Väriin:"
#: cui/uiconfig/ui/gradientpage.ui:514
msgctxt "gradientpage|colorfromft"
msgid "_From Color:"
-msgstr ""
+msgstr "_Väristä:"
#: cui/uiconfig/ui/gradientpage.ui:552
-#, fuzzy
msgctxt "gradientpage|a11y_center_x"
msgid "Center X"
-msgstr "Keskitä _X:"
+msgstr "Keskitä X"
#: cui/uiconfig/ui/gradientpage.ui:566
-#, fuzzy
msgctxt "gradientpage|a11y_center_y"
msgid "Center Y"
-msgstr "Keskitä _Y:"
+msgstr "Keskitä Y"
#: cui/uiconfig/ui/gradientpage.ui:580
msgctxt "gradientpage|a11y_percentage_from"
@@ -7235,7 +7231,7 @@ msgstr "Muokkaa _myöhemmin"
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:87
msgctxt "hyperlinknewdocpage|file_label"
msgid "_File:"
-msgstr "Tiedosto:"
+msgstr "_Tiedosto:"
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:109
msgctxt "hyperlinknewdocpage|create"
@@ -7555,7 +7551,7 @@ msgstr "Lisää"
#: cui/uiconfig/ui/javastartparametersdialog.ui:215
msgctxt "javastartparametersdialog|editbtn"
msgid "_Edit"
-msgstr "Muokkaa"
+msgstr "_Muokkaa"
#: cui/uiconfig/ui/javastartparametersdialog.ui:230
msgctxt "javastartparametersdialog|removebtn"
@@ -8042,7 +8038,7 @@ msgstr "Toiminto"
#: cui/uiconfig/ui/menuassignpage.ui:480 cui/uiconfig/ui/menuassignpage.ui:502
msgctxt "menuassignpage|gearbtn"
msgid "Gear Menu"
-msgstr ""
+msgstr "Hammasratasvalikko"
#: cui/uiconfig/ui/menuassignpage.ui:481
msgctxt "menuassignpage|menugearbtn"
@@ -8074,7 +8070,7 @@ msgstr "Oletusasetukset"
#: cui/uiconfig/ui/menuassignpage.ui:730
msgctxt "menuassignpage|defaultsbtn"
msgid "Resets the selected toolbar, menu, or context menu to its default state."
-msgstr ""
+msgstr "Palauttaa valitun työkalurivin, valikon tai pikavalikon alkuperäiseen tilaansa."
#: cui/uiconfig/ui/menuassignpage.ui:764
#, fuzzy
@@ -8105,7 +8101,7 @@ msgstr ""
#: cui/uiconfig/ui/menuassignpage.ui:876
msgctxt "menuassignpage|targetlabel"
msgid "_Target"
-msgstr ""
+msgstr "Kohde"
#: cui/uiconfig/ui/menuassignpage.ui:889
msgctxt "menuassignpage|functionlabel"
@@ -8185,7 +8181,7 @@ msgstr "Lisää..."
#: cui/uiconfig/ui/multipathdialog.ui:200
msgctxt "multipathdialog|pathlist"
msgid "Path list"
-msgstr ""
+msgstr "Polkuluettelo"
#: cui/uiconfig/ui/multipathdialog.ui:231
msgctxt "multipathdialog|label1"
@@ -8999,7 +8995,7 @@ msgstr "Jätä pois asiakirjojen piilotetut elementit"
#: cui/uiconfig/ui/optemailpage.ui:167
msgctxt "optemailpage|label1"
msgid "Sending Documents as Email Attachments"
-msgstr ""
+msgstr "Asiakirjojen lähettäminen sähköpostin liitteinä"
#: cui/uiconfig/ui/optfltrembedpage.ui:52
msgctxt "optfltrembedpage|label2"
@@ -9039,7 +9035,7 @@ msgstr "Merkin korostus"
#: cui/uiconfig/ui/optfltrembedpage.ui:207
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
-msgstr ""
+msgstr "Luo MSO-lukkotiedosto"
#: cui/uiconfig/ui/optfltrembedpage.ui:230
msgctxt "optfltrembedpage|label5"
@@ -9179,79 +9175,79 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
-msgstr ""
+msgstr "Näytä päivän vinkki ohjelmaa käynnistettäessä"
#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ohje"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Käytä _%PRODUCTNAME-valintaikkunoita"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Avaus- ja tallennusikkunat"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Käytä %PRODUCTNAME-valintaikkunoita"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Tulostusvalintaikkunat"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "T_ulostaminen asettaa \"asiakirjaa muokattu\" -tilan"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Asiakirjan tila"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Tulkitse vuosiksi väliltä "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ja "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Vuosi (kaksi numeroa)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Kerää tietoja ohjelmiston käytöstä ja lähetä ne The Document Foundationille"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Auta parantamaan %PRODUCTNAMEa"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Lataa %PRODUCTNAME järjestelmän käynnistyksen yhteydessä"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Käytä pikakäynnistintä"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME -pikakäynnistys"
@@ -9369,7 +9365,7 @@ msgstr "hiragana/katakana"
#: cui/uiconfig/ui/optjsearchpage.ui:84
msgctxt "optjsearchpage|matchcontractions"
msgid "_contractions (yo-on, sokuon)"
-msgstr "kutistumat (yo-on, sokuon)"
+msgstr "diftongit (yo-on, sokuon)"
#: cui/uiconfig/ui/optjsearchpage.ui:101
msgctxt "optjsearchpage|matchminusdashchoon"
@@ -10091,7 +10087,7 @@ msgstr "Kotipuhelinnumero"
#: cui/uiconfig/ui/optuserpage.ui:137
msgctxt "optuserpage|faxft"
msgid "Fa_x/email:"
-msgstr ""
+msgstr "Faksi tai sähköposti:"
#: cui/uiconfig/ui/optuserpage.ui:160
msgctxt "optuserpage|firstname-atkobject"
@@ -10242,12 +10238,12 @@ msgstr "Osoite"
#: cui/uiconfig/ui/optuserpage.ui:851
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
-msgstr "OpenPGP-allekirjoituksen avain:"
+msgstr "OpenPGP-allekirjoitusavain:"
#: cui/uiconfig/ui/optuserpage.ui:865
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
-msgstr "OpenPGP-salauksen avain:"
+msgstr "OpenPGP-salausavain:"
#: cui/uiconfig/ui/optuserpage.ui:880 cui/uiconfig/ui/optuserpage.ui:894
msgctxt "optuserpage|liststore1"
@@ -10262,7 +10258,7 @@ msgstr "Asiakirjoja salattaessa salaa aina itselle"
#: cui/uiconfig/ui/optuserpage.ui:928
msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
-msgstr "Salakirjoitus"
+msgstr "Kryptografia"
#: cui/uiconfig/ui/optviewpage.ui:47
msgctxt "optviewpage|grid3|tooltip_text"
@@ -10686,7 +10682,7 @@ msgid ""
"\n"
"Do you still want to apply these settings?"
msgstr ""
-"Reunukset ovat tulostusalueen ulkopuolella.\n"
+"Marginaalit ovat tulostusalueen ulkopuolella.\n"
"\n"
"Haluatko kuitenkin ottaa nämä asetukset käyttöön?"
@@ -11823,12 +11819,12 @@ msgstr "Matti Meikäläinen"
#: cui/uiconfig/ui/signatureline.ui:124
msgctxt "signatureline|edit_title"
msgid "Director"
-msgstr "toimitusjohtaja"
+msgstr "Johtaja"
#: cui/uiconfig/ui/signatureline.ui:137
msgctxt "signatureline|edit_email"
msgid "john.doe@example.org"
-msgstr "matti.meikalainen@yritys.fi"
+msgstr "matti.meikalainen@esimerkki.fi"
#. Suggested Signer Name
#: cui/uiconfig/ui/signatureline.ui:149
@@ -12114,12 +12110,12 @@ msgstr "Lisää suosikkeihin"
#: cui/uiconfig/ui/specialcharacters.ui:302
msgctxt "specialcharacters|favbtn|tooltip_text"
msgid "Maximum Limit: 16 Characters"
-msgstr ""
+msgstr "Enimmäismäärä: 16 merkkiä"
#: cui/uiconfig/ui/specialcharacters.ui:349
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
-msgstr ""
+msgstr "Viimeisimmät merkit:"
#: cui/uiconfig/ui/specialcharacters.ui:583
msgctxt "specialcharacters|favbtn|symboltext2"
@@ -12759,7 +12755,7 @@ msgstr "Korvaa sanalla:"
#: cui/uiconfig/ui/thesaurus.ui:259
msgctxt "thesaurus|RID_SVXSTR_ERR_TEXTNOTFOUND"
msgid "No alternatives found."
-msgstr ""
+msgstr "Vaihtoehtoja ei löytynyt."
#: cui/uiconfig/ui/tipofthedaydialog.ui:8
msgctxt "TipOfTheDayDialog|Name"
@@ -12781,12 +12777,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Seuraava vinkki"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Tiesitkö?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Linkki"
diff --git a/source/fi/dictionaries/en/dialog/registry/data/org/openoffice/Office.po b/source/fi/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
index e72998ec747..128fc363da7 100644
--- a/source/fi/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
+++ b/source/fi/dictionaries/en/dialog/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: 2019-01-12 13:17+0100\n"
-"PO-Revision-Date: 2019-07-16 13:31+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-22 20:35+0000\n"
+"Last-Translator: tjhietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563283898.000000\n"
+"X-POOTLE-MTIME: 1563827705.000000\n"
#: OptionsDialog.xcu
msgctxt ""
@@ -32,4 +32,4 @@ msgctxt ""
"Label\n"
"value.text"
msgid "English Sentence Checking"
-msgstr "Englannin lausetarkistus"
+msgstr "Englannin virkkeiden tarkistus"
diff --git a/source/fi/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po b/source/fi/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
index 52090df546b..02b6ce6d09a 100644
--- a/source/fi/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/fi/dictionaries/hu_HU/dialog/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: 2019-01-12 13:17+0100\n"
-"PO-Revision-Date: 2019-07-16 16:18+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-22 20:35+0000\n"
+"Last-Translator: tjhietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563293907.000000\n"
+"X-POOTLE-MTIME: 1563827716.000000\n"
#: OptionsDialog.xcu
msgctxt ""
@@ -32,4 +32,4 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hungarian Sentence Checking"
-msgstr "Unkarin lausetarkistus"
+msgstr "Unkarin virkkeiden tarkistus"
diff --git a/source/fi/dictionaries/id.po b/source/fi/dictionaries/id.po
index 3bf726ecca9..4f418b35578 100644
--- a/source/fi/dictionaries/id.po
+++ b/source/fi/dictionaries/id.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: 2018-07-04 22:52+0200\n"
-"PO-Revision-Date: 2018-06-07 17:04+0000\n"
-"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
+"PO-Revision-Date: 2019-07-22 20:35+0000\n"
+"Last-Translator: tjhietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1528391064.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563827734.000000\n"
#: description.xml
msgctxt ""
@@ -22,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Indonesian spelling dictionary, hyphenation rules, and thesaurus"
-msgstr ""
+msgstr "Indonesian oikolukusanasto, tavutussäännöt ja synonyymisanasto"
diff --git a/source/fi/dictionaries/pt_BR/dialog.po b/source/fi/dictionaries/pt_BR/dialog.po
index 1b67f34fda7..355585989ee 100644
--- a/source/fi/dictionaries/pt_BR/dialog.po
+++ b/source/fi/dictionaries/pt_BR/dialog.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: 2019-01-12 13:17+0100\n"
-"PO-Revision-Date: 2014-01-17 17:39+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-22 20:35+0000\n"
+"Last-Translator: tjhietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\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: 1389980371.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563827743.000000\n"
#: OptionsDialog.xcu
msgctxt ""
@@ -32,4 +32,4 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Grammar Checking (Portuguese)"
-msgstr ""
+msgstr "Kieliopin tarkistus (portugali)"
diff --git a/source/fi/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po b/source/fi/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
index 6f3a5098aee..8dae07854d7 100644
--- a/source/fi/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
+++ b/source/fi/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.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: 2019-01-12 13:17+0100\n"
-"PO-Revision-Date: 2013-06-18 08:15+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-22 20:35+0000\n"
+"Last-Translator: tjhietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\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: 1371543344.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563827757.000000\n"
#: OptionsDialog.xcu
msgctxt ""
@@ -32,4 +32,4 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Grammar Checking (Portuguese)"
-msgstr ""
+msgstr "Kieliopin tarkistus (portugali)"
diff --git a/source/fi/dictionaries/ru_RU/dialog.po b/source/fi/dictionaries/ru_RU/dialog.po
index ee34cfef539..79f050b7506 100644
--- a/source/fi/dictionaries/ru_RU/dialog.po
+++ b/source/fi/dictionaries/ru_RU/dialog.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: 2018-11-05 17:38+0100\n"
-"PO-Revision-Date: 2013-05-23 23:23+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-23 15:04+0000\n"
+"Last-Translator: Wuhhau <Wuhhau@tutanota.com>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\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: 1369351403.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563894273.000000\n"
#: ru_RU_en_US.properties
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"typographica\n"
"property.text"
msgid "Typographical"
-msgstr ""
+msgstr "Typografinen"
#: ru_RU_en_US.properties
msgctxt ""
diff --git a/source/fi/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po b/source/fi/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
index c377ef2763c..9665ba0dc57 100644
--- a/source/fi/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/fi/dictionaries/ru_RU/dialog/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: 2019-01-12 13:17+0100\n"
-"PO-Revision-Date: 2019-07-16 13:33+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-22 20:36+0000\n"
+"Last-Translator: tjhietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563283994.000000\n"
+"X-POOTLE-MTIME: 1563827781.000000\n"
#: OptionsDialog.xcu
msgctxt ""
@@ -32,4 +32,4 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Grammar Checking (Russian)"
-msgstr "Kieliasun tarkistus (venäjä)"
+msgstr "Kieliopin tarkistus (venäjä)"
diff --git a/source/fi/dictionaries/tr_TR.po b/source/fi/dictionaries/tr_TR.po
index b81cecc91e0..0c4b3996fb6 100644
--- a/source/fi/dictionaries/tr_TR.po
+++ b/source/fi/dictionaries/tr_TR.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: 2018-09-03 13:23+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2019-07-22 20:36+0000\n"
+"Last-Translator: tjhietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.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-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563827795.000000\n"
#: description.xml
msgctxt ""
@@ -19,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Turkish Spellcheck Dictionary"
-msgstr ""
+msgstr "Turkin oikolukusanakirja"
diff --git a/source/fi/extensions/messages.po b/source/fi/extensions/messages.po
index 3a9033cd02f..765fd3374c7 100644
--- a/source/fi/extensions/messages.po
+++ b/source/fi/extensions/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-07-16 10:15+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-27 14:24+0000\n"
+"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563272130.000000\n"
+"X-POOTLE-MTIME: 1564237489.000000\n"
#: extensions/inc/command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -1718,62 +1718,62 @@ msgstr "(Oletus)"
#: extensions/inc/strings.hrc:244
msgctxt "RID_STR_URL"
msgid "URL"
-msgstr ""
+msgstr "URL-osoite"
#: extensions/inc/strings.hrc:245
msgctxt "RID_STR_SELECTIONMODEL"
msgid "Selection Type"
-msgstr ""
+msgstr "Valintatyyppi"
#: extensions/inc/strings.hrc:246
msgctxt "RID_STR_USEGRIDLINE"
msgid "Use grid line"
-msgstr ""
+msgstr "Käytä ruudukkoa"
#: extensions/inc/strings.hrc:247
msgctxt "RID_STR_GRIDLINECOLOR"
msgid "Grid line color"
-msgstr ""
+msgstr "Ruudukon väri"
#: extensions/inc/strings.hrc:248
msgctxt "RID_STR_SHOWCOLUMNHEADER"
msgid "Show column header"
-msgstr ""
+msgstr "Näytä sarakkeen otsikko"
#: extensions/inc/strings.hrc:249
msgctxt "RID_STR_SHOWROWHEADER"
msgid "Show row header"
-msgstr ""
+msgstr "Näytä rivin otsikko"
#: extensions/inc/strings.hrc:250
msgctxt "RID_STR_HEADERBACKGROUNDCOLOR"
msgid "Header background color"
-msgstr ""
+msgstr "Otsikon taustaväri"
#: extensions/inc/strings.hrc:251
msgctxt "RID_STR_HEADERTEXTCOLOR"
msgid "Header text color"
-msgstr ""
+msgstr "Otsikon tekstin väri"
#: extensions/inc/strings.hrc:252
msgctxt "RID_STR_ACTIVESELECTIONBACKGROUNDCOLOR"
msgid "Active selection background color"
-msgstr ""
+msgstr "Aktiivisen valinnan taustaväri"
#: extensions/inc/strings.hrc:253
msgctxt "ID_STR_ACTIVESELECTIONTEXTCOLOR"
msgid "Active selection text color"
-msgstr ""
+msgstr "Aktiivisen valinnan tekstin väri"
#: extensions/inc/strings.hrc:254
msgctxt "RID_STR_INACTIVESELECTIONBACKGROUNDCOLOR"
msgid "Inactive selection background color"
-msgstr ""
+msgstr "Epäaktiivisen valinnan taustaväri"
#: extensions/inc/strings.hrc:255
msgctxt "RID_STR_INACTIVESELECTIONTEXTCOLOR"
msgid "Inactive selection text color"
-msgstr ""
+msgstr "Epäaktiivisen valinnan tekstin väri"
#: extensions/inc/strings.hrc:256
msgctxt "RID_STR_STANDARD"
@@ -2137,7 +2137,7 @@ msgstr "Päivityksen lataus on meneillään"
#: extensions/inc/strings.hrc:328
msgctxt "RID_UPDATE_BUBBLE_DOWNLOADING"
msgid "Click the icon to pause."
-msgstr ""
+msgstr "Napsauta kuvaketta keskeyttääksesi."
#: extensions/inc/strings.hrc:329
msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOAD_PAUSED"
@@ -2361,7 +2361,7 @@ msgstr "Yhteysasetukset"
#: extensions/inc/strings.hrc:375
msgctxt "RID_STR_TABLE_SELECTION"
msgid "Table Selection"
-msgstr ""
+msgstr "Taulukkovalinta"
#: extensions/inc/strings.hrc:376
msgctxt "RID_STR_MANUAL_FIELD_MAPPING"
@@ -2709,7 +2709,7 @@ msgstr "Nykyiset kentät"
#: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:356
msgctxt "gridfieldsselectionpage|label2"
msgid "Table element"
-msgstr "Tauluelementti"
+msgstr "Taulukkoelementti"
#: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:44
msgctxt "groupradioselectionpage|datasourcelabel"
@@ -2754,7 +2754,7 @@ msgstr "Miten haluat nimetä valintakentät?"
#: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:309
msgctxt "groupradioselectionpage|label2"
msgid "Table element"
-msgstr "Tauluelementti"
+msgstr "Taulukkoelementti"
#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:16
msgctxt "invokeadminpage|label2"
@@ -3256,7 +3256,7 @@ msgstr "Sarakkeiden nimet"
#: extensions/uiconfig/sbibliography/ui/querydialog.ui:30
msgctxt "querydialog|ask"
msgid "Do not show this question again."
-msgstr "Älä näytä tätä kysymystä uudestaan."
+msgstr "Älä näytä tätä kysymystä uudelleen."
#: extensions/uiconfig/sbibliography/ui/toolbar.ui:14
msgctxt "toolbar|TBC_FT_SOURCE"
diff --git a/source/fi/extras/source/autocorr/emoji.po b/source/fi/extras/source/autocorr/emoji.po
index b5670cef6ad..e4c5c489338 100644
--- a/source/fi/extras/source/autocorr/emoji.po
+++ b/source/fi/extras/source/autocorr/emoji.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-12-20 08:16+0100\n"
-"PO-Revision-Date: 2018-02-28 11:16+0000\n"
-"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
+"PO-Revision-Date: 2019-07-27 13:46+0000\n"
+"Last-Translator: BoardPalace <eevee@posteo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1519816611.000000\n"
+"X-POOTLE-MTIME: 1564235180.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10265,7 +10265,7 @@ msgctxt ""
"FILE_CABINET\n"
"LngText.text"
msgid "cabinet"
-msgstr ""
+msgstr "arkistokaappi"
#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10517,7 +10517,7 @@ msgctxt ""
"STOCK_CHART\n"
"LngText.text"
msgid "chart5"
-msgstr ""
+msgstr "osakekurssi5"
#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10526,7 +10526,7 @@ msgctxt ""
"PAGE_WITH_CIRCLED_TEXT\n"
"LngText.text"
msgid "page4"
-msgstr ""
+msgstr "sivu4"
#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10535,7 +10535,7 @@ msgctxt ""
"LEFT_WRITING_HAND\n"
"LngText.text"
msgid "writing2"
-msgstr ""
+msgstr "kirjoitus2"
#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10544,7 +10544,7 @@ msgctxt ""
"THREE_RAYS_LEFT\n"
"LngText.text"
msgid "rays"
-msgstr ""
+msgstr "säteet"
#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10553,7 +10553,7 @@ msgctxt ""
"BEAMED_DESCENDING_MUSICAL_NOTES\n"
"LngText.text"
msgid "notes3"
-msgstr ""
+msgstr "nuotit3"
#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10562,7 +10562,7 @@ msgctxt ""
"LOWER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
"LngText.text"
msgid "circle3"
-msgstr ""
+msgstr "ympyrä3"
#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10571,7 +10571,7 @@ msgctxt ""
"BEAMED_ASCENDING_MUSICAL_NOTES\n"
"LngText.text"
msgid "notes4"
-msgstr ""
+msgstr "nuotit4"
#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10580,7 +10580,7 @@ msgctxt ""
"BOOK\n"
"LngText.text"
msgid "book"
-msgstr ""
+msgstr "kirja"
#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10589,7 +10589,7 @@ msgctxt ""
"DECREASE_FONT_SIZE_SYMBOL\n"
"LngText.text"
msgid "font"
-msgstr ""
+msgstr "fontti"
#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10598,7 +10598,7 @@ msgctxt ""
"UPPER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
"LngText.text"
msgid "circle4"
-msgstr ""
+msgstr "ympyrä4"
#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10607,7 +10607,7 @@ msgctxt ""
"BULLHORN\n"
"LngText.text"
msgid "bullhorn"
-msgstr ""
+msgstr "megafoni"
#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10616,7 +10616,7 @@ msgctxt ""
"BULLHORN_WITH_SOUND_WAVES\n"
"LngText.text"
msgid "bullhorn2"
-msgstr ""
+msgstr "megafoni2"
#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10625,7 +10625,7 @@ msgctxt ""
"LEFT_HAND_TELEPHONE_RECEIVER\n"
"LngText.text"
msgid "receiver2"
-msgstr ""
+msgstr "luuri2"
#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10634,7 +10634,7 @@ msgctxt ""
"WHITE_TOUCHTONE_TELEPHONE\n"
"LngText.text"
msgid "phone3"
-msgstr ""
+msgstr "puhelin3"
#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10643,7 +10643,7 @@ msgctxt ""
"TELEPHONE_RECEIVER_WITH_PAGE\n"
"LngText.text"
msgid "receiver4"
-msgstr ""
+msgstr "luuri4"
#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10652,7 +10652,7 @@ msgctxt ""
"RIGHT_HAND_TELEPHONE_RECEIVER\n"
"LngText.text"
msgid "receiver3"
-msgstr ""
+msgstr "luuri3"
#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10661,7 +10661,7 @@ msgctxt ""
"BLACK_TOUCHTONE_TELEPHONE\n"
"LngText.text"
msgid "phone4"
-msgstr ""
+msgstr "puhelin4"
#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10670,7 +10670,7 @@ msgctxt ""
"SIDEWAYS_BLACK_LEFT_POINTING_INDEX\n"
"LngText.text"
msgid "left4"
-msgstr ""
+msgstr "vasen4"
#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10679,7 +10679,7 @@ msgctxt ""
"TURNED_OK_HAND_SIGN\n"
"LngText.text"
msgid "ok2"
-msgstr ""
+msgstr "ok2"
#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10688,7 +10688,7 @@ msgctxt ""
"BLACK_LEFT_POINTING_BACKHAND_INDEX\n"
"LngText.text"
msgid "left5"
-msgstr ""
+msgstr "vasen5"
#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10697,7 +10697,7 @@ msgctxt ""
"THREE_RAYS_BELOW\n"
"LngText.text"
msgid "rays2"
-msgstr ""
+msgstr "säteet2"
#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10706,7 +10706,7 @@ msgctxt ""
"SIDEWAYS_BLACK_RIGHT_POINTING_INDEX\n"
"LngText.text"
msgid "right4"
-msgstr ""
+msgstr "oikealle4"
#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10715,7 +10715,7 @@ msgctxt ""
"SIDEWAYS_WHITE_DOWN_POINTING_INDEX\n"
"LngText.text"
msgid "down3"
-msgstr ""
+msgstr "alas3"
#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10724,7 +10724,7 @@ msgctxt ""
"SIDEWAYS_WHITE_UP_POINTING_INDEX\n"
"LngText.text"
msgid "up3"
-msgstr ""
+msgstr "ylös3"
#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10733,7 +10733,7 @@ msgctxt ""
"BLACK_DROPLET\n"
"LngText.text"
msgid "droplet2"
-msgstr ""
+msgstr "pisara2"
#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10742,7 +10742,7 @@ msgctxt ""
"MUSICAL_KEYBOARD_WITH_JACKS\n"
"LngText.text"
msgid "synthesizer"
-msgstr ""
+msgstr "syntetisaattori"
#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10751,7 +10751,7 @@ msgctxt ""
"BOUQUET_OF_FLOWERS\n"
"LngText.text"
msgid "bouquet2"
-msgstr ""
+msgstr "kukkakimppu2"
#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10760,7 +10760,7 @@ msgctxt ""
"HEART_WITH_TIP_ON_THE_LEFT\n"
"LngText.text"
msgid "heart2"
-msgstr ""
+msgstr "sydän2"
#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10769,7 +10769,7 @@ msgctxt ""
"BLACK_SKULL_AND_CROSSBONES\n"
"LngText.text"
msgid "pirate"
-msgstr ""
+msgstr "merirosvo"
#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10778,7 +10778,7 @@ msgctxt ""
"TELEPHONE_ON_TOP_OF_MODEM\n"
"LngText.text"
msgid "modem"
-msgstr ""
+msgstr "modeemi"
#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10787,7 +10787,7 @@ msgctxt ""
"NO_PIRACY\n"
"LngText.text"
msgid "no piracy"
-msgstr ""
+msgstr "ei piratismia"
#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10805,7 +10805,7 @@ msgctxt ""
"CELTIC_CROSS\n"
"LngText.text"
msgid "Celtic cross"
-msgstr ""
+msgstr "kelttiläinen risti"
#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10814,7 +10814,7 @@ msgctxt ""
"WHITE_DOWN_POINTING_LEFT_HAND_INDEX\n"
"LngText.text"
msgid "down4"
-msgstr ""
+msgstr "alas4"
#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10823,7 +10823,7 @@ msgctxt ""
"PEN_OVER_STAMPED_ENVELOPE\n"
"LngText.text"
msgid "envelope4"
-msgstr ""
+msgstr "kirjekuori4"
#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10832,7 +10832,7 @@ msgctxt ""
"STAMPED_ENVELOPE\n"
"LngText.text"
msgid "envelope2"
-msgstr ""
+msgstr "kirjekuori2"
#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10841,7 +10841,7 @@ msgctxt ""
"THREE_RAYS_ABOVE\n"
"LngText.text"
msgid "rays3"
-msgstr ""
+msgstr "säteet3"
#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10850,7 +10850,7 @@ msgctxt ""
"LOWER_LEFT_PENCIL\n"
"LngText.text"
msgid "pencil4"
-msgstr ""
+msgstr "lyijykynä4"
#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10859,7 +10859,7 @@ msgctxt ""
"BACK_OF_ENVELOPE\n"
"LngText.text"
msgid "envelope3"
-msgstr ""
+msgstr "kirjekuori3"
#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10877,7 +10877,7 @@ msgctxt ""
"ENVELOPE_WITH_LIGHTNING\n"
"LngText.text"
msgid "envelope5"
-msgstr ""
+msgstr "kirjekuori5"
#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10886,7 +10886,7 @@ msgctxt ""
"CLAMSHELL_MOBILE_PHONE\n"
"LngText.text"
msgid "mobile2"
-msgstr ""
+msgstr "kännykkä2"
#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10895,7 +10895,7 @@ msgctxt ""
"FLYING_ENVELOPE\n"
"LngText.text"
msgid "envelope6"
-msgstr ""
+msgstr "kirjekuori6"
#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10904,7 +10904,7 @@ msgctxt ""
"SIDEWAYS_WHITE_LEFT_POINTING_INDEX\n"
"LngText.text"
msgid "left6"
-msgstr ""
+msgstr "vasemmalle6"
#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10913,7 +10913,7 @@ msgctxt ""
"SIDEWAYS_WHITE_RIGHT_POINTING_INDEX\n"
"LngText.text"
msgid "right5"
-msgstr ""
+msgstr "oikealle5"
#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10922,7 +10922,7 @@ msgctxt ""
"MAXIMIZE\n"
"LngText.text"
msgid "maximize"
-msgstr ""
+msgstr "suurenna"
#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10940,7 +10940,7 @@ msgctxt ""
"PAGE\n"
"LngText.text"
msgid "page2"
-msgstr ""
+msgstr "sivu2"
#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10949,7 +10949,7 @@ msgctxt ""
"PAGES\n"
"LngText.text"
msgid "pages"
-msgstr ""
+msgstr "sivut"
#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10958,7 +10958,7 @@ msgctxt ""
"CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS\n"
"LngText.text"
msgid "arrows"
-msgstr ""
+msgstr "nuolet"
#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10967,7 +10967,7 @@ msgctxt ""
"INCREASE_FONT_SIZE_SYMBOL\n"
"LngText.text"
msgid "font2"
-msgstr ""
+msgstr "fontti2"
#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10976,7 +10976,7 @@ msgctxt ""
"MINIMIZE\n"
"LngText.text"
msgid "minimize"
-msgstr ""
+msgstr "pienennä"
#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10985,7 +10985,7 @@ msgctxt ""
"CANCELLATION_X\n"
"LngText.text"
msgid "cancel"
-msgstr ""
+msgstr "peruuta"
#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10994,7 +10994,7 @@ msgctxt ""
"DESKTOP_WINDOW\n"
"LngText.text"
msgid "window"
-msgstr ""
+msgstr "ikkuna"
#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11003,7 +11003,7 @@ msgctxt ""
"EMPTY_PAGE\n"
"LngText.text"
msgid "empty page"
-msgstr ""
+msgstr "tyhjä sivu"
#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11021,7 +11021,7 @@ msgctxt ""
"EMPTY_PAGES\n"
"LngText.text"
msgid "empty pages"
-msgstr ""
+msgstr "tyhjät sivut"
#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11048,7 +11048,7 @@ msgctxt ""
"NOTE_PAD\n"
"LngText.text"
msgid "note pad"
-msgstr ""
+msgstr "muistilehtiö"
#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11066,7 +11066,7 @@ msgctxt ""
"EMPTY_NOTE_PAD\n"
"LngText.text"
msgid "empty note pad"
-msgstr ""
+msgstr "tyhjä muistilehtiö"
#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11084,7 +11084,7 @@ msgctxt ""
"OPTICAL_DISC_ICON\n"
"LngText.text"
msgid "optical disc"
-msgstr ""
+msgstr "optinen levy"
#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11093,7 +11093,7 @@ msgctxt ""
"FOLDER\n"
"LngText.text"
msgid "folder3"
-msgstr ""
+msgstr "kansio3"
#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11102,7 +11102,7 @@ msgctxt ""
"BLACK_RIGHT_POINTING_BACKHAND_INDEX\n"
"LngText.text"
msgid "right6"
-msgstr ""
+msgstr "oikealle6"
#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11111,7 +11111,7 @@ msgctxt ""
"OPEN_FOLDER\n"
"LngText.text"
msgid "folder4"
-msgstr ""
+msgstr "kansio4"
#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11129,7 +11129,7 @@ msgctxt ""
"BLACK_FOLDER\n"
"LngText.text"
msgid "folder5"
-msgstr ""
+msgstr "kansio5"
#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11183,7 +11183,7 @@ msgctxt ""
"PRINTER_ICON\n"
"LngText.text"
msgid "printer2"
-msgstr ""
+msgstr "tulostin2"
#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11192,7 +11192,7 @@ msgctxt ""
"FAX_ICON\n"
"LngText.text"
msgid "fax2"
-msgstr ""
+msgstr "faksi2"
#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11201,7 +11201,7 @@ msgctxt ""
"TWO_BUTTON_MOUSE\n"
"LngText.text"
msgid "mouse4"
-msgstr ""
+msgstr "hiiri4"
#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11228,7 +11228,7 @@ msgctxt ""
"ONE_BUTTON_MOUSE\n"
"LngText.text"
msgid "mouse5"
-msgstr ""
+msgstr "hiiri5"
#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11237,7 +11237,7 @@ msgctxt ""
"HARD_DISK\n"
"LngText.text"
msgid "hard disk"
-msgstr ""
+msgstr "kiintolevy"
#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11246,7 +11246,7 @@ msgctxt ""
"POCKET_CALCULATOR\n"
"LngText.text"
msgid "calculator"
-msgstr ""
+msgstr "laskin"
#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11264,7 +11264,7 @@ msgctxt ""
"SOFT_SHELL_FLOPPY_DISK\n"
"LngText.text"
msgid "floppy2"
-msgstr ""
+msgstr "levyke2"
#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11273,7 +11273,7 @@ msgctxt ""
"WHITE_HARD_SHELL_FLOPPY_DISK\n"
"LngText.text"
msgid "floppy3"
-msgstr ""
+msgstr "levyke3"
#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11282,7 +11282,7 @@ msgctxt ""
"WIRED_KEYBOARD\n"
"LngText.text"
msgid "keyboard2"
-msgstr ""
+msgstr "näppäimistö2"
#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11291,7 +11291,7 @@ msgctxt ""
"REVERSED_VICTORY_HAND\n"
"LngText.text"
msgid "victory2"
-msgstr ""
+msgstr "voitto2"
#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11309,7 +11309,7 @@ msgctxt ""
"BLACK_HARD_SHELL_FLOPPY_DISK\n"
"LngText.text"
msgid "floppy4"
-msgstr ""
+msgstr "levyke4"
#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11318,7 +11318,7 @@ msgctxt ""
"LIPS\n"
"LngText.text"
msgid "lips"
-msgstr ""
+msgstr "huulet"
#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11327,7 +11327,7 @@ msgctxt ""
"KEYBOARD_AND_MOUSE\n"
"LngText.text"
msgid "keyboard3"
-msgstr ""
+msgstr "näppäimistö3"
#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11336,7 +11336,7 @@ msgctxt ""
"BLACK_DOWN_POINTING_BACKHAND_INDEX\n"
"LngText.text"
msgid "down5"
-msgstr ""
+msgstr "alas5"
#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11345,7 +11345,7 @@ msgctxt ""
"SIDEWAYS_BLACK_DOWN_POINTING_INDEX\n"
"LngText.text"
msgid "down6"
-msgstr ""
+msgstr "alas6"
#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11372,7 +11372,7 @@ msgctxt ""
"BLACK_PENNANT\n"
"LngText.text"
msgid "pennant"
-msgstr ""
+msgstr "viiri"
#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11381,7 +11381,7 @@ msgctxt ""
"SIDEWAYS_BLACK_UP_POINTING_INDEX\n"
"LngText.text"
msgid "up4"
-msgstr ""
+msgstr "ylös4"
#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11390,7 +11390,7 @@ msgctxt ""
"BLACK_UP_POINTING_BACKHAND_INDEX\n"
"LngText.text"
msgid "up5"
-msgstr ""
+msgstr "ylös5"
#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11399,7 +11399,7 @@ msgctxt ""
"WHITE_PENNANT\n"
"LngText.text"
msgid "pennant2"
-msgstr ""
+msgstr "viiri2"
#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11408,7 +11408,7 @@ msgctxt ""
"NOTCHED_RIGHT_SEMICIRCLE_WITH_THREE_DOTS\n"
"LngText.text"
msgid "feast2"
-msgstr ""
+msgstr "pidot2"
#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11417,7 +11417,7 @@ msgctxt ""
"REVERSED_THUMBS_DOWN_SIGN\n"
"LngText.text"
msgid "no2"
-msgstr ""
+msgstr "ei2"
#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11426,7 +11426,7 @@ msgctxt ""
"REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED\n"
"LngText.text"
msgid "hand3"
-msgstr ""
+msgstr "käsi3"
#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11435,7 +11435,7 @@ msgctxt ""
"REVERSED_THUMBS_UP_SIGN\n"
"LngText.text"
msgid "yes2"
-msgstr ""
+msgstr "kyllä2"
#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11444,7 +11444,7 @@ msgctxt ""
"RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE\n"
"LngText.text"
msgid "speaker2"
-msgstr ""
+msgstr "kaiutin2"
#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11471,7 +11471,7 @@ msgctxt ""
"RIGHT_SPEAKER\n"
"LngText.text"
msgid "speaker3"
-msgstr ""
+msgstr "kaiutin3"
#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11480,7 +11480,7 @@ msgctxt ""
"RINGING_BELL\n"
"LngText.text"
msgid "bell3"
-msgstr ""
+msgstr "soittokello3"
#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11489,7 +11489,7 @@ msgctxt ""
"WHITE_SUN\n"
"LngText.text"
msgid "sun2"
-msgstr ""
+msgstr "aurinko2"
#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11498,7 +11498,7 @@ msgctxt ""
"PROHIBITED_SIGN\n"
"LngText.text"
msgid "prohibited"
-msgstr ""
+msgstr "kielletty"
#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11525,7 +11525,7 @@ msgctxt ""
"RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES\n"
"LngText.text"
msgid "speaker4"
-msgstr ""
+msgstr "kaiutin4"
#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11543,7 +11543,7 @@ msgctxt ""
"THREE_RAYS_RIGHT\n"
"LngText.text"
msgid "rays4"
-msgstr ""
+msgstr "säteet4"
#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11552,7 +11552,7 @@ msgctxt ""
"LIGHTNING_MOOD\n"
"LngText.text"
msgid "lightning2"
-msgstr ""
+msgstr "salama2"
#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11660,7 +11660,7 @@ msgctxt ""
"ZIPPER-MOUTH_FACE\n"
"LngText.text"
msgid "zipper"
-msgstr ""
+msgstr "vetoketju"
#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11669,7 +11669,7 @@ msgctxt ""
"UPSIDE-DOWN_FACE\n"
"LngText.text"
msgid "upside-down"
-msgstr ""
+msgstr "ylösalaisin"
#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11678,7 +11678,7 @@ msgctxt ""
"MONEY-MOUTH_FACE\n"
"LngText.text"
msgid "money3"
-msgstr ""
+msgstr "raha3"
#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11687,7 +11687,7 @@ msgctxt ""
"FACE_WITH_THERMOMETER\n"
"LngText.text"
msgid "thermometer2"
-msgstr ""
+msgstr "lämpömittari2"
#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11705,7 +11705,7 @@ msgctxt ""
"NERD_FACE\n"
"LngText.text"
msgid "nerd"
-msgstr ""
+msgstr "nörtti"
#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11714,7 +11714,7 @@ msgctxt ""
"ROBOT_FACE\n"
"LngText.text"
msgid "robot"
-msgstr ""
+msgstr "robotti"
#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11768,7 +11768,7 @@ msgctxt ""
"SIGN_OF_THE_HORNS\n"
"LngText.text"
msgid "horns"
-msgstr ""
+msgstr "sarvet"
#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11786,7 +11786,7 @@ msgctxt ""
"LION_FACE\n"
"LngText.text"
msgid "lion"
-msgstr ""
+msgstr "leijona"
#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11795,7 +11795,7 @@ msgctxt ""
"UNICORN_FACE\n"
"LngText.text"
msgid "unicorn"
-msgstr ""
+msgstr "yksisarvinen"
#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11804,7 +11804,7 @@ msgctxt ""
"TURKEY\n"
"LngText.text"
msgid "turkey"
-msgstr ""
+msgstr "kalkkuna"
#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11831,7 +11831,7 @@ msgctxt ""
"CHEESE_WEDGE\n"
"LngText.text"
msgid "cheese"
-msgstr ""
+msgstr "juusto"
#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11885,7 +11885,7 @@ msgctxt ""
"AMPHORA\n"
"LngText.text"
msgid "amphora"
-msgstr ""
+msgstr "amfora"
#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11894,7 +11894,7 @@ msgctxt ""
"MOSQUE\n"
"LngText.text"
msgid "mosque"
-msgstr ""
+msgstr "moskeija"
#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11903,7 +11903,7 @@ msgctxt ""
"SYNAGOGUE\n"
"LngText.text"
msgid "synagogue"
-msgstr ""
+msgstr "synagoga"
#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11921,7 +11921,7 @@ msgctxt ""
"VOLLEYBALL\n"
"LngText.text"
msgid "volleyball"
-msgstr ""
+msgstr "lentopallo"
#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11930,7 +11930,7 @@ msgctxt ""
"CRICKET_BAT_AND_BALL\n"
"LngText.text"
msgid "cricket"
-msgstr ""
+msgstr "kriketti"
#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11966,7 +11966,7 @@ msgctxt ""
"BADMINTON_RACQUET_AND_SHUTTLECOCK\n"
"LngText.text"
msgid "badminton"
-msgstr ""
+msgstr "sulkapallo"
#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11975,7 +11975,7 @@ msgctxt ""
"BOW_AND_ARROW\n"
"LngText.text"
msgid "bow"
-msgstr ""
+msgstr "jousi"
#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11984,7 +11984,7 @@ msgctxt ""
"PLACE_OF_WORSHIP\n"
"LngText.text"
msgid "worship"
-msgstr ""
+msgstr "uskonnonharjoitus"
#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11993,7 +11993,7 @@ msgctxt ""
"MENORAH_WITH_NINE_BRANCHES\n"
"LngText.text"
msgid "menorah"
-msgstr ""
+msgstr "menora"
#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12074,7 +12074,7 @@ msgctxt ""
"MAN_IN_TUXEDO\n"
"LngText.text"
msgid "groom"
-msgstr ""
+msgstr "sulhanen"
#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12092,7 +12092,7 @@ msgctxt ""
"MRS._CLAUS\n"
"LngText.text"
msgid "mrs. claus"
-msgstr ""
+msgstr "joulumuori"
#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12119,7 +12119,7 @@ msgctxt ""
"MAN_DANCING\n"
"LngText.text"
msgid "dancer2"
-msgstr ""
+msgstr "tanssija2"
#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12128,7 +12128,7 @@ msgctxt ""
"PERSON_FENCING\n"
"LngText.text"
msgid "fencer"
-msgstr ""
+msgstr "miekkailija"
#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12137,7 +12137,7 @@ msgctxt ""
"PERSON_CARTWHEELING\n"
"LngText.text"
msgid "gymnast"
-msgstr ""
+msgstr "voimistelija"
#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12146,7 +12146,7 @@ msgctxt ""
"PEOPLE_WRESTLING\n"
"LngText.text"
msgid "wrestling"
-msgstr ""
+msgstr "paini"
#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12155,7 +12155,7 @@ msgctxt ""
"PERSON_PLAYING_WATER_POLO\n"
"LngText.text"
msgid "water polo"
-msgstr ""
+msgstr "vesipallo"
#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12164,7 +12164,7 @@ msgctxt ""
"PERSON_PLAYING_HANDBALL\n"
"LngText.text"
msgid "handball"
-msgstr ""
+msgstr "käsipallo"
#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12209,7 +12209,7 @@ msgctxt ""
"LEFT-FACING_FIST\n"
"LngText.text"
msgid "fist3"
-msgstr ""
+msgstr "nyrkki3"
#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12218,7 +12218,7 @@ msgctxt ""
"RIGHT-FACING_FIST\n"
"LngText.text"
msgid "fist4"
-msgstr ""
+msgstr "nyrkki4"
#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12227,7 +12227,7 @@ msgctxt ""
"RAISED_BACK_OF_HAND\n"
"LngText.text"
msgid "hand4"
-msgstr ""
+msgstr "käsi4"
#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12245,7 +12245,7 @@ msgctxt ""
"BLACK_HEART\n"
"LngText.text"
msgid "black heart"
-msgstr ""
+msgstr "musta sydän"
#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12254,7 +12254,7 @@ msgctxt ""
"GORILLA\n"
"LngText.text"
msgid "gorilla"
-msgstr ""
+msgstr "gorilla"
#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12263,7 +12263,7 @@ msgctxt ""
"FOX_FACE\n"
"LngText.text"
msgid "fox"
-msgstr ""
+msgstr "kettu"
#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12272,7 +12272,7 @@ msgctxt ""
"DEER\n"
"LngText.text"
msgid "deer"
-msgstr ""
+msgstr "peura"
#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12281,7 +12281,7 @@ msgctxt ""
"RHINOCEROS\n"
"LngText.text"
msgid "rhinoceros"
-msgstr ""
+msgstr "sarvikuono"
#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12299,7 +12299,7 @@ msgctxt ""
"EAGLE\n"
"LngText.text"
msgid "eagle"
-msgstr ""
+msgstr "kotka"
#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12317,7 +12317,7 @@ msgctxt ""
"OWL\n"
"LngText.text"
msgid "owl"
-msgstr ""
+msgstr "pöllö"
#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12326,7 +12326,7 @@ msgctxt ""
"LIZARD\n"
"LngText.text"
msgid "lizard"
-msgstr ""
+msgstr "lisko"
#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12335,7 +12335,7 @@ msgctxt ""
"SHARK\n"
"LngText.text"
msgid "shark"
-msgstr ""
+msgstr "hai"
#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12362,7 +12362,7 @@ msgctxt ""
"BUTTERFLY\n"
"LngText.text"
msgid "butterfly"
-msgstr ""
+msgstr "perhonen"
#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12371,7 +12371,7 @@ msgctxt ""
"WILTED_FLOWER\n"
"LngText.text"
msgid "flower2"
-msgstr ""
+msgstr "kukka2"
#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12380,7 +12380,7 @@ msgctxt ""
"KIWI_FRUIT\n"
"LngText.text"
msgid "kiwi"
-msgstr ""
+msgstr "kiivi"
#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12389,7 +12389,7 @@ msgctxt ""
"AVOCADO\n"
"LngText.text"
msgid "avocado"
-msgstr ""
+msgstr "avokado"
#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12398,7 +12398,7 @@ msgctxt ""
"POTATO\n"
"LngText.text"
msgid "potato"
-msgstr ""
+msgstr "peruna"
#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12407,7 +12407,7 @@ msgctxt ""
"CARROT\n"
"LngText.text"
msgid "carrot"
-msgstr ""
+msgstr "porkkana"
#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12416,7 +12416,7 @@ msgctxt ""
"CUCUMBER\n"
"LngText.text"
msgid "cucumber"
-msgstr ""
+msgstr "kurkku"
#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12434,7 +12434,7 @@ msgctxt ""
"CROISSANT\n"
"LngText.text"
msgid "croissant"
-msgstr ""
+msgstr "voisarvi"
#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12443,7 +12443,7 @@ msgctxt ""
"BAGUETTE_BREAD\n"
"LngText.text"
msgid "bread2"
-msgstr ""
+msgstr "leipä2"
#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12452,7 +12452,7 @@ msgctxt ""
"PANCAKES\n"
"LngText.text"
msgid "pancakes"
-msgstr ""
+msgstr "pannukakut"
#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12461,7 +12461,7 @@ msgctxt ""
"BACON\n"
"LngText.text"
msgid "bacon"
-msgstr ""
+msgstr "pekoni"
#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12488,7 +12488,7 @@ msgctxt ""
"SHALLOW_PAN_OF_FOOD\n"
"LngText.text"
msgid "food"
-msgstr ""
+msgstr "ruoka"
#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12497,7 +12497,7 @@ msgctxt ""
"GREEN_SALAD\n"
"LngText.text"
msgid "salad"
-msgstr ""
+msgstr "salaatti"
#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12506,7 +12506,7 @@ msgctxt ""
"GLASS_OF_MILK\n"
"LngText.text"
msgid "milk"
-msgstr ""
+msgstr "maito"
#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12533,7 +12533,7 @@ msgctxt ""
"SPOON\n"
"LngText.text"
msgid "spoon"
-msgstr ""
+msgstr "lusikka"
#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12542,7 +12542,7 @@ msgctxt ""
"SCOOTER\n"
"LngText.text"
msgid "scooter"
-msgstr ""
+msgstr "skootteri"
#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12551,7 +12551,7 @@ msgctxt ""
"MOTOR_SCOOTER\n"
"LngText.text"
msgid "scooter2"
-msgstr ""
+msgstr "skootteri2"
#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12560,7 +12560,7 @@ msgctxt ""
"OCTAGONAL_SIGN\n"
"LngText.text"
msgid "stop"
-msgstr ""
+msgstr "stop"
#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12569,7 +12569,7 @@ msgctxt ""
"CANOE\n"
"LngText.text"
msgid "canoe"
-msgstr ""
+msgstr "kanootti"
#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12578,7 +12578,7 @@ msgctxt ""
"1ST_PLACE_MEDAL\n"
"LngText.text"
msgid "gold"
-msgstr ""
+msgstr "kultamitali"
#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12587,7 +12587,7 @@ msgctxt ""
"2ND_PLACE_MEDAL\n"
"LngText.text"
msgid "silver"
-msgstr ""
+msgstr "hopeamitali"
#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12596,7 +12596,7 @@ msgctxt ""
"3RD_PLACE_MEDAL\n"
"LngText.text"
msgid "bronze"
-msgstr ""
+msgstr "pronssimitali"
#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12605,7 +12605,7 @@ msgctxt ""
"BOXING_GLOVE\n"
"LngText.text"
msgid "boxing"
-msgstr ""
+msgstr "nyrkkeily"
#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12614,7 +12614,7 @@ msgctxt ""
"MARTIAL_ARTS_UNIFORM\n"
"LngText.text"
msgid "judo"
-msgstr ""
+msgstr "judo"
#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12623,7 +12623,7 @@ msgctxt ""
"GOAL_NET\n"
"LngText.text"
msgid "soccer2"
-msgstr ""
+msgstr "jalkapallo2"
#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12704,7 +12704,7 @@ msgctxt ""
"FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n"
"LngText.text"
msgid "hush"
-msgstr ""
+msgstr "hys"
#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12722,7 +12722,7 @@ msgctxt ""
"FACE_WITH_MONOCLE\n"
"LngText.text"
msgid "monocle"
-msgstr ""
+msgstr "monokkeli"
#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12731,7 +12731,7 @@ msgctxt ""
"CHILD\n"
"LngText.text"
msgid "child"
-msgstr ""
+msgstr "lapsi"
#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12740,7 +12740,7 @@ msgctxt ""
"ADULT\n"
"LngText.text"
msgid "adult"
-msgstr ""
+msgstr "aikuinen"
#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12749,7 +12749,7 @@ msgctxt ""
"OLDER_ADULT\n"
"LngText.text"
msgid "old"
-msgstr ""
+msgstr "vanha"
#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12767,7 +12767,7 @@ msgctxt ""
"BEARDED_PERSON\n"
"LngText.text"
msgid "beard"
-msgstr ""
+msgstr "parta"
#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12776,7 +12776,7 @@ msgctxt ""
"BREAST-FEEDING\n"
"LngText.text"
msgid "baby3"
-msgstr ""
+msgstr "vauva3"
#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12794,7 +12794,7 @@ msgctxt ""
"FAIRY\n"
"LngText.text"
msgid "fairy"
-msgstr ""
+msgstr "keiju"
#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12803,7 +12803,7 @@ msgctxt ""
"VAMPIRE\n"
"LngText.text"
msgid "vampire"
-msgstr ""
+msgstr "vampyyri"
#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12839,7 +12839,7 @@ msgctxt ""
"ZOMBIE\n"
"LngText.text"
msgid "zombie"
-msgstr ""
+msgstr "zombi"
#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12848,7 +12848,7 @@ msgctxt ""
"PERSON_IN_STEAMY_ROOM\n"
"LngText.text"
msgid "sauna"
-msgstr ""
+msgstr "sauna"
#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12857,7 +12857,7 @@ msgctxt ""
"PERSON_CLIMBING\n"
"LngText.text"
msgid "climber"
-msgstr ""
+msgstr "kiipeilijä"
#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12866,7 +12866,7 @@ msgctxt ""
"PERSON_IN_LOTUS_POSITION\n"
"LngText.text"
msgid "yoga"
-msgstr ""
+msgstr "jooga"
#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12875,7 +12875,7 @@ msgctxt ""
"I_LOVE_YOU_HAND_SIGN\n"
"LngText.text"
msgid "love2"
-msgstr ""
+msgstr "rakkaus2"
#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12893,7 +12893,7 @@ msgctxt ""
"BRAIN\n"
"LngText.text"
msgid "brain"
-msgstr ""
+msgstr "aivot"
#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12902,7 +12902,7 @@ msgctxt ""
"ORANGE_HEART\n"
"LngText.text"
msgid "orange heart"
-msgstr ""
+msgstr "oranssi sydän"
#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12938,7 +12938,7 @@ msgctxt ""
"SOCKS\n"
"LngText.text"
msgid "socks"
-msgstr ""
+msgstr "sukat"
#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12956,7 +12956,7 @@ msgctxt ""
"ZEBRA\n"
"LngText.text"
msgid "zebra"
-msgstr ""
+msgstr "seepra"
#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12965,7 +12965,7 @@ msgctxt ""
"GIRAFFE\n"
"LngText.text"
msgid "giraffe"
-msgstr ""
+msgstr "kirahvi"
#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12974,7 +12974,7 @@ msgctxt ""
"HEDGEHOG\n"
"LngText.text"
msgid "hedgehog"
-msgstr ""
+msgstr "siili"
#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13001,7 +13001,7 @@ msgctxt ""
"CRICKET\n"
"LngText.text"
msgid "cricket2"
-msgstr ""
+msgstr "kriketti2"
#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13010,7 +13010,7 @@ msgctxt ""
"COCONUT\n"
"LngText.text"
msgid "coconut"
-msgstr ""
+msgstr "kookospähkinä"
#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13019,7 +13019,7 @@ msgctxt ""
"BROCCOLI\n"
"LngText.text"
msgid "broccoli"
-msgstr ""
+msgstr "parsakaali"
#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13037,7 +13037,7 @@ msgctxt ""
"CUT_OF_MEAT\n"
"LngText.text"
msgid "steak"
-msgstr ""
+msgstr "pihvi"
#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13046,7 +13046,7 @@ msgctxt ""
"SANDWICH\n"
"LngText.text"
msgid "sandwich"
-msgstr ""
+msgstr "voileipä"
#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13064,7 +13064,7 @@ msgctxt ""
"CANNED_FOOD\n"
"LngText.text"
msgid "can"
-msgstr ""
+msgstr "tölkki"
#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13082,7 +13082,7 @@ msgctxt ""
"FORTUNE_COOKIE\n"
"LngText.text"
msgid "cookie2"
-msgstr ""
+msgstr "keksi2"
#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13100,7 +13100,7 @@ msgctxt ""
"PIE\n"
"LngText.text"
msgid "pie"
-msgstr ""
+msgstr "piirakka"
#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13118,7 +13118,7 @@ msgctxt ""
"CHOPSTICKS\n"
"LngText.text"
msgid "chopsticks"
-msgstr ""
+msgstr "syömäpuikot"
#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13127,7 +13127,7 @@ msgctxt ""
"FLYING_SAUCER\n"
"LngText.text"
msgid "ufo"
-msgstr ""
+msgstr "ufo"
#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13136,7 +13136,7 @@ msgctxt ""
"SLED\n"
"LngText.text"
msgid "sled"
-msgstr ""
+msgstr "kelkka"
#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13145,7 +13145,7 @@ msgctxt ""
"CURLING_STONE\n"
"LngText.text"
msgid "curling"
-msgstr ""
+msgstr "curling"
#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13154,7 +13154,7 @@ msgctxt ""
"BITCOIN_SIGN\n"
"LngText.text"
msgid "bitcoin"
-msgstr ""
+msgstr "bitcoin"
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/fi/extras/source/gallery/share.po b/source/fi/extras/source/gallery/share.po
index 6c1f5d4eea1..e62948364c6 100644
--- a/source/fi/extras/source/gallery/share.po
+++ b/source/fi/extras/source/gallery/share.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: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2019-07-16 10:57+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-27 13:07+0000\n"
+"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\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: 1563274640.000000\n"
+"X-POOTLE-MTIME: 1564232845.000000\n"
#: gallery_names.ulf
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"backgrounds\n"
"LngText.text"
msgid "Backgrounds"
-msgstr "Taustakuvat"
+msgstr "Taustat"
#: gallery_names.ulf
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"diagrams\n"
"LngText.text"
msgid "Diagrams"
-msgstr "Diagrammit"
+msgstr "Kaaviot"
#: gallery_names.ulf
msgctxt ""
diff --git a/source/fi/filter/messages.po b/source/fi/filter/messages.po
index 0dc8da975b0..574acde86ac 100644
--- a/source/fi/filter/messages.po
+++ b/source/fi/filter/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-16 12:48+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-23 16:54+0000\n"
+"Last-Translator: tjhietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563281288.000000\n"
+"X-POOTLE-MTIME: 1563900856.000000\n"
#: filter/inc/strings.hrc:25
msgctxt "STR_UNKNOWN_APPLICATION"
@@ -418,7 +418,7 @@ msgstr "Hybridi-PDF (sisällytä ODF-tiedosto)"
#: filter/uiconfig/ui/pdfgeneralpage.ui:454
msgctxt "pdfgeneralpage|embed|tooltip_text"
msgid "Creates a PDF that is easily editable in %PRODUCTNAME"
-msgstr "Tekee tästä PDF:stä helposti %PRODUCTNAMEssa muokattavan"
+msgstr "Luo PDF-tiedoston, jota voi helposti muokata %PRODUCTNAMEssa"
#: filter/uiconfig/ui/pdfgeneralpage.ui:466
msgctxt "pdfgeneralpage|tagged"
diff --git a/source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 20918ac747c..71b8130ea05 100644
--- a/source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-16 11:44+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-23 16:32+0000\n"
+"Last-Translator: tjhietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\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: 1563277479.000000\n"
+"X-POOTLE-MTIME: 1563899568.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -1670,7 +1670,7 @@ msgctxt ""
"OOO_CONTROL_124\n"
"LngText.text"
msgid "Build contributed in collaboration with the community by [Manufacturer]. For credits, see: https://www.documentfoundation.org"
-msgstr ""
+msgstr "Ohjelmiston on kehittänyt [Manufacturer] yhteistyössä yhteisön kanssa. Katso tarkemmat tiedot tekijöistä osoitteesta https://www.documentfoundation.org"
#: Control.ulf
msgctxt ""
@@ -1910,7 +1910,7 @@ msgctxt ""
"OOO_CONTROL_161\n"
"LngText.text"
msgid "{&DialogHeading}Welcome to the Patch for [ProductName]"
-msgstr ""
+msgstr "{&DialogHeading}Tervetuloa [ProductName]-ohjelmiston korjaustiedoston asennukseen"
#: Control.ulf
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"OOO_ERROR_131\n"
"LngText.text"
msgid "Installing a pre-requisite [2] failed. You might need to manually install it from Microsoft site to be able to run the product.[3]"
-msgstr ""
+msgstr "Vaadittavan osan [2] asennus epäonnistui. Sinun täytyy ehkä asentaa se käsin Microsoftin sivustolta voidaksesi käyttää tuotetta.[3]"
#: LaunchCo.ulf
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 a6fdf24f58e..1f773f00de2 100644
--- a/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fi/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-16 13:40+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-27 18:50+0000\n"
+"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\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: 1563284415.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1564253430.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Repeat Search"
-msgstr "Tee haku uudelleen"
+msgstr "Toista haku"
#: BasicIDECommands.xcu
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Lomakkeen vaakavierityspalkki"
#: BasicIDECommands.xcu
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear"
-msgstr ""
+msgstr "Tyhjennä"
#: CalcCommands.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clear ~Direct Formatting"
-msgstr ""
+msgstr "Tyhjennä suora muotoilu"
#: CalcCommands.xcu
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Direct Formatting"
-msgstr ""
+msgstr "Tyhjennä suora muotoilu"
#: CalcCommands.xcu
msgctxt ""
@@ -1004,7 +1004,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert or Edit Pivot Table"
-msgstr ""
+msgstr "Lisää tai muokkaa pivot-taulukkoa"
#: CalcCommands.xcu
msgctxt ""
@@ -1580,7 +1580,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Down"
-msgstr ""
+msgstr "Täytä alas"
#: CalcCommands.xcu
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Right"
-msgstr ""
+msgstr "Täytä oikealle"
#: CalcCommands.xcu
msgctxt ""
@@ -1616,7 +1616,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Up"
-msgstr ""
+msgstr "Täytä ylös"
#: CalcCommands.xcu
msgctxt ""
@@ -1634,7 +1634,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Left"
-msgstr ""
+msgstr "Täytä vasemmalle"
#: CalcCommands.xcu
msgctxt ""
@@ -1670,7 +1670,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Sheets..."
-msgstr ""
+msgstr "Täytä taulukot..."
#: CalcCommands.xcu
msgctxt ""
@@ -1688,7 +1688,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill S~eries..."
-msgstr ""
+msgstr "Täytä sarja..."
#: CalcCommands.xcu
msgctxt ""
@@ -1706,7 +1706,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill R~andom Number..."
-msgstr ""
+msgstr "Täytä satunnaisluvuilla..."
#: CalcCommands.xcu
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Z-test..."
-msgstr ""
+msgstr "Z-testi..."
#: CalcCommands.xcu
msgctxt ""
@@ -1832,7 +1832,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~ourier Analysis..."
-msgstr ""
+msgstr "Fourier-analyysi..."
#: CalcCommands.xcu
msgctxt ""
@@ -2183,7 +2183,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Track Change Comment"
-msgstr ""
+msgstr "Lisää muutoskommentti"
#: CalcCommands.xcu
msgctxt ""
@@ -3551,7 +3551,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Thousands Separator"
-msgstr ""
+msgstr "Tuhaterotin"
#: CalcCommands.xcu
msgctxt ""
@@ -3641,7 +3641,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Anchor to ~cell (move with cell)"
-msgstr ""
+msgstr "Ankkuroi soluun (siirtyy solun mukana)"
#: CalcCommands.xcu
msgctxt ""
@@ -3650,7 +3650,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Anchor: To Cell (~resize with cell)"
-msgstr ""
+msgstr "Ankkuroi: Soluun (koko muuttuu solun mukana)"
#: CalcCommands.xcu
msgctxt ""
@@ -3659,7 +3659,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To Cell (~resize with cell)"
-msgstr ""
+msgstr "Soluun (koko muuttuu solun mukana)"
#: CalcCommands.xcu
msgctxt ""
@@ -3668,7 +3668,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Anchor to cell (move and ~resize with cell)"
-msgstr ""
+msgstr "Ankkuroi soluun (sijainti ja koko muuttuvat solun mukana)"
#: CalcCommands.xcu
msgctxt ""
@@ -3704,7 +3704,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "View Grid Lines"
-msgstr ""
+msgstr "Näytä ruudukko"
#: CalcCommands.xcu
msgctxt ""
@@ -4127,7 +4127,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert..."
-msgstr "Lisää..."
+msgstr "~Lisää..."
#: CalcCommands.xcu
msgctxt ""
@@ -4388,7 +4388,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Neutral"
-msgstr ""
+msgstr "Neutraali"
#: CalcCommands.xcu
msgctxt ""
@@ -4442,7 +4442,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Footnote"
-msgstr ""
+msgstr "Alaviite"
#: CalcCommands.xcu
msgctxt ""
@@ -4559,7 +4559,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formula Bar"
-msgstr ""
+msgstr "Kaavarivi"
#: CalcWindowState.xcu
msgctxt ""
@@ -6980,7 +6980,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report As Email..."
-msgstr ""
+msgstr "Raportti sähköpostina..."
#: DbuCommands.xcu
msgctxt ""
@@ -7124,7 +7124,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Shape"
-msgstr ""
+msgstr "~Muoto"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7196,7 +7196,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Impress R~emote..."
-msgstr ""
+msgstr "Impressin kauko-ohjain..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8555,7 +8555,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Interactive transparency tool"
-msgstr ""
+msgstr "Vuorovaikutteinen läpinäkyvyystyökalu"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9140,7 +9140,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom & Pan"
-msgstr ""
+msgstr "Zoomaa ja panoroi"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9149,7 +9149,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Zoom & Pan (CTRL to Zoom Out, SHIFT to Pan)"
-msgstr ""
+msgstr "Zoomaa ja panoroi (CTRL loitontaa, vaihtonäppäin panoroi)"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9617,7 +9617,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Ta~ble Properties..."
-msgstr ""
+msgstr "Taulukon ominaisuudet..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -16187,7 +16187,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Double Underline"
-msgstr ""
+msgstr "Kaksinkertainen alleviivaus"
#: GenericCommands.xcu
msgctxt ""
@@ -16412,7 +16412,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Align Center"
-msgstr ""
+msgstr "Tasaa keskelle"
#: GenericCommands.xcu
msgctxt ""
@@ -16853,7 +16853,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rectangle"
-msgstr ""
+msgstr "Suorakulmio"
#: GenericCommands.xcu
msgctxt ""
@@ -17602,7 +17602,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Dimen~sions..."
-msgstr ""
+msgstr "Mitat..."
#: GenericCommands.xcu
msgctxt ""
@@ -17674,7 +17674,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cycle Case"
-msgstr ""
+msgstr "Kierrätä kirjainkokoa"
#: GenericCommands.xcu
msgctxt ""
@@ -17683,7 +17683,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Cycle Case (Title Case, Sentence case, UPPERCASE, lowercase)"
-msgstr ""
+msgstr "Kierrätä kirjainkokoa (Isot Alkukirjaimet, Iso virkkeen alkukirjain, ISOT KIRJAIMET, pienet kirjaimet)"
#: GenericCommands.xcu
msgctxt ""
@@ -18133,7 +18133,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Update Selected Style"
-msgstr ""
+msgstr "Päivitä valittu tyyli"
#: GenericCommands.xcu
msgctxt ""
@@ -18844,7 +18844,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fo~rm"
-msgstr ""
+msgstr "Lomak~e"
#: GenericCommands.xcu
msgctxt ""
@@ -18871,7 +18871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Taulukkotyylit"
#: GenericCommands.xcu
msgctxt ""
@@ -20185,7 +20185,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Protect..."
-msgstr ""
+msgstr "Suojaa..."
#: GenericCommands.xcu
msgctxt ""
@@ -20194,7 +20194,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Protect Track Changes"
-msgstr ""
+msgstr "Suojaa muutoshistoria"
#: GenericCommands.xcu
msgctxt ""
@@ -20392,7 +20392,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear"
-msgstr ""
+msgstr "Tyhjennä"
#: GenericCommands.xcu
msgctxt ""
@@ -20401,7 +20401,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clear ~Direct Formatting"
-msgstr ""
+msgstr "Tyhjennä suora muotoilu"
#: GenericCommands.xcu
msgctxt ""
@@ -20410,7 +20410,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Direct Formatting"
-msgstr ""
+msgstr "Tyhjennä suora muotoilu"
#: GenericCommands.xcu
msgctxt ""
@@ -20788,7 +20788,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Export As"
-msgstr "Vie nimellä"
+msgstr "Vie muodossa"
#: GenericCommands.xcu
msgctxt ""
@@ -20860,7 +20860,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Export Directly to PDF as Bitmap"
-msgstr ""
+msgstr "Vie suoraan PDF-tiedostoon bittikarttana"
#: GenericCommands.xcu
msgctxt ""
@@ -20869,7 +20869,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Export Directly to PDF as Bitmap"
-msgstr ""
+msgstr "Vie suoraan PDF-tiedostoon bittikarttana"
#: GenericCommands.xcu
msgctxt ""
@@ -21054,6 +21054,24 @@ msgstr "Lahjoita LibreOfficelle"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
@@ -21796,7 +21814,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Email"
-msgstr ""
+msgstr "Sähköposti"
#: GenericCommands.xcu
msgctxt ""
@@ -21931,7 +21949,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Control Wizards"
-msgstr ""
+msgstr "Lomakekenttien ohjattu luonti"
#: GenericCommands.xcu
msgctxt ""
@@ -21940,7 +21958,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Control Wizards"
-msgstr ""
+msgstr "Kenttien ohjattu luonti"
#: GenericCommands.xcu
msgctxt ""
@@ -21949,7 +21967,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Form Control Wizards"
-msgstr ""
+msgstr "Ohjatut toiminnot päälle tai pois"
#: GenericCommands.xcu
msgctxt ""
@@ -22561,7 +22579,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sum"
-msgstr ""
+msgstr "Summa"
#: GenericCommands.xcu
msgctxt ""
@@ -23065,7 +23083,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert non-br~eaking hyphen"
-msgstr ""
+msgstr "Lisää sitova yhdysmerkki"
#: GenericCommands.xcu
msgctxt ""
@@ -23074,7 +23092,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert s~oft Hyphen"
-msgstr ""
+msgstr "Lisää ehdollinen yhdysmerkki"
#: GenericCommands.xcu
msgctxt ""
@@ -23083,7 +23101,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~non-breaking space"
-msgstr ""
+msgstr "Lisää sitova välilyönti"
#: GenericCommands.xcu
msgctxt ""
@@ -23092,7 +23110,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert n~arrow no-break space (U+202F)"
-msgstr ""
+msgstr "Lisää kapea sitova välilyönti (U+202F)"
#: GenericCommands.xcu
msgctxt ""
@@ -23272,7 +23290,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Apply document classification"
-msgstr ""
+msgstr "Aseta asiakirjan luokittelu"
#: GenericCommands.xcu
msgctxt ""
@@ -23281,7 +23299,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage Document Classification"
-msgstr ""
+msgstr "Hallitse asiakirjan luokittelua"
#: GenericCommands.xcu
msgctxt ""
@@ -23290,7 +23308,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage Paragraph Classification"
-msgstr ""
+msgstr "Hallitse kappaleen luokittelua"
#: GenericCommands.xcu
msgctxt ""
@@ -23353,7 +23371,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Navigate"
-msgstr ""
+msgstr "Siirry"
#: GenericCommands.xcu
msgctxt ""
@@ -23407,7 +23425,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regenerate Diagram"
-msgstr ""
+msgstr "Luo kaavio uudelleen"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23699,14 +23717,13 @@ msgid "Arrows"
msgstr "Nuolet"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/choosemodebar\n"
"UIName\n"
"value.text"
msgid "Transformations"
-msgstr "Muunnos"
+msgstr "Muunnokset"
#: ImpressWindowState.xcu
msgctxt ""
@@ -24978,14 +24995,13 @@ msgid "Gallery"
msgstr "Galleria"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.SdMasterPagesDeck\n"
"Title\n"
"value.text"
msgid "Master Slides"
-msgstr "Diapohja"
+msgstr "Diapohjat"
#: Sidebar.xcu
msgctxt ""
@@ -25543,7 +25559,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual Single"
-msgstr ""
+msgstr "Yksirivinen kontekstisidonnainen"
#: ToolbarMode.xcu
msgctxt ""
@@ -25741,7 +25757,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual Single"
-msgstr ""
+msgstr "Yksirivinen kontekstisidonnainen"
#: ToolbarMode.xcu
msgctxt ""
@@ -26104,14 +26120,13 @@ msgid "Reject Change"
msgstr "Hylkää muutos"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:RejectAllTrackedChanges\n"
"Label\n"
"value.text"
msgid "Reject All"
-msgstr "Valitse kaikki"
+msgstr "Hylkää kaikki"
#: WriterCommands.xcu
msgctxt ""
@@ -26120,7 +26135,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Reject All Tracked Changes"
-msgstr ""
+msgstr "Hylkää kaikki jäljitetyt muutokset"
#: WriterCommands.xcu
msgctxt ""
@@ -26174,7 +26189,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accept All Tracked Changes"
-msgstr ""
+msgstr "Hyväksy kaikki jäljitetyt muutokset"
#: WriterCommands.xcu
msgctxt ""
@@ -26309,7 +26324,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show change authorship in tooltips"
-msgstr ""
+msgstr "Näytä muutosten tekijätiedot työkaluvihjeissä"
#: WriterCommands.xcu
msgctxt ""
@@ -26318,7 +26333,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Use header/footer menu"
-msgstr ""
+msgstr "Käytä ylä-/alatunnistevalikkoa"
#: WriterCommands.xcu
msgctxt ""
@@ -26327,7 +26342,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Use the advanced popup menu to create header/footer on the fly"
-msgstr ""
+msgstr "Käytä edistynyttä ponnahdusvalikkoa ylä/alatunnisteen luomiseen lennosta"
#: WriterCommands.xcu
msgctxt ""
@@ -26921,7 +26936,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Text Attributes..."
-msgstr ""
+msgstr "Tekstin ominaisuudet..."
#: WriterCommands.xcu
msgctxt ""
@@ -27056,7 +27071,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "First ~Author"
-msgstr ""
+msgstr "Ensimmäinen tekijä"
#: WriterCommands.xcu
msgctxt ""
@@ -27335,7 +27350,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Reset R~otation"
-msgstr ""
+msgstr "Palauta kierto"
#: WriterCommands.xcu
msgctxt ""
@@ -27497,7 +27512,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Columns"
-msgstr ""
+msgstr "Sivun palstat"
#: WriterCommands.xcu
msgctxt ""
@@ -27812,7 +27827,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Edit F~ields..."
-msgstr ""
+msgstr "Muokkaa kenttiä..."
#: WriterCommands.xcu
msgctxt ""
@@ -27821,7 +27836,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Lin~ks to External Files..."
-msgstr ""
+msgstr "Linkit ulkoisiin tiedostoihin..."
#: WriterCommands.xcu
msgctxt ""
@@ -29819,7 +29834,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clone"
-msgstr ""
+msgstr "Kloonaa"
#: WriterCommands.xcu
msgctxt ""
@@ -29828,7 +29843,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clone Formatting"
-msgstr ""
+msgstr "Kloonaa muotoilu"
#: WriterCommands.xcu
msgctxt ""
@@ -29846,7 +29861,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "C~haracter"
-msgstr ""
+msgstr "Merkki"
#: WriterCommands.xcu
msgctxt ""
@@ -29855,7 +29870,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "P~aragraph"
-msgstr ""
+msgstr "Kappale"
#: WriterCommands.xcu
msgctxt ""
@@ -29864,7 +29879,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Bullets and Numbering"
-msgstr ""
+msgstr "Luettelomerkit ja numerointi"
#: WriterCommands.xcu
msgctxt ""
@@ -30054,7 +30069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Horizontal ~Line"
-msgstr ""
+msgstr "Vaakaviiva"
#: WriterCommands.xcu
msgctxt ""
@@ -30075,14 +30090,13 @@ msgid "Default ~Paragraph"
msgstr "Oletuskappale"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:DefaultParaStyle\n"
"TooltipLabel\n"
"value.text"
msgid "Default Paragraph Style"
-msgstr "Aseta kappaletyyli"
+msgstr "Oletuskappaletyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30104,14 +30118,13 @@ msgid "~Title"
msgstr "~Otsikko"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:TitleParaStyle\n"
"TooltipLabel\n"
"value.text"
msgid "Title Paragraph Style"
-msgstr "Aseta kappaletyyli"
+msgstr "Otsikkokappaleen tyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30132,14 +30145,13 @@ msgid "Su~btitle"
msgstr "Alaotsikko"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:SubtitleParaStyle\n"
"TooltipLabel\n"
"value.text"
msgid "Subtitle Paragraph Style"
-msgstr "Aseta kappaletyyli"
+msgstr "Alaotsikkokappaleen tyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30166,7 +30178,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 1 Paragraph Style"
-msgstr ""
+msgstr "Otsikko 1 -kappaletyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30193,7 +30205,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 2 Paragraph Style"
-msgstr ""
+msgstr "Otsikko 2 -kappaletyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30220,7 +30232,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 3 Paragraph Style"
-msgstr ""
+msgstr "Otsikko 3 -kappaletyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30247,7 +30259,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 4 Paragraph Style"
-msgstr ""
+msgstr "Otsikko 4 -kappaletyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30274,7 +30286,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 5 Paragraph Style"
-msgstr ""
+msgstr "Otsikko 5 -kappaletyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30301,7 +30313,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 6 Paragraph Style"
-msgstr ""
+msgstr "Otsikko 6 -kappaletyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30328,7 +30340,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Quotations Paragraph Style"
-msgstr ""
+msgstr "Lainauskappaleen tyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30355,7 +30367,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Preformatted Text Paragraph Style"
-msgstr ""
+msgstr "Esimuotoillun tekstin kappaletyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30382,7 +30394,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Text Body Paragraph Style"
-msgstr ""
+msgstr "Leipätekstin kappaletyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30391,7 +30403,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default ~Character"
-msgstr ""
+msgstr "Oletusmerkki"
#: WriterCommands.xcu
msgctxt ""
@@ -30409,7 +30421,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Default Character Style"
-msgstr ""
+msgstr "Oletusmerkkityyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30436,7 +30448,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Emphasis Character Style"
-msgstr ""
+msgstr "Painotettu merkkityyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30463,7 +30475,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Strong Emphasis Character Style"
-msgstr ""
+msgstr "Vahvasti painotettu merkkityyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30490,7 +30502,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Quotation Character Style"
-msgstr ""
+msgstr "Lainauksen merkkityyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30517,7 +30529,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Source Text Character Style"
-msgstr ""
+msgstr "Lähdetekstin merkkityyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30544,7 +30556,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Bullet List Style"
-msgstr ""
+msgstr "Luettelomerkityn listan tyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30553,7 +30565,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr ""
+msgstr "Numeroitu luettelo"
#: WriterCommands.xcu
msgctxt ""
@@ -30565,14 +30577,13 @@ msgid "Number List"
msgstr "Numeroitu luettelo"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:NumberListStyle\n"
"TooltipLabel\n"
"value.text"
msgid "Number List Style"
-msgstr "Numerointityyli"
+msgstr "Numeroidun luettelon tyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30581,7 +30592,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Alphabet Uppercase List"
-msgstr ""
+msgstr "Isot kirjaimet -luettelo"
#: WriterCommands.xcu
msgctxt ""
@@ -30590,7 +30601,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Alphabet Uppercase List"
-msgstr ""
+msgstr "Isot kirjaimet -luettelo"
#: WriterCommands.xcu
msgctxt ""
@@ -30599,7 +30610,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Alphabet Uppercase List Style"
-msgstr ""
+msgstr "Isot kirjaimet -luettelotyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30608,7 +30619,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Alphabet Lowercase List"
-msgstr ""
+msgstr "Pienet kirjaimet -luettelo"
#: WriterCommands.xcu
msgctxt ""
@@ -30617,7 +30628,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Alphabet Lowercase List"
-msgstr ""
+msgstr "Pienet kirjaimet -luettelo"
#: WriterCommands.xcu
msgctxt ""
@@ -30626,7 +30637,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Alphabet Lowercase List Style"
-msgstr ""
+msgstr "Pienet kirjaimet -luettelotyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30635,7 +30646,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman Uppercase List"
-msgstr ""
+msgstr "Isot roomalaiset numerot -luettelo"
#: WriterCommands.xcu
msgctxt ""
@@ -30644,7 +30655,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman Uppercase List"
-msgstr ""
+msgstr "Isot roomalaiset numerot -luettelo"
#: WriterCommands.xcu
msgctxt ""
@@ -30653,7 +30664,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Roman Uppercase List Style"
-msgstr ""
+msgstr "Isot roomalaiset numerot -luettelotyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30662,7 +30673,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman Lowercase List"
-msgstr ""
+msgstr "Pienet roomalaiset numerot -luettelo"
#: WriterCommands.xcu
msgctxt ""
@@ -30671,7 +30682,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default Style"
-msgstr ""
+msgstr "Oletustyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30680,7 +30691,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Academic"
-msgstr ""
+msgstr "Akateeminen"
#: WriterCommands.xcu
msgctxt ""
@@ -30689,7 +30700,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Elegant"
-msgstr ""
+msgstr "Elegantti"
#: WriterCommands.xcu
msgctxt ""
@@ -30698,7 +30709,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Financial"
-msgstr ""
+msgstr "Rahoitus"
#: WriterCommands.xcu
msgctxt ""
@@ -30752,7 +30763,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Roman Lowercase List Style"
-msgstr ""
+msgstr "Pienet roomalaiset numerot -luettelotyyli"
#: WriterCommands.xcu
msgctxt ""
@@ -30797,7 +30808,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Margins"
-msgstr ""
+msgstr "Sivun marginaalit"
#: WriterCommands.xcu
msgctxt ""
@@ -30824,7 +30835,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Cell Background Color"
-msgstr ""
+msgstr "Taulukon solun taustaväri"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/fi/sc/messages.po b/source/fi/sc/messages.po
index 616b4c2d592..bde3f0090d6 100644
--- a/source/fi/sc/messages.po
+++ b/source/fi/sc/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-16 13:05+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-27 18:04+0000\n"
+"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563282329.000000\n"
+"X-POOTLE-MTIME: 1564250688.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -836,6 +836,10 @@ msgid ""
"an existing name and may not contain the characters [ ] * ? : / \\ \n"
"or the character ' (apostrophe) as first or last character."
msgstr ""
+"Taulukon nimi ei kelpaa.\n"
+"Taulukon nimeksi ei käy olemassa olevan taulukon nimi \n"
+"eikä se saa sisältää merkkejä [ ] * ? : / \\ \n"
+"eikä merkkiä ' (heittomerkki) nimen ensimmäisenä tai viimeisenä merkkinä."
#: sc/inc/globstr.hrc:185
msgctxt "STR_SCENARIO"
@@ -1877,7 +1881,7 @@ msgstr "Sisäkkäisiä taulukoita ei tueta."
#: sc/inc/globstr.hrc:395
msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
msgid "Unsupported inline array content."
-msgstr ""
+msgstr "Upotetun taulukon sisältöä ei tueta."
#: sc/inc/globstr.hrc:396
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
@@ -2299,7 +2303,7 @@ msgstr "ja"
#: sc/inc/globstr.hrc:471
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
-msgstr ""
+msgstr "Ehdollisia muotoiluja ei voi lisätä, poistaa tai muuttaa suojatuissa taulukoissa."
#: sc/inc/globstr.hrc:472
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
@@ -10489,7 +10493,7 @@ msgstr "Tila"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
-msgstr ""
+msgstr "Moodi määrittää palautettavien jakaumahäntien määrän. 1 = yksihäntäinen ja 2 = kaksihäntäinen jakauma"
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10534,7 +10538,7 @@ msgstr "Tila"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
-msgstr ""
+msgstr "Moodi määrittää palautettavien jakaumahäntien määrän. 1 = yksihäntäinen ja 2 = kaksihäntäinen jakauma"
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -12716,7 +12720,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3823
msgctxt "SC_OPCODE_REGEX"
msgid "Text"
-msgstr ""
+msgstr "Teksti"
#: sc/inc/scfuncs.hrc:3824
msgctxt "SC_OPCODE_REGEX"
@@ -12726,7 +12730,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3825
msgctxt "SC_OPCODE_REGEX"
msgid "Expression"
-msgstr ""
+msgstr "Lauseke"
#: sc/inc/scfuncs.hrc:3826
msgctxt "SC_OPCODE_REGEX"
@@ -12951,7 +12955,7 @@ msgstr "Lähtövaluutta"
#: sc/inc/scfuncs.hrc:3912
msgctxt "SC_OPCODE_EUROCONVERT"
msgid "ISO 4217 code of the currency from which is converted."
-msgstr ""
+msgstr "ISO 4217 -koodi valuutalle, josta muunnetaan."
#: sc/inc/scfuncs.hrc:3913
msgctxt "SC_OPCODE_EUROCONVERT"
@@ -12961,7 +12965,7 @@ msgstr "Kohdevaluutta"
#: sc/inc/scfuncs.hrc:3914
msgctxt "SC_OPCODE_EUROCONVERT"
msgid "ISO 4217 code of the currency into which is converted."
-msgstr ""
+msgstr "ISO 4217 -koodi valuutalle, johon muunnetaan."
#: sc/inc/scfuncs.hrc:3915
msgctxt "SC_OPCODE_EUROCONVERT"
@@ -13527,17 +13531,17 @@ msgstr "Haun aloituskohta tekstissä."
#: sc/inc/scfuncs.hrc:4124
msgctxt "SC_OPCODE_FOURIER"
msgid "Computes the Discrete Fourier Transform (DFT) of an array"
-msgstr ""
+msgstr "Laskee taulukon diskreetin Fourier-muunnoksen (DFT)"
#: sc/inc/scfuncs.hrc:4125
msgctxt "SC_OPCODE_FOURIER"
msgid "Array"
-msgstr ""
+msgstr "Taulukko"
#: sc/inc/scfuncs.hrc:4126
msgctxt "SC_OPCODE_FOURIER"
msgid "The array whose DFT needs to be computed. The dimensions of this array can be Nx1 or Nx2 or 1xN or 2xN."
-msgstr ""
+msgstr "Taulukko, jonka DFT lasketaan. Taulukon ulottuvuudet voivat olla Nx1 tai Nx2 tai 1xN tai 2xN."
#: sc/inc/scfuncs.hrc:4127
msgctxt "SC_OPCODE_FOURIER"
@@ -13618,7 +13622,7 @@ msgstr "Mukautetut tyylit"
#: sc/inc/strings.hrc:28
msgctxt "SCSTR_LONG_SCDOC_NAME"
msgid "%PRODUCTNAME Spreadsheet format (calc6)"
-msgstr ""
+msgstr "%PRODUCTNAME laskentataulukon muoto (calc6)"
#: sc/inc/strings.hrc:29
msgctxt "SCSTR_LONG_SCDOC_NAME"
@@ -13753,12 +13757,12 @@ msgstr "Suojaa taulukon rakenne"
#: sc/inc/strings.hrc:57
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
-msgstr ""
+msgstr "Poista taulukon rakenteen suojaus"
#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
-msgstr ""
+msgstr "Poista taulukon suojaus"
#: sc/inc/strings.hrc:59
msgctxt "SCSTR_CHG_PROTECT"
@@ -14012,7 +14016,7 @@ msgstr "Tulosta valitut solut"
#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
-msgstr ""
+msgstr "Mistä:"
#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
@@ -14343,7 +14347,7 @@ msgstr "Peruuta"
#: sc/inc/strings.hrc:180
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Autosum"
-msgstr ""
+msgstr "Automaattisumma"
#: sc/inc/strings.hrc:181
msgctxt "SCSTR_QHELP_BTNEQUAL"
@@ -14501,7 +14505,7 @@ msgstr "Varianssianalyysi"
#: sc/inc/strings.hrc:218
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
-msgstr ""
+msgstr "Varianssianalyysi (ANOVA)"
#: sc/inc/strings.hrc:219
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
@@ -14556,7 +14560,7 @@ msgstr "F"
#: sc/inc/strings.hrc:229
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
-msgstr ""
+msgstr "Merkitsevyys F"
#: sc/inc/strings.hrc:230
msgctxt "STR_ANOVA_LABEL_P_VALUE"
@@ -14669,7 +14673,7 @@ msgstr "Lukumäärä"
#: sc/inc/strings.hrc:254
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
-msgstr ""
+msgstr "Ensimmäinen kvartiili"
#: sc/inc/strings.hrc:255
msgctxt "STRID_CALC_THIRD_QUARTILE"
@@ -14827,12 +14831,12 @@ msgstr "Regressio"
#: sc/inc/strings.hrc:288
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
-msgstr ""
+msgstr "Fourier-analyysi"
#: sc/inc/strings.hrc:289
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
-msgstr ""
+msgstr "Fourier-analyysi"
#. Common
#: sc/inc/strings.hrc:291
@@ -14883,7 +14887,7 @@ msgstr "R^2"
#: sc/inc/strings.hrc:300
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
-msgstr ""
+msgstr "Korjattu R^2"
#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_XVARIABLES_COUNT"
@@ -14913,12 +14917,12 @@ msgstr "Testistatistiikka"
#: sc/inc/strings.hrc:306
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
-msgstr ""
+msgstr "Ala"
#: sc/inc/strings.hrc:307
msgctxt "STR_LABEL_Upper"
msgid "Upper"
-msgstr ""
+msgstr "Ylä"
#: sc/inc/strings.hrc:308
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
@@ -14959,7 +14963,7 @@ msgstr ""
#: sc/inc/strings.hrc:316
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
-msgstr ""
+msgstr "Luottamustason täytyy olla välillä (0, 1)."
#: sc/inc/strings.hrc:317
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
@@ -14994,17 +14998,17 @@ msgstr ""
#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
-msgstr ""
+msgstr "Jäännös"
#: sc/inc/strings.hrc:324
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
-msgstr ""
+msgstr "Luottamustaso"
#: sc/inc/strings.hrc:325
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
-msgstr ""
+msgstr "Kertoimet"
#: sc/inc/strings.hrc:326
msgctxt "STR_LABEL_TSTATISTIC"
@@ -15019,12 +15023,12 @@ msgstr "Leikkauspiste"
#: sc/inc/strings.hrc:328
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
-msgstr ""
+msgstr "Ennustettu Y"
#: sc/inc/strings.hrc:329
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
-msgstr ""
+msgstr "LINEST-raakatulostus"
#. F Test
#: sc/inc/strings.hrc:331
@@ -15128,22 +15132,22 @@ msgstr "Kriittinen z kaksihäntäinen"
#: sc/inc/strings.hrc:353
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
-msgstr ""
+msgstr "Fourier-muunnos"
#: sc/inc/strings.hrc:354
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
-msgstr ""
+msgstr "Käänteinen Fourier-muunnos"
#: sc/inc/strings.hrc:355
msgctxt "STR_REAL_PART"
msgid "Real"
-msgstr ""
+msgstr "Reaali"
#: sc/inc/strings.hrc:356
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
-msgstr ""
+msgstr "Imaginaari"
#: sc/inc/strings.hrc:357
msgctxt "STR_MAGNITUDE_PART"
@@ -15184,23 +15188,23 @@ msgstr ""
#: sc/inc/strings.hrc:365
msgctxt "STR_ENABLE_CONTENT"
msgid "Enable Content"
-msgstr ""
+msgstr "Salli sisältö"
#. Insert image dialog
#: sc/inc/strings.hrc:367
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
-msgstr ""
+msgstr "Soluun"
#: sc/inc/strings.hrc:368
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
-msgstr ""
+msgstr "Soluun (koko muuttuu solun mukana)"
#: sc/inc/strings.hrc:369
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
-msgstr ""
+msgstr "Sivulle"
#: sc/inc/strings.hrc:371
msgctxt "sharedocumentdlg|nouserdata"
@@ -15385,12 +15389,12 @@ msgstr "Asetukset"
#: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:21
msgctxt "aggregatefunctionentry|name"
msgid "Aggregate Functions"
-msgstr ""
+msgstr "Koostefunktiot:"
#: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:37
msgctxt "aggregatefunctionentry|type"
msgid "Type:"
-msgstr ""
+msgstr "Tyyppi:"
#: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:51
msgctxt "aggregatefunctionentry|columns"
@@ -15400,12 +15404,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:68
msgctxt "aggregatefunctionentry|sum"
msgid "Sum"
-msgstr ""
+msgstr "Summa"
#: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:69
msgctxt "aggregatefunctionentry|average"
msgid "Average"
-msgstr ""
+msgstr "Keskiarvo"
#: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:70
msgctxt "aggregatefunctionentry|min"
@@ -15555,7 +15559,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/autoformattable.ui:330
msgctxt "autoformattable|alignmentcb"
msgid "Alignment"
-msgstr ""
+msgstr "Tasaus"
#: sc/uiconfig/scalc/ui/autoformattable.ui:345
msgctxt "autoformattable|autofitcb"
@@ -15570,12 +15574,12 @@ msgstr "Muotoilu"
#: sc/uiconfig/scalc/ui/autosum.ui:12
msgctxt "autosum|sum"
msgid "Sum"
-msgstr ""
+msgstr "Summa"
#: sc/uiconfig/scalc/ui/autosum.ui:20
msgctxt "autosum|average"
msgid "Average"
-msgstr ""
+msgstr "Keskiarvo"
#: sc/uiconfig/scalc/ui/autosum.ui:28
msgctxt "autosum|min"
@@ -15681,12 +15685,12 @@ msgstr "Sijainti"
#: sc/uiconfig/scalc/ui/checkwarningdialog.ui:11
msgctxt "checkwarningdialog|CheckWarningDialog"
msgid "You are pasting data into cells that already contain data."
-msgstr ""
+msgstr "Olet liittämässä tietoja soluihin, joissa on jo sisältöä."
#: sc/uiconfig/scalc/ui/checkwarningdialog.ui:12
msgctxt "checkwarningdialog|CheckWarningDialog"
msgid "Do you really want to overwrite the existing data?"
-msgstr ""
+msgstr "Haluatko varmasti ylikirjoittaa olemassa olevan sisällön?"
#: sc/uiconfig/scalc/ui/checkwarningdialog.ui:76
msgctxt "checkwarningdialog|ask"
@@ -15776,7 +15780,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
msgid "First Condition"
-msgstr ""
+msgstr "Ensimmäinen ehto"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
@@ -15991,22 +15995,22 @@ msgstr "ei kaksoiskappale"
#: sc/uiconfig/scalc/ui/conditionalentry.ui:381
msgctxt "conditionalentry|typeis"
msgid "top N elements"
-msgstr ""
+msgstr "ylimmät N elementtiä"
#: sc/uiconfig/scalc/ui/conditionalentry.ui:382
msgctxt "conditionalentry|typeis"
msgid "bottom N elements"
-msgstr ""
+msgstr "alimmat N elementtiä"
#: sc/uiconfig/scalc/ui/conditionalentry.ui:383
msgctxt "conditionalentry|typeis"
msgid "top N percent"
-msgstr ""
+msgstr "ylimmät N prosenttia"
#: sc/uiconfig/scalc/ui/conditionalentry.ui:384
msgctxt "conditionalentry|typeis"
msgid "bottom N percent"
-msgstr ""
+msgstr "alimmat N prosenttia"
#: sc/uiconfig/scalc/ui/conditionalentry.ui:385
msgctxt "conditionalentry|typeis"
@@ -16346,7 +16350,7 @@ msgstr "Ristiriita"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:161
msgctxt "conflictsdialog|author"
msgid "Author"
-msgstr ""
+msgstr "Tekijä"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:175
msgctxt "conflictsdialog|date"
@@ -16356,7 +16360,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:189
msgctxt "conflictsdialog|changes-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Muutokset"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:207
msgctxt "conflictsdialog|keepmine"
@@ -17136,7 +17140,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:37
msgctxt "datetimetransformationentry|type"
msgid "Type:"
-msgstr ""
+msgstr "Tyyppi:"
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:51
msgctxt "datetimetransformationentry|columns"
@@ -17156,12 +17160,12 @@ msgstr "Vuosi"
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:70
msgctxt "datetimetransformationentry|startofyear"
msgid "Start of Year"
-msgstr ""
+msgstr "Vuoden alku"
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:71
msgctxt "datetimetransformationentry|endofyear"
msgid "End of Year"
-msgstr ""
+msgstr "Vuoden loppu"
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:72
msgctxt "datetimetransformationentry|month"
@@ -17171,17 +17175,17 @@ msgstr "Kuukausi"
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:73
msgctxt "datetimetransformationentry|monthname"
msgid "Month Name"
-msgstr ""
+msgstr "Kuukauden nimi"
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:74
msgctxt "datetimetransformationentry|startofmonth"
msgid "Start of Month"
-msgstr ""
+msgstr "Kuukauden alku"
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:75
msgctxt "datetimetransformationentry|endofmonth"
msgid "End of Month"
-msgstr ""
+msgstr "Kuukauden loppu"
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:76
msgctxt "datetimetransformationentry|day"
@@ -17191,7 +17195,7 @@ msgstr "Päivä"
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:77
msgctxt "datetimetransformationentry|dayofweek"
msgid "Day of Week"
-msgstr ""
+msgstr "Viikonpäivä"
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:78
msgctxt "datetimetransformationentry|dayofyear"
@@ -17386,12 +17390,12 @@ msgstr "Valinta"
#: sc/uiconfig/scalc/ui/deletecolumnentry.ui:21
msgctxt "deletecolumnentry|name"
msgid "Delete Columns Action"
-msgstr ""
+msgstr "Poista sarakkeita -toiminto"
#: sc/uiconfig/scalc/ui/deletecolumnentry.ui:37
msgctxt "deletecolumnentry|separator"
msgid "Columns (List of ';' separated columns)"
-msgstr ""
+msgstr "Sarakkeet (puolipisteellä erotettu luettelo sarakkeita)"
#: sc/uiconfig/scalc/ui/deletecolumnentry.ui:65
msgctxt "deletecolumnentry|delete"
@@ -17931,7 +17935,7 @@ msgstr "Sisältö luvuiksi"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:15
msgctxt "fourieranalysisdialog|FourierAnalysisDialog"
msgid "Fourier Analysis"
-msgstr ""
+msgstr "Fourier-analyysi"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:111
msgctxt "fourieranalysisdialog|input-range-label"
@@ -17966,7 +17970,7 @@ msgstr "_Rivit"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:284
msgctxt "fourieranalysisdialog|label2"
msgid "Grouped by"
-msgstr ""
+msgstr "Ryhmittelyperuste"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:315
msgctxt "fourieranalysisdialog|inverse-check"
@@ -18451,7 +18455,7 @@ msgstr "Nimi"
#: sc/uiconfig/scalc/ui/insertname.ui:144
msgctxt "insertname|STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
-msgstr ""
+msgstr "Alue tai lauseke"
#: sc/uiconfig/scalc/ui/insertname.ui:157
msgctxt "insertname|STR_HEADER_SCOPE"
@@ -18561,7 +18565,7 @@ msgstr "Nimi"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:140
msgctxt "managenamesdialog|expression"
msgid "Range or formula expression"
-msgstr ""
+msgstr "Alue tai lauseke"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:153
msgctxt "managenamesdialog|scope"
@@ -18646,7 +18650,7 @@ msgstr "Säilytä piilotettujen solujen sisältö"
#: sc/uiconfig/scalc/ui/mergecolumnentry.ui:21
msgctxt "mergecolumnentry|name"
msgid "Merge Column Action"
-msgstr ""
+msgstr "Yhdistä sarake -toiminto"
#: sc/uiconfig/scalc/ui/mergecolumnentry.ui:37
msgctxt "mergecolumnentry|separator"
@@ -18993,12 +18997,12 @@ msgstr "~Data"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9377
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr "_Tarkista"
+msgstr "Ta_rkista"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9463
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
-msgstr "~Tarkista"
+msgstr "Ta~rkista"
#: sc/uiconfig/scalc/ui/notebookbar.ui:10369
msgctxt "CalcNotebookbar|ViewMenuButton"
@@ -19033,7 +19037,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar.ui:13435
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Muunna"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13735
msgctxt "CalcNotebookbar|frame:MenuDraw"
@@ -19068,12 +19072,12 @@ msgstr "~Tulosta"
#: sc/uiconfig/scalc/ui/notebookbar.ui:15041
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
-msgstr "_Lomake"
+msgstr "Lomak_e"
#: sc/uiconfig/scalc/ui/notebookbar.ui:15930
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
-msgstr "Lo~make"
+msgstr "Lomak~e"
#: sc/uiconfig/scalc/ui/notebookbar.ui:15961
msgctxt "CalcNotebookbar|ToolsMenuButton"
@@ -19154,7 +19158,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7970
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr "_Tarkista"
+msgstr "Ta_rkista"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8003
msgctxt "notebookbar_compact|ReviewLabel"
@@ -19179,7 +19183,7 @@ msgstr "Ku_va"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10179
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Kuva"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11592
msgctxt "notebookbar_compact|DrawMenuButton"
@@ -19224,12 +19228,12 @@ msgstr "T~ulosta"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15428
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Lomak_e"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15480
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Lomak~e"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15530
msgctxt "notebookbar_compact|ToolsMenuButton"
@@ -19249,12 +19253,12 @@ msgstr "_Valikko"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3382
msgctxt "notebookbar_groupedbar_compact|fileb"
msgid "_File"
-msgstr "Tiedosto"
+msgstr "_Tiedosto"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3493
msgctxt "notebookbar_groupedbar_compact|editb"
msgid "_Edit"
-msgstr "Muokkaa"
+msgstr "_Muokkaa"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3612
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5107
@@ -19285,12 +19289,12 @@ msgstr "Tiedot"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4643
msgctxt "notebookbar_groupedbar_compact|insertb"
msgid "_Insert"
-msgstr "Lisää"
+msgstr "_Lisää"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4757
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
-msgstr "Tarkista"
+msgstr "Ta_rkista"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4871
msgctxt "notebookbar_groupedbar_compact|viewb"
@@ -19301,7 +19305,7 @@ msgstr "Näytä"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11430
msgctxt "notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
-msgstr "_Lomake"
+msgstr "Lomak_e"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5261
msgctxt "notebookbar_groupedbar_compact|FormatButton"
@@ -19330,7 +19334,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10440
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "Järjestä"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6612
msgctxt "notebookbar_groupedbar_compact|draw"
@@ -19475,12 +19479,12 @@ msgstr "Ohje"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3438
msgctxt "notebookbar_groupedbar_full|fileb"
msgid "_File"
-msgstr "Tiedosto"
+msgstr "_Tiedosto"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3676
msgctxt "notebookbar_groupedbar_full|editb"
msgid "_Edit"
-msgstr "Muokkaa"
+msgstr "_Muokkaa"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3873
msgctxt "notebookbar_groupedbar_full|paragraphstyleb"
@@ -19510,7 +19514,7 @@ msgstr "Solut"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5007
msgctxt "notebookbar_groupedbar_full|insertb"
msgid "_Insert"
-msgstr "Lisää"
+msgstr "_Lisää"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5193
msgctxt "notebookbar_groupedbar_full|datab"
@@ -19520,7 +19524,7 @@ msgstr "Tiedot"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5365
msgctxt "notebookbar_groupedbar_full|reviewb"
msgid "_Review"
-msgstr "Tarkista"
+msgstr "Ta_rkista"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5537
msgctxt "notebookbar_groupedbar_full|viewb"
@@ -19555,7 +19559,7 @@ msgstr "Kieli"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6882
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
-msgstr "Tarkista"
+msgstr "Ta_rkista"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7095
msgctxt "notebookbar_groupedbar_full|commentsb"
@@ -19580,7 +19584,7 @@ msgstr "Piirros"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8315
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
-msgstr "Muokkaa"
+msgstr "_Muokkaa"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8656
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
@@ -19620,7 +19624,7 @@ msgstr "Näytä"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10105
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
-msgstr "Lisää"
+msgstr "_Lisää"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10250
msgctxt "notebookbar_groupedbar_full|media"
@@ -19935,7 +19939,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:37
msgctxt "numbertransformationentry|type"
msgid "Type:"
-msgstr ""
+msgstr "Tyyppi:"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:51
msgctxt "numbertransformationentry|columns"
@@ -19945,47 +19949,47 @@ msgstr "Sarakkeet:"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:68
msgctxt "numbertransformationentry|sign"
msgid "Sign"
-msgstr ""
+msgstr "Etumerkki"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:69
msgctxt "numbertransformationentry|round"
msgid "Round"
-msgstr ""
+msgstr "Pyöristä"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:70
msgctxt "numbertransformationentry|roundup"
msgid "Round Up"
-msgstr ""
+msgstr "Pyöristä ylöspäin"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:71
msgctxt "numbertransformationentry|rounddown"
msgid "Round Down"
-msgstr ""
+msgstr "Pyöristä alaspäin"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:72
msgctxt "numbertransformationentry|absolute"
msgid "Absolute Value"
-msgstr ""
+msgstr "Itseisarvo"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:73
msgctxt "numbertransformationentry|loge"
msgid "Log with base e"
-msgstr ""
+msgstr "Luonnollinen logaritmi"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:74
msgctxt "numbertransformationentry|log10"
msgid "Log with base 10"
-msgstr ""
+msgstr "Kymmenkantainen logaritmi"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:75
msgctxt "numbertransformationentry|cube"
msgid "Cube"
-msgstr ""
+msgstr "Kuutio"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:76
msgctxt "numbertransformationentry|square"
msgid "Square"
-msgstr ""
+msgstr "Neliö"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:77
msgctxt "numbertransformationentry|squareroot"
@@ -19995,17 +19999,17 @@ msgstr "Neliöjuuri"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:78
msgctxt "numbertransformationentry|exponent"
msgid "Exponent"
-msgstr ""
+msgstr "Eksponentti"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:79
msgctxt "numbertransformationentry|iseven"
msgid "Is Even"
-msgstr ""
+msgstr "On parillinen"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:80
msgctxt "numbertransformationentry|isodd"
msgid "Is Odd"
-msgstr ""
+msgstr "On pariton"
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:115
msgctxt "numbertransformationentry|delete"
@@ -20015,12 +20019,12 @@ msgstr "Peruuta"
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:48
msgctxt "optcalculatepage|threadingenabled"
msgid "Enable multi-threaded calculation"
-msgstr ""
+msgstr "Ota säikeistetty laskenta käyttöön"
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:52
msgctxt "optcalculatepage|threadingenabled|tooltip_text"
msgid "Enable multi-threaded calculation of formula-groups"
-msgstr ""
+msgstr "Ota käyttöön kaavaryhmien säikeistetty laskenta."
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:71
msgctxt "optcalculatepage|label4"
@@ -21135,7 +21139,7 @@ msgstr "Asetukset"
#: sc/uiconfig/scalc/ui/recalcquerydialog.ui:30
msgctxt "recalcquerydialog|ask"
msgid "Always perform this without prompt in the future."
-msgstr ""
+msgstr "Tee jatkossa näin kysymättä vahvistusta."
#: sc/uiconfig/scalc/ui/regressiondialog.ui:14
msgctxt "regressiondialog|RegressionDialog"
@@ -21185,17 +21189,17 @@ msgstr "Ryhmittelyperuste"
#: sc/uiconfig/scalc/ui/regressiondialog.ui:353
msgctxt "regressiondialog|linear-radio"
msgid "Linear Regression"
-msgstr ""
+msgstr "Lineaarinen regressio"
#: sc/uiconfig/scalc/ui/regressiondialog.ui:370
msgctxt "regressiondialog|logarithmic-radio"
msgid "Logarithmic Regression"
-msgstr ""
+msgstr "Logaritminen regressio"
#: sc/uiconfig/scalc/ui/regressiondialog.ui:387
msgctxt "regressiondialog|power-radio"
msgid "Power Regression"
-msgstr ""
+msgstr "Potenssiregressio"
#: sc/uiconfig/scalc/ui/regressiondialog.ui:410
msgctxt "regressiondialog|label3"
@@ -21205,17 +21209,17 @@ msgstr "Laskettavat regressiotyypit"
#: sc/uiconfig/scalc/ui/regressiondialog.ui:446
msgctxt "regressiondialog|label5"
msgid "Confidence level"
-msgstr ""
+msgstr "Luottamustaso"
#: sc/uiconfig/scalc/ui/regressiondialog.ui:456
msgctxt "regressiondialog|calcresiduals-check"
msgid "Calculate residuals"
-msgstr ""
+msgstr "Laske jäännökset"
#: sc/uiconfig/scalc/ui/regressiondialog.ui:488
msgctxt "regressiondialog|nointercept-check"
msgid "Force intercept to be zero"
-msgstr ""
+msgstr "Pakota leikkauspiste nollaksi"
#: sc/uiconfig/scalc/ui/regressiondialog.ui:507
msgctxt "regressiondialog|label4"
@@ -21385,7 +21389,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/samplingdialog.ui:350
msgctxt "samplingdialog|keep-order"
msgid "Keep order"
-msgstr ""
+msgstr "Säilytä järjestys"
#: sc/uiconfig/scalc/ui/samplingdialog.ui:372
msgctxt "samplingdialog|label2"
@@ -21585,7 +21589,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
-msgstr ""
+msgstr "Taulukko"
#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
@@ -21760,12 +21764,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:13
msgctxt "sharedwarningdialog|SharedWarningDialog"
msgid "Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities."
-msgstr ""
+msgstr "Muutoksia muotoiluun (fontit, värit ja lukumuodot) ei tallenneta ja piirrosobjekteja sekä kaavioita ei voi muokata jaetussa muokkaustilassa. Jaettu muokkaustila on poistettava käytöstä, jotta näitä muutoksia voi tehdä."
#: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:32
msgctxt "sharedwarningdialog|ask"
msgid "Do not show warning again."
-msgstr ""
+msgstr "Älä näytä varoitusta uudelleen."
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:75
msgctxt "sheetprintpage|radioBTN_TOPDOWN"
@@ -22625,7 +22629,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/sorttransformationentry.ui:36
msgctxt "sorttransformationentry|type"
msgid "Ascending Order"
-msgstr ""
+msgstr "Nouseva järjestys"
#: sc/uiconfig/scalc/ui/sorttransformationentry.ui:48
msgctxt "sorttransformationentry|column"
@@ -23300,7 +23304,7 @@ msgstr "Tunnista erityiset numeromerkinnät"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:560
msgctxt "textimportcsv|skipemptycells"
msgid "S_kip empty cells"
-msgstr ""
+msgstr "Ohita tyhjät solut"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:564
msgctxt "textimportcsv|skipemptycells"
@@ -23360,12 +23364,12 @@ msgstr "Asetukset"
#: sc/uiconfig/scalc/ui/texttransformationentry.ui:21
msgctxt "texttransformationentry|name"
msgid "Text Transformation"
-msgstr ""
+msgstr "Tekstimuunnos"
#: sc/uiconfig/scalc/ui/texttransformationentry.ui:37
msgctxt "texttransformationentry|type"
msgid "Type:"
-msgstr ""
+msgstr "Tyyppi:"
#: sc/uiconfig/scalc/ui/texttransformationentry.ui:51
msgctxt "texttransformationentry|columns"
@@ -23465,7 +23469,7 @@ msgstr "Jäsennyssymbolit"
#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
msgctxt "tpviewpage|summary"
msgid "Summary o_n search"
-msgstr ""
+msgstr "Haun yhteenveto"
#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
@@ -23475,7 +23479,7 @@ msgstr "Ikkuna"
#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
-msgstr "Ruudukko:"
+msgstr "_Ruudukko:"
#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
diff --git a/source/fi/scp2/source/ooo.po b/source/fi/scp2/source/ooo.po
index d260f1ba28e..eb225c03b5d 100644
--- a/source/fi/scp2/source/ooo.po
+++ b/source/fi/scp2/source/ooo.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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-07-16 14:57+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-23 15:20+0000\n"
+"Last-Translator: tjhietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\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: 1563289032.000000\n"
+"X-POOTLE-MTIME: 1563895250.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -2006,7 +2006,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_KAB\n"
"LngText.text"
msgid "Kabyle"
-msgstr ""
+msgstr "kabyyli"
#: module_langpack.ulf
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_KAB\n"
"LngText.text"
msgid "Installs the Kabyle user interface"
-msgstr ""
+msgstr "Asentaa kabyylinkielisen käyttöliittymän"
#: module_langpack.ulf
msgctxt ""
@@ -2086,7 +2086,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_DSB\n"
"LngText.text"
msgid "Lower Sorbian"
-msgstr ""
+msgstr "alasorbi"
#: module_langpack.ulf
msgctxt ""
@@ -2094,7 +2094,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_DSB\n"
"LngText.text"
msgid "Installs the Lower Sorbian user interface"
-msgstr ""
+msgstr "Asentaa alasorbinkielisen käyttöliittymän"
#: module_langpack.ulf
msgctxt ""
@@ -4182,7 +4182,7 @@ msgctxt ""
"STR_NAME_MODULE_EXTENSION_DICTIONARY_ID\n"
"LngText.text"
msgid "Indonesian"
-msgstr ""
+msgstr "indonesia"
#: module_ooo.ulf
msgctxt ""
@@ -4190,7 +4190,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_ID\n"
"LngText.text"
msgid "Indonesian spelling dictionary, hyphenation rules, and thesaurus"
-msgstr ""
+msgstr "Indonesian oikolukusanasto, tavutussäännöt ja synonyymisanasto"
#: module_ooo.ulf
msgctxt ""
diff --git a/source/fi/sd/messages.po b/source/fi/sd/messages.po
index c170907dcc0..ca9c585b0f7 100644
--- a/source/fi/sd/messages.po
+++ b/source/fi/sd/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-16 10:55+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-27 17:22+0000\n"
+"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563274538.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1564248149.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -244,72 +244,72 @@ msgstr "Piilotetut tyylit"
#: sd/inc/pageformatpanel.hrc:18
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "None"
-msgstr ""
+msgstr "Ei mitään"
#: sd/inc/pageformatpanel.hrc:19
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Narrow"
-msgstr ""
+msgstr "Kapea"
#: sd/inc/pageformatpanel.hrc:20
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Moderate"
-msgstr ""
+msgstr "Kohtalainen"
#: sd/inc/pageformatpanel.hrc:21
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (0.75\")"
-msgstr ""
+msgstr "Normaali (0,75\")"
#: sd/inc/pageformatpanel.hrc:22
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (1\")"
-msgstr ""
+msgstr "Normaali (1\")"
#: sd/inc/pageformatpanel.hrc:23
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (1.25\")"
-msgstr ""
+msgstr "Normaali (1,25\")"
#: sd/inc/pageformatpanel.hrc:24
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Wide"
-msgstr ""
+msgstr "Leveä"
#: sd/inc/pageformatpanel.hrc:30
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "None"
-msgstr ""
+msgstr "Ei mitään"
#: sd/inc/pageformatpanel.hrc:31
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Narrow"
-msgstr ""
+msgstr "Kapea"
#: sd/inc/pageformatpanel.hrc:32
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Moderate"
-msgstr ""
+msgstr "Kohtalainen"
#: sd/inc/pageformatpanel.hrc:33
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (1.9cm)"
-msgstr ""
+msgstr "Normaali (1,9 cm)"
#: sd/inc/pageformatpanel.hrc:34
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (2.54cm)"
-msgstr ""
+msgstr "Normaali (2,54 cm)"
#: sd/inc/pageformatpanel.hrc:35
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (3.18cm)"
-msgstr ""
+msgstr "Normaali (3,18 cm)"
#: sd/inc/pageformatpanel.hrc:36
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Wide"
-msgstr ""
+msgstr "Leveä"
#: sd/inc/strings.hrc:25
msgctxt "STR_NULL"
@@ -359,7 +359,7 @@ msgstr "Lisää kuva"
#: sd/inc/strings.hrc:34
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
-msgstr ""
+msgstr "Tätä kuvaa on kierretty. Haluatko kiertää sen takaisin vakioasentoonsa?"
#: sd/inc/strings.hrc:35
msgctxt "STR_UNDO_BEZCLOSE"
@@ -983,7 +983,7 @@ msgstr " Diat"
#: sd/inc/strings.hrc:155
msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
msgid "Load Master Slide"
-msgstr ""
+msgstr "Lataa pohjadia"
#: sd/inc/strings.hrc:156
msgctxt "STR_DRAGTYPE_URL"
@@ -1848,67 +1848,67 @@ msgstr ""
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_LINES"
msgid "Lines"
-msgstr ""
+msgstr "Viivat"
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Arrow Line"
-msgstr ""
+msgstr "Nuoliviiva"
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_LINES_DASHED"
msgid "Dashed Line"
-msgstr ""
+msgstr "Katkoviiva"
#: sd/inc/strings.hrc:334
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
-msgstr ""
+msgstr "Täytetty"
#: sd/inc/strings.hrc:335
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
-msgstr ""
+msgstr "Täytetty sininen"
#: sd/inc/strings.hrc:336
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
-msgstr ""
+msgstr "Täytetty vihreä"
#: sd/inc/strings.hrc:337
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
-msgstr ""
+msgstr "Täytetty keltainen"
#: sd/inc/strings.hrc:338
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
-msgstr ""
+msgstr "Täytetty punainen"
#: sd/inc/strings.hrc:340
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
-msgstr ""
+msgstr "Ääriviiva"
#: sd/inc/strings.hrc:341
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
-msgstr ""
+msgstr "Ääriviiva (sininen)"
#: sd/inc/strings.hrc:342
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
-msgstr ""
+msgstr "Ääriviiva (vihreä)"
#: sd/inc/strings.hrc:343
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
-msgstr ""
+msgstr "Ääriviiva (keltainen)"
#: sd/inc/strings.hrc:344
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
-msgstr ""
+msgstr "Ääriviiva (punainen)"
#: sd/inc/strings.hrc:346
msgctxt "STR_PSEUDOSHEET_TITLE"
@@ -2385,7 +2385,7 @@ msgstr "Liikeradat: %1"
#: sd/inc/strings.hrc:445
msgctxt "STR_CUSTOMANIMATION_MISC"
msgid "Misc: %1"
-msgstr ""
+msgstr "Sekalaista: %1"
#: sd/inc/strings.hrc:446
msgctxt "STR_SLIDETRANSITION_NONE"
@@ -3096,12 +3096,12 @@ msgstr "~Asettelu"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:6616
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr "_Tarkista"
+msgstr "Ta_rkista"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:7220
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
-msgstr "~Tarkista"
+msgstr "Ta~rkista"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:7250
msgctxt "drawnotebookbar|ViewMenuButton"
@@ -3138,7 +3138,7 @@ msgstr "T~aulukko"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:14282
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Muunna"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:12005
msgctxt "drawnotebookbar|GraphicMenuButton"
@@ -3183,12 +3183,12 @@ msgstr "~Media"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:15410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Lomak_e"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:16299
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Lomak~e"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:16330
msgctxt "DrawNotebookbar|FormMenuButton"
@@ -3268,12 +3268,12 @@ msgstr "~Asettelu"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7010
msgctxt "notebookbar_draw_compact|ReviewMenuButton"
msgid "_Review"
-msgstr "_Tarkista"
+msgstr "Ta_rkista"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7043
msgctxt "notebookbar_draw_compact|ReviewLabel"
msgid "~Review"
-msgstr "~Tarkista"
+msgstr "Ta~rkista"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7754
msgctxt "notebookbar_draw_compact|ViewMenuButton"
@@ -3348,12 +3348,12 @@ msgstr "~Media"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18230
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Lomak_e"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18285
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Lomak~e"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18940
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
@@ -3445,13 +3445,13 @@ msgstr "_Näytä"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13321
msgctxt "draw_notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
-msgstr "_Tarkista"
+msgstr "Ta_rkista"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4323
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13457
msgctxt "draw_notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Lomak_e"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4485
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5968
@@ -3843,12 +3843,12 @@ msgstr ""
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:107
msgctxt "customanimationfragment|clockwise"
msgid "Clockwise"
-msgstr ""
+msgstr "Myötäpäivään"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:115
msgctxt "customanimationfragment|counterclock"
msgid "Counter-clockwise"
-msgstr ""
+msgstr "Vastapäivään"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:169
msgctxt "customanimationfragment|hori"
@@ -3863,22 +3863,22 @@ msgstr ""
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:185
msgctxt "customanimationfragment|both"
msgid "Both"
-msgstr ""
+msgstr "Molemmat"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:197
msgctxt "customanimationfragment|bold"
msgid "Bold"
-msgstr ""
+msgstr "Lihavoitu"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:205
msgctxt "customanimationfragment|italic"
msgid "Italic"
-msgstr ""
+msgstr "Kursivoitu"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:213
msgctxt "customanimationfragment|underline"
msgid "Underlined"
-msgstr ""
+msgstr "Alleviivattu"
#: sd/uiconfig/simpress/ui/customanimationproperties.ui:8
msgctxt "customanimationproperties|CustomAnimationProperties"
@@ -4838,12 +4838,12 @@ msgstr "~Diaesitys"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7662
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr "_Tarkista"
+msgstr "Ta_rkista"
#: sd/uiconfig/simpress/ui/notebookbar.ui:8266
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
-msgstr "~Tarkista"
+msgstr "Ta~rkista"
#: sd/uiconfig/simpress/ui/notebookbar.ui:8294
msgctxt "impressnotebookbar|ViewMenuButton"
@@ -4870,7 +4870,7 @@ msgstr "T~aulukko"
#: sd/uiconfig/simpress/ui/notebookbar.ui:14043
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Muunna"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11750
msgctxt "impressnotebookbar|GraphicMenuButton"
@@ -4915,12 +4915,12 @@ msgstr "~Media"
#: sd/uiconfig/simpress/ui/notebookbar.ui:15171
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Lomak_e"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16060
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Lomak~e"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16091
msgctxt "impressnotebookbar|FormMenuButton"
@@ -5020,12 +5020,12 @@ msgstr "~Diaesitys"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7895
msgctxt "notebookbar_impress_compact|ReviewMenuButton"
msgid "_Review"
-msgstr "_Tarkista"
+msgstr "Ta_rkista"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7928
msgctxt "notebookbar_impress_compact|ReviewLabel"
msgid "~Review"
-msgstr "~Tarkista"
+msgstr "Ta~rkista"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8779
msgctxt "notebookbar_impress_compact|ViewMenuButton"
@@ -5090,12 +5090,12 @@ msgstr "~Media"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17659
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Lomak_e"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17714
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Lomak~e"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18483
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
@@ -5145,7 +5145,7 @@ msgstr "Valikko"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3045
msgctxt "notebookbar_groupedbar_compact|fileb"
msgid "_File"
-msgstr "Tiedosto"
+msgstr "_Tiedosto"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3156
msgctxt "notebookbar_groupedbar_compact|editb"
@@ -5193,7 +5193,7 @@ msgstr "_Näytä"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13301
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
-msgstr "Tarkistus"
+msgstr "Ta_rkista"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4458
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6039
@@ -5286,7 +5286,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13439
msgctxt "impress_notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Lomak_e"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2969
msgctxt "notebookbar_groupedbar_full|menub"
@@ -5306,7 +5306,7 @@ msgstr "Ohje"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3185
msgctxt "notebookbar_groupedbar_full|fileb"
msgid "_File"
-msgstr "Tiedosto"
+msgstr "_Tiedosto"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3423
msgctxt "notebookbar_groupedbar_full|editb"
@@ -5341,13 +5341,13 @@ msgstr "_Näytä"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4621
msgctxt "notebookbar_groupedbar_full|reviewb"
msgid "_Review"
-msgstr "Tarkistus"
+msgstr "Ta_rkista"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Järjestä"
@@ -5382,7 +5382,7 @@ msgstr "_Näytä"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6213
msgctxt "notebookbar_groupedbar_full|reviewp"
msgid "_Review"
-msgstr "_Tarkista"
+msgstr "Ta_rkista"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6354
msgctxt "notebookbar_groupedbar_full|slideshowtt"
@@ -5392,7 +5392,7 @@ msgstr "_Diaesitys"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7112
msgctxt "notebookbar_groupedbar_full|tabled"
msgid "T_able"
-msgstr "Taulukko"
+msgstr "T_aulukko"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7381
msgctxt "notebookbar_groupedbar_full|rowscolumnst"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Muokkaa"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "R_uudukko"
@@ -5431,53 +5431,53 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Grafiikka"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Väri"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Media"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_Diaesitys"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Kehys"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Näytä"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Pohjatyylisivu"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Lisää"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Piirros"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Näytä"
diff --git a/source/fi/sfx2/messages.po b/source/fi/sfx2/messages.po
index 6c1b51ff904..89bf4660fe4 100644
--- a/source/fi/sfx2/messages.po
+++ b/source/fi/sfx2/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-06-03 17:46+0200\n"
-"PO-Revision-Date: 2019-07-16 14:37+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-27 17:04+0000\n"
+"Last-Translator: Wuhhau <Wuhhau@tutanota.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563287824.000000\n"
+"X-POOTLE-MTIME: 1564247041.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -1039,7 +1039,7 @@ msgstr "Uusi tyyli valinnasta"
#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
-msgstr ""
+msgstr "Tyylien toiminnot"
#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
@@ -1169,6 +1169,9 @@ msgid ""
"\n"
"You can also try to ignore the lock and open the file for editing."
msgstr ""
+"Tätä asiakirjaa ei voi muokata, koska se on lukittu toisessa istunnossa. Haluatko muokata asiakirjan kopiota?\n"
+"\n"
+"Voit myös yrittää sivuuttaa lukituksen ja avata tiedoston muokkaamista varten."
#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
@@ -1248,7 +1251,7 @@ msgstr "Tämän asiakirjan luokittelutaso on alempi kuin leikepöydän sisällö
#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
-msgstr ""
+msgstr "Suojaustaso"
#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
@@ -1298,7 +1301,7 @@ msgstr "Allekirjoitus on kelvollinen, mutta asiakirja on vain osittain allekirjo
#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
-msgstr ""
+msgstr "Varmennetta ei voitu validoida ja asiakirja on vain osittain allekirjoitettu."
#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
@@ -2280,11 +2283,20 @@ 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 on julkaistu Mozilla Public License -lisenssin version 2.0 ehdoilla. MPL-lisenssin teksti on saatavilla osoitteessa http://mozilla.org/MPL/2.0/.\n"
+"\n"
+"Kolmansien osapuolten koodin tekijänoikeustiedot sekä lisenssiehdot, jotka koskevat osaa ohjelmistosta, on listattu tiedostossa LICENSE.html; valitse Näytä lisenssiteksti nähdäksesi nämä tiedot englanniksi.\n"
+"\n"
+"Kaikki täällä mainitut tavaramerkit ja rekisteröidyt tavaramerkit kuuluvat omistajilleen.\n"
+"\n"
+"Copyright © 2000 – 2019 LibreOffice-kehittäjät. Kaikki oikeudet pidätetään.\n"
+"\n"
+"Tämän tuotteen on luonut %OOOVENDOR. Se perustuu OpenOffice.orgiin, joka on Copyright 2000, 2011 Oracle ja/tai sen yhteistyökumppanit. %OOOVENDOR tunnustaa kaikkien yhteisön jäsenten työpanoksen. Lisätietoja osoitteesta http://fi.libreoffice.org/"
#: sfx2/uiconfig/ui/linefragment.ui:55
msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
-msgstr ""
+msgstr "Poista ominaisuus"
#: sfx2/uiconfig/ui/linefragment.ui:144
msgctxt "linefragment|SFX_ST_EDIT"
@@ -2314,7 +2326,7 @@ msgstr "Sovellus:"
#: sfx2/uiconfig/ui/linkeditdialog.ui:121
msgctxt "linkeditdialog|label3"
msgid "_File:"
-msgstr "Tiedosto:"
+msgstr "_Tiedosto:"
#: sfx2/uiconfig/ui/linkeditdialog.ui:135
msgctxt "linkeditdialog|label4"
@@ -2899,7 +2911,7 @@ msgstr "tai luo uusi luokka"
#: sfx2/uiconfig/ui/templatedlg.ui:45
msgctxt "colsmenu|insert"
msgid "Reset Default Template"
-msgstr ""
+msgstr "Palauta oletusmalli"
#: sfx2/uiconfig/ui/templatedlg.ui:61
msgctxt "templatedlg|TemplateDialog"
diff --git a/source/fi/starmath/messages.po b/source/fi/starmath/messages.po
index f4f1e55a9c2..7ff49022804 100644
--- a/source/fi/starmath/messages.po
+++ b/source/fi/starmath/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2018-05-08 13:33+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-27 17:01+0000\n"
+"Last-Translator: Wuhhau <Wuhhau@tutanota.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1525786411.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564246907.000000\n"
#: starmath/inc/smmod.hrc:16
msgctxt "RID_UI_SYMBOLSET_NAMES"
@@ -1074,7 +1074,7 @@ msgstr "Vektorinuoli"
#: starmath/inc/strings.hrc:168
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
-msgstr ""
+msgstr "Harppuuna"
#: starmath/inc/strings.hrc:169
msgctxt "RID_UNDERLINEX_HELP"
@@ -1534,7 +1534,7 @@ msgstr "Suuri vektorinuoli"
#: starmath/inc/strings.hrc:260
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
-msgstr ""
+msgstr "Iso harppuuna"
#: starmath/inc/strings.hrc:261
msgctxt "RID_HBAR_HELP"
@@ -1664,27 +1664,27 @@ msgstr "Esimerkkejä"
#: starmath/inc/strings.hrc:287
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
-msgstr ""
+msgstr "Kehä"
#: starmath/inc/strings.hrc:288
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
-msgstr ""
+msgstr "Massan ja energian ekvivalenssi"
#: starmath/inc/strings.hrc:289
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
-msgstr ""
+msgstr "Pythagoraan lause"
#: starmath/inc/strings.hrc:290
msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
msgid "A simple series"
-msgstr ""
+msgstr "Yksinkertainen sarja"
#: starmath/inc/strings.hrc:291
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
-msgstr ""
+msgstr "Gaussin jakauma"
#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTREGULAR"
@@ -1989,7 +1989,7 @@ msgstr "Muokkaa..."
#: starmath/uiconfig/smath/ui/catalogdialog.ui:38
msgctxt "catalogdialog|insert"
msgid "_Insert"
-msgstr "Lisää"
+msgstr "_Lisää"
#: starmath/uiconfig/smath/ui/catalogdialog.ui:103
msgctxt "catalogdialog|label1"
@@ -2009,7 +2009,7 @@ msgstr "Elementit"
#: starmath/uiconfig/smath/ui/dockingelements.ui:27
msgctxt "dockingelements|ElementCategories|tooltip_text"
msgid "Element categories"
-msgstr ""
+msgstr "Elementtikategoriat"
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
diff --git a/source/fi/svtools/messages.po b/source/fi/svtools/messages.po
index 81e41560c2f..c2923c29e70 100644
--- a/source/fi/svtools/messages.po
+++ b/source/fi/svtools/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-07-16 11:36+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-27 12:53+0000\n"
+"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563276982.000000\n"
+"X-POOTLE-MTIME: 1564232009.000000\n"
#. To translators: tdf#125447 use no mnemonic in this string
#: include/svtools/strings.hrc:26
@@ -41,37 +41,37 @@ msgstr "Muotoilematon teksti"
#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
-msgstr ""
+msgstr "Muotoilematon teksti (TSV-Calc)"
#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
-msgstr ""
+msgstr "Bittikarttakuva (BMP)"
#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
-msgstr ""
+msgstr "Graphics Device Interface -metatiedosto (GDI)"
#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
-msgstr ""
+msgstr "Muotoiltu teksti (RTF)"
#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
-msgstr ""
+msgstr "Muotoiltu teksti (Richtext)"
#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
-msgstr ""
+msgstr "%PRODUCTNAME-piirrosmuoto"
#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
-msgstr ""
+msgstr "StarView-bittikartta/animaatio (SVXB)"
#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
@@ -81,7 +81,7 @@ msgstr "Tilatiedot kohteesta Svx-sisäinen linkki"
#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
-msgstr ""
+msgstr "%PRODUCTNAME-linkki (SOLK)"
#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
@@ -106,7 +106,7 @@ msgstr "Sovelmaobjekti"
#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
-msgstr "Lisäosaobjekti"
+msgstr "Liitännäisobjekti"
#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
@@ -231,22 +231,22 @@ msgstr "StarObject Paint -objekti"
#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
-msgstr ""
+msgstr "Hypertekstin merkintäkieli (HTML)"
#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
-msgstr ""
+msgstr "Yksinkertaistettu hypertekstin merkintäkieli (yksinkertainen HTML)"
#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-msgstr ""
+msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-msgstr ""
+msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
@@ -256,12 +256,12 @@ msgstr "Sylk"
#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
-msgstr ""
+msgstr "Dynamic Data Exchange (DDE-linkki)"
#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
-msgstr ""
+msgstr "Data Interchange Format (DIF)"
#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
@@ -376,7 +376,7 @@ msgstr "HTML-muoto ilman kommentteja"
#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
-msgstr ""
+msgstr "Portable Network Graphics (PNG)"
#: include/svtools/strings.hrc:101
#, c-format
@@ -621,12 +621,12 @@ msgstr "Tavallinen"
#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
-msgstr "Kursivointi"
+msgstr "Kursivoitu"
#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
-msgstr "Lihavointi"
+msgstr "Lihavoitu"
#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
@@ -846,7 +846,7 @@ msgstr "Keskeytetty"
#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
-msgstr "Odotetaan poistamista"
+msgstr "Odottaa poistamista"
#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
@@ -1057,7 +1057,7 @@ msgstr "Nimikirjaimet"
#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
-msgstr "Tervehdys"
+msgstr "Kohtelias lopetus"
#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
@@ -1167,7 +1167,7 @@ msgstr "%PRODUCTNAME vaatii %BITNESS-bittisen Java-suoritusympäristön (JRE) t
#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
-msgstr ""
+msgstr "Tämän toiminnon suorittamiseksi %PRODUCTNAME vaatii Oraclen Java-kehitystyökalut (JDK) macOS 10.10 -käyttöjärjestelmässä sekä uudemmissa versioissa. Asenna ne ja käynnistä %PRODUCTNAME uudelleen."
#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
@@ -1527,107 +1527,107 @@ msgstr "Libhyphen-tavutus"
#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
-msgstr ""
+msgstr "Mythes-synonyymisanasto"
#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
-msgstr ""
+msgstr "Ohitettujen sanojen luettelo"
#: svtools/inc/borderline.hrc:18
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "None"
-msgstr ""
+msgstr "Ei mikään"
#: svtools/inc/borderline.hrc:19
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Solid"
-msgstr ""
+msgstr "Yhtenäinen"
#: svtools/inc/borderline.hrc:20
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dotted"
-msgstr ""
+msgstr "Pisteet"
#: svtools/inc/borderline.hrc:21
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dashed"
-msgstr ""
+msgstr "Katkoviiva"
#: svtools/inc/borderline.hrc:22
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double"
-msgstr ""
+msgstr "Kaksinkertainen"
#: svtools/inc/borderline.hrc:23
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Small Gap"
-msgstr ""
+msgstr "Ohut-paksu, pieni väli"
#: svtools/inc/borderline.hrc:24
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Medium Gap"
-msgstr ""
+msgstr "Ohut-paksu, keskisuuri väli"
#: svtools/inc/borderline.hrc:25
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Large Gap"
-msgstr ""
+msgstr "Ohut-paksu, suuri väli"
#: svtools/inc/borderline.hrc:26
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Small Gap"
-msgstr ""
+msgstr "Paksu-ohut, pieni väli"
#: svtools/inc/borderline.hrc:27
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Medium Gap"
-msgstr ""
+msgstr "Paksu-ohut, keskisuuri väli"
#: svtools/inc/borderline.hrc:28
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Large Gap"
-msgstr ""
+msgstr "Paksu-ohut, suuri väli"
#: svtools/inc/borderline.hrc:29
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Embossed"
-msgstr ""
+msgstr "Korkokuva"
#: svtools/inc/borderline.hrc:30
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Engraved"
-msgstr ""
+msgstr "Kaiverrettu"
#: svtools/inc/borderline.hrc:31
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Outset"
-msgstr ""
+msgstr "Ulkopuolella"
#: svtools/inc/borderline.hrc:32
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Inset"
-msgstr ""
+msgstr "Sisäpuolella"
#: svtools/inc/borderline.hrc:33
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Fine Dashed"
-msgstr ""
+msgstr "Ohut katkoviiva"
#: svtools/inc/borderline.hrc:34
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double Thin"
-msgstr ""
+msgstr "Kaksinkertainen ohut"
#: svtools/inc/borderline.hrc:35
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot"
-msgstr ""
+msgstr "Viiva-piste"
#: svtools/inc/borderline.hrc:36
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot Dot"
-msgstr ""
+msgstr "Viiva-piste-piste"
#: svtools/inc/errtxt.hrc:30
msgctxt "RID_ERRCTX"
@@ -2144,12 +2144,12 @@ msgstr ""
#: svtools/inc/errtxt.hrc:133
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
-msgstr ""
+msgstr "Ilmeni tiedostomuotovirhe kohdassa $(ARG1)(rivi,sarake)."
#: svtools/inc/errtxt.hrc:134
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
-msgstr ""
+msgstr "Tämän tiedostomuodon tuonti tai vienti on estetty asetuksissa. Ota yhteyttä järjestelmänvalvojaasi."
#: svtools/inc/errtxt.hrc:140
msgctxt "RID_ERRHDL"
@@ -2339,7 +2339,7 @@ msgstr "aragonia"
#: svtools/inc/langtab.hrc:62
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Armenia)"
-msgstr ""
+msgstr "armenia, itäinen (Armenia)"
#: svtools/inc/langtab.hrc:63
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
@@ -2834,12 +2834,12 @@ msgstr "sidamo"
#: svtools/inc/langtab.hrc:161
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Devanagari"
-msgstr ""
+msgstr "Sindhi, devanagari"
#: svtools/inc/langtab.hrc:162
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Arabic"
-msgstr ""
+msgstr "Sindhi, arabialainen"
#: svtools/inc/langtab.hrc:163
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
@@ -2949,7 +2949,7 @@ msgstr "espanja (Puerto Rico)"
#: svtools/inc/langtab.hrc:184
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Kenya)"
-msgstr "suahili (Kenia)"
+msgstr "swahili (Kenia)"
#: svtools/inc/langtab.hrc:185
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
@@ -3139,7 +3139,7 @@ msgstr "dzongkha"
#: svtools/inc/langtab.hrc:222
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Tanzania)"
-msgstr "suahili (Tansania)"
+msgstr "swahili (Tansania)"
#: svtools/inc/langtab.hrc:223
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
@@ -4084,52 +4084,52 @@ msgstr "plautdietsch"
#: svtools/inc/langtab.hrc:411
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Russia)"
-msgstr ""
+msgstr "armenia, itäinen (Venäjä)"
#: svtools/inc/langtab.hrc:412
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Iran)"
-msgstr ""
+msgstr "armenia, itäinen (Iran)"
#: svtools/inc/langtab.hrc:413
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Western (Armenia)"
-msgstr ""
+msgstr "armenia, läntinen (Armenia)"
#: svtools/inc/langtab.hrc:414
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Classic (Armenia)"
-msgstr ""
+msgstr "armenia, klassinen (Armenia)"
#: svtools/inc/langtab.hrc:415
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Malaysia)"
-msgstr ""
+msgstr "malaiji, arabialainen (Malesia)"
#: svtools/inc/langtab.hrc:416
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Brunei Darussalam)"
-msgstr ""
+msgstr "malaiji, arabialainen (Brunei Darussalam)"
#: svtools/inc/langtab.hrc:417
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Juǀ’hoan"
-msgstr ""
+msgstr "juǀ’hoan"
#: svtools/inc/langtab.hrc:418
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Naro"
-msgstr ""
+msgstr "naro"
#: svtools/inc/langtab.hrc:419
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Iloko"
-msgstr ""
+msgstr "iloko"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "englanti (Sambia)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
@@ -4234,7 +4234,7 @@ msgstr "Nimeä uudelleen"
#: svtools/uiconfig/ui/graphicexport.ui:37
msgctxt "graphicexport|GraphicExportDialog"
msgid "%1 Options"
-msgstr "%1 asetukset"
+msgstr "%1-asetukset"
#: svtools/uiconfig/ui/graphicexport.ui:135
msgctxt "graphicexport|label5"
@@ -4434,7 +4434,7 @@ msgstr "%PRODUCTNAME vaatii Java-ajoympäristön (JRE) tämän toiminnon suoritt
#: svtools/uiconfig/ui/linewindow.ui:17
msgctxt "colorwindow|none_color_button"
msgid "None"
-msgstr ""
+msgstr "Ei mitään"
#: svtools/uiconfig/ui/placeedit.ui:18
msgctxt "placeedit|PlaceEditDialog"
@@ -4599,12 +4599,12 @@ msgstr "Käynnistä %PRODUCTNAME uudelleen"
#: svtools/uiconfig/ui/restartdialog.ui:26
msgctxt "restartdialog|yes"
msgid "Restart Now"
-msgstr "Käynnistä nyt"
+msgstr "Käynnistä uudelleen nyt"
#: svtools/uiconfig/ui/restartdialog.ui:41
msgctxt "restartdialog|no"
msgid "Restart Later"
-msgstr "Käynnistä myöhemmin"
+msgstr "Käynnistä uudelleen myöhemmin"
#: svtools/uiconfig/ui/restartdialog.ui:70
msgctxt "restartdialog|reason_java"
@@ -4674,9 +4674,9 @@ msgstr "Monisäikeisen laskennan muutokset vaativat, että %PRODUCTNAME käynnis
#: svtools/uiconfig/ui/restartdialog.ui:265
msgctxt "restartdialog|reason_mscompatible_formsmenu"
msgid "For restructuring the Forms menu, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "%PRODUCTNAME täytyy käynnistää uudelleen Lomakkeet-valikon uudelleenjärjestämistä varten."
#: svtools/uiconfig/ui/restartdialog.ui:280
msgctxt "restartdialog|label"
msgid "Do you want to restart %PRODUCTNAME now?"
-msgstr "Haluatko käynnistää %PRODUCTNAMEn nyt?"
+msgstr "Haluatko käynnistää %PRODUCTNAMEn uudelleen nyt?"
diff --git a/source/fi/svx/messages.po b/source/fi/svx/messages.po
index d64280e3f67..98692ddfc02 100644
--- a/source/fi/svx/messages.po
+++ b/source/fi/svx/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-07-16 16:22+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-27 17:01+0000\n"
+"Last-Translator: Wuhhau <Wuhhau@tutanota.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563294137.000000\n"
+"X-POOTLE-MTIME: 1564246911.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -2650,7 +2650,7 @@ msgstr "Vesileima"
#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
-msgstr ""
+msgstr "Tummanpunainen 2"
#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
@@ -2665,12 +2665,12 @@ msgstr "Keltainen"
#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
-msgstr ""
+msgstr "Tummansininen 1"
#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
-msgstr ""
+msgstr "Vaaleansininen 2"
#. Elements of the standard color palette
#: include/svx/strings.hrc:562
@@ -2782,7 +2782,7 @@ msgstr "Kirkas punainen"
#: include/svx/strings.hrc:584
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
-msgstr ""
+msgstr "Vaalea magenta"
#: include/svx/strings.hrc:585
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -2848,7 +2848,7 @@ msgstr "Tummanpunainen"
#: include/svx/strings.hrc:598
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
-msgstr ""
+msgstr "Tumma magenta"
#: include/svx/strings.hrc:599
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -2889,52 +2889,52 @@ msgstr "Violetti"
#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
-msgstr ""
+msgstr "Violetti (ei väriskaalalla)"
#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
-msgstr ""
+msgstr "Sininen (ei väriskaalalla)"
#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
-msgstr ""
+msgstr "Taivaansininen (ei väriskaalalla)"
#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
-msgstr ""
+msgstr "Keväänvihreä (ei väriskaalalla)"
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
-msgstr ""
+msgstr "Vihreä (ei väriskaalalla)"
#: include/svx/strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
-msgstr ""
+msgstr "Chartreusenvihreä (ei väriskaalalla)"
#: include/svx/strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
-msgstr ""
+msgstr "Oranssi (ei väriskaalalla)"
#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
-msgstr ""
+msgstr "Punainen (ei väriskaalalla)"
#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
-msgstr ""
+msgstr "Ruusunpunainen (ei väriskaalalla)"
#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
-msgstr ""
+msgstr "Taivaansininen"
#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_CYAN"
@@ -2944,17 +2944,17 @@ msgstr "Syaani"
#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
-msgstr ""
+msgstr "Keväänvihreä"
#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
-msgstr ""
+msgstr "Chartreusenvihreä"
#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
-msgstr ""
+msgstr "Ruusunpunainen"
#. Old default color names, probably often used in saved files
#: include/svx/strings.hrc:622
@@ -3553,67 +3553,67 @@ msgstr "Vihreä liukuväri"
#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
-msgstr ""
+msgstr "Pastelli kukkakimppu"
#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
-msgstr ""
+msgstr "Pastelli unelma"
#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
-msgstr ""
+msgstr "Sininen säväys"
#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
-msgstr ""
+msgstr "Tyhjä harmaa"
#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
-msgstr ""
+msgstr "Täplikäs harmaa"
#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
-msgstr ""
+msgstr "Lontoon usva"
#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
-msgstr ""
+msgstr "Sinivihreästä siniseen"
#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
-msgstr ""
+msgstr "Keskiyö"
#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
-msgstr ""
+msgstr "Syvä meri"
#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
-msgstr ""
+msgstr "Sukellusvene"
#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
-msgstr ""
+msgstr "Vihreä ruoho"
#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
-msgstr ""
+msgstr "Neonvalo"
#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
-msgstr ""
+msgstr "Auringonpaiste"
#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT83"
@@ -3623,7 +3623,7 @@ msgstr ""
#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahagoni"
-msgstr ""
+msgstr "Mahonki"
#. /gradients
#: include/svx/strings.hrc:767
@@ -3689,97 +3689,97 @@ msgstr "Tyhjä"
#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
-msgstr ""
+msgstr "Maalattu valkoinen"
#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
-msgstr ""
+msgstr "Paperitekstuuri"
#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
-msgstr ""
+msgstr "Rypistetty paperi"
#: include/svx/strings.hrc:782
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
-msgstr ""
+msgstr "Ruutupaperi"
#: include/svx/strings.hrc:783
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
-msgstr ""
+msgstr "Pergamenttipaperi"
#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
-msgstr ""
+msgstr "Aita"
#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
-msgstr ""
+msgstr "Lauta"
#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
-msgstr ""
+msgstr "Vaahteranlehdet"
#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
-msgstr ""
+msgstr "Nurmikko"
#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
-msgstr ""
+msgstr "Värikkäät pikkukivet"
#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
-msgstr ""
+msgstr "Kahvipavut"
#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
-msgstr ""
+msgstr "Pikkupilvet"
#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
-msgstr ""
+msgstr "Kylpyhuoneen kaakelit"
#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
-msgstr ""
+msgstr "Kivimuuri"
#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
-msgstr ""
+msgstr "Seepra"
#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
-msgstr ""
+msgstr "Väriraidat"
#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
-msgstr ""
+msgstr "Sora"
#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
-msgstr ""
+msgstr "Pergamenttistudio"
#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
-msgstr ""
+msgstr "Yötaivas"
#: include/svx/strings.hrc:798
msgctxt "RID_SVXSTR_BMP20"
@@ -4129,7 +4129,7 @@ msgstr "Viivatyyli"
#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
-msgstr ""
+msgstr "Kaikki muodot"
#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_LEND0"
@@ -4539,7 +4539,7 @@ msgstr "Tietokoneet"
#: include/svx/strings.hrc:963
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
-msgstr "Kuvaajat"
+msgstr "Kaaviot"
#: include/svx/strings.hrc:964
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
@@ -5952,12 +5952,12 @@ msgstr "Solutyylit"
#: include/svx/strings.hrc:1258
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
-msgstr ""
+msgstr "Etsi muotoilua"
#: include/svx/strings.hrc:1259
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
-msgstr ""
+msgstr "Korvaa muotoilulla"
#: include/svx/strings.hrc:1260
msgctxt "RID_SVXSTR_SEARCH_END"
@@ -5967,7 +5967,7 @@ msgstr "Asiakirjan loppu saavutettiin"
#: include/svx/strings.hrc:1261
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
-msgstr ""
+msgstr "Päästiin asiakirjan loppuun, jatketaan alusta"
#: include/svx/strings.hrc:1262
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
@@ -5982,7 +5982,7 @@ msgstr "Etsittävää ei löytynyt"
#: include/svx/strings.hrc:1264
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
-msgstr ""
+msgstr "Navigointielementtiä ei löytynyt"
#: include/svx/strings.hrc:1265
msgctxt "RID_SVXSTR_SEARCH_START"
@@ -5992,7 +5992,7 @@ msgstr "Asiakirjan alku saavutettiin"
#: include/svx/strings.hrc:1266
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
-msgstr ""
+msgstr "Päästiin asiakirjan alkuun, jatketaan lopusta"
#: include/svx/strings.hrc:1268
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
@@ -6426,6 +6426,8 @@ msgid ""
"The image has been modified. By default the original image will be saved.\n"
"Do you want to save the modified version instead?"
msgstr ""
+"Kuvaa on muokattu. Oletusarvoisesti alkuperäinen kuva tallennetaan.\n"
+"Haluatko sen sijaan tallentaa muokatun version?"
#: include/svx/strings.hrc:1368
msgctxt "RID_SUBSETMAP"
@@ -7835,7 +7837,7 @@ msgstr "Zanabazar-neliökirjaimisto"
#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
-msgstr ""
+msgstr "Shakkisymbolit"
#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
@@ -7860,37 +7862,37 @@ msgstr ""
#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
-msgstr ""
+msgstr "makassar"
#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
-msgstr ""
+msgstr "Mayanumerot"
#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
-msgstr ""
+msgstr "medefaidrin"
#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
-msgstr ""
+msgstr "vanha sogdi"
#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
-msgstr ""
+msgstr "sogdi"
#: include/svx/strings.hrc:1661
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
-msgstr ""
+msgstr "Vasemmalta oikealle (LTR)"
#: include/svx/strings.hrc:1662
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
-msgstr ""
+msgstr "Oikealta vasemmalle (RTL)"
#: include/svx/strings.hrc:1663
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
@@ -7901,27 +7903,27 @@ msgstr ""
#: include/svx/strings.hrc:1665
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
-msgstr ""
+msgstr "Vasemmalta oikealle (vaaka)"
#: include/svx/strings.hrc:1666
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
-msgstr ""
+msgstr "Oikealta vasemmalle (vaaka)"
#: include/svx/strings.hrc:1667
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
-msgstr ""
+msgstr "Oikealta vasemmalle (pysty)"
#: include/svx/strings.hrc:1668
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
-msgstr ""
+msgstr "Vasemmalta oikealle (pysty)"
#: include/svx/strings.hrc:1669
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
-msgstr ""
+msgstr "Alhaalta ylös, vasemmalta oikealle (pysty)"
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
@@ -8530,19 +8532,19 @@ msgstr "i, ii, iii, ..."
#: svx/inc/numberingtype.hrc:38
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1st, 2nd, 3rd, ..."
-msgstr ""
+msgstr "1., 2., 3., ..."
#. TEXT_NUMBER
#: svx/inc/numberingtype.hrc:39
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "One, Two, Three, ..."
-msgstr ""
+msgstr "Yksi, kaksi, kolme, ..."
#. TEXT_CARDINAL
#: svx/inc/numberingtype.hrc:40
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "First, Second, Third, ..."
-msgstr ""
+msgstr "Ensimmäinen, toinen, kolmas, ..."
#. TEXT_ORDINAL
#: svx/inc/numberingtype.hrc:41
@@ -8699,162 +8701,162 @@ msgstr "Ensimmäinen, vasemmat ja oikeat sivut"
#: svx/inc/spacing.hrc:19
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "None"
-msgstr ""
+msgstr "Ei mitään"
#: svx/inc/spacing.hrc:20
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Small (1/16\")"
-msgstr ""
+msgstr "Erittäin pieni (1/16\")"
#: svx/inc/spacing.hrc:21
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small (1/8\")"
-msgstr ""
+msgstr "Pieni (1/8\")"
#: svx/inc/spacing.hrc:22
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small Medium (1/4\")"
-msgstr ""
+msgstr "Pienehkö (1/4\")"
#: svx/inc/spacing.hrc:23
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium (3/8\")"
-msgstr ""
+msgstr "Keskisuuri (3/8\")"
#: svx/inc/spacing.hrc:24
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium Large (1/2\")"
-msgstr ""
+msgstr "Suurehko (1/2\")"
#: svx/inc/spacing.hrc:25
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Large (3/4\")"
-msgstr ""
+msgstr "Suuri (3/4\")"
#: svx/inc/spacing.hrc:26
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Large (1\")"
-msgstr ""
+msgstr "Erittäin suuri (1\")"
#: svx/inc/spacing.hrc:33
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "None"
-msgstr ""
+msgstr "Ei mitään"
#: svx/inc/spacing.hrc:34
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Small (0.16cm)"
-msgstr ""
+msgstr "Erittäin pieni (0,16 cm)"
#: svx/inc/spacing.hrc:35
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small (0.32cm)"
-msgstr ""
+msgstr "Pieni (0,32 cm)"
#: svx/inc/spacing.hrc:36
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small Medium (0.64cm)"
-msgstr ""
+msgstr "Pienehkö (0,64 cm)"
#: svx/inc/spacing.hrc:37
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium (0.95cm)"
-msgstr ""
+msgstr "Keskisuuri (0,95 cm)"
#: svx/inc/spacing.hrc:38
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium Large (1.27cm)"
-msgstr ""
+msgstr "Suurehko (1,27 cm)"
#: svx/inc/spacing.hrc:39
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Large (1.9cm)"
-msgstr ""
+msgstr "Suuri (1,9 cm)"
#: svx/inc/spacing.hrc:40
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Large (2.54cm)"
-msgstr ""
+msgstr "Erittäin suuri (2,54 cm)"
#: svx/inc/spacing.hrc:47
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "None"
-msgstr ""
+msgstr "Ei mitään"
#: svx/inc/spacing.hrc:48
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Small (1/16\")"
-msgstr ""
+msgstr "Erittäin pieni (1/16\")"
#: svx/inc/spacing.hrc:49
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small (1/8\")"
-msgstr ""
+msgstr "Pieni (1/8\")"
#: svx/inc/spacing.hrc:50
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small Medium (1/4\")"
-msgstr ""
+msgstr "Pienehkö (1/4\")"
#: svx/inc/spacing.hrc:51
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium (3/8\")"
-msgstr ""
+msgstr "Keskisuuri (3/8\")"
#: svx/inc/spacing.hrc:52
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium Large (1/2\")"
-msgstr ""
+msgstr "Suurehko (1/2\")"
#: svx/inc/spacing.hrc:53
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Large (3/4\")"
-msgstr ""
+msgstr "Suuri (3/4\")"
#: svx/inc/spacing.hrc:54
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Large (1\")"
-msgstr ""
+msgstr "Erittäin suuri (1\")"
#: svx/inc/spacing.hrc:61
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "None"
-msgstr ""
+msgstr "Ei mitään"
#: svx/inc/spacing.hrc:62
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Small (0.16cm)"
-msgstr ""
+msgstr "Erittäin pieni (0,16 cm)"
#: svx/inc/spacing.hrc:63
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small (0.32cm)"
-msgstr ""
+msgstr "Pieni (0,32 cm)"
#: svx/inc/spacing.hrc:64
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small Medium (0.64cm)"
-msgstr ""
+msgstr "Pienehkö (0,64 cm)"
#: svx/inc/spacing.hrc:65
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium (0.95cm)"
-msgstr ""
+msgstr "Keskisuuri (0,95 cm)"
#: svx/inc/spacing.hrc:66
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium Large (1.27cm)"
-msgstr ""
+msgstr "Suurehko (1,27 cm)"
#: svx/inc/spacing.hrc:67
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Large (1.9cm)"
-msgstr ""
+msgstr "Suuri (1,9 cm)"
#: svx/inc/spacing.hrc:68
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Large (2.54cm)"
-msgstr ""
+msgstr "Erittäin suuri (2,54 cm)"
#: svx/inc/svxerr.hrc:33
msgctxt "RID_SVXERRCTX"
@@ -10465,7 +10467,7 @@ msgstr "Kauppamerkki"
#: svx/uiconfig/ui/classificationdialog.ui:37
msgctxt "classificationdialog|dialogname"
msgid "Classification"
-msgstr ""
+msgstr "Luokitus"
#: svx/uiconfig/ui/classificationdialog.ui:123
msgctxt "classificationdialog|label-Classification"
@@ -12479,7 +12481,7 @@ msgstr "Ominaisuudet..."
#: svx/uiconfig/ui/gallerymenu2.ui:12
msgctxt "gallerymenu2|add"
msgid "_Insert"
-msgstr "Lisää"
+msgstr "_Lisää"
#: svx/uiconfig/ui/gallerymenu2.ui:20
msgctxt "gallerymenu2|background"
@@ -13475,6 +13477,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"%PRODUCTNAME toimii tällä hetkellä vikasietotilassa, joka poistaa väliaikaisesti asetuksesi ja lisäosasi käytöstä.\n"
+"\n"
+"Voit tehdä yhden tai useamman seuraavista muutoksista käyttäjäprofiiliisi palauttaaksesi %PRODUCTNAMEn toimintakuntoon."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
diff --git a/source/fi/sw/messages.po b/source/fi/sw/messages.po
index 2063ec86591..b721d826820 100644
--- a/source/fi/sw/messages.po
+++ b/source/fi/sw/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-16 13:19+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-27 18:46+0000\n"
+"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563283152.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1564253210.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -556,82 +556,82 @@ msgstr "Nimetön 9"
#: sw/inc/pageformatpanel.hrc:18
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "None"
-msgstr ""
+msgstr "Ei mikään"
#: sw/inc/pageformatpanel.hrc:19
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Narrow"
-msgstr ""
+msgstr "Kapea"
#: sw/inc/pageformatpanel.hrc:20
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Moderate"
-msgstr ""
+msgstr "Kohtalainen"
#: sw/inc/pageformatpanel.hrc:21
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (0.75\")"
-msgstr ""
+msgstr "Normaali (0.75\")"
#: sw/inc/pageformatpanel.hrc:22
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (1\")"
-msgstr ""
+msgstr "Normaali (1\")"
#: sw/inc/pageformatpanel.hrc:23
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (1.25\")"
-msgstr ""
+msgstr "Normaali (1.25\")"
#: sw/inc/pageformatpanel.hrc:24
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Wide"
-msgstr ""
+msgstr "Leveä"
#: sw/inc/pageformatpanel.hrc:25
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Mirrored"
-msgstr ""
+msgstr "Peilattu"
#: sw/inc/pageformatpanel.hrc:31
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "None"
-msgstr ""
+msgstr "Ei mitään"
#: sw/inc/pageformatpanel.hrc:32
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Narrow"
-msgstr ""
+msgstr "Kapea"
#: sw/inc/pageformatpanel.hrc:33
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Moderate"
-msgstr ""
+msgstr "Kohtalainen"
#: sw/inc/pageformatpanel.hrc:34
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (1.9cm)"
-msgstr ""
+msgstr "Normaali (1,9 cm)"
#: sw/inc/pageformatpanel.hrc:35
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (2.54cm)"
-msgstr ""
+msgstr "Normaali (2,54 cm)"
#: sw/inc/pageformatpanel.hrc:36
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (3.18cm)"
-msgstr ""
+msgstr "Normaali (3,18 cm)"
#: sw/inc/pageformatpanel.hrc:37
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Wide"
-msgstr ""
+msgstr "Leveä"
#: sw/inc/pageformatpanel.hrc:38
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
-msgstr ""
+msgstr "Peilattu"
#. Format names
#: sw/inc/strings.hrc:27
@@ -1509,31 +1509,31 @@ msgstr "Numerointi ivx"
#: sw/inc/strings.hrc:207
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
-msgstr ""
+msgstr "Luettelomerkki •"
#. Bullet \u2013
#: sw/inc/strings.hrc:209
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
-msgstr ""
+msgstr "Luettelomerkki –"
#. Bullet \uE4C4
#: sw/inc/strings.hrc:211
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
-msgstr ""
+msgstr "Luettelomerkki "
#. Bullet \uE49E
#: sw/inc/strings.hrc:213
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
-msgstr ""
+msgstr "Luettelomerkki "
#. Bullet \uE20B
#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
-msgstr ""
+msgstr "Luettelomerkki "
#: sw/inc/strings.hrc:216
msgctxt "STR_COLUMN_VALUESET_ITEM0"
@@ -1891,7 +1891,7 @@ msgstr "Piilota käyttäjän $1 huomautukset"
#: sw/inc/strings.hrc:290
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
-msgstr ""
+msgstr "Lukujen numerointi"
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
@@ -2846,15 +2846,15 @@ msgstr "esiintymät"
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Yksi välilehti"
+msgstr[1] "$1 välilehteä"
#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Yksi rivinvaihto"
+msgstr[1] "$1 rivinvaihtoa"
#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_PAGEBREAKS"
@@ -3511,7 +3511,7 @@ msgstr "Vetotila"
#: sw/inc/strings.hrc:629
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
-msgstr ""
+msgstr "Lähetä jäsennys leikepöydälle"
#: sw/inc/strings.hrc:630
msgctxt "STR_HYPERLINK"
@@ -4448,6 +4448,9 @@ msgid ""
"\n"
"Do you want to enter email account information now?"
msgstr ""
+"%PRODUCTNAME tarvitsee joukkokirjeasiakirjojen lähettämiseksi sähköpostissa tietoa käytettävästä sähköpostitilistä.\n"
+"\n"
+"Haluatko syöttää sähköpostitilin tiedot nyt?"
#: sw/inc/strings.hrc:827
msgctxt "ST_FILTERNAME"
@@ -4457,12 +4460,12 @@ msgstr "%PRODUCTNAME osoitelista (.csv)"
#: sw/inc/strings.hrc:829
msgctxt "ST_STARTING"
msgid "Select Starting Document"
-msgstr ""
+msgstr "Valitse asiakirja pohjaksi"
#: sw/inc/strings.hrc:830
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
-msgstr ""
+msgstr "Valitse asiakirjan tyyppi"
#: sw/inc/strings.hrc:831
msgctxt "ST_ADDRESSBLOCK"
@@ -4472,17 +4475,17 @@ msgstr "Lisää osoitelohko"
#: sw/inc/strings.hrc:832
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
-msgstr ""
+msgstr "Valitse osoitelista"
#: sw/inc/strings.hrc:833
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
-msgstr ""
+msgstr "Luo tervehdys"
#: sw/inc/strings.hrc:834
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
-msgstr ""
+msgstr "Säädä asettelua"
#: sw/inc/strings.hrc:835
msgctxt "ST_EXCLUDE"
@@ -4522,7 +4525,7 @@ msgstr "Oikoluku on valmis."
#: sw/inc/strings.hrc:844
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
-msgstr ""
+msgstr "Sanastoa ei ole saatavilla"
#. --------------------------------------------------------------------
#. Description: strings for the types
@@ -6110,7 +6113,7 @@ msgstr "Muotoile alatunniste..."
#: sw/inc/strings.hrc:1210
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
-msgstr ""
+msgstr "Kiinnitä taulukko"
#: sw/inc/strings.hrc:1212
msgctxt "STR_GRFILTER_OPENERROR"
@@ -6921,7 +6924,7 @@ msgstr "Tallenna asiakirja eri nimelle."
#: sw/uiconfig/swriter/ui/alreadyexistsdialog.ui:81
msgctxt "alreadyexistsdialog|label1"
msgid "Subject:"
-msgstr ""
+msgstr "Aihe:"
#: sw/uiconfig/swriter/ui/annotationmenu.ui:12
msgctxt "annotationmenu|reply"
@@ -6991,7 +6994,7 @@ msgstr "_LF"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:261
msgctxt "asciifilterdialog|includebom"
msgid "Include byte-order mark"
-msgstr ""
+msgstr "Sisällytä tavujärjestysmerkki (BOM)"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:284
msgctxt "asciifilterdialog|label1"
@@ -7016,17 +7019,17 @@ msgstr "Kohdista osoitelistan kentät osoitekenttiin."
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:185
msgctxt "assignfieldsdialog|ST_ADDRESSELEMENT"
msgid "Address elements"
-msgstr ""
+msgstr "Osoitteiden kentät"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:197
msgctxt "assignfieldsdialog|ST_PREVIEW"
msgid "Preview"
-msgstr ""
+msgstr "Esikatselu"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:210
msgctxt "assignfieldsdialog|ST_MATCHESTO"
msgid "Matches to field"
-msgstr ""
+msgstr "Vastaa kenttää"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:236
msgctxt "assignfieldsdialog|PREVIEW_LABEL"
@@ -7311,7 +7314,7 @@ msgstr "Luokka"
#: sw/uiconfig/swriter/ui/autotext.ui:475
msgctxt "autotext|example-atkobject"
msgid "Preview"
-msgstr ""
+msgstr "Esikatselu"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:8
msgctxt "bibliographyentry|BibliographyEntryDialog"
@@ -7436,7 +7439,7 @@ msgstr "Kotipuhelinnumero"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:105
msgctxt "businessdatapage|faxft"
msgid "Homepage/email:"
-msgstr ""
+msgstr "Kotisivu / sähköposti:"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:127
msgctxt "businessdatapage|company-atkobject"
@@ -7456,7 +7459,7 @@ msgstr "Kotipuhelinnumero"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:214
msgctxt "businessdatapage|url-atkobject"
msgid "Fax number"
-msgstr ""
+msgstr "Faksinumero"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:231
msgctxt "businessdatapage|email-atkobject"
@@ -7666,7 +7669,7 @@ msgstr "Piilokopio:"
#: sw/uiconfig/swriter/ui/ccdialog.ui:130
msgctxt "ccdialog|label4"
msgid "Note: Separate email addresses with a semicolon (;)."
-msgstr ""
+msgstr "Huom: Erota sähköpostiosoitteet puolipistein (;)."
#: sw/uiconfig/swriter/ui/ccdialog.ui:170
msgctxt "ccdialog|label1"
@@ -7681,7 +7684,7 @@ msgstr "Merkki"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "Vakio"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -7921,7 +7924,7 @@ msgstr "Ehdollinen tyyli"
#: sw/uiconfig/swriter/ui/conditionpage.ui:99
msgctxt "conditionpage|contextft"
msgid "Context"
-msgstr ""
+msgstr "Konteksti"
#: sw/uiconfig/swriter/ui/conditionpage.ui:112
msgctxt "conditionpage|usedft"
@@ -8363,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Syöttökenttä "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Muokkaa"
@@ -8381,17 +8384,17 @@ msgstr ""
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:146
msgctxt "dropdownformfielddialog|listitem_label"
msgid "Items on list"
-msgstr ""
+msgstr "Kohdat listassa"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:218
msgctxt "dropdownformfielddialog|up"
msgid "Move Up"
-msgstr ""
+msgstr "Siirrä ylemmäs"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:232
msgctxt "dropdownformfielddialog|down"
msgid "Move Down"
-msgstr ""
+msgstr "Siirrä alemmas"
#: sw/uiconfig/swriter/ui/editcategories.ui:18
msgctxt "editcategories|EditCategoriesDialog"
@@ -8426,17 +8429,17 @@ msgstr "Muokkaa kenttiä"
#: sw/uiconfig/swriter/ui/editfielddialog.ui:99
msgctxt "editfielddialog|prev_tip"
msgid "Previous field of same type"
-msgstr ""
+msgstr "Edellinen saman tyypin kenttä"
#: sw/uiconfig/swriter/ui/editfielddialog.ui:115
msgctxt "editfielddialog|next_tip"
msgid "Next field of same type"
-msgstr ""
+msgstr "Seuraava saman tyypin kenttä"
#: sw/uiconfig/swriter/ui/editfielddialog.ui:126
msgctxt "editfielddialog|edit"
msgid "_Edit"
-msgstr "Muokkaa"
+msgstr "_Muokkaa"
#: sw/uiconfig/swriter/ui/editfielddialog.ui:131
msgctxt "editfielddialog|edit_tip"
@@ -8496,7 +8499,7 @@ msgstr "Hyperlinkki"
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:452
msgctxt "editsectiondialog|protect"
msgid "_Protect"
-msgstr ""
+msgstr "Suojaa"
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:480
msgctxt "editsectiondialog|withpassword"
@@ -8641,7 +8644,7 @@ msgstr "Uusi asiakirja"
#: sw/uiconfig/swriter/ui/envdialog.ui:40
msgctxt "envdialog|user"
msgid "_Insert"
-msgstr "Lisää"
+msgstr "_Lisää"
#: sw/uiconfig/swriter/ui/envdialog.ui:54
msgctxt "envdialog|modify"
@@ -8666,22 +8669,22 @@ msgstr "Tulostin"
#: sw/uiconfig/swriter/ui/envformatpage.ui:44
msgctxt "envformatpage|character1"
msgid "C_haracter..."
-msgstr ""
+msgstr "Merkki..."
#: sw/uiconfig/swriter/ui/envformatpage.ui:52
msgctxt "envformatpage|paragraph1"
msgid "P_aragraph..."
-msgstr ""
+msgstr "Kappale..."
#: sw/uiconfig/swriter/ui/envformatpage.ui:64
msgctxt "envformatpage|character2"
msgid "C_haracter..."
-msgstr ""
+msgstr "Merkki..."
#: sw/uiconfig/swriter/ui/envformatpage.ui:72
msgctxt "envformatpage|paragraph2"
msgid "P_aragraph..."
-msgstr ""
+msgstr "Kappale..."
#: sw/uiconfig/swriter/ui/envformatpage.ui:156
msgctxt "envformatpage|label5"
@@ -8920,7 +8923,7 @@ msgstr "Kentät"
#: sw/uiconfig/swriter/ui/fielddialog.ui:40
msgctxt "fielddialog|ok"
msgid "_Insert"
-msgstr "Lisää"
+msgstr "_Lisää"
#: sw/uiconfig/swriter/ui/fielddialog.ui:135
msgctxt "fielddialog|document"
@@ -10110,7 +10113,7 @@ msgstr "Muutoksia ei hyväksytä."
#: sw/uiconfig/swriter/ui/inputfielddialog.ui:8
msgctxt "inputfielddialog|InputFieldDialog"
msgid "Review Fields"
-msgstr ""
+msgstr "Tarkista kentät"
#: sw/uiconfig/swriter/ui/inputfielddialog.ui:131
msgctxt "inputfielddialog|inputfieldname"
@@ -10280,12 +10283,12 @@ msgstr "Lisää"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:122
msgctxt "insertbookmark|hide"
msgid "H_ide"
-msgstr ""
+msgstr "Piilota"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:145
msgctxt "insertbookmark|condlabel"
msgid "_With condition"
-msgstr ""
+msgstr "Ehdolla"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:198
msgctxt "insertbookmark|page"
@@ -10340,7 +10343,7 @@ msgstr "Rivinvaihto"
#: sw/uiconfig/swriter/ui/insertbreak.ui:112
msgctxt "insertbreak|linerb-atkobject"
msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph."
-msgstr ""
+msgstr "Päättää nykyisen rivin ja siirtää kohdistimen oikealla puolella olevan tekstin seuraavalle riville luomatta uutta kappaletta."
#: sw/uiconfig/swriter/ui/insertbreak.ui:124
msgctxt "insertbreak|columnrb"
@@ -10480,7 +10483,7 @@ msgstr "Lisää tiedot muodossa:"
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:162
msgctxt "insertdbcolumnsdialog|astable"
msgid "T_able"
-msgstr "Taulukko"
+msgstr "Taulu"
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:178
msgctxt "insertdbcolumnsdialog|asfields"
@@ -10630,7 +10633,7 @@ msgstr "Lisää osa"
#: sw/uiconfig/swriter/ui/insertsectiondialog.ui:39
msgctxt "insertsectiondialog|ok"
msgid "_Insert"
-msgstr "Lisää"
+msgstr "_Lisää"
#: sw/uiconfig/swriter/ui/insertsectiondialog.ui:111
msgctxt "insertsectiondialog|section"
@@ -10695,7 +10698,7 @@ msgstr "Otsikko"
#: sw/uiconfig/swriter/ui/inserttable.ui:281
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
-msgstr "Toista otsikkorivejä uusilla sivuilla"
+msgstr "Toista otsikkorivit uusilla sivuilla"
#: sw/uiconfig/swriter/ui/inserttable.ui:299
msgctxt "inserttable|dontsplitcb"
@@ -10715,7 +10718,7 @@ msgstr "Asetukset"
#: sw/uiconfig/swriter/ui/inserttable.ui:456
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
-msgstr ""
+msgstr "Tyylit"
#: sw/uiconfig/swriter/ui/labeldialog.ui:8
msgctxt "labeldialog|LabelDialog"
@@ -10980,7 +10983,7 @@ msgstr "_Sähköpostiosoite:"
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:107
msgctxt "mailconfigpage|replytocb"
msgid "Send replies to _different email address"
-msgstr ""
+msgstr "Lähetä vastaukset eri osoitteeseen"
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:126
msgctxt "mailconfigpage|replyto_label"
@@ -11440,7 +11443,7 @@ msgstr "Koko sivu"
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:375
msgctxt "mmlayoutpage|example-atkobject"
msgid "Preview"
-msgstr ""
+msgstr "Esikatselu"
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:402
msgctxt "mmlayoutpage|label1"
@@ -11450,7 +11453,7 @@ msgstr "Säädä osoitelohkon ja tervehdyksen asettelua"
#: sw/uiconfig/swriter/ui/mmmailbody.ui:8
msgctxt "mmmailbody|MailBodyDialog"
msgid "Email Message"
-msgstr ""
+msgstr "Sähköpostiviesti"
#: sw/uiconfig/swriter/ui/mmmailbody.ui:90
msgctxt "mmmailbody|bodyft"
@@ -11460,7 +11463,7 @@ msgstr "Kirjoita viestisi tähän"
#: sw/uiconfig/swriter/ui/mmmailbody.ui:138
msgctxt "mmmailbody|greeting"
msgid "This email should contain a salutation"
-msgstr ""
+msgstr "Tämän sähköpostiviestin tulisi sisältää tervehdys"
#: sw/uiconfig/swriter/ui/mmmailbody.ui:167
msgctxt "mmmailbody|generalft"
@@ -11525,7 +11528,7 @@ msgstr "Kirje"
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:94
msgctxt "mmoutputtypepage|email"
msgid "_Email message"
-msgstr ""
+msgstr "Sähköpostiviesti"
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:134
msgctxt "mmoutputtypepage|label1"
@@ -11535,7 +11538,7 @@ msgstr "Minkä tyyppisen asiakirjan haluat luoda?"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:18
msgctxt "mmresultemaildialog|MMResultEmailDialog"
msgid "Email merged document"
-msgstr ""
+msgstr "Lähetä joukkokirje sähköpostina"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:37
msgctxt "mmresultemaildialog|ok"
@@ -11600,7 +11603,7 @@ msgstr "Liitteen nimi"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:276
msgctxt "mmresultemaildialog|label2"
msgid "Email options"
-msgstr ""
+msgstr "Sähköpostiasetukset"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:308
msgctxt "mmresultemaildialog|sendallrb"
@@ -12145,12 +12148,12 @@ msgstr "Tul_osta"
#: sw/uiconfig/swriter/ui/notebookbar.ui:16416
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Lomak_e"
#: sw/uiconfig/swriter/ui/notebookbar.ui:17305
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Lomak~e"
#: sw/uiconfig/swriter/ui/notebookbar.ui:17336
msgctxt "WriterNotebookbar|ToolsMenuButton"
@@ -12295,12 +12298,12 @@ msgstr "Tu~losta"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17319
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Lomak_e"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17374
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Lomak~e"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17424
msgctxt "notebookbar_compact|ToolsMenuButton"
@@ -12315,7 +12318,7 @@ msgstr "Ty~ökalut"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2736
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
-msgstr "Valikkopalkki"
+msgstr "Valikkorivi"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3208
msgctxt "notebookbar_groupedbar_compact|MenubarView"
@@ -12369,7 +12372,7 @@ msgstr "_Viittaukset"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4709
msgctxt "notebookbar_groupedbar_compact|ReviewButton"
msgid "_Review"
-msgstr "_Tarkista"
+msgstr "Ta_rkista"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4823
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10213
@@ -12382,12 +12385,12 @@ msgstr "_Näytä"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:12161
msgctxt "notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Lomak_e"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5661
msgctxt "notebookbar_groupedbar_compact|rowscolumnst"
msgid "_Table"
-msgstr ""
+msgstr "Taulukko"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6152
msgctxt "notebookbar_groupedbar_compact|CalculateButton"
@@ -12405,7 +12408,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10588
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "Järjestä"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7202
msgctxt "notebookbar_groupedbar_compact|draw"
@@ -12426,7 +12429,7 @@ msgstr "3D"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7818
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "Fonttipaja"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7932
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9079
@@ -12478,7 +12481,7 @@ msgstr "_Kieli"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11683
msgctxt "notebookbar_groupedbar_compact|reviewButton"
msgid "_Review"
-msgstr "_Tarkista"
+msgstr "Ta_rkista"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11819
msgctxt "notebookbar_groupedbar_compact|CommentsButton"
@@ -12531,7 +12534,7 @@ msgstr "T_yylit"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9481
msgctxt "notebookbar_groupedbar_full|FormatButton"
msgid "F_ormat"
-msgstr ""
+msgstr "Muotoilu"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5138
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6938
@@ -12550,7 +12553,7 @@ msgstr "_Lisää"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8251
msgctxt "notebookbar_groupedbar_full|ReferenceButton"
msgid "Referen_ce"
-msgstr ""
+msgstr "Viite"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5808
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8617
@@ -12571,27 +12574,27 @@ msgstr "_Näytä"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:16260
msgctxt "notebookbar_groupedbar_full|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Lomak_e"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7163
msgctxt "notebookbar_groupedbar_full|TableButton"
msgid "T_able"
-msgstr ""
+msgstr "T_aulukko"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7362
msgctxt "notebookbar_groupedbar_full|RowsColumnsButton"
msgid "R_ows"
-msgstr ""
+msgstr "Rivit"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7564
msgctxt "notebookbar_groupedbar_full|MergeButton"
msgid "_Merge"
-msgstr ""
+msgstr "Yhdistä"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7793
msgctxt "notebookbar_groupedbar_full|SelectButton"
msgid "Sele_ct"
-msgstr ""
+msgstr "Valitse"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8022
msgctxt "notebookbar_groupedbar_full|CalculateButton"
@@ -12611,7 +12614,7 @@ msgstr "_Huomautukset"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9033
msgctxt "notebookbar_groupedbar_full|CompareButton"
msgid "Com_pare"
-msgstr ""
+msgstr "Vertaa"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10407
msgctxt "notebookbar_groupedbar_full|DrawButton"
@@ -12624,7 +12627,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:15468
msgctxt "notebookbar_groupedbar_full|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "Järjestä"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11436
msgctxt "notebookbar_groupedbar_full|DrawEditButton"
@@ -12677,7 +12680,7 @@ msgstr "_Media"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:17043
msgctxt "notebookbar_groupedbar_full|PrintMenuButton"
msgid "Slide Layout"
-msgstr ""
+msgstr "Dian asettelu"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:17528
msgctxt "notebookbar_groupedbar_full|PrintMenuButton"
@@ -13032,7 +13035,7 @@ msgstr "Jäsennystaso:"
#: sw/uiconfig/swriter/ui/numparapage.ui:67
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Text Body"
-msgstr ""
+msgstr "Leipäteksti"
#: sw/uiconfig/swriter/ui/numparapage.ui:68
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
@@ -13381,12 +13384,12 @@ msgstr "Pidennä sanaväliä manuaaliseen rivinvaihtoon päättyvillä riveillä
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
-msgstr ""
+msgstr "Suojaa lomake (ei enää suojaa koko asiakirjaa. Lisää kirjoitussuojattu osio sen sijasta)"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
msgid "Word-compatible trailing blanks"
-msgstr ""
+msgstr "Word-yhteensopivat loppuvälilyönnit"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
msgctxt "optcompatpage|format"
@@ -13416,7 +13419,7 @@ msgstr "Yhteensopivuusvalinnat asiakirjalle “%DOCNAME”"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:166
msgctxt "optcompatpage|globalcompatoptions"
msgid "Reorganize Forms menu to have it MS compatible"
-msgstr ""
+msgstr "Järjestä Lomake-valikko MS-yhteensopivaksi"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:184
msgctxt "optcompatpage|label2"
@@ -13501,7 +13504,7 @@ msgstr "Vaihdot"
#: sw/uiconfig/swriter/ui/optformataidspage.ui:134
msgctxt "optformataidspage|hiddentext"
msgid "Hidden characters"
-msgstr ""
+msgstr "Piilotetut merkit"
#: sw/uiconfig/swriter/ui/optformataidspage.ui:216
msgctxt "optformataidspage|displayfl"
@@ -14145,7 +14148,7 @@ msgstr "Ei mitään"
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:385
msgctxt "outlinepositionpage|liststore2"
msgid "New Line"
-msgstr ""
+msgstr "Rivinvaihto"
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:398
msgctxt "outlinepositionpage|numfollowedby"
@@ -14663,7 +14666,6 @@ msgid "Flip"
msgstr "Käännä"
#: sw/uiconfig/swriter/ui/picturepage.ui:261
-#, fuzzy
msgctxt "picturepage|FT_ANGLE"
msgid "_Angle:"
msgstr "Kulma:"
@@ -14911,7 +14913,7 @@ msgstr "Kotipuhelinnumero"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:105
msgctxt "privateuserpage|faxft"
msgid "Homepage/email:"
-msgstr ""
+msgstr "Kotisivu / sähköposti:"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:127
msgctxt "privateuserpage|firstname-atkobject"
@@ -14946,7 +14948,7 @@ msgstr "Kotipuhelinnumero"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:265
msgctxt "privateuserpage|url-atkobject"
msgid "Fax number"
-msgstr ""
+msgstr "Faksinumero"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:282
msgctxt "privateuserpage|email-atkobject"
@@ -15056,12 +15058,12 @@ msgstr "Tämä vaikuttaa kaikkiin uusiin asiakirjoihin, jotka pohjautuvat oletus
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:7
msgctxt "queryredlinedialog|QueryRedlineDialog"
msgid "AutoCorrect"
-msgstr ""
+msgstr "Automaattinen korjaus"
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:13
msgctxt "queryredlinedialog|QueryRedlineDialog"
msgid "AutoCorrect completed."
-msgstr ""
+msgstr "Automaattinen korjaus on valmis."
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:14
msgctxt "queryredlinedialog|QueryRedlineDialog"
@@ -15069,6 +15071,8 @@ msgid ""
"You can accept or reject all changes,\n"
"or accept or reject particular changes."
msgstr ""
+"Voit hyväksyä tai hylätä kaikki muutokset,\n"
+"tai voit hyväksyä tai hylätä yksittäisiä muutoksia."
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:26
msgctxt "queryredlinedialog|cancel"
@@ -15083,7 +15087,7 @@ msgstr "Hyväksy kaikki"
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:55
msgctxt "queryredlinedialog|edit"
msgid "Edit Changes"
-msgstr ""
+msgstr "Muokkaa muutoksia"
#: sw/uiconfig/swriter/ui/queryrotateintostandarddialog.ui:7
msgctxt "queryrotateintostandarddialog|QueryRotateIntoStandardOrientationDialog"
@@ -15123,7 +15127,7 @@ msgstr "Avaa uudessa ikkunassa"
#: sw/uiconfig/swriter/ui/readonlymenu.ui:28
msgctxt "readonlymenu|edit"
msgid "_Edit"
-msgstr "Muokkaa"
+msgstr "_Muokkaa"
#: sw/uiconfig/swriter/ui/readonlymenu.ui:36
msgctxt "readonlymenu|selection"
@@ -15538,7 +15542,7 @@ msgstr "Nimi"
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:152
msgctxt "selecttabledialog|column2"
msgid "Type"
-msgstr ""
+msgstr "Tyyppi"
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:179
msgctxt "selecttabledialog|preview"
@@ -16118,7 +16122,7 @@ msgstr "Vaakataso"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
-msgstr ""
+msgstr "Pysty (ylhäältä alas)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
msgctxt "tabletextflowpage|liststore1"
@@ -16128,7 +16132,7 @@ msgstr "Käytä ensisijaista objektiasetusta"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:301
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
-msgstr ""
+msgstr "Pysty (alhaalta ylös)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:322
msgctxt "tabletextflowpage|headline"
@@ -16403,7 +16407,7 @@ msgstr "Sivun tyyli"
#: sw/uiconfig/swriter/ui/templatedialog8.ui:71
msgctxt "templatedialog8|standard"
msgid "Standard"
-msgstr ""
+msgstr "Vakio"
#: sw/uiconfig/swriter/ui/templatedialog8.ui:166
msgctxt "templatedialog8|organizer"
@@ -16783,7 +16787,7 @@ msgstr "Luku ilman erotinmerkkiä"
#: sw/uiconfig/swriter/ui/tocentriespage.ui:495
msgctxt "tocentriespage|insert"
msgid "_Insert"
-msgstr "Lisää"
+msgstr "_Lisää"
#: sw/uiconfig/swriter/ui/tocentriespage.ui:509
msgctxt "tocentriespage|remove"
@@ -16953,7 +16957,7 @@ msgstr "Aakkosellinen hakemisto"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
-msgstr ""
+msgstr "Kuvaluettelo"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
@@ -17183,7 +17187,7 @@ msgstr "Vastaavuustiedosto"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
-msgstr "Tiedosto"
+msgstr "_Tiedosto"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
@@ -17223,7 +17227,7 @@ msgstr "Oletus"
#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
-msgstr "Muokkaa"
+msgstr "_Muokkaa"
#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
@@ -17278,12 +17282,12 @@ msgstr "Näytä"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:223
msgctxt "viewoptionspage|hiddentextfield"
msgid "Hidden te_xt"
-msgstr ""
+msgstr "Piiloteksti"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:237
msgctxt "viewoptionspage|hiddenparafield"
msgid "Hidden p_aragraphs"
-msgstr ""
+msgstr "Piilotetut kappaleet"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:257
msgctxt "viewoptionspage|fieldslabel"
diff --git a/source/fi/swext/mediawiki/help.po b/source/fi/swext/mediawiki/help.po
index 0b1fedc4996..ac1add797d0 100644
--- a/source/fi/swext/mediawiki/help.po
+++ b/source/fi/swext/mediawiki/help.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: 2018-11-15 13:53+0100\n"
-"PO-Revision-Date: 2019-07-16 15:54+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-27 17:34+0000\n"
+"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\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: 1563292447.000000\n"
+"X-POOTLE-MTIME: 1564248861.000000\n"
#: help.tree
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_id368968\n"
"help.text"
msgid "In the <link href=\"com.sun.wiki-publisher/wikisettings.xhp\"><emph>Options</emph></link> dialog, click <emph>Add</emph>."
-msgstr ""
+msgstr "<link href=\"com.sun.wiki-publisher/wikisettings.xhp\"><emph>Asetukset</emph></link>-valintaikkunassa napsauta <emph>Lisää</emph>."
#: wiki.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"par_id5328836\n"
"help.text"
msgid "In the <emph>URL</emph> text box, enter the address of a wiki that you want to connect to."
-msgstr ""
+msgstr "Syötä <emph>URL</emph>-tekstiruutuun sen wikin tiedot, mihin haluat yhdistää."
#: wiki.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id5906552\n"
"help.text"
msgid "In the <emph>Username</emph> box, enter your user ID for your wiki account."
-msgstr ""
+msgstr "Syötä <emph>Käyttäjätunnus</emph>-ruutuun wiki-tilisi käyttäjätunnus."
#: 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 <emph>OK</emph>."
-msgstr ""
+msgstr "Kirjoita salasanaruutuun wiki-tilisi salasana ja napsauta <emph>OK</emph>."
#: wiki.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"par_id4571672\n"
"help.text"
msgid "Use the <emph>MediaWiki</emph> dialog to add or edit your MediaWiki account settings."
-msgstr ""
+msgstr "<emph>MediaWiki</emph>-valintaikkunassa lisätään tai muokataan MediaWiki-tilin asetuksia."
#: 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 “https://wiki.documentfoundation.org” or copy the URL from a web browser."
-msgstr ""
+msgstr "Syötä wikipalvelimen internet-osoite muodossa \"http://wiki.documentfoundation.org\" tai kopioi URL-osoite www-selaimesta."
#: wikiaccount.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"par_id664082\n"
"help.text"
msgid "<ahelp hid=\".\">Select the MediaWiki server where you want to publish your document. Click <emph>Add</emph> to add a new server to the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Valitse MediaWiki-palvelin, missä haluat julkaista asiakirjasi. Napsauta <emph>Lisää</emph> lisätäksesi uuden palvelimen listaan.</ahelp>"
#: wikisend.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"par_id2486342\n"
"help.text"
msgid "<ahelp hid=\".\">Enter an optional short summary or comment.</ahelp> See <link href=\"https://meta.wikimedia.org/wiki/Help:Edit_summary\"><emph>https://meta.wikimedia.org/wiki/Help:Edit_summary</emph></link>."
-msgstr ""
+msgstr "<ahelp hid=\".\">Syötä valinnainen lyhyt yhteenveto tai kommentti.</ahelp> Katso <link href=\"https://meta.wikimedia.org/wiki/Help:Edit_summary\"><emph>https://meta.wikimedia.org/wiki/Help:Edit_summary</emph></link>."
#: wikisend.xhp
msgctxt ""
diff --git a/source/fi/vcl/messages.po b/source/fi/vcl/messages.po
index 78ec80e61ea..fa231c8f9cf 100644
--- a/source/fi/vcl/messages.po
+++ b/source/fi/vcl/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:23+0200\n"
-"PO-Revision-Date: 2019-07-16 11:28+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-27 17:42+0000\n"
+"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563276481.000000\n"
+"X-POOTLE-MTIME: 1564249360.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -230,12 +230,12 @@ msgstr ""
#: vcl/inc/print.hrc:70
msgctxt "RID_STR_PAPERNAMES"
msgid "C3 Envelope"
-msgstr ""
+msgstr "C3-kirjekuori"
#: vcl/inc/print.hrc:71
msgctxt "RID_STR_PAPERNAMES"
msgid "Italian Envelope"
-msgstr ""
+msgstr "Italialainen kirjekuori"
#: vcl/inc/print.hrc:72
msgctxt "RID_STR_PAPERNAMES"
@@ -270,7 +270,7 @@ msgstr "15x11"
#: vcl/inc/print.hrc:78
msgctxt "RID_STR_PAPERNAMES"
msgid "Invitation Envelope"
-msgstr ""
+msgstr "Kutsukirjekuori"
#: vcl/inc/print.hrc:79
msgctxt "RID_STR_PAPERNAMES"
@@ -295,7 +295,7 @@ msgstr ""
#: vcl/inc/print.hrc:83
msgctxt "RID_STR_PAPERNAMES"
msgid "Double Postcard"
-msgstr ""
+msgstr "Tuplapostikortti"
#: vcl/inc/print.hrc:84
msgctxt "RID_STR_PAPERNAMES"
@@ -370,17 +370,17 @@ msgstr "B10 (ISO)"
#: vcl/inc/print.hrc:98
msgctxt "RID_STR_PAPERNAMES"
msgid "C2 Envelope"
-msgstr ""
+msgstr "C2-kirjekuori"
#: vcl/inc/print.hrc:99
msgctxt "RID_STR_PAPERNAMES"
msgid "C7 Envelope"
-msgstr ""
+msgstr "C7-kirjekuori"
#: vcl/inc/print.hrc:100
msgctxt "RID_STR_PAPERNAMES"
msgid "C8 Envelope"
-msgstr ""
+msgstr "C8-kirjekuori"
#: vcl/inc/print.hrc:101
msgctxt "RID_STR_PAPERNAMES"
@@ -796,7 +796,7 @@ msgstr "Kehyksen tyyli: "
#: vcl/inc/strings.hrc:102
msgctxt "STR_FPICKER_IMAGE_ANCHOR"
msgid "A~nchor: "
-msgstr ""
+msgstr "Ankkuri:"
#: vcl/inc/strings.hrc:103
msgctxt "STR_FPICKER_SELECTION"
@@ -1155,7 +1155,7 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:33
msgctxt "STR_FONT_FEATURE_ID_CPCT"
msgid "Centered CJK Punctuation"
-msgstr ""
+msgstr "Keskitetyt kiinan, japanin ja korean (CJK) välimerkit"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:34
msgctxt "STR_FONT_FEATURE_ID_CPSP"
@@ -1175,22 +1175,22 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:37
msgctxt "STR_FONT_FEATURE_ID_DCAP"
msgid "Drop Caps"
-msgstr ""
+msgstr "Anfangit"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:38
msgctxt "STR_FONT_FEATURE_ID_DLIG"
msgid "Discretionary Ligatures"
-msgstr ""
+msgstr "Valinnaiset ligatuurit"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:39
msgctxt "STR_FONT_FEATURE_ID_DNOM"
msgid "Denominators"
-msgstr ""
+msgstr "Nimittäjät"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:40
msgctxt "STR_FONT_FEATURE_ID_DPNG"
msgid "Diphthongs (Obsolete)"
-msgstr ""
+msgstr "Diftongit (vanhentuneet)"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:41
msgctxt "STR_FONT_FEATURE_ID_EXPT"
@@ -1205,7 +1205,7 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:43
msgctxt "STR_FONT_FEATURE_ID_FRAC"
msgid "Fraction style:"
-msgstr ""
+msgstr "Murtolukutyyli:"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:44
msgctxt "STR_FONT_FEATURE_ID_FRAC_PARAM_1"
@@ -1230,7 +1230,7 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:48
msgctxt "STR_FONT_FEATURE_ID_HIST"
msgid "Historical Forms"
-msgstr ""
+msgstr "Historialliset muodot"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:49
msgctxt "STR_FONT_FEATURE_ID_HKNA"
@@ -1240,7 +1240,7 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:50
msgctxt "STR_FONT_FEATURE_ID_HLIG"
msgid "Historical Ligatures"
-msgstr ""
+msgstr "Historialliset ligatuurit"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:51
msgctxt "STR_FONT_FEATURE_ID_HNGL"
@@ -1260,7 +1260,7 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:54
msgctxt "STR_FONT_FEATURE_ID_ITAL"
msgid "Italics"
-msgstr ""
+msgstr "Kursiivi"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:55
msgctxt "STR_FONT_FEATURE_ID_JALT"
@@ -1300,7 +1300,7 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:62
msgctxt "STR_FONT_FEATURE_ID_LIGA"
msgid "Standard Ligatures"
-msgstr ""
+msgstr "Vakioligatuurit"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:63
msgctxt "STR_FONT_FEATURE_ID_LNUM"
@@ -1310,7 +1310,7 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:64
msgctxt "STR_FONT_FEATURE_ID_MGRK"
msgid "Mathematical Greek"
-msgstr ""
+msgstr "Matemaattinen kreikka"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:65
msgctxt "STR_FONT_FEATURE_ID_NALT"
@@ -1325,7 +1325,7 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:67
msgctxt "STR_FONT_FEATURE_ID_NUMR"
msgid "Numerators"
-msgstr ""
+msgstr "Osoittajat"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:68
msgctxt "STR_FONT_FEATURE_ID_ONUM"
@@ -1340,7 +1340,7 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:70
msgctxt "STR_FONT_FEATURE_ID_ORDN"
msgid "Ordinals"
-msgstr ""
+msgstr "Järjestysluvut"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:71
msgctxt "STR_FONT_FEATURE_ID_ORNM"
@@ -1365,7 +1365,7 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:75
msgctxt "STR_FONT_FEATURE_ID_PNUM"
msgid "Proportional Numbers"
-msgstr ""
+msgstr "Suhteelliset numerot"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:76
msgctxt "STR_FONT_FEATURE_ID_PWID"
@@ -1415,12 +1415,12 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:85
msgctxt "STR_FONT_FEATURE_ID_SUBS"
msgid "Subscript"
-msgstr ""
+msgstr "Alaindeksi"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:86
msgctxt "STR_FONT_FEATURE_ID_SUPS"
msgid "Superscript"
-msgstr ""
+msgstr "Yläindeksi"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:87
msgctxt "STR_FONT_FEATURE_ID_SWSH"
@@ -1440,7 +1440,7 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:90
msgctxt "STR_FONT_FEATURE_ID_TNUM"
msgid "Tabular Numbers"
-msgstr ""
+msgstr "Taulukkonumerot"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:91
msgctxt "STR_FONT_FEATURE_ID_TRAD"
@@ -1735,7 +1735,7 @@ msgstr "Parittomat _sivut"
#: vcl/uiconfig/ui/printdialog.ui:625
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
-msgstr ""
+msgstr "joista tulostetaan:"
#: vcl/uiconfig/ui/printdialog.ui:650
msgctxt "printdialog|labelpapersides"
diff --git a/source/fi/wizards/messages.po b/source/fi/wizards/messages.po
index 2e252390ce0..7b290ebf2b7 100644
--- a/source/fi/wizards/messages.po
+++ b/source/fi/wizards/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2018-01-28 11:14+0000\n"
-"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
+"PO-Revision-Date: 2019-07-27 14:33+0000\n"
+"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1517138066.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564238031.000000\n"
#: wizards/com/sun/star/wizards/common/strings.hrc:32
msgctxt "RID_COMMON_START_0"
@@ -145,17 +145,17 @@ msgstr "Selite9"
#: wizards/com/sun/star/wizards/common/strings.hrc:58
msgctxt "RID_LETTERWIZARDDIALOG_START_3"
msgid "~Business Letter"
-msgstr ""
+msgstr "~Liikekirje"
#: wizards/com/sun/star/wizards/common/strings.hrc:59
msgctxt "RID_LETTERWIZARDDIALOG_START_4"
msgid "~Formal Personal Letter"
-msgstr ""
+msgstr "~Muodollinen yksityiskirje"
#: wizards/com/sun/star/wizards/common/strings.hrc:60
msgctxt "RID_LETTERWIZARDDIALOG_START_5"
msgid "~Personal Letter"
-msgstr ""
+msgstr "~Yksityiskirje"
#: wizards/com/sun/star/wizards/common/strings.hrc:61
msgctxt "RID_LETTERWIZARDDIALOG_START_6"
@@ -195,7 +195,7 @@ msgstr "~Vastausosoite kirjekuoren ikkunan kohdalla"
#: wizards/com/sun/star/wizards/common/strings.hrc:68
msgctxt "RID_LETTERWIZARDDIALOG_START_13"
msgid "Letter signs"
-msgstr ""
+msgstr "Viitteet muihin kirjeisiin"
#: wizards/com/sun/star/wizards/common/strings.hrc:69
msgctxt "RID_LETTERWIZARDDIALOG_START_14"
@@ -490,22 +490,22 @@ msgstr "Terveydeksi"
#: wizards/com/sun/star/wizards/common/strings.hrc:133
msgctxt "RID_LETTERWIZARDROADMAP_START_1"
msgid "Page Design"
-msgstr ""
+msgstr "Sivun asettelu"
#: wizards/com/sun/star/wizards/common/strings.hrc:134
msgctxt "RID_LETTERWIZARDROADMAP_START_2"
msgid "Letterhead Layout"
-msgstr ""
+msgstr "Logopaperin asettelu"
#: wizards/com/sun/star/wizards/common/strings.hrc:135
msgctxt "RID_LETTERWIZARDROADMAP_START_3"
msgid "Printed Items"
-msgstr ""
+msgstr "Sisällytettävät kohdat"
#: wizards/com/sun/star/wizards/common/strings.hrc:136
msgctxt "RID_LETTERWIZARDROADMAP_START_4"
msgid "Recipient and Sender"
-msgstr ""
+msgstr "Vastaanottaja ja lähettäjä"
#: wizards/com/sun/star/wizards/common/strings.hrc:137
msgctxt "RID_LETTERWIZARDROADMAP_START_5"
@@ -515,7 +515,7 @@ msgstr "Alatunniste"
#: wizards/com/sun/star/wizards/common/strings.hrc:138
msgctxt "RID_LETTERWIZARDROADMAP_START_6"
msgid "Name and Location"
-msgstr ""
+msgstr "Nimi ja sijainti"
#: wizards/com/sun/star/wizards/common/strings.hrc:141
msgctxt "RID_FAXWIZARDDIALOG_START_1"
@@ -640,7 +640,7 @@ msgstr "Faksin luonti faksimallista tehdään kaksoisnapsauttamalla faksimallia.
#: wizards/com/sun/star/wizards/common/strings.hrc:165
msgctxt "RID_FAXWIZARDDIALOG_START_25"
msgid "Template name:"
-msgstr ""
+msgstr "Mallin nimi:"
#: wizards/com/sun/star/wizards/common/strings.hrc:166
msgctxt "RID_FAXWIZARDDIALOG_START_26"
@@ -740,7 +740,7 @@ msgstr "Puhelinnumero:"
#: wizards/com/sun/star/wizards/common/strings.hrc:185
msgctxt "RID_FAXWIZARDDIALOG_START_45"
msgid "Email:"
-msgstr ""
+msgstr "Sähköposti:"
#: wizards/com/sun/star/wizards/common/strings.hrc:186
msgctxt "RID_FAXWIZARDDIALOG_START_46"
@@ -855,12 +855,12 @@ msgstr "Rakkaudella"
#: wizards/com/sun/star/wizards/common/strings.hrc:216
msgctxt "RID_FAXWIZARDROADMAP_START_1"
msgid "Page Design"
-msgstr ""
+msgstr "Sivun asettelu"
#: wizards/com/sun/star/wizards/common/strings.hrc:217
msgctxt "RID_FAXWIZARDROADMAP_START_2"
msgid "Items to Include"
-msgstr ""
+msgstr "Sisällytettävät kohdat"
#: wizards/com/sun/star/wizards/common/strings.hrc:218
msgctxt "RID_FAXWIZARDROADMAP_START_3"
@@ -875,7 +875,7 @@ msgstr "Alatunniste"
#: wizards/com/sun/star/wizards/common/strings.hrc:220
msgctxt "RID_FAXWIZARDROADMAP_START_5"
msgid "Name and Location"
-msgstr ""
+msgstr "Nimi ja sijainti"
#: wizards/com/sun/star/wizards/common/strings.hrc:223
msgctxt "RID_AGENDAWIZARDDIALOG_START_1"
@@ -1085,7 +1085,7 @@ msgstr "Oma esityslistamalli"
#: wizards/com/sun/star/wizards/common/strings.hrc:264
msgctxt "RID_AGENDAWIZARDDIALOG_START_43"
msgid "An error occurred while saving the agenda template."
-msgstr ""
+msgstr "Esityslistan mallin tallennuksessa tapahtui virhe."
#: wizards/com/sun/star/wizards/common/strings.hrc:265
msgctxt "RID_AGENDAWIZARDDIALOG_START_44"
@@ -1115,17 +1115,17 @@ msgstr "Napsauta muuttaaksesi tekstiä"
#: wizards/com/sun/star/wizards/common/strings.hrc:270
msgctxt "RID_AGENDAWIZARDDIALOG_START_50"
msgid "Page Design"
-msgstr ""
+msgstr "Sivun asettelu"
#: wizards/com/sun/star/wizards/common/strings.hrc:271
msgctxt "RID_AGENDAWIZARDDIALOG_START_51"
msgid "General Information"
-msgstr ""
+msgstr "Yleiset tiedot"
#: wizards/com/sun/star/wizards/common/strings.hrc:272
msgctxt "RID_AGENDAWIZARDDIALOG_START_52"
msgid "Headings to Include"
-msgstr ""
+msgstr "Sisällytettävät otsikot"
#: wizards/com/sun/star/wizards/common/strings.hrc:273
msgctxt "RID_AGENDAWIZARDDIALOG_START_53"
@@ -1135,17 +1135,17 @@ msgstr "Nimet"
#: wizards/com/sun/star/wizards/common/strings.hrc:274
msgctxt "RID_AGENDAWIZARDDIALOG_START_54"
msgid "Agenda Items"
-msgstr ""
+msgstr "Esityslistan kohdat"
#: wizards/com/sun/star/wizards/common/strings.hrc:275
msgctxt "RID_AGENDAWIZARDDIALOG_START_55"
msgid "Name and Location"
-msgstr ""
+msgstr "Nimi ja sijainti"
#: wizards/com/sun/star/wizards/common/strings.hrc:276
msgctxt "RID_AGENDAWIZARDDIALOG_START_56"
msgid "An error occurred while opening the agenda template."
-msgstr ""
+msgstr "Esityslistan mallia avattaessa tapahtui virhe."
#: wizards/com/sun/star/wizards/common/strings.hrc:277
msgctxt "RID_AGENDAWIZARDDIALOG_START_57"
diff --git a/source/fi/writerperfect/messages.po b/source/fi/writerperfect/messages.po
index ea82ec8ceac..76680f9c80e 100644
--- a/source/fi/writerperfect/messages.po
+++ b/source/fi/writerperfect/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-06-04 15:43+0200\n"
-"PO-Revision-Date: 2019-07-16 10:25+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"PO-Revision-Date: 2019-07-27 14:30+0000\n"
+"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\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: 1563272733.000000\n"
+"X-POOTLE-MTIME: 1564237848.000000\n"
#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE"
@@ -104,7 +104,7 @@ msgstr "Asettelutapa:"
#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
-msgstr ""
+msgstr "Uudelleenjuoksutettava"
#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
@@ -134,17 +134,17 @@ msgstr "Selaa..."
#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
-msgstr ""
+msgstr "Metatiedot"
#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
-msgstr ""
+msgstr "Tunniste:"
#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
-msgstr ""
+msgstr "Nimeke:"
#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
diff --git a/source/fr/cui/messages.po b/source/fr/cui/messages.po
index 4dcfe3f4447..9cfeb97ab4f 100644
--- a/source/fr/cui/messages.po
+++ b/source/fr/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-08 09:03+0000\n"
"Last-Translator: sophie <gautier.sophie@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: 1562576624.000000\n"
#: cui/inc/numcategories.hrc:17
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Puces et numérotation"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Niveau"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Type :"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Commencer avec :"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Caractère :"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Sélectionner..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Sélectionner une image..."
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Largeur :"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Hauteur :"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Conserver le ratio"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Avant :"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Après :"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Séparateur"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Couleur :"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "Taille _relative :"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Indentation :"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Largeur :"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "_Relatif"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Position"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Alignement"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Diapo"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Sélection"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Appliquer à la diapo maîtresse"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Étendue"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Propriétés"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Aperçu"
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Aide"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Utiliser les boîtes de dialogue %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Boîtes de dialogue ouvrir/enregistrer"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Utiliser les boîtes de _dialogue %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Boîtes de dialogue Imprimer"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Impression : spécification du statut \"Document modifié\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Statut du document"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Interpréter _comme années entre "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "et "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Années (deux chiffres)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Collecter des données d'utilisation et les envoyer à The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Aider à améliorer %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Charger %PRODUCTNAME lors du démarrage du système"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activer le démarrage rapide de la zone de notification"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Démarrage rapide de %PRODUCTNAME"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "Astuce _suivante"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Le saviez-vous ?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Lien"
diff --git a/source/fr/helpcontent2/source/text/sbasic/python.po b/source/fr/helpcontent2/source/text/sbasic/python.po
index a3f174b0325..f3d92c7f9e6 100644
--- a/source/fr/helpcontent2/source/text/sbasic/python.po
+++ b/source/fr/helpcontent2/source/text/sbasic/python.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 17:03+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"PO-Revision-Date: 2019-07-24 11:42+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\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: 1562259815.000000\n"
+"X-POOTLE-MTIME: 1563968531.000000\n"
#: main0000.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"hd_id151543348965464\n"
"help.text"
msgid "<variable id=\"pythonideh1\"><link href=\"text/sbasic/python/python_ide.xhp\" name=\"Python IDE Setup\">Setting up an Integrated Development Environment (IDE) for Python</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonideh1\"><link href=\"text/sbasic/python/python_ide.xhp\" name=\"Python IDE Setup\">Configurer un Environnement de Développement Intégré (EDI) pour Python</link></variable>"
#: python_ide.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id541543348965465\n"
"help.text"
msgid "Writing Python macros requires extra configuration steps to set an IDE of choice."
-msgstr ""
+msgstr "L'écriture de macros Python nécessite des étapes de configuration supplémentaires pour définir un EDI de choix."
#: python_ide.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"N0106\n"
"help.text"
msgid "Unlike Basic language macros development in %PRODUCTNAME, developing Python scripts for %PRODUCTNAME requires to configure an external Integrated Development Environment (IDE). Multiple IDEs are available that range from beginners to advanced Python coders. While using a Python IDE programmers benefit from numerous features such as syntax highlighting, code folding, class browsing, code completion, coding standard enforcement, test driven development, debugging, version control and many more. You can refer to <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"Designing & Developing Python Applications\">Designing & Developing Python Applications</link> on the Wiki for more in-depth information about the setup of a bridge between your IDE and a running instance %PRODUCTNAME."
-msgstr ""
+msgstr "Contrairement au développement de macros en langage Basic dans %PRODUCTNAME, le développement de scripts Python pour %PRODUCTNAME nécessite la configuration d'un environnement de développement intégré (EDI) externe. Plusieurs EDI sont disponibles qui vont des débutants aux codeurs Python avancés. Lors de l'utilisation d'un EDI Python, les programmeurs bénéficient de nombreuses fonctionnalités telles que la coloration syntaxique, le pliage du code, la navigation dans les classes, la complétion du code, l'application des normes de codage, le développement piloté par les tests, le débogage, le contrôle de version et bien plus. Vous pouvez vous référer à <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"Designing & Developing Python Applications\">Design & Developing Python Applications</link> sur le Wiki pour des informations plus détaillées sur la configuration d'un pont entre votre EDI et une instance courante de %PRODUCTNAME."
#: python_ide.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"hd_id761544698669786\n"
"help.text"
msgid "The APSO Extension"
-msgstr ""
+msgstr "L'extension APSO"
#: python_ide.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"N0104\n"
"help.text"
msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer (APSO)\">Alternative Python Script Organizer (APSO)</link> extension eases the edition of Python scripts, in particular when embedded in a document. Using APSO you can configure your preferred source code editor, start the integrated Python shell and debug Python scripts. Extensions exist that help inspect arbitrary UNO objects, refer to <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"eDesigning & Developing Python Applications\">Designing & Developing Python Applications</link> for additional details on such extensions."
-msgstr ""
+msgstr "L'extension <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer (APSO)\">Alternative Python Script Organizer (APSO)</link> facilite l'édition des scripts Python, notamment lorsqu'ils sont intégrés dans un document. En utilisant APSO, vous pouvez configurer votre éditeur de code source préféré, démarrer le shell Python intégré et déboguer les scripts Python. Il existe des extensions qui permettent d'inspecter des objets UNO arbitraires, voir <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"eDesigning & Developing Python Applications\">Design & Developing Python Applications</link> pour plus de détails sur ces extensions."
#: python_import.xhp
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python : Importing Modules"
-msgstr ""
+msgstr "Python : importer des modules"
#: python_import.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"N0461\n"
"help.text"
msgid "<bookmark_value>Python;import</bookmark_value> <bookmark_value>Python;Modules</bookmark_value> <bookmark_value>Python;pythonpath</bookmark_value> <bookmark_value>PythonLibraries</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;import</bookmark_value> <bookmark_value>Python;Modules</bookmark_value> <bookmark_value>Python;pythonpath</bookmark_value> <bookmark_value>PythonLibraries</bookmark_value>"
#: python_import.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"N0462\n"
"help.text"
msgid "<variable id=\"pythonimporth1\"><link href=\"text/sbasic/python/python_import.xhp\" name=\"python imports\">Importing Python Modules</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonimporth1\"><link href=\"text/sbasic/python/python_import.xhp\" name=\"python imports\">Importer des modules Python</link></variable>"
#: python_import.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"N0463\n"
"help.text"
msgid "%PRODUCTNAME Python scripts come in three distinct flavors, they can be personal, shared or embedded in documents. They are stored in varying places described in <link href=\"text/sbasic/python/python_locations.xhp\">Python Scripts Organization and Location</link>. In order to import Python modules, their locations must be known from Python at run time."
-msgstr ""
+msgstr "Les scripts Python de %PRODUCTNAME se déclinent en trois versions distinctes, ils peuvent être personnels, partagés ou intégrés dans des documents. Ils sont stockés à différents endroits décrits dans <link href=\"text/sbasic/python/python_locations.xhp\">Python Scripts Organization and Location</link>. Afin d'importer des modules Python, leurs emplacements doivent être connus depuis Python au moment de l'exécution."
#: python_import.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"N0464\n"
"help.text"
msgid "This mechanism is illustrated for file system based modules and document based modules. Exception handling is omitted for clarity. The terms library or directory, scripts or modules are used interchangeably. A Python macro refers to a function inside a module."
-msgstr ""
+msgstr "Ce mécanisme est illustré pour les modules basés sur le système de fichiers et les modules basés sur les documents. La gestion des exceptions est omise par souci de clarté. Les termes bibliothèque ou répertoire, scripts ou modules sont utilisés de manière interchangeable. Une macro Python fait référence à une fonction dans un module."
#: python_import.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"N0465\n"
"help.text"
msgid "Note that <literal><User Profile>/Scripts/python/pythonpath</literal> local directory is always explored when running a Python macro from <literal><User Profile>/Scripts/python</literal>."
-msgstr ""
+msgstr "Notez que <literal><User Profile>/Scripts/python/pythonpath</literal> répertoire local est toujours exploré lors de l'exécution d'une macro Python de <literal><User Profile>/Scripts/python</literal>."
#: python_import.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"N0466\n"
"help.text"
msgid "File System module import"
-msgstr ""
+msgstr "Import du module système de fichiers"
#: python_import.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"N0467\n"
"help.text"
msgid "User or Shared Modules"
-msgstr ""
+msgstr "Modules utilisateur ou partagés"
#: python_import.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"N0468\n"
"help.text"
msgid "Personal & shared Python scripts can be imported once their directories are included in Python run time path. Refer to <link href=\"text/sbasic/python/python_session.xhp\">Getting session information</link> page for more details regarding omitted Session Class."
-msgstr ""
+msgstr "Les scripts Python personnels et partagés peuvent être importés une fois que leurs répertoires sont inclus dans le chemin d'exécution Python. Reportez-vous à la page <link href=\"text/sbasic/python/python_session.xhp\">Obtenir des informations de session</link> pour plus de détails sur la classe de session omise."
#: python_import.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"N0473\n"
"help.text"
msgid "user_lib = Session().UserPythonScripts # User scripts location"
-msgstr ""
+msgstr "user_lib = Session().UserPythonScripts # emplacement des scripts utilisateur"
#: python_import.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"N0475\n"
"help.text"
msgid "sys.path.insert(0, user_lib) # Add to search path"
-msgstr ""
+msgstr "sys.path.insert(0, user_lib) # Ajouter au chemin de recherche"
#: python_import.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"N0476\n"
"help.text"
msgid "import screen_io as ui # 'screen_io.py' module resides in user_lib directory"
-msgstr ""
+msgstr "import screen_io as ui # le module 'screen_io.py' module réside dans le répertoire user_lib"
#: python_import.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"N0477\n"
"help.text"
msgid "# Your code follows here"
-msgstr ""
+msgstr "# Votre code suit ici"
#: python_import.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"N0478\n"
"help.text"
msgid "This Python example exposes a local XSCRIPTCONTEXT variable to an imported module:"
-msgstr ""
+msgstr "Cet exemple Python expose une variable XSCRIPTCONTEXT locale à un module importé :"
#: python_import.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"N0483\n"
"help.text"
msgid "share_lib = Session.SharedPythonScripts() # Shared scripts location"
-msgstr ""
+msgstr "share_lib = Session.SharedPythonScripts() # Emplacement des scripts partagés"
#: python_import.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"N0485\n"
"help.text"
msgid "sys.path.insert(0, share_lib) # Add to search path"
-msgstr ""
+msgstr "sys.path.insert(0, share_lib) # Ajouter au chemin de recherche"
#: python_import.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"N0486\n"
"help.text"
msgid "from IDE_utils import ScriptContext # 'IDE_utils.py' sits with shared Python scripts."
-msgstr ""
+msgstr "from IDE_utils import ScriptContext # IDE_utils.py' se trouve avec les scripts Python partagés."
#: python_import.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"N0488\n"
"help.text"
msgid "# Your code follows here"
-msgstr ""
+msgstr "# Votre code suit ici"
#: python_import.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"N0489\n"
"help.text"
msgid "Installation Modules for Applications"
-msgstr ""
+msgstr "Modules d'installation pour applications"
#: python_import.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"N0490\n"
"help.text"
msgid "Unlike personal and shared scripts, %PRODUCTNAME installation scripts can be imported any time. Next to <literal>uno</literal> & <literal>unohelper</literal> %PRODUCTNAME Python modules, other scripts present in <literal><installation_path>/program</literal> directory can be imported directly, such as the <literal>msgbox</literal> module."
-msgstr ""
+msgstr "Contrairement aux scripts personnels et partagés, les scripts d'installation de %PRODUCTNAME peuvent être importés à tout moment. À côté des modules %PRODUCTNAME Python <literal>uno</literal> & <literal>unohelper</literal>, les autres scripts présents dans le répertoire <literal><installation_path>/program</literal> peuvent être importés directement, comme le module <literal>msgbox</literal>."
#: python_import.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"N0491\n"
"help.text"
msgid "With Python shell:"
-msgstr ""
+msgstr "Avec le shell Python :"
#: python_import.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"N0534\n"
"help.text"
msgid "Document Module Import"
-msgstr ""
+msgstr "Importation de modules de documents"
#: python_import.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/00.po b/source/fr/helpcontent2/source/text/shared/00.po
index 7ebc972ec10..bb067e06aef 100644
--- a/source/fr/helpcontent2/source/text/shared/00.po
+++ b/source/fr/helpcontent2/source/text/shared/00.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-05-27 16:33+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"PO-Revision-Date: 2019-07-21 13:41+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\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: 1558974812.000000\n"
+"X-POOTLE-MTIME: 1563716506.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -11551,7 +11551,7 @@ msgctxt ""
"par_id3149457\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"/><defaultinline>Open context menu of a column header in a database table - choose <emph>Column Format - Alignment</emph> tab.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"><defaultinline>Ouvrez le menu contextuel dans l'en-tête de colonne d'une table de base de données, choisissez <emph>Formatage de colonne</emph> et cliquez sur l'onglet <emph>Alignement</emph>.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"/><defaultinline>Ouvrez le menu contextuel dans l'en-tête de colonne d'une table de base de données, choisissez <emph>Formatage de colonne</emph> et cliquez sur l'onglet <emph>Alignement</emph>.</defaultinline></switchinline>"
#: 00040503.xhp
msgctxt ""
diff --git a/source/fr/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po b/source/fr/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
index 1a8858c4f67..178cf5b5954 100644
--- a/source/fr/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
+++ b/source/fr/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
@@ -4,17 +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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-28 05:18+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"PO-Revision-Date: 2019-07-20 20:43+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.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"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480310319.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563655418.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 "Que vous utilisiez DEPS ou SCO, commencez en allant à Outils - Solveur et choisissez la cellule à optimiser, la direction (minimisation, maximisation) et les cellules à modifier pour atteindre l'objectif. Ensuite allez dans les options, choisissez le solveur à utiliser et si nécessaire modifiez les <link href=\"com.sun.star.comp.Calc.NLPSolver/Options.xhp\">paramètres</link > correspondants."
+msgstr "Que vous utilisiez DEPS ou SCO, commencez en allant à Outils - Solveur et choisissez la cellule à optimiser, la direction (minimisation, maximisation) et les cellules à modifier pour atteindre l'objectif. Ensuite allez dans les options, choisissez le solveur à utiliser et si nécessaire modifiez les <link href=\"com.sun.star.comp.Calc.NLPSolver/Options.xhp\">paramètres</link> correspondants."
#: Usage.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 1b8e838dbce..36f3fcfbade 100644
--- a/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-04 19:01+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: 1562266897.000000\n"
@@ -21055,6 +21055,24 @@ msgstr "Faire un don à LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/fr/sd/messages.po b/source/fr/sd/messages.po
index 67d00e4902e..77c5ddc59ac 100644
--- a/source/fr/sd/messages.po
+++ b/source/fr/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-04 19:12+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.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: 1562267569.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "_Révision"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Organiser"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "É_diter"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Grille"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Graphique"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "C_ouleur"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Média"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_Diaporama"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "_Cadre"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Afficher"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "_Page maîtresse"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Insérer"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Dra_w"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Afficher"
diff --git a/source/fr/sw/messages.po b/source/fr/sw/messages.po
index c21702de8bf..e77accf002e 100644
--- a/source/fr/sw/messages.po
+++ b/source/fr/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-07-04 19:02+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.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: 1562266972.000000\n"
#: sw/inc/app.hrc:29
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Choisir un élément : "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Éditer"
diff --git a/source/fy/cui/messages.po b/source/fy/cui/messages.po
index 8cea47684f7..5e1e807c4ac 100644
--- a/source/fy/cui/messages.po
+++ b/source/fy/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-09 11:37+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-18 19:40+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -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: 1562672274.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1563478856.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -2418,17 +2418,17 @@ msgstr "Wolle jo dat haadstik titels altyd in side begjinne? Bewurkje Kop1 (alin
#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to keep the text from, but remove a hyperlink, in Writer? Right click the link and ‘Remove Hyperlink’."
-msgstr ""
+msgstr "Wolle jo de tekst behâlde, mar in ferwizing wiskje yn Writer? Klik mei de rjochter mûs knop op de selektearre ferwizing en kies 'Ferwizing wiskje'."
#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert > Chart."
-msgstr ""
+msgstr "Meitsje in diagram op basis fan in Writer tabel troch yn de tabel te klikken en ynfoegje > Diagram te kiezen."
#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with Alt key."
-msgstr ""
+msgstr "Ferpleats in kolom yn Calc tusken twa oaren yn ien stap? Klik op de kop, hâld de ALT toets yndrukt en klik dan op in sel yn de kolom en sleep, mei de ALT toets yndrukt, de kolom nei it doel."
#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Help"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME dialoochskerm br_ûke"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialoochskerm Iepenje/Bewarje"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME _dialoochskerm brûke"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialoochskerm printsje"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Printsje set de tastân op \"dokumint feroare\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumint tastân"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Ynterpretearren as jierren tusken "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "en "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Jier (twa sifers)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Gegevens brûkme fersamelje en stjoer it nei The Dokument Foudation ta"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Help %PRODUCTNAME te ferbetterjen"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME lade as it systeem úteinset"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Fluchstarter op systeembalke ynskeakelje"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Fluchstarter"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
index 33f50a1ca06..f5b534f5ab0 100644
--- a/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-04 18:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@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: 1562265408.000000\n"
#: BaseWindowState.xcu
@@ -21054,6 +21054,24 @@ msgstr "Donearje oan LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/fy/sd/messages.po b/source/fy/sd/messages.po
index 60f2275fcab..602b2473ec7 100644
--- a/source/fy/sd/messages.po
+++ b/source/fy/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-04 18:43+0000\n"
"Last-Translator: Berend Ytsma <berendy@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: 1562265790.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "_Resinsje"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Skikke"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Bewurkje"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Roaster"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Of_bylding"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "K_leur"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_Dia foarstelling"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "R_amt"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Werjefte"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Dia _model"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Ynfoegje"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Te_kenje"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Werjefte"
diff --git a/source/fy/sw/messages.po b/source/fy/sw/messages.po
index 4a76b3ed250..60f5aa563f9 100644
--- a/source/fy/sw/messages.po
+++ b/source/fy/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-17 16:02+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -8344,7 +8344,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Item kieze: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Bewurkje"
diff --git a/source/ga/cui/messages.po b/source/ga/cui/messages.po
index c1c4e15073f..3c50178660c 100644
--- a/source/ga/cui/messages.po
+++ b/source/ga/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-03-20 13:48+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Cabhair"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Ú_sáid dialóga %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialóga Oscail/Sábháil"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Ú_sáid dialóga %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialóga Priontála"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Socraíonn _priontáil an stádas \"cáipéis athraithe\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stádas na Cáipéise"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Léigh mar bhliain idir "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "agus "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Bliain (Dhá Dhigit)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Bailigh sonraí úsáide agus seol chuig The Document Foundation iad"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Cabhraigh linn %PRODUCTNAME a fheabhsú"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Luchtaigh %PRODUCTNAME i rith thosú an chórais"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Cumasaigh an meardhúisire i dtráidire an chórais"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Meardhúisire %PRODUCTNAME"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 d73fa4aea2d..8ad90d34cfc 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-03-07 16:11+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: \n"
@@ -21054,6 +21054,24 @@ msgstr "Tabhair airgead do LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/ga/sd/messages.po b/source/ga/sd/messages.po
index 047afb141cf..964f3b9be2e 100644
--- a/source/ga/sd/messages.po
+++ b/source/ga/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-03-07 15:10+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5345,9 +5345,9 @@ msgstr "_Athbhreithniú"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Leag Amach"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Eagar"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Greille"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_T"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Grafaic"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "D_ath"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Meáin"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Taispeántas _Sleamhnán"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "F_ráma"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Amharc"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "_Máistirleathanach"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Ionsáigh"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Ta_rraing"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Amharc"
diff --git a/source/ga/sw/messages.po b/source/ga/sw/messages.po
index 549127e9f88..828c206b91e 100644
--- a/source/ga/sw/messages.po
+++ b/source/ga/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-03-07 16:04+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8384,7 +8384,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Roghnaigh Mír: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Eagar"
diff --git a/source/gd/cui/messages.po b/source/gd/cui/messages.po
index bb5f1e3fb2c..911159e8cfc 100644
--- a/source/gd/cui/messages.po
+++ b/source/gd/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-04-27 22:17+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Cobhair"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Cle_achd còmhraidhean %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Còmhraidhean fosglaidh ⁊ sàbhalaidh"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Cleach_d còmhraidhean %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Còmhraidhean a' chlò-bhualaidh"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Suidhichidh an clò-bhualadh a' choir \"sgrìobhainn air atharrachadh\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Staid na sgrìobhainne"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Leugh mar àireamh de bhliadhna eadar "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "agus "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Bliadhna (dà fhigear)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Cruinnich dàta cleachdaidh is cuir gun Document Foundation e"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Cuidich leinn a’ leasachadh %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Luchdaich %PRODUCTNAME rè tòiseachadh an t-siostaim"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Cuir an grad-thòisiche an comas ann an treidhe an t-siostaim"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Grad-thòisiche %PRODUCTNAME"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 9fc2933476a..654c279e057 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-05-24 11:36+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -21055,6 +21055,24 @@ msgstr "Thoir tabhartas do LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/gd/sd/messages.po b/source/gd/sd/messages.po
index d6eaccca00b..00b4f35110d 100644
--- a/source/gd/sd/messages.po
+++ b/source/gd/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-04-23 00:38+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5345,9 +5345,9 @@ msgstr "Lèi_rmheasan"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Socraich"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Deasaich"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Griod"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Grafaig"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Dath"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Meadhanan"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Taisbeanadh _shleamhnagan"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "F_rèama"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Sealladh"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "_Maighstir duilleige"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Cu_ir a-steach"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "_Tarraing"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Sealladh"
diff --git a/source/gd/sw/messages.po b/source/gd/sw/messages.po
index e326dea1399..83c8b302cb6 100644
--- a/source/gd/sw/messages.po
+++ b/source/gd/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gd\n"
@@ -8373,7 +8373,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Tagh rud: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Deasaich"
diff --git a/source/gl/cui/messages.po b/source/gl/cui/messages.po
index 5640481bbaa..d1aa0e50bb2 100644
--- a/source/gl/cui/messages.po
+++ b/source/gl/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-04 08:34+0000\n"
"Last-Translator: Xosé <xosecalvo@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: 1562229287.000000\n"
#: cui/inc/numcategories.hrc:17
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Viñetas e numeración"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Nivel"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Tipo:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Comezar en:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Carácter:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Seleccionar..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Seleccionar imaxe..."
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Largura:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Altura:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Manter a proporción"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Antes:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Despois:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Separador"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Cor:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "Tam. _relativo:"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Sangrado:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Largura:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "Relati_vo"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Posición"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Aliñamento"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Diapositiva"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Selección"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Aplicar á principal"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Ámbito"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Propiedades"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Vista previa"
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Axuda"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Utilizar as caixas de diálogo de %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Opcións de Abrir/Gardar"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Usar os _diálogos de %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialogos de impresión"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "A im_presión do documento define o estado de «documento modificado»"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estado do documento"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar como anos entre "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "e "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ano (dous díxitos)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Recoller datos de uso e envialos a The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Axude a mellorar o %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Cargar %PRODUCTNAME durante o arrinque do sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activar o Iniciador rápido da barra de tarefas"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Iniciador rápido de %PRODUCTNAME"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "Suxestió_n seguinte"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Sabía que?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Ligazón"
diff --git a/source/gl/helpcontent2/source/text/scalc/01.po b/source/gl/helpcontent2/source/text/scalc/01.po
index 006d91938c4..80fe87699df 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: 2019-06-03 17:45+0200\n"
-"PO-Revision-Date: 2019-02-12 11:15+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-07-21 18:16+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\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: 1549970151.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563733019.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"bm_id3150791\n"
"help.text"
msgid "<bookmark_value>Navigator;for sheets</bookmark_value><bookmark_value>navigating;in spreadsheets</bookmark_value><bookmark_value>displaying; scenario names</bookmark_value><bookmark_value>scenarios;displaying names</bookmark_value>"
-msgstr "<bookmark_value> Navigator; para follas </ bookmark_value> <bookmark_value> navegación; en follas de cálculo </ bookmark_value> <bookmark_value> visualizadas; nomes de escenario </ bookmark_value> <bookmark_value> escenarios; mostrando nomes </ bookmark_value>"
+msgstr "<bookmark_value>Navigator; para follas</bookmark_value><bookmark_value>navegación; en follas de cálculo </bookmark_value><bookmark_value>visualizadas; nomes de escenario</bookmark_value><bookmark_value>escenarios; mostrando nomes</bookmark_value>"
#: 02110000.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_id3156422\n"
"help.text"
msgid "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>."
-msgstr "<ahelp hid=\".uno:Navigator\">Activa e desactiva o Navegador. </ ahelp> O Navegador é unha <link href=\"text / shared / 00 / 00000005.xhp # andocken\" name =\"xanela acoplábel\"> xanela acoplábel</link>."
+msgstr "<ahelp hid=\".uno:Navigator\">Activa e desactiva o Navegador.</ahelp> O Navegador é unha <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"xanela acoplábel\">xanela acoplábel</link>."
#: 02110000.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> 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>."
+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 ""
@@ -550,7 +550,7 @@ msgctxt ""
"bm_id3153360\n"
"help.text"
msgid "<bookmark_value>page styles; headers</bookmark_value> <bookmark_value>page styles; footers</bookmark_value> <bookmark_value>headers; defining</bookmark_value> <bookmark_value>footers; defining</bookmark_value> <bookmark_value>file names in headers/footers</bookmark_value> <bookmark_value>changing;dates, automatically</bookmark_value> <bookmark_value>dates;updating automatically</bookmark_value> <bookmark_value>automatic date updates</bookmark_value>"
-msgstr "<bookmark_value> estilos de páxina; cabeceiras </ bookmark_value> <bookmark_value> estilos de páxina; rodapés </ bookmark_value> <bookmark_value> cabeceiras; definición </ bookmark_value> <bookmark_value> rodapés; definición </ bookmark_value> <bookmark_value> nomes de arquivos en cabeceiras / pés de páxina </ bookmark_value> <bookmark_value> cambiando, datas, automaticamente </ bookmark_value> <bookmark_value> datas; actualizar automaticamente </ bookmark_value> <bookmark_value> actualizacións automáticas da data </ ​​bookmark_value >"
+msgstr "<bookmark_value>estilos de páxina; cabeceiras</bookmark_value>...<bookmark_value>estilos de páxina; rodapés</bookmark_value><bookmark_value>cabeceiras; definición</bookmark_value><bookmark_value>rodapés; definición</bookmark_value><bookmark_value>nomes de arquivos en cabeceiras / pés de páxina </bookmark_value><bookmark_value>cambiando, datas, automaticamente </bookmark_value><bookmark_value>datas; actualizar automaticamente</bookmark_value><bookmark_value>actualizacións automáticas da data</bookmark_value>"
#: 02120100.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TEXT\">Opens a dialog to assign formats to new or selected text.</ahelp> The <emph>Text Attributes </emph>dialog contains the tab pages <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link>."
-msgstr "<ahelp hid=\"modules / scalc / ui / HeaderFooterContent / buttonBTN_TEXT\"> Abre un diálogo para asignar os formatos de texto novo ou seleccionado. </ahelp> O <emph> Texto Atributos de diálogo </emph>, as páxinas de guía < enlace href=\"text / shared / 01 / 05020100.xhp\" name =\\> Fonte </link> \"Font\", <link href=\"text / shared / 01 / 05020200.xhp\" name =\"Efectos de fonte\"> Efectos de fonte </link> e <link href=\"text / shared / 01 / 05020500.xhp\" name =\"Font Position\"> Fonte Posición </link>."
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TEXT\">Abre un diálogo para asignar os formatos de texto novo ou seleccionado.</ahelp> O <emph>Texto Atributos de diálogo </emph>, as páxinas de guía <link href=\"text/shared/01/05020100.xhp\" name =\"Fonte\">Fonte</link>, <link href=\"text/shared/01/05020200.xhp\" name =\"Efectos de fonte\"> Efectos de fonte</link> e <link href=\"text/shared/01/05020500.xhp\" name =\"Fonte Posición\">Fonte Posición</link>."
#: 02120100.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"par_id3154960\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGE\">Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document.</ahelp>"
-msgstr "<ahelp hid=\"modules / scalc / ui / HeaderFooterContent / buttonBTN_PAGE\"> Insire un marcador de posición na área de cabeceira / pé de páxina seleccionada, que pasa a ter a numeración de páxina. Isto permite que a numeración de páxina continua nun documento. </ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGE\">Insire un marcador de posición na área de cabeceira / pé de páxina seleccionada, que pasa a ter a numeración de páxina. Isto permite que a numeración de páxina continua nun documento.</ahelp>"
#: 02120100.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"par_id3153812\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGES\">Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document.</ahelp>"
-msgstr "<ahelp hid=\"modules / scalc / ui / HeaderFooterContent / buttonBTN_PAGES\"> Insire un marcador de posición na área de cabeceira / pé de páxina seleccionada, que pasa a ter o número total de páxinas do documento. </ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGES\">Insire un marcador de posición na área de cabeceira / pé de páxina seleccionada, que pasa a ter o número total de páxinas do documento.</ahelp>"
#: 02120100.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"par_id3153960\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_DATE\">Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document.</ahelp>"
-msgstr "<ahelp hid=\"modules / scalc / ui / HeaderFooterContent / buttonBTN_DATE\"> Insire un marcador de posición na área de cabeceira / pé de páxina seleccionada, que pasa a ter a data actual, que será repetida na cabeceira / pé de páxina en cada páxina do documento. </ ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_DATE\">Insire un marcador de posición na área de cabeceira / pé de páxina seleccionada, que pasa a ter a data actual, que será repetida na cabeceira / pé de páxina en cada páxina do documento.</ahelp>"
#: 02120100.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_id3145638\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TIME\">Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document.</ahelp>"
-msgstr "<ahelp hid=\"modules / scalc / ui / HeaderFooterContent / buttonBTN_TIME\"> Insire un marcador de posición na área de cabeceira / pé de páxina seleccionada, que é substituída pola hora actual na cabeceira / pé de páxina en cada páxina do documento. </ ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TIME\">Insire un marcador de posición na área de cabeceira / pé de páxina seleccionada, que é substituída pola hora actual na cabeceira / pé de páxina en cada páxina do documento.</ahelp>"
#: 02120100.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3149257\n"
"help.text"
msgid "Defines the series type. Choose between <emph>Linear, Growth, Date </emph>and <emph>AutoFill</emph>."
-msgstr "Define o tipo de serie. Escolla entre <emph> lineal, Crecemento, data </ ​​emph> e <emph> Autofill </emph>."
+msgstr "Define o tipo de serie. Escolla entre <emph>Lineal, Crecemento, Data </​​emph>e <emph>Autofill</emph>."
#: 02140600.xhp
msgctxt ""
@@ -1366,7 +1366,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 / enchido automático\"> Forma unha serie directamente na folla. </ahelp> A función de enchido automático toma conta de listas personalizadas. Por exemplo, inserindo <emph> xaneiro </emph> na primeira cela, a serie está rematada coa lista definida en <emph> <switchinline select =\"sys\"> <caseinline select =\"MAC\"> % PRODUCTNAME - Preferencias </ caseinline> <defaultinline> Ferramentas - Opcións </ defaultinline> </ switchinline> -% PRODUCTNAME Calc - Listas de clasificación </emph>."
+msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/autofill\">Forma unha serie directamente na folla.</ahelp> A función de enchido automático toma conta de listas personalizadas. Por exemplo, inserindo <emph>xaneiro</emph> na primeira cela, a serie está rematada coa lista definida en <switchinline select =\"sys\"><caseinline select =\"MAC\"><emph>%PRODUCTNAME - Preferencias</emph></caseinline><defaultinline><emph>Ferramentas - Opcións</emph></defaultinline></switchinline><emph>- %PRODUCTNAME Calc - Listas de clasificación</emph>."
#: 02140600.xhp
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"bm_id2308201416102526759\n"
"help.text"
msgid "<bookmark_value>fill range;random numbers</bookmark_value><bookmark_value>random rumbers;fill range</bookmark_value><bookmark_value>random rumbers;distribution</bookmark_value>"
-msgstr "<bookmark_value> enche gama; números aleatorios </ bookmark_value> <bookmark_value> rumbers aleatorios; cubrir gama </ bookmark_value> <bookmark_value> rumbers aleatorios; distribución </ bookmark_value>"
+msgstr "<bookmark_value>enche gama; números aleatorios </bookmark_value><bookmark_value>rumbers aleatorios; cubrir gama </bookmark_value><bookmark_value>rumbers aleatorios; distribución</bookmark_value>"
#: 02140700.xhp
msgctxt ""
@@ -1910,7 +1910,7 @@ msgctxt ""
"bm_id3143284\n"
"help.text"
msgid "<bookmark_value>deleting; cell contents</bookmark_value><bookmark_value>cells; deleting contents</bookmark_value><bookmark_value>spreadsheets; deleting cell contents</bookmark_value><bookmark_value>cell contents; deleting</bookmark_value>"
-msgstr "<bookmark_value> exclusión; o contido da cela </ bookmark_value> <bookmark_value> celas; Excluíndo o contido </ bookmark_value> <bookmark_value> follas de cálculo; eliminar o contido da cela </ bookmark_value> <bookmark_value> contido da cela; exclusión </ bookmark_value>"
+msgstr "<bookmark_value>exclusión; o contido da cela</bookmark_value><bookmark_value>celas; Excluíndo o contido </bookmark_value><bookmark_value>follas de cálculo; eliminar o contido da cela</bookmark_value><bookmark_value> contido da cela; exclusión</bookmark_value>"
#: 02150000.xhp
msgctxt ""
@@ -1926,7 +1926,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Specifies the contents to be deleted from the active cell or from a selected cell range.</ahelp></variable> If several sheets are selected, all selected sheets will be affected."
-msgstr "<variable id =\"inhalteloeschentext\"> <ahelp hid=\". Uno: Eliminar\"> Especifica o contido a ser excluídos da célula activa ou dun intervalo de celas seleccionado </ ahelp> </ variable> Se varios. follas de cálculo seleccionadas, as follas de cálculo seleccionadas serán afectados."
+msgstr "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Especifica o contido a ser excluídos da célula activa ou dun intervalo de celas seleccionado </ahelp></variable> Se varios. follas de cálculo seleccionadas, as follas de cálculo seleccionadas serán afectados."
#: 02150000.xhp
msgctxt ""
@@ -2110,7 +2110,7 @@ msgctxt ""
"bm_id3153726\n"
"help.text"
msgid "<bookmark_value>cells; deleting cells</bookmark_value><bookmark_value>columns; deleting</bookmark_value><bookmark_value>rows; deleting</bookmark_value><bookmark_value>spreadsheets; deleting cells</bookmark_value><bookmark_value>deleting;cells/rows/columns</bookmark_value>"
-msgstr "<bookmark_value> células; eliminar as células </ bookmark_value> <bookmark_value> columnas; exclusión </ bookmark_value> <bookmark_value> liñas; exclusión </ bookmark_value> <bookmark_value> follas de cálculo; exclusión células </ bookmark_value> <bookmark_value> Exclusión; células / liñas / columnas </ bookmark_value>"
+msgstr "<bookmark_value>células; eliminar as células</bookmark_value><bookmark_value>columnas; exclusión </bookmark_value><bookmark_value>liñas; exclusión</bookmark_value><bookmark_value>follas de cálculo; exclusión células </bookmark_value><bookmark_value>Exclusión; células / liñas / columnas </bookmark_value>"
#: 02160000.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"par_id3148487\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteRows\">After selecting at least one cell, deletes the entire row from the sheet.</ahelp>"
-msgstr "<ahelp hid=\". Uno: DeleteRows\"> Despois de seleccionar polo menos unha célula, exclúe a liña enteira da folla </ ahelp>."
+msgstr "<ahelp hid=\".uno:DeleteRows\">Despois de seleccionar polo menos unha célula, exclúe a liña enteira da folla.</ahelp>"
#: 02160000.xhp
msgctxt ""
@@ -2214,7 +2214,7 @@ msgctxt ""
"par_id3150086\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
-msgstr "<ahelp hid=\". Uno: DeleteColumns\"> Despois de seleccionar polo menos unha célula, exclúe toda a columna desde a folla </ ahelp>."
+msgstr "<ahelp hid=\".uno:DeleteColumns\">Despois de seleccionar polo menos unha célula, exclúe toda a columna desde a folla.</ahelp>"
#: 02160000.xhp
msgctxt ""
@@ -2238,7 +2238,7 @@ msgctxt ""
"bm_id3156424\n"
"help.text"
msgid "<bookmark_value>spreadsheets; deleting</bookmark_value><bookmark_value>sheets; deleting</bookmark_value><bookmark_value>deleting; spreadsheets</bookmark_value>"
-msgstr "<bookmark_value> follas de cálculo; exclusión </ bookmark_value> <bookmark_value> follas; exclusión </ bookmark_value> <bookmark_value> Exclusión; follas de cálculo </ bookmark_value>"
+msgstr "<bookmark_value>follas de cálculo; exclusión</bookmark_value><bookmark_value>follas; exclusión</bookmark_value> <bookmark_value>exclusión; follas de cálculo</bookmark_value>"
#: 02170000.xhp
msgctxt ""
@@ -2310,7 +2310,7 @@ msgctxt ""
"bm_id3153360\n"
"help.text"
msgid "<bookmark_value>spreadsheets; moving</bookmark_value><bookmark_value>spreadsheets; copying</bookmark_value><bookmark_value>moving; spreadsheets</bookmark_value><bookmark_value>copying; spreadsheets</bookmark_value>"
-msgstr "<bookmark_value> follas de cálculo; movendo </ bookmark_value> <bookmark_value> follas de cálculo; copia </ bookmark_value> <bookmark_value> en movemento; follas de cálculo </ bookmark_value> <bookmark_value> copia; follas de cálculo </ bookmark_value>"
+msgstr "<bookmark_value>follas de cálculo; movendo</bookmark_value><bookmark_value>follas de cálculo; copia</bookmark_value><bookmark_value>en movemento; follas de cálculo</bookmark_value><bookmark_value>copia; follas de cálculo</bookmark_value>"
#: 02180000.xhp
msgctxt ""
@@ -2326,7 +2326,7 @@ msgctxt ""
"par_id3154686\n"
"help.text"
msgid "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Moves or copies a sheet to a new location in the document or to a different document.</ahelp></variable>"
-msgstr "<Variable id =\"tabelleverschiebenkopierentext\"> <ahelp hid=\". Uno: Mover\"> Move ou copia unha folla a un novo local no documento ou a un documento diferente </ ahelp> </ variable>."
+msgstr "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Move ou copia unha folla a un novo local no documento ou a un documento diferente.</ahelp></variable>"
#: 02180000.xhp
msgctxt ""
@@ -2334,7 +2334,7 @@ msgctxt ""
"par_id2282479\n"
"help.text"
msgid "When you copy and paste cells containing <link href=\"text/scalc/01/04060102.xhp\">date values</link> between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
-msgstr "Cando copiar e pegar celas conteñen <link href=\"text / scalc / 01 / 04060102.xhp\"> valores de data </ ​​link> entre diferentes follas de cálculo, tanto os documentos de folla de cálculo debe ser definida para a mesma data base. Se bases de data diferentes, os valores de data exhibidos vai cambiar!"
+msgstr "Cando copiar e pegar celas conteñen <link href=\"text/scalc/01/04060102.xhp\">valores de data</link> entre diferentes follas de cálculo, tanto os documentos de folla de cálculo debe ser definida para a mesma data base. Se bases de data diferentes, os valores de data exhibidos vai cambiar!"
#: 02180000.xhp
msgctxt ""
@@ -2350,7 +2350,7 @@ msgctxt ""
"par_id3148645\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/movecopysheet/toDocument\">Indicates where the current sheet is to be moved or copied to.</ahelp> Select <emph>- new document -</emph> if you want to create a new location for the sheet to be moved or copied."
-msgstr "<ahelp hid=\"modules / scalc / ui / movecopysheet / toDocument\"> Indica onde a folla actual está a ser movido ou copiado para </ ahelp> Seleccione <emph> -. Novo documento - </emph> se quere para crear un novo local para a folla a ser movido ou copiado."
+msgstr "<ahelp hid=\"modules/scalc/ui/movecopysheet/toDocument\">Indica onde a folla actual está a ser movido ou copiado para </ahelp> Seleccione <emph> -. Novo documento - </emph> se quere para crear un novo local para a folla a ser movido ou copiado."
#: 02180000.xhp
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"par_id3145366\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/movecopysheet/insertBefore\">The current sheet is moved or copied in front of the selected sheet.</ahelp> The <emph>- move to end position -</emph> option places the current sheet at the end."
-msgstr "<ahelp hid=\"modules / scalc / ui / movecopysheet / insertBefore\"> A folla actual é movido ou copiado diante da folla seleccionada </ ahelp> O <emph> -. Cambio para a posición final - </emph> opción pon a folla actual ao final."
+msgstr "<ahelp hid=\"modules/scalc/ui/movecopysheet/insertBefore\">A folla actual é movido ou copiado diante da folla seleccionada </ahelp> O <emph> -. Cambio para a posición final - </emph> opción pon a folla actual ao final."
#: 02180000.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"par_id3144764\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/movecopysheet/copy\">Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved.</ahelp> Moving sheets is the default."
-msgstr "<ahelp hid=\"modules / scalc / ui / movecopysheet / copiar\"> Especifica que a folla está a ser copiado. Se a opción está desmarcada, a folla é movida. Follas </ ahelp> Cambio é o estándar."
+msgstr "<ahelp hid=\"modules/scalc/ui/movecopysheet/copy\">Especifica que a folla está a ser copiado. Se a opción está desmarcada, a folla é movida.</ahelp> Cambio é o estándar."
#: 02190000.xhp
msgctxt ""
@@ -2422,7 +2422,7 @@ msgctxt ""
"bm_id3156326\n"
"help.text"
msgid "<bookmark_value>spreadsheets; deleting row breaks</bookmark_value><bookmark_value>deleting;manual row breaks</bookmark_value><bookmark_value>row breaks; deleting</bookmark_value>"
-msgstr "<bookmark_value> follas de cálculo; eliminar quebras de liña </ bookmark_value> <bookmark_value> Exclusión; saltos de liña manuais </ bookmark_value> <bookmark_value> quebras de liña; exclusión </ bookmark_value>"
+msgstr "<bookmark_value>follas de cálculo; eliminar quebras de liña</bookmark_value><bookmark_value>exclusión; saltos de liña manuais</bookmark_value><bookmark_value>quebras de liña; exclusión</bookmark_value>"
#: 02190100.xhp
msgctxt ""
@@ -2438,7 +2438,7 @@ msgctxt ""
"par_id3154366\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteRowbreak\">Removes the manual row break above the active cell.</ahelp>"
-msgstr "<ahelp hid=\". Uno: DeleteRowbreak\">. Elimina a quebra de liña manual enriba da cela activa </ ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteRowbreak\">Elimina a quebra de liña manual enriba da cela activa.</ahelp>"
#: 02190100.xhp
msgctxt ""
@@ -2462,7 +2462,7 @@ msgctxt ""
"bm_id3151384\n"
"help.text"
msgid "<bookmark_value>spreadsheets;deleting column breaks</bookmark_value><bookmark_value>deleting;manual column breaks</bookmark_value><bookmark_value>column breaks;deleting</bookmark_value>"
-msgstr "<bookmark_value> follas de cálculo; exclusión columna rompe </ bookmark_value> <bookmark_value> Exclusión; columna quebras manuais </ bookmark_value> <bookmark_value> quebras de columna; exclusión </ bookmark_value>"
+msgstr "<bookmark_value>follas de cálculo; exclusión columna rompe</bookmark_value><bookmark_value>exclusión; columna quebras manuais</bookmark_value><bookmark_value>quebras de columna; exclusión</bookmark_value>"
#: 02190200.xhp
msgctxt ""
@@ -2478,7 +2478,7 @@ msgctxt ""
"par_id3154124\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteColumnbreak\">Removes a manual column break to the left of the active cell.</ahelp>"
-msgstr "<ahelp hid=\". Uno: DeleteColumnbreak\">. Eliminar unha quebra de columna manual á esquerda da cela activa </ ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteColumnbreak\">Eliminar unha quebra de columna manual á esquerda da cela activa.</ahelp>"
#: 02190200.xhp
msgctxt ""
@@ -2566,7 +2566,7 @@ msgctxt ""
"bm_id3156024\n"
"help.text"
msgid "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmark_value> <bookmark_value>displaying; headers of columns/rows</bookmark_value>"
-msgstr "<bookmark_value> follas de cálculo; amosar cabeceiras de columnas / filas </ bookmark_value> <bookmark_value> visualizadas; cabeceiras de columnas / filas </ bookmark_value>"
+msgstr "<bookmark_value> follas de cálculo; amosar cabeceiras de columnas / filas</bookmark_value>..<bookmark_value>visualizadas; cabeceiras de columnas / filas</bookmark_value>"
#: 03070000.xhp
msgctxt ""
@@ -2598,7 +2598,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 "Tamén pode definir a visualización das cabeceiras de columna e de liña en <emph> <switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </ caseinline> <defaultinline> Ferramentas - Opcións </ defaultinline> </ switchinline> - <link href=\"text / shared / Optionen / 01060100.xhp\"\\ name =\"Folla - Ver\">% PRODUCTNAME Calc - Ver </link> </ emph>."
+msgstr "Tamén pode definir a visualización das cabeceiras de columna e de liña en <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferencias</item></caseinline><defaultinline><item type=\"menuitem\">Ferramentas - Opcións</item></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Folla - Ver\"><emph>%PRODUCTNAME Calc - Ver</emph></link>."
#: 03080000.xhp
msgctxt ""
@@ -2838,7 +2838,7 @@ msgctxt ""
"bm_id3153821\n"
"help.text"
msgid "<bookmark_value>sheets; inserting row breaks</bookmark_value><bookmark_value>row breaks; inserting</bookmark_value><bookmark_value>inserting; manual row breaks</bookmark_value><bookmark_value>manual row breaks</bookmark_value>"
-msgstr "<bookmark_value> follas; Inserir quebras de liña </ bookmark_value> <bookmark_value> quebras de liña; inserción </ bookmark_value> <bookmark_value> inserción; saltos de liña manuais </ bookmark_value> <bookmark_value> quebras de liña manuais </ bookmark_value>"
+msgstr "<bookmark_value>follas; Inserir quebras de liña</bookmark_value><bookmark_value>quebras de liña; inserción</bookmark_value><bookmark_value>inserción; saltos de liña manuais</bookmark_value><bookmark_value> quebras de liña manuais</bookmark_value>"
#: 04010100.xhp
msgctxt ""
@@ -2854,7 +2854,7 @@ msgctxt ""
"par_id3149656\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertRowBreak\">Inserts a row break (horizontal page break) above the selected cell.</ahelp>"
-msgstr "<ahelp hid=\". Uno: InsertRowBreak\">. Insire unha quebra de liña (quebra de páxina horizontal) enriba da cela seleccionada </ ahelp>"
+msgstr "<ahelp hid=\".uno:InsertRowBreak\">Insire unha quebra de liña (quebra de páxina horizontal) enriba da cela seleccionada.</ahelp>"
#: 04010100.xhp
msgctxt ""
@@ -2878,7 +2878,7 @@ msgctxt ""
"bm_id3155923\n"
"help.text"
msgid "<bookmark_value>spreadsheets; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
-msgstr "<bookmark_value> follas de cálculo; Inserir quebras de columna </ bookmark_value> <bookmark_value> quebras de columna; inserción </ bookmark_value> <bookmark_value> inserción; quebras de columna manuais </ bookmark_value> <bookmark_value> quebras de columna manuais </ bookmark_value>"
+msgstr "<bookmark_value>follas de cálculo; inserir quebras de columna</bookmark_value><bookmark_value>quebras de columna; inserción</bookmark_value><bookmark_value>inserción; quebras de columna manuais </bookmark_value><bookmark_value>quebras de columna manuais</bookmark_value>"
#: 04010200.xhp
msgctxt ""
@@ -2894,7 +2894,7 @@ msgctxt ""
"par_id3150447\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertColumnBreak\">Inserts a column break (vertical page break) to the left of the active cell.</ahelp>"
-msgstr "<ahelp hid=\". Uno: InsertColumnBreak\"> Insire unha quebra de columna (quebra de páxina vertical) á esquerda da cela activa </ ahelp>."
+msgstr "<ahelp hid=\".uno:InsertColumnBreak\">Insire unha quebra de columna (quebra de páxina vertical) á esquerda da cela activa.</ahelp>"
#: 04010200.xhp
msgctxt ""
@@ -2918,7 +2918,7 @@ msgctxt ""
"bm_id3156023\n"
"help.text"
msgid "<bookmark_value>spreadsheets; inserting cells</bookmark_value><bookmark_value>cells; inserting</bookmark_value><bookmark_value>inserting; cells</bookmark_value>"
-msgstr "<bookmark_value> follas de cálculo; inserción de células </ bookmark_value> <bookmark_value> celas; inserción </ bookmark_value> <bookmark_value> inserción; células </ bookmark_value>"
+msgstr "<bookmark_value>follas de cálculo; inserción de células</bookmark_value><bookmark_value>celas; inserción </bookmark_value><bookmark_value>inserción; células</bookmark_value>"
#: 04020000.xhp
msgctxt ""
@@ -2934,7 +2934,7 @@ msgctxt ""
"par_id3150542\n"
"help.text"
msgid "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Opens the<emph> Insert Cells </emph>dialog, in which you can insert new cells according to the options that you specify.</ahelp></variable> You can delete cells by choosing <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>Edit - Delete Cells</emph></link>."
-msgstr "<Variable id =\"zelleneinfuegentext\"> <ahelp hid=\". Uno: insertCELA\"> Abre o <emph> Inserir celas de diálogo </emph>, na cal pode introducir novas células de acordo coas opcións que se especifica . </ ahelp> </ variable> Pode eliminar celas, seleccionando <link href=\"text / scalc / 01 / 02160000.xhp\" name =\"Editar - Eliminar celas\"> <emph> Editar - Eliminar celas </emph> </link>."
+msgstr "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Abre o <emph> Inserir celas de diálogo </emph>, na cal pode introducir novas células de acordo coas opcións que se especifica .</ahelp></variable> Pode eliminar celas, seleccionando <link href=\"text/scalc/01/02160000.xhp\" name=\"Editar - Eliminar celas\"><emph>Editar - Eliminar celas </emph></link>."
#: 04020000.xhp
msgctxt ""
@@ -2982,7 +2982,7 @@ msgctxt ""
"par_id3144764\n"
"help.text"
msgid "<variable id=\"zellenrechtstext\"><ahelp hid=\"modules/scalc/ui/insertcells/right\">Moves the contents of the selected range to the right when cells are inserted.</ahelp></variable>"
-msgstr "<Variable id =\"zellenrechtstext\"> <ahelp hid=\"modules / scalc / ui / insertCELAs /\\ right\"> Move o contido do intervalo seleccionado cara á dereita cando as células son inseridas </ ahelp> </ variable. >"
+msgstr "<variable id=\"zellenrechtstext\"><ahelp hid=\"modules/scalc/ui/insertcells/right\">Move o contido do intervalo seleccionado cara á dereita cando as células son inseridas.</ahelp></variable>"
#: 04020000.xhp
msgctxt ""
@@ -2998,7 +2998,7 @@ msgctxt ""
"par_id3155417\n"
"help.text"
msgid "<variable id=\"zeilenganzetext\"><ahelp hid=\"modules/scalc/ui/insertcells/rows\">Inserts an entire row. The position of the row is determined by the selection on the sheet.</ahelp></variable> The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward."
-msgstr "<Variable id =\"zeilenganzetext\"> <ahelp hid=\"modules / scalc / ui / insertCELAs / liñas\"> Insire unha liña enteira. A posición da liña é determinada pola selección na folla. </ahelp> </ variable> O número de liñas inseridas dependerá do número de liñas están seleccionadas. Os contidos das liñas orixinais son movidos para abaixo."
+msgstr "<variable id=\"zeilenganzetext\"><ahelp hid=\"modules/scalc/ui/insertcells/rows\">Insire unha liña enteira. A posición da liña é determinada pola selección na folla.</ahelp></variable> O número de liñas inseridas dependerá do número de liñas están seleccionadas. Os contidos das liñas orixinais son movidos para abaixo."
#: 04020000.xhp
msgctxt ""
@@ -3030,7 +3030,7 @@ msgctxt ""
"bm_id3150541\n"
"help.text"
msgid "<bookmark_value>spreadsheets; inserting rows</bookmark_value> <bookmark_value>rows; inserting</bookmark_value> <bookmark_value>inserting; rows</bookmark_value>"
-msgstr "<bookmark_value> follas de cálculo; Inserción de liñas </ bookmark_value> <bookmark_value> liñas; inserción </ bookmark_value> <bookmark_value> inserción; liñas </ bookmark_value>"
+msgstr "<bookmark_value>follas de cálculo; Inserción de liñas</bookmark_value><bookmark_value>liñas; inserción</bookmark_value><bookmark_value>inserción; liñas</bookmark_value>"
#: 04030000.xhp
msgctxt ""
@@ -3094,7 +3094,7 @@ msgctxt ""
"bm_id3155628\n"
"help.text"
msgid "<bookmark_value>spreadsheets; inserting columns</bookmark_value> <bookmark_value>inserting; columns</bookmark_value> <bookmark_value>columns; inserting</bookmark_value>"
-msgstr "<bookmark_value> follas de cálculo; inserción de columnas </ bookmark_value> <bookmark_value> inserción; columnas </ bookmark_value> <bookmark_value> columnas; inserindo </ bookmark_value>"
+msgstr "<bookmark_value>follas de cálculo; inserción de columnas</bookmark_value><bookmark_value>inserción; columnas </bookmark_value><bookmark_value>columnas; inserindo</bookmark_value>"
#: 04040000.xhp
msgctxt ""
@@ -3334,7 +3334,7 @@ msgctxt ""
"par_id3155336\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/tables\">If you selected a file by using the <emph>Browse</emph> button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box.</ahelp>"
-msgstr "<ahelp hid=\"modules / scalc / ui / insertsheet / táboas\"> Se seleccionou un ficheiro mediante o <emph> botón Browse <emph />, as follas nel contidos son mostrados no cadro de lista. O camiño do ficheiro aparece debaixo desa caixa. Seleccione a folla a ser inserido na caixa de lista. </ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/insertsheet/tables\">Se seleccionou un ficheiro mediante o botón <emph> Browse </emph>, as follas nel contidos son mostrados no cadro de lista. O camiño do ficheiro aparece debaixo desa caixa. Seleccione a folla a ser inserido na caixa de lista.</ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -3406,7 +3406,7 @@ msgctxt ""
"bm_id3147426\n"
"help.text"
msgid "<bookmark_value>inserting functions; Function Wizard</bookmark_value><bookmark_value>functions;Function Wizard</bookmark_value><bookmark_value>wizards; functions</bookmark_value>"
-msgstr "<bookmark_value> funcións de inserción; Asistente de función </ bookmark_value> <bookmark_value> funcións; Asistente de función </ bookmark_value> <bookmark_value> asistentes; funcións </ bookmark_value>"
+msgstr "<bookmark_value>funcións de inserción; Asistente de función</bookmark_value><bookmark_value>funcións; Asistente de función</bookmark_value><bookmark_value>asistentes; funcións</bookmark_value>"
#: 04060000.xhp
msgctxt ""
@@ -3910,7 +3910,7 @@ msgctxt ""
"bm_id3148946\n"
"help.text"
msgid "<bookmark_value>Function Wizard; databases</bookmark_value> <bookmark_value>functions; database functions</bookmark_value> <bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
-msgstr "<bookmark_value> Asistente de funcións; bases de datos </ bookmark_value> <bookmark_value> funcións; funcións de base de datos </ bookmark_value> <bookmark_value> bases de datos; funcións no $ [officename] Calc </ bookmark_value>"
+msgstr "<bookmark_value>Asistente de funcións; bases de datos</bookmark_value><bookmark_value>funcións; funcións de base de datos</bookmark_value><bookmark_value> bases de datos; funcións no $[officename] Calc</bookmark_value>"
#: 04060101.xhp
msgctxt ""
@@ -4222,7 +4222,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 "Escolla <switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </ caseinline> <defaultinline> Ferramentas - Opcións </ defaultinline> </ switchinline> - <link href=\" text / shared / Optionen / 01060500.xhp\\\"name =\" Folla - Calcular\\\">% PRODUCTNAME Calc - Calcular </link> para definir como $ [officename] Calc actúa na busca de entradas idénticas."
+msgstr "Escolla <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline> <defaultinline>Ferramentas - Opcións</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\" Folla - Calcular\">%PRODUCTNAME Calc - Calcular</link> para definir como $[officename] Calc actúa na busca de entradas idénticas."
#: 04060101.xhp
msgctxt ""
@@ -4302,7 +4302,7 @@ msgctxt ""
"bm_id3156123\n"
"help.text"
msgid "<bookmark_value>DCOUNTA function</bookmark_value> <bookmark_value>records;counting in Calc databases</bookmark_value> <bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
-msgstr "<bookmark_value> función DCOUNTA </ bookmark_value> <bookmark_value> rexistros; conta en bases de datos Calc </ bookmark_value> <bookmark_value> conta de liñas, con valores numéricos ou alfanuméricos </ bookmark_value>"
+msgstr "<bookmark_value>función DCOUNTA</bookmark_value><bookmark_value>rexistros; conta en bases de datos Calc</bookmark_value><bookmark_value>conta de liñas, con valores numéricos ou alfanuméricos</bookmark_value>"
#: 04060101.xhp
msgctxt ""
@@ -4350,7 +4350,7 @@ msgctxt ""
"bm_id3147256\n"
"help.text"
msgid "<bookmark_value>DGET function</bookmark_value> <bookmark_value>cell contents;searching in Calc databases</bookmark_value> <bookmark_value>searching;cell contents in Calc databases</bookmark_value>"
-msgstr "<bookmark_value> función DGET </ bookmark_value> <bookmark_value> contido da cela; buscar en bases de datos Calc </ bookmark_value> <bookmark_value> busca; o contido das celas en bases de datos Calc </ bookmark_value>"
+msgstr "<bookmark_value>función DGET</bookmark_value><bookmark_value>contido da cela; buscar en bases de datos Calc</bookmark_value><bookmark_value>busca; o contido das celas en bases de datos Calc</bookmark_value>"
#: 04060101.xhp
msgctxt ""
@@ -4430,7 +4430,7 @@ msgctxt ""
"bm_id3149766\n"
"help.text"
msgid "<bookmark_value>DMAX function</bookmark_value> <bookmark_value>maximum values in Calc databases</bookmark_value> <bookmark_value>searching;maximum values in columns</bookmark_value>"
-msgstr "<bookmark_value> función DMAX </ bookmark_value> <bookmark_value> valores máximos en bases de datos Calc </ bookmark_value> <bookmark_value> busca; valores máximos nas columnas </ bookmark_value>"
+msgstr "<bookmark_value>función DMAX </bookmark_value><bookmark_value>valores máximos en bases de datos Calc </bookmark_value><bookmark_value>busca; valores máximos nas columnas </bookmark_value>"
#: 04060101.xhp
msgctxt ""
@@ -4486,7 +4486,7 @@ msgctxt ""
"bm_id3159141\n"
"help.text"
msgid "<bookmark_value>DMIN function</bookmark_value> <bookmark_value>minimum values in Calc databases</bookmark_value> <bookmark_value>searching;minimum values in columns</bookmark_value>"
-msgstr "<bookmark_value> función DMIN </ bookmark_value> <bookmark_value> valores mínimos en bases de datos Calc </ bookmark_value> <bookmark_value> busca; valores mínimos en columnas </ bookmark_value>"
+msgstr "<bookmark_value>función DMIN</bookmark_value><bookmark_value>valores mínimos en bases de datos Calc </bookmark_value><bookmark_value>busca; valores mínimos en columnas</bookmark_value>"
#: 04060101.xhp
msgctxt ""
@@ -4542,7 +4542,7 @@ msgctxt ""
"bm_id3154274\n"
"help.text"
msgid "<bookmark_value>DAVERAGE function</bookmark_value> <bookmark_value>averages; in Calc databases</bookmark_value> <bookmark_value>calculating;averages in Calc databases</bookmark_value>"
-msgstr "<bookmark_value> función DAVERAGE </ bookmark_value> <bookmark_value> medias; en bases de datos Calc </ bookmark_value> <bookmark_value> cálculo; medias en bases de datos Calc </ bookmark_value>"
+msgstr "<bookmark_value>función DAVERAGE</bookmark_value><bookmark_value>medias; en bases de datos Calc</bookmark_value><bookmark_value>cálculo; medias en bases de datos Calc</bookmark_value>"
#: 04060101.xhp
msgctxt ""
@@ -4598,7 +4598,7 @@ msgctxt ""
"bm_id3159269\n"
"help.text"
msgid "<bookmark_value>DPRODUCT function</bookmark_value> <bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
-msgstr "<bookmark_value> función DPRODUCT </ bookmark_value> <bookmark_value> multiplicador; o contido das celas en bases de datos Calc </ bookmark_value>"
+msgstr "<bookmark_value>función DPRODUCT</bookmark_value><bookmark_value>multiplicador; o contido das celas en bases de datos Calc</bookmark_value>"
#: 04060101.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"bm_id3148462\n"
"help.text"
msgid "<bookmark_value>DSTDEV function</bookmark_value> <bookmark_value>standard deviations in databases;based on a sample</bookmark_value>"
-msgstr "<bookmark_value> función DSTDEV </ bookmark_value> <bookmark_value> desviacións estándar en bases de datos, con base nunha mostra </ bookmark_value>"
+msgstr "<bookmark_value>función DSTDEV</bookmark_value><bookmark_value>desviacións estándar en bases de datos, con base nunha mostra</bookmark_value>"
#: 04060101.xhp
msgctxt ""
@@ -4694,7 +4694,7 @@ msgctxt ""
"bm_id3150429\n"
"help.text"
msgid "<bookmark_value>DSTDEVP function</bookmark_value> <bookmark_value>standard deviations in databases;based on populations</bookmark_value>"
-msgstr "<bookmark_value> función DSTDEVP </ bookmark_value> <bookmark_value> desviacións estándar en bases de datos, con base en poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DSTDEVP</bookmark_value><bookmark_value>desviacións estándar en bases de datos, con base en poboacións</bookmark_value>"
#: 04060101.xhp
msgctxt ""
@@ -4750,7 +4750,7 @@ msgctxt ""
"bm_id3154794\n"
"help.text"
msgid "<bookmark_value>DSUM function</bookmark_value> <bookmark_value>calculating;sums in Calc databases</bookmark_value> <bookmark_value>sums;cells in Calc databases</bookmark_value>"
-msgstr "<bookmark_value> función DSUM </ bookmark_value> <bookmark_value> cálculo; cantidades en bases de datos Calc </ bookmark_value> <bookmark_value> sumas; células do Calc en bases de datos </ bookmark_value>"
+msgstr "<bookmark_value>función DSUM</bookmark_value><bookmark_value>cálculo; cantidades en bases de datos Calc </bookmark_value><bookmark_value>sumas; células do Calc en bases de datos</bookmark_value>"
#: 04060101.xhp
msgctxt ""
@@ -4806,7 +4806,7 @@ msgctxt ""
"bm_id3155614\n"
"help.text"
msgid "<bookmark_value>DVAR function</bookmark_value> <bookmark_value>variances;based on samples</bookmark_value>"
-msgstr "<bookmark_value> función DVAR </ bookmark_value> <bookmark_value> variacións, en base a mostras </ bookmark_value>"
+msgstr "<bookmark_value>función DVAR</bookmark_value><bookmark_value>variacións, en base a mostras</bookmark_value>"
#: 04060101.xhp
msgctxt ""
@@ -4862,7 +4862,7 @@ msgctxt ""
"bm_id3153880\n"
"help.text"
msgid "<bookmark_value>DVARP function</bookmark_value> <bookmark_value>variances;based on populations</bookmark_value>"
-msgstr "<bookmark_value> función DVARP </ bookmark_value> <bookmark_value> variacións, en base a poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DVARP</bookmark_value><bookmark_value>variacións, en base a poboacións</bookmark_value>"
#: 04060101.xhp
msgctxt ""
@@ -5046,7 +5046,7 @@ msgctxt ""
"par_id791039\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 Calc - Calculate</emph> to select the date base."
-msgstr "Escolla <emph> <switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </ caseinline> <defaultinline> Ferramentas - Opcións </ defaultinline> </ switchinline> -% PRODUCTNAME Calc - Calcular </ emph> para seleccionar a data base."
+msgstr "Escolla <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferencias</emph></caseinline><defaultinline><emph>Ferramentas - Opcións</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calcular</emph> para seleccionar a data base."
#: 04060102.xhp
msgctxt ""
@@ -5118,7 +5118,7 @@ msgctxt ""
"bm_id3143284\n"
"help.text"
msgid "<bookmark_value>financial functions</bookmark_value> <bookmark_value>functions; financial functions</bookmark_value> <bookmark_value>Function Wizard; financial</bookmark_value> <bookmark_value>amortizations, see also depreciations</bookmark_value>"
-msgstr "<bookmark_value> funcións financeiras </ bookmark_value> <bookmark_value> funcións; funcións financeiras </ bookmark_value> <bookmark_value> Asistente de funcións; financeira </ bookmark_value> <bookmark_value> amortizacións, ver tamén depreciacións </ bookmark_value>"
+msgstr "<bookmark_value>funcións financeiras</bookmark_value><bookmark_value>funcións; funcións financeiras</bookmark_value><bookmark_value>Asistente de funcións; financeira</bookmark_value><bookmark_value>amortizacións, ver tamén depreciacións</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -5142,7 +5142,7 @@ msgctxt ""
"bm_id3153366\n"
"help.text"
msgid "<bookmark_value>AMORDEGRC function</bookmark_value> <bookmark_value>depreciations;degressive amortizations</bookmark_value>"
-msgstr "<bookmark_value> función AMORDEGRC </ bookmark_value> <bookmark_value> depreciacións; amortizacións degressivas </ bookmark_value>"
+msgstr "<bookmark_value>función AMORDEGRC</bookmark_value><bookmark_value>depreciacións; amortizacións degressivas</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -5222,7 +5222,7 @@ msgctxt ""
"bm_id3153765\n"
"help.text"
msgid "<bookmark_value>AMORLINC function</bookmark_value> <bookmark_value>depreciations;linear amortizations</bookmark_value>"
-msgstr "Función <bookmark_value> AMORLINC </ bookmark_value> <bookmark_value> depreciacións; amortizacións lineais </ bookmark_value>"
+msgstr "Función <bookmark_value>AMORLINC</bookmark_value><bookmark_value>Depreciacións; amortizacións lineais </bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -5318,7 +5318,7 @@ msgctxt ""
"bm_id3151276\n"
"help.text"
msgid "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
-msgstr "<bookmark_value> interese vencidos; pagos periódicos </ bookmark_value>"
+msgstr "<bookmark_value>interese vencidos; pagos periódicos</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -5406,7 +5406,7 @@ msgctxt ""
"bm_id3151240\n"
"help.text"
msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
-msgstr "<bookmark_value> función ACCRINTM </ bookmark_value> <bookmark_value> interese vencidos; pagos únicos </ bookmark_value>"
+msgstr "<bookmark_value>función ACCRINTM</bookmark_value><bookmark_value>interese vencidos; pagos únicos</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -5486,7 +5486,7 @@ msgctxt ""
"bm_id3145753\n"
"help.text"
msgid "<bookmark_value>RECEIVED function</bookmark_value> <bookmark_value>amount received for fixed-interest securities</bookmark_value>"
-msgstr "<bookmark_value> función recibido </ bookmark_value> <bookmark_value> importe recibido por títulos de xuro fixo </ bookmark_value>"
+msgstr "<bookmark_value>función recibido</bookmark_value><bookmark_value>importe recibido por títulos de xuro fixo</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -5574,7 +5574,7 @@ msgctxt ""
"bm_id3147556\n"
"help.text"
msgid "<bookmark_value>PV function</bookmark_value> <bookmark_value>present values</bookmark_value> <bookmark_value>calculating; present values</bookmark_value>"
-msgstr "<bookmark_value> función PV </ bookmark_value> <bookmark_value> valores presentes </ bookmark_value> <bookmark_value> cálculo; valores presentes </ bookmark_value>"
+msgstr "<bookmark_value>función PV</bookmark_value><bookmark_value>valores presentes</bookmark_value><bookmark_value>cálculo; valores presentes</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -6494,7 +6494,7 @@ msgctxt ""
"bm_id3149998\n"
"help.text"
msgid "<bookmark_value>calculating; arithmetic-degressive depreciations</bookmark_value> <bookmark_value>arithmetic-degressive depreciations</bookmark_value> <bookmark_value>depreciations;arithmetic-degressive</bookmark_value> <bookmark_value>DDB function</bookmark_value>"
-msgstr "<bookmark_value> cálculo; depreciacións aritméticas degressivo </ bookmark_value> <bookmark_value> aritmética degressivas depreciacións </ bookmark_value> <bookmark_value> depreciacións; aritmética degressivo </ bookmark_value> <bookmark_value> función DDB </ bookmark_value>"
+msgstr "<bookmark_value>cálculo; depreciacións aritméticas degressivo</bookmark_value><bookmark_value>aritmética degressivas depreciacións</bookmark_value><bookmark_value>depreciacións; aritmética degressivo</bookmark_value> <bookmark_value>función DDB</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -6590,7 +6590,7 @@ msgctxt ""
"bm_id3149962\n"
"help.text"
msgid "<bookmark_value>calculating; geometric-degressive depreciations</bookmark_value> <bookmark_value>geometric-degressive depreciations</bookmark_value> <bookmark_value>depreciations;geometric-degressive</bookmark_value> <bookmark_value>DB function</bookmark_value>"
-msgstr "<bookmark_value> cálculo; depreciacións xeométrico degressivas </ bookmark_value> <bookmark_value> depreciacións xeométricas degressivo </ bookmark_value> <bookmark_value> depreciacións; xeométrico degressivo </ bookmark_value> <bookmark_value> función DB </ bookmark_value>"
+msgstr "<bookmark_value>cálculo; depreciacións xeométrico degressivas</bookmark_value><bookmark_value>depreciacións xeométricas degressivo</bookmark_value><bookmark_value>depreciacións; xeométrico degressivo </bookmark_value><bookmark_value>función DB</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -6766,7 +6766,7 @@ msgctxt ""
"bm_id3151012\n"
"help.text"
msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
-msgstr "<bookmark_value> cálculo; intereses de parcelas de amortización inalteradas </ bookmark_value> <bookmark_value> intereses de parcelas de amortización inalteradas </ bookmark_value> <bookmark_value> ISPMT función </ bookmark_value>"
+msgstr "<bookmark_value>cálculo; intereses de parcelas de amortización inalteradas</bookmark_value><bookmark_value> intereses de parcelas de amortización inalteradas</bookmark_value><bookmark_value>ISPMT función</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -7438,7 +7438,7 @@ msgctxt ""
"bm_id3153618\n"
"help.text"
msgid "<bookmark_value>ISFORMULA function</bookmark_value> <bookmark_value>recognizing formula cells</bookmark_value> <bookmark_value>formula cells;recognizing</bookmark_value>"
-msgstr "<bookmark_value> función ÉFORMULA </ bookmark_value> <bookmark_value> recoñecer células de fórmulas </ bookmark_value> <bookmark_value> celas de fórmulas; recoñecendo </ bookmark_value>"
+msgstr "<bookmark_value>función ÉFORMULA</bookmark_value><bookmark_value>recoñecer células de fórmulas</bookmark_value><bookmark_value>celas de fórmulas; recoñecendo</bookmark_value>"
#: 04060104.xhp
msgctxt ""
@@ -8358,7 +8358,7 @@ msgctxt ""
"bm_id3155509\n"
"help.text"
msgid "<bookmark_value>CELL function</bookmark_value> <bookmark_value>cell information</bookmark_value> <bookmark_value>information on cells</bookmark_value>"
-msgstr "<bookmark_value> función CELA </ bookmark_value> <bookmark_value> información de cela </ bookmark_value> <bookmark_value> información sobre as células </ bookmark_value>"
+msgstr "<bookmark_value>función CELA</bookmark_value><bookmark_value>información de cela</bookmark_value><bookmark_value>información sobre as células</bookmark_value>"
#: 04060104.xhp
msgctxt ""
@@ -11110,7 +11110,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 "O <emph> visible </emph> cifras decimais do resultado especifícanse en <switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </ caseinline> <defaultinline> Ferramentas - Opcións </ defaultinline> </ switchinline> - <link href=\"text / / Optionen / 01060500.xhp\\ shared\">% PRODUCTNAME Calc - Calcular </link>."
+msgstr "O <emph>visible</emph> cifras decimais do resultado especifícanse en <switchinline select=\"sys\"> <caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Ferramentas - Opcións</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calcular</link>."
#: 04060106.xhp
msgctxt ""
@@ -17390,7 +17390,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\"> Devolve o resultado dunha ligazón baseada DDE. </ahelp> Se o contido da gama ou de sección cambios ligadas, o valor de retorno será tamén cambian. Debe actualizar a folla de cálculo ou escoller <emph> Editar - Ligazóns </emph> para ver as ligazóns actualizadas. Conexións de plataforma cruzada, por exemplo desde un <item type =\"productname\">% PRODUCTNAME </ item> instalación rodando nunha máquina Windows para un documento creado nunha máquina Linux, non se permiten."
+msgstr "<ahelp hid=\"HID_FUNC_DDE\"> Devolve o resultado dunha ligazón baseada DDE. </ahelp> Se o contido da gama ou de sección cambios ligadas, o valor de retorno será tamén cambian. Debe actualizar a folla de cálculo ou escoller <emph> Editar - Ligazóns </emph> para ver as ligazóns actualizadas. Conexións de plataforma cruzada, por exemplo desde un <item type=\"productname\">%PRODUCTNAME </item> instalación rodando nunha máquina Windows para un documento creado nunha máquina Linux, non se permiten."
#: 04060109.xhp
msgctxt ""
@@ -21926,7 +21926,7 @@ msgctxt ""
"bm_id3151076\n"
"help.text"
msgid "<bookmark_value>programming; add-ins</bookmark_value><bookmark_value>shared libraries; programming</bookmark_value><bookmark_value>external DLL functions</bookmark_value><bookmark_value>functions; $[officename] Calc add-in DLL</bookmark_value><bookmark_value>add-ins; for programming</bookmark_value>"
-msgstr "<bookmark_value> programación; add-ins </ bookmark_value> <bookmark_value> bibliotecas compartidas; programación </ bookmark_value> <bookmark_value> funcións DLL externos </ bookmark_value> <bookmark_value> funcións; $ [Officename] Calc add-in DLL </ bookmark_value> <bookmark_value> add-ins; para a programación </ bookmark_value>"
+msgstr "<bookmark_value>programación; add-ins</bookmark_value><bookmark_value>bibliotecas compartidas; programación</bookmark_value><bookmark_value>funcións DLL externos</bookmark_value><bookmark_value>funcións; $[officename] Calc add-in DLL</bookmark_value><bookmark_value>add-ins; para a programación</bookmark_value>"
#: 04060112.xhp
msgctxt ""
@@ -31134,7 +31134,7 @@ msgctxt ""
"bm_id3145620\n"
"help.text"
msgid "<bookmark_value>BETAINV function</bookmark_value> <bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
-msgstr "<bookmark_value> función DVARP </ bookmark_value> <bookmark_value> variacións, en base a poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DVARP </bookmark_value><bookmark_value>variacións, en base a poboacións</bookmark_value>"
#: 04060181.xhp
msgctxt ""
@@ -31214,7 +31214,7 @@ msgctxt ""
"bm_id2945620\n"
"help.text"
msgid "<bookmark_value>BETA.INV function</bookmark_value> <bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
-msgstr "<bookmark_value> función DVARP </ bookmark_value> <bookmark_value> variacións, en base a poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DVARP </bookmark_value><bookmark_value>variacións, en base a poboacións </bookmark_value>"
#: 04060181.xhp
msgctxt ""
@@ -31294,7 +31294,7 @@ msgctxt ""
"bm_id3156096\n"
"help.text"
msgid "<bookmark_value>BETADIST function</bookmark_value> <bookmark_value>cumulative probability density function;calculating</bookmark_value>"
-msgstr "<bookmark_value> función DVARP </ bookmark_value> <bookmark_value> variacións, en base a poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DVARP</bookmark_value><bookmark_value>variacións, en base a poboacións </bookmark_value>"
#: 04060181.xhp
msgctxt ""
@@ -31382,7 +31382,7 @@ msgctxt ""
"bm_id2956096\n"
"help.text"
msgid "<bookmark_value>BETA.DIST function</bookmark_value> <bookmark_value>cumulative probability density function;calculating</bookmark_value>"
-msgstr "<bookmark_value> función DVARP </ bookmark_value> <bookmark_value> variacións, en base a poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DVARP</bookmark_value><bookmark_value>variacións, en base a poboacións</bookmark_value>"
#: 04060181.xhp
msgctxt ""
@@ -32854,7 +32854,7 @@ msgctxt ""
"bm_id3145388\n"
"help.text"
msgid "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
-msgstr "<bookmark_value> función DVARP </ bookmark_value> <bookmark_value> variacións, en base a poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DVARP </bookmark_value><bookmark_value>variacións, en base a poboacións</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -32918,7 +32918,7 @@ msgctxt ""
"bm_id2945388\n"
"help.text"
msgid "<bookmark_value>F.INV function</bookmark_value> <bookmark_value>Values of the inverse left tail of the F distribution</bookmark_value>"
-msgstr "<bookmark_value> función DVARP </ bookmark_value> <bookmark_value> variacións, en base a poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DVARP</bookmark_value><bookmark_value>variacións, en base a poboacións</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -32982,7 +32982,7 @@ msgctxt ""
"bm_id2845388\n"
"help.text"
msgid "<bookmark_value>F.INV.RT function</bookmark_value> <bookmark_value>Values of the inverse right tail of the F distribution</bookmark_value>"
-msgstr "<bookmark_value> función DVARP </ bookmark_value> <bookmark_value> variacións, en base a poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DVARP</bookmark_value><bookmark_value>variacións, en base a poboacións</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -33094,7 +33094,7 @@ msgctxt ""
"bm_id3155758\n"
"help.text"
msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
-msgstr "<bookmark_value> función DVARP </ bookmark_value> <bookmark_value> variacións, en base a poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DVARP</bookmark_value><bookmark_value>variacións, en base a poboacións</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -33894,7 +33894,7 @@ msgctxt ""
"bm_id3150272\n"
"help.text"
msgid "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
-msgstr "<bookmark_value> función DVAR </ bookmark_value> <bookmark_value> variacións, en base a mostras </ bookmark_value>"
+msgstr "<bookmark_value>función DVAR </bookmark_value><bookmark_value>variacións, en base a mostras</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -33958,7 +33958,7 @@ msgctxt ""
"bm_id3148425\n"
"help.text"
msgid "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
-msgstr "<bookmark_value> función DVAR </ bookmark_value> <bookmark_value> variacións, en base a mostras </ bookmark_value>"
+msgstr "<bookmark_value>función DVAR</bookmark_value><bookmark_value>variacións, en base a mostras</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -34006,7 +34006,7 @@ msgctxt ""
"bm_id3152966\n"
"help.text"
msgid "<bookmark_value>TRIMMEAN function</bookmark_value> <bookmark_value>means;of data set without margin data</bookmark_value>"
-msgstr "<bookmark_value> función DVAR </ bookmark_value> <bookmark_value> variacións, en base a mostras </ bookmark_value>"
+msgstr "<bookmark_value>función DVAR</bookmark_value><bookmark_value>variacións, en base a mostras</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -34190,7 +34190,7 @@ msgctxt ""
"bm_id3153623\n"
"help.text"
msgid "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
-msgstr "<bookmark_value> función DVAR </ bookmark_value> <bookmark_value> variacións, en base a mostras </ bookmark_value>"
+msgstr "<bookmark_value>función DVAR</bookmark_value><bookmark_value>variacións, en base a mostras</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -34238,7 +34238,7 @@ msgctxt ""
"bm_id3152801\n"
"help.text"
msgid "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
-msgstr "Función <bookmark_value> AMORLINC </ bookmark_value> <bookmark_value> depreciacións; amortizacións lineais </ bookmark_value>"
+msgstr "Función <bookmark_value>AMORLINC</bookmark_value><bookmark_value>depreciacións; amortizacións lineais</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -37238,7 +37238,7 @@ msgctxt ""
"bm_id3155071\n"
"help.text"
msgid "<bookmark_value>RANK function</bookmark_value> <bookmark_value>numbers;determining ranks</bookmark_value>"
-msgstr "<bookmark_value> función DVAR </ bookmark_value> <bookmark_value> variacións, en base a mostras </ bookmark_value>"
+msgstr "<bookmark_value>función DVAR</bookmark_value><bookmark_value>variacións, en base a mostras</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -37670,7 +37670,7 @@ msgctxt ""
"bm_id3149143\n"
"help.text"
msgid "<bookmark_value>STDEV function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a sample</bookmark_value>"
-msgstr "<bookmark_value> función DSTDEV </ bookmark_value> <bookmark_value> desviacións estándar en bases de datos, con base nunha mostra </ bookmark_value>"
+msgstr "<bookmark_value>función DSTDEV</bookmark_value><bookmark_value>desviacións estándar en bases de datos, con base nunha mostra</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -37766,7 +37766,7 @@ msgctxt ""
"bm_id3149734\n"
"help.text"
msgid "<bookmark_value>STDEVP function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a population</bookmark_value>"
-msgstr "<bookmark_value> función DSTDEVP </ bookmark_value> <bookmark_value> desviacións estándar en bases de datos, con base en poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DSTDEVP</bookmark_value><bookmark_value>desviacións estándar en bases de datos, con base en poboacións</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -37814,7 +37814,7 @@ msgctxt ""
"bm_id2949734\n"
"help.text"
msgid "<bookmark_value>STDEV.P function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a population</bookmark_value>"
-msgstr "<bookmark_value> función DSTDEVP </ bookmark_value> <bookmark_value> desviacións estándar en bases de datos, con base en poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DSTDEVP</bookmark_value><bookmark_value>desviacións estándar en bases de datos, con base en poboacións</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -37862,7 +37862,7 @@ msgctxt ""
"bm_id2849734\n"
"help.text"
msgid "<bookmark_value>STDEV.S function</bookmark_value> <bookmark_value>standard deviations in statistics;based on a sample</bookmark_value>"
-msgstr "<bookmark_value> función DSTDEV </ bookmark_value> <bookmark_value> desviacións estándar en bases de datos, con base nunha mostra </ bookmark_value>"
+msgstr "<bookmark_value>función DSTDEV</bookmark_value><bookmark_value>desviacións estándar en bases de datos, con base nunha mostra</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -38022,7 +38022,7 @@ msgctxt ""
"bm_id3157986\n"
"help.text"
msgid "<bookmark_value>NORMSINV function</bookmark_value> <bookmark_value>normal distribution;inverse of standard</bookmark_value>"
-msgstr "<bookmark_value> función DVAR </ bookmark_value> <bookmark_value> variacións, en base a mostras </ bookmark_value>"
+msgstr "<bookmark_value>función DVAR</bookmark_value><bookmark_value>variacións, en base a mostras</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -38070,7 +38070,7 @@ msgctxt ""
"bm_id2957986\n"
"help.text"
msgid "<bookmark_value>NORM.S.INV function</bookmark_value> <bookmark_value>normal distribution;inverse of standard</bookmark_value>"
-msgstr "<bookmark_value> función DVAR </ bookmark_value> <bookmark_value> variacións, en base a mostras </ bookmark_value>"
+msgstr "<bookmark_value>función DVAR</bookmark_value><bookmark_value>variacións, en base a mostras</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -38118,7 +38118,7 @@ msgctxt ""
"bm_id3147538\n"
"help.text"
msgid "<bookmark_value>NORMSDIST function</bookmark_value> <bookmark_value>normal distribution;statistics</bookmark_value>"
-msgstr "<bookmark_value> función DVAR </ bookmark_value> <bookmark_value> variacións, en base a mostras </ bookmark_value>"
+msgstr "<bookmark_value>función DVAR</bookmark_value><bookmark_value>variacións, en base a mostras</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -38174,7 +38174,7 @@ msgctxt ""
"bm_id2947538\n"
"help.text"
msgid "<bookmark_value>NORM.S.DIST function</bookmark_value> <bookmark_value>normal distribution;statistics</bookmark_value>"
-msgstr "<bookmark_value> función DVAR </ bookmark_value> <bookmark_value> variacións, en base a mostras </ bookmark_value>"
+msgstr "<bookmark_value>función DVAR</bookmark_value><bookmark_value>variacións, en base a mostras</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -38294,7 +38294,7 @@ msgctxt ""
"bm_id3155836\n"
"help.text"
msgid "<bookmark_value>STEYX function</bookmark_value> <bookmark_value>standard errors;statistical functions</bookmark_value>"
-msgstr "<bookmark_value> función DSTDEVP </ bookmark_value> <bookmark_value> desviacións estándar en bases de datos, con base en poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DSTDEVP</bookmark_value><bookmark_value>desviacións estándar en bases de datos, con base en poboacións</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -38350,7 +38350,7 @@ msgctxt ""
"bm_id3150873\n"
"help.text"
msgid "<bookmark_value>DEVSQ function</bookmark_value> <bookmark_value>sums;of squares of deviations</bookmark_value>"
-msgstr "<bookmark_value> función DVARP </ bookmark_value> <bookmark_value> variacións, en base a poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DVARP</bookmark_value><bookmark_value>variacións, en base a poboacións</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -38398,7 +38398,7 @@ msgctxt ""
"bm_id3149579\n"
"help.text"
msgid "<bookmark_value>TINV function</bookmark_value> <bookmark_value>inverse of t-distribution</bookmark_value>"
-msgstr "<bookmark_value> función DVARP </ bookmark_value> <bookmark_value> variacións, en base a poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DVARP</bookmark_value><bookmark_value>variacións, en base a poboacións</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -38454,7 +38454,7 @@ msgctxt ""
"bm_id2949579\n"
"help.text"
msgid "<bookmark_value>T.INV function</bookmark_value> <bookmark_value>one tailed inverse of t-distribution</bookmark_value>"
-msgstr "<bookmark_value> función DVARP </ bookmark_value> <bookmark_value> variacións, en base a poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DVARP</bookmark_value><bookmark_value>variacións, en base a poboacións</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -38510,7 +38510,7 @@ msgctxt ""
"bm_id2849579\n"
"help.text"
msgid "<bookmark_value>T.INV.2T function</bookmark_value> <bookmark_value>inverse of two tailed t-distribution</bookmark_value>"
-msgstr "<bookmark_value> función DVARP </ bookmark_value> <bookmark_value> variacións, en base a poboacións </ bookmark_value>"
+msgstr "<bookmark_value>función DVARP</bookmark_value><bookmark_value>variacións, en base a poboacións</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -38950,7 +38950,7 @@ msgctxt ""
"bm_id3153828\n"
"help.text"
msgid "<bookmark_value>VAR function</bookmark_value> <bookmark_value>variances</bookmark_value>"
-msgstr "<bookmark_value> función DVAR </ bookmark_value> <bookmark_value> variacións, en base a mostras </ bookmark_value>"
+msgstr "<bookmark_value>función DVAR</bookmark_value><bookmark_value>variacións, en base a mostras</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -38998,7 +38998,7 @@ msgctxt ""
"bm_id2953828\n"
"help.text"
msgid "<bookmark_value>VAR.S function</bookmark_value> <bookmark_value>variances</bookmark_value>"
-msgstr "<bookmark_value> función DVAR </ bookmark_value> <bookmark_value> variacións, en base a mostras </ bookmark_value>"
+msgstr "<bookmark_value>función DVAR</bookmark_value><bookmark_value>variacións, en base a mostras</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -41390,7 +41390,7 @@ msgctxt ""
"bm_id3147264\n"
"help.text"
msgid "<bookmark_value>spreadsheets; showing columns</bookmark_value><bookmark_value>showing; columns</bookmark_value><bookmark_value>showing; rows</bookmark_value>"
-msgstr "<bookmark_value> follas de cálculo; inserción de columnas </ bookmark_value> <bookmark_value> inserción; columnas </ bookmark_value> <bookmark_value> columnas; inserindo </ bookmark_value>"
+msgstr "<bookmark_value>follas de cálculo; inserción de columnas</bookmark_value><bookmark_value>inserción; columnas </bookmark_value><bookmark_value>columnas; inserindo</bookmark_value>"
#: 05030400.xhp
msgctxt ""
@@ -43774,7 +43774,7 @@ msgctxt ""
"bm_id3153561\n"
"help.text"
msgid "<bookmark_value>cells; tracing errors</bookmark_value><bookmark_value>tracing errors</bookmark_value><bookmark_value>error tracing</bookmark_value>"
-msgstr "<bookmark_value> follas de cálculo; Inserción de liñas </ bookmark_value> <bookmark_value> liñas; inserción </ bookmark_value> <bookmark_value> inserción; liñas </ bookmark_value>"
+msgstr "<bookmark_value>follas de cálculo; Inserción de liñas</bookmark_value><bookmark_value>liñas; inserción</bookmark_value><bookmark_value>inserción; liñas</bookmark_value>"
#: 06030600.xhp
msgctxt ""
@@ -43886,7 +43886,7 @@ msgctxt ""
"bm_id3152349\n"
"help.text"
msgid "<bookmark_value>cells; refreshing traces</bookmark_value><bookmark_value>traces; refreshing</bookmark_value><bookmark_value>updating;traces</bookmark_value>"
-msgstr "<bookmark_value> follas de cálculo; Inserción de liñas </ bookmark_value> <bookmark_value> liñas; inserción </ bookmark_value> <bookmark_value> inserción; liñas </ bookmark_value>"
+msgstr "<bookmark_value>follas de cálculo; Inserción de liñas</bookmark_value><bookmark_value>liñas; inserción</bookmark_value><bookmark_value>inserción; liñas</bookmark_value>"
#: 06030900.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/00.po b/source/gl/helpcontent2/source/text/shared/00.po
index 03de62caf95..2a4a1725291 100644
--- a/source/gl/helpcontent2/source/text/shared/00.po
+++ b/source/gl/helpcontent2/source/text/shared/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-01-08 11:04+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-07-21 14:20+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\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: 1546945446.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563718826.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -7270,7 +7270,7 @@ msgctxt ""
"par_id3151106\n"
"help.text"
msgid "<variable id=\"xmlfilter\">Choose <emph>Tools - XML Filter Settings</emph>.</variable>"
-msgstr "<variable id=\"xmlfilter\">Escolla <item type=\"menuitem\">Ferramentas - Configuración de filtros XML</item>.<emph>"
+msgstr "<variable id=\"xmlfilter\">Escolla <emph>Ferramentas - Configuración de filtros XML</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7350,7 +7350,7 @@ msgctxt ""
"par_id3157895\n"
"help.text"
msgid "<variable id=\"autokorr\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options</emph>.</variable>"
-msgstr "<variable id=\"autokorr\">Escolla <emph>Ferramentas - Corrección automática - Opcións de corrección automática</item>.</emph>"
+msgstr "<variable id=\"autokorr\">Escolla <emph>Ferramentas - Corrección automática - Opcións de corrección automática</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/01.po b/source/gl/helpcontent2/source/text/shared/01.po
index 38edfaac084..e7e72fd4d06 100644
--- a/source/gl/helpcontent2/source/text/shared/01.po
+++ b/source/gl/helpcontent2/source/text/shared/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-02-16 08:48+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-07-21 17:08+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\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: 1550306911.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563728926.000000\n"
#: 01010000.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=\".\"> Contén información de contacto persoal para tarxetas de visita. Esquemas de tarxetas de visita son seleccionados na guía <emph>Tarxetas de visita </​​emph>.</ahelp>"
+msgstr "<ahelp hid=\".\"> Contén información de contacto persoal para tarxetas de visita. Esquemas de tarxetas de visita son seleccionados na guía <emph>Tarxetas de visita </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 "Introduza a información de contacto que desexe incluír na súa tarxeta de visita. Tamén pode modificar ou actualizar estas entradas escollendo <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Ferramentas - Opcións</defaultinline></switchinline> - $[officename] - Datos de usuario</emph>."
+msgstr "Introduza a información de contacto que desexe incluír na súa tarxeta de visita. Tamén pode modificar ou actualizar estas entradas escollendo <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferencias</emph></caseinline><defaultinline><emph>Ferramentas - Opcións</emph></defaultinline></switchinline><emph> - $[officename] - Datos de usuario</emph>."
#: 01010303.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=\"\"> Contén información de contacto para tarxetas de visita que usan un esquema dun 'tarxeta de visita, Work' categoría. Esquemas de tarxetas de visita son seleccionados na guía <emph>Tarxetas de visita </​​emph>.</ahelp>"
+msgstr "<ahelp hid=\"\"> Contén información de contacto para tarxetas de visita que usan un esquema dun 'tarxeta de visita, Work' categoría. Esquemas de tarxetas de visita son seleccionados na guía <emph>Tarxetas de visita </emph>.</ahelp>"
#: 01010304.xhp
msgctxt ""
@@ -2302,7 +2302,7 @@ msgctxt ""
"par_id3154750\n"
"help.text"
msgid "<link href=\"text/shared/01/01170000.xhp\" name=\"Exit $[officename]\">Exit $[officename]</link>"
-msgstr "<link href =\"text/shared/01/01170000.xhp\" name =\"Saia $[officename]\"> Saír $[officename] </link>"
+msgstr "<link href=\"text/shared/01/01170000.xhp\" name=\"Saia $[officename]\"> Saír $[officename] </link>"
#: 01060000.xhp
msgctxt ""
@@ -2558,7 +2558,7 @@ msgctxt ""
"par_id3145116\n"
"help.text"
msgid "Always save your document in a <item type=\"productname\">%PRODUCTNAME</item> file type before saving it to an external file type. When you export to an external file type, some formatting features may be lost."
-msgstr "Sempre salva o documento nun <item type =\"productname\"> escriba% PRODUCTNAME </item> ficheiro de garda-lo para un tipo de ficheiro externo. Cando exporta a un tipo de ficheiro externo, algunhas funcións de formato pode ser perdida."
+msgstr "Sempre salva o documento nun <item type=\"productname\"> escriba %PRODUCTNAME </item> ficheiro de garda-lo para un tipo de ficheiro externo. Cando exporta a un tipo de ficheiro externo, algunhas funcións de formato pode ser perdida."
#: 01070000.xhp
msgctxt ""
@@ -2598,7 +2598,7 @@ msgctxt ""
"par_id3152920\n"
"help.text"
msgid "Only documents using the <item type=\"productname\">%PRODUCTNAME</item> XML-based format can be saved with a password."
-msgstr "Só os documentos mediante o <item type =\"productname\">% PRODUCTNAME </item> formato baseado en XML pode ser gardado cun contrasinal."
+msgstr "Só os documentos mediante o <item type=\"productname\">%PRODUCTNAME </item> formato baseado en XML pode ser gardado cun contrasinal."
#: 01070000.xhp
msgctxt ""
@@ -2662,7 +2662,7 @@ msgctxt ""
"par_id3146986\n"
"help.text"
msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export of Text Files\">Export of Text Files</link>"
-msgstr "<link href =\"text/shared/00/00000207.xhp\" name =\"A exportación de ficheiros de texto\"> A exportación de ficheiros de texto </link>"
+msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"A exportación de ficheiros de texto\"> A exportación de ficheiros de texto </link>"
#: 01070001.xhp
msgctxt ""
@@ -2694,7 +2694,7 @@ msgctxt ""
"par_id3149355\n"
"help.text"
msgid "<variable id=\"exportieren\"><ahelp hid=\".uno:ExportTo\">Saves the current document with a different name and format to a location that you specify.</ahelp></variable>"
-msgstr "<Variable id =\"exportieren\"> <ahelp hid=\".uno: ExportTo\"> Salva o documento actual cun nome diferente e formato a un lugar que se especifica </ahelp> </variable>."
+msgstr "<variable id=\"exportieren\"><ahelp hid=\".uno: ExportTo\">Salva o documento actual cun nome diferente e formato a un lugar que se especifica.</ahelp></variable>"
#: 01070001.xhp
msgctxt ""
@@ -2846,7 +2846,7 @@ msgctxt ""
"par_id3153255\n"
"help.text"
msgid "<variable id=\"dokumentinfotext\"><ahelp hid=\".uno:SetDocumentProperties\">Displays the properties for the current file, including statistics such as word count and the date the file was created.</ahelp></variable>"
-msgstr "<variable id=\"dokumentinfotext\"> <ahelp hid=\".uno: SetDocumentProperties\"> Mostra as propiedades do ficheiro actual, incluso estatísticas, como conta de palabras ea data na que o arquivo foi creado </ahelp> </variable>"
+msgstr "<variable id=\"dokumentinfotext\"><ahelp hid=\".uno: SetDocumentProperties\">Mostra as propiedades do ficheiro actual, incluso estatísticas, como conta de palabras ea data na que o arquivo foi creado.</ahelp></variable>"
#: 01100000.xhp
msgctxt ""
@@ -3190,7 +3190,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\">Garda o nome completo do usuario co ficheiro. Pode editar o nome escollendo <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Ferramentas - Opcións</defaultinline></switchinline> - $[officename] - Datos de usuario</emph>.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/documentinfopage/userdatacb\">Garda o nome completo do usuario co ficheiro. Pode editar o nome escollendo <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferencias</emph></caseinline><defaultinline><emph>Ferramentas - Opcións</emph></defaultinline></switchinline><emph> - $[officename] - Datos de usuario</emph>.</ahelp>"
#: 01100200.xhp
msgctxt ""
@@ -4950,7 +4950,7 @@ msgctxt ""
"par_id3149999\n"
"help.text"
msgid "The <link href=\"text/shared/01/02110000.xhp\" name=\"Navigator\"><emph>Navigator</emph></link> appears after you create a master document. To edit a sub-document, double-click the name of a sub-document in the <emph>Navigator</emph>."
-msgstr "O <link href =\"text/shared/01/02110000.xhp\" name =\"Navigator\"> <emph>Navegador </emph> </link> aparece despois que crear un documento mestre. Para editar un sub-documento, prema dúas veces no nome dun sub-documento no <emph>Navegador </emph>."
+msgstr "O <link href=\"text/shared/01/02110000.xhp\" name=\"Navigator\"> <emph>Navegador </emph> </link> aparece despois que crear un documento mestre. Para editar un sub-documento, prema dúas veces no nome dun sub-documento no <emph>Navegador </emph>."
#: 01160300.xhp
msgctxt ""
@@ -5302,7 +5302,7 @@ msgctxt ""
"par_id3159079\n"
"help.text"
msgid "The file is opened by the <item type=\"productname\">%PRODUCTNAME</item> module that saved it."
-msgstr "O ficheiro ábrese polo <item type =\"productname\">% PRODUCTNAME </item> módulo que salvou."
+msgstr "O ficheiro ábrese polo <item type=\"productname\">%PRODUCTNAME </item> módulo que salvou."
#: 02010000.xhp
msgctxt ""
@@ -5758,7 +5758,7 @@ msgctxt ""
"par_id3146848\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"modules/scalc/ui/pastespecial/paste_all\">Pastes all cell contents, comments, formats, and objects into the current document.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"CALC\"> <ahelp hid=\"modules/scalc/ui/PasteSpecial/paste_all\"> Cola todo o contido móbiles, comentarios, formatos e obxectos en o documento actual.</ahelp> </caseinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"modules/scalc/ui/PasteSpecial/paste_all\">Cola todo o contido móbiles, comentarios, formatos e obxectos en o documento actual.</ahelp></caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5822,7 +5822,7 @@ msgctxt ""
"par_id3145744\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"modules/scalc/ui/pastespecial/formulas\">Inserts cells containing formulae.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"CALC\"> <ahelp hid=\"modules/scalc/ui/PasteSpecial/fórmulas\"> Insire celas que conteñen fórmulas.</ahelp> </caseinline > </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"modules/scalc/ui/PasteSpecial/fórmulas\">Insire celas que conteñen fórmulas.</ahelp></caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6022,7 +6022,7 @@ msgctxt ""
"par_id3147223\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"modules/scalc/ui/pastespecial/transpose\">The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"CALC\"> <ahelp hid=\"modules/scalc/ui/PasteSpecial/transposición\"> As liñas do rango no portapapeis é pegado a facer-se columnas da variedade de saída. As columnas do intervalo no portapapeis é pegado para facer liñas.</ahelp> </caseinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"modules/scalc/ui/PasteSpecial/transposición\">As liñas do rango no portapapeis é pegado a facer-se columnas da variedade de saída. As columnas do intervalo no portapapeis é pegado para facer liñas.</ahelp></caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6558,7 +6558,7 @@ msgctxt ""
"hd_id3149167\n"
"help.text"
msgid "<variable id=\"halbnormaltitel\">Match character width (only if Asian languages are enabled)</variable>"
-msgstr "<Variable id =\"halbnormaltitel\"> largura carácter de xogo (só se idiomas asiáticos están habilitados) </variable>"
+msgstr "<variable id=\"halbnormaltitel\">Largura carácter de xogo (só se idiomas asiáticos están habilitados)</variable>"
#: 02100000.xhp
msgctxt ""
@@ -6582,7 +6582,7 @@ msgctxt ""
"par_id3145421\n"
"help.text"
msgid "<variable id=\"aehnlichtext\"><ahelp hid=\"svx/ui/findreplacedialog/soundslike\">Lets you specify the search options for similar notation used in Japanese text. Select this checkbox, and then click the <emph>Sounds</emph> button to specify the search options.</ahelp></variable>"
-msgstr "<variable id=\"aehnlichtext\"> <ahelp hid=\"svx/ui/findreplacedialog/soundslike\"> Permite que especifique as opcións de busca de notación similar ao utilizado no texto en xaponés. Seleccione esta caixa de verificación e, a continuación, prema no botón ... <emph><emph /> para especificar as opcións de busca.</ahelp> </variable>"
+msgstr "<variable id=\"aehnlichtext\"><ahelp hid=\"svx/ui/findreplacedialog/soundslike\">Permite que especifique as opcións de busca de notación similar ao utilizado no texto en xaponés. Seleccione esta caixa de verificación e, a continuación, prema no botón ... <emph></emph> para especificar as opcións de busca.</ahelp></variable>"
#: 02100000.xhp
msgctxt ""
@@ -6686,7 +6686,7 @@ msgctxt ""
"par_id3156332\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Determines the order for searching the cells.</caseinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"CALC\"> Determina a orde para buscar as células. </Caseinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Determina a orde para buscar as células.</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6782,7 +6782,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches for the characters that you specify in values and in the results of formulas.</caseinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"CALC\"> Buscas para os personaxes que se especifica en valores e nos resultados das fórmulas. </Caseinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Buscas para os personaxes que se especifica en valores e nos resultados das fórmulas.</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6790,7 +6790,7 @@ msgctxt ""
"par_id6064943\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in values and in the results of formulas.</ahelp>"
-msgstr "<ahelp hid=\".\" Visibility =\"hidden\"> Busca os caracteres que se especifica en valores e nos resultados das fórmulas.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Busca os caracteres que se especifica en valores e nos resultados das fórmulas.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6806,7 +6806,7 @@ msgctxt ""
"par_id3153947\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches for the characters that you specify in the comments that are attached to the cells.</caseinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"CALC\"> Busca os caracteres que se especifica nos comentarios que están ligados ás células. </Caseinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Busca os caracteres que se especifica nos comentarios que están ligados ás células.</caseinline></switchinline>"
#: 02100000.xhp
msgctxt ""
@@ -6814,7 +6814,7 @@ msgctxt ""
"par_id9799798\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in the comments that are attached to the cells.</ahelp>"
-msgstr "<ahelp hid=\".\" Visibility =\"hidden\"> Busca os caracteres que se especifica nos comentarios que están ligados ás células.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Busca os caracteres que se especifica nos comentarios que están ligados ás células.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -6846,7 +6846,7 @@ msgctxt ""
"hd_id3146765\n"
"help.text"
msgid "<variable id=\"02100001\"><link href=\"text/shared/01/02100001.xhp\">List of Regular Expressions</link></variable>"
-msgstr "<Variable id =\"02100001\"> <link href =\"text/shared/01/02100001.xhp\"> Lista de Expresións Regulares </link> </variable>"
+msgstr "<variable id=\"02100001\"><link href=\"text/shared/01/02100001.xhp\">Lista de Expresións Regulares</link></variable>"
#: 02100001.xhp
msgctxt ""
@@ -7902,7 +7902,7 @@ msgctxt ""
"par_id3153877\n"
"help.text"
msgid "Finds the <emph>Hyphenation</emph> attribute."
-msgstr "Localízase a hifenização </emph> atributo <emph>."
+msgstr "Localízase a <emph>hifenização</emph> atributo ."
#: 02100200.xhp
msgctxt ""
@@ -8110,7 +8110,7 @@ msgctxt ""
"hd_id3153391\n"
"help.text"
msgid "<link href=\"text/shared/01/02110000.xhp\">Navigator for Master Documents</link>"
-msgstr "<link href =\"text/shared/01/02110000.xhp\"> Navegador para documentos mestre </link>"
+msgstr "<link href=\"text/shared/01/02110000.xhp\">Navegador para documentos mestre</link>"
#: 02110000.xhp
msgctxt ""
@@ -8926,7 +8926,7 @@ msgctxt ""
"bm_id3085157\n"
"help.text"
msgid "<bookmark_value>objects; opening</bookmark_value><bookmark_value>opening; objects</bookmark_value>"
-msgstr "<bookmark_value> obxectos; apertura <bookmark_value /> <bookmark_value> apertura; obxectos </bookmark_value>"
+msgstr "<bookmark_value>obxectos; apertura </bookmark_value><bookmark_value>apertura; obxectos</bookmark_value>"
#: 02200200.xhp
msgctxt ""
@@ -9270,7 +9270,7 @@ msgctxt ""
"par_id3149751\n"
"help.text"
msgid "You can draw three types of hotspots: <emph>rectangles</emph>, <emph>ellipses</emph>, and <emph>polygons</emph>. When you click a hotspot, the URL is opened in the browser window or frame that you specify. You can also specify the text that appears when your mouse rests on the hotspot."
-msgstr "Pode debuxar tres tipos de puntos activos: <emph>rectángulos</emph>, <emph>elipses</emph> e </emph>polígonos<emph>. Ao premer nun punto activo, o URL ábrese na xanela do explorador ou no marco especificado. Tamén pode especificar o texto que aparece cando o rato se sitúa sobre o punto activo."
+msgstr "Pode debuxar tres tipos de puntos activos: <emph>rectángulos</emph>, <emph>elipses</emph> e <emph>polígonos</emph>. Ao premer nun punto activo, o URL ábrese na xanela do explorador ou no marco especificado. Tamén pode especificar o texto que aparece cando o rato se sitúa sobre o punto activo."
#: 02220000.xhp
msgctxt ""
@@ -9806,7 +9806,7 @@ msgctxt ""
"par_id3153231\n"
"help.text"
msgid "<link href=\"text/shared/01/05020400.xhp#targets\" name=\"List of frame types\">List of frame types</link>"
-msgstr "<link href =\"text/shared/01/05020400.xhp# obxectivos\" name =\"Lista de tipos de cadros\"> Lista de tipos de cadros </link>"
+msgstr "<link href=\"text/shared/01/05020400.xhp#targets\" name=\"Lista de tipos de cadros\">Lista de tipos de cadros</link>"
#: 02220000.xhp
msgctxt ""
@@ -9830,7 +9830,7 @@ msgctxt ""
"par_id3150983\n"
"help.text"
msgid "<link href=\"text/shared/guide/keyboard.xhp\" name=\"Controlling the ImageMap Editor With the Keyboard\">Controlling the ImageMap Editor With the Keyboard</link>"
-msgstr "<link href =\"text/shared/guía/keyboard.xhp\" name =\"Controlar o Editor de Mapa de imaxe co teclado\"> Controlar o Editor de Mapa de imaxe co teclado </link>"
+msgstr "<link href=\"text/shared/guía/keyboard.xhp\" name=\"Controlar o Editor de Mapa de imaxe co teclado\">Controlar o Editor de Mapa de imaxe co teclado</link>"
#: 02220100.xhp
msgctxt ""
@@ -10246,7 +10246,7 @@ msgctxt ""
"par_id3155356\n"
"help.text"
msgid "When you rest the mouse pointer over a change markup in the document, a <emph>Tip</emph> displays the author and the date and time that the change was made.<switchinline select=\"appl\"><caseinline select=\"CALC\"> If the <emph>Extended Tips</emph> are activated, the type of change and any attached comments are also displayed.</caseinline></switchinline>"
-msgstr "Cando posiciona o apuntador do rato sobre unha reserva de modificación no documento, un <emph>Consello </emph> exhibe o autor ea data e hora en que o cambio foi feita. <switchinline select =\"appl\"> <caseinline select =\"CALC\"> Se os <emph>Consellos estendida </emph> son activados, o tipo de cambio e os comentarios anexados tamén aparecen. </caseinline> </switchinline>"
+msgstr "Cando posiciona o apuntador do rato sobre unha reserva de modificación no documento, un <emph>Consello </emph> exhibe o autor ea data e hora en que o cambio foi feita. <switchinline select=\"appl\"><caseinline select=\"CALC\"> Se os <emph>Consellos estendida</emph> son activados, o tipo de cambio e os comentarios anexados tamén aparecen. </caseinline></switchinline>"
#: 02230200.xhp
msgctxt ""
@@ -10254,7 +10254,7 @@ msgctxt ""
"hd_id3153681\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Show changes in spreadsheet</caseinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"CALC\"> Amosar os cambios na folla de cálculo </caseinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Amosar os cambios na folla de cálculo</caseinline></switchinline>"
#: 02230200.xhp
msgctxt ""
@@ -10262,7 +10262,7 @@ msgctxt ""
"par_id3149150\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"modules/scalc/ui/showchangesdialog/showchanges\">Shows or hides recorded changes.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"CALC\"> <ahelp hid=\"modules/scalc/ui/showchangesdialog/showchanges\"> Mostra ou oculta rexistrou cambios.</ahelp> </caseinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"modules/scalc/ui/showchangesdialog/showchanges\"> Mostra ou oculta rexistrou cambios.</ahelp></caseinline></switchinline>"
#: 02230200.xhp
msgctxt ""
@@ -10270,7 +10270,7 @@ msgctxt ""
"hd_id3147336\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Show accepted changes</caseinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"CALC\"> Mostra aceptadas cambios </caseinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Mostra aceptadas cambios</caseinline></switchinline>"
#: 02230200.xhp
msgctxt ""
@@ -10278,7 +10278,7 @@ msgctxt ""
"par_id3153541\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"modules/scalc/ui/showchangesdialog/showaccepted\">Shows or hides the changes that were accepted.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"CALC\"> <ahelp hid=\"modules/scalc/ui/showchangesdialog/showaccepted\"> Mostra ou oculta as modificacións que foron aceptadas. </Ahelp > </caseinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"modules/scalc/ui/showchangesdialog/showaccepted\"> Mostra ou oculta as modificacións que foron aceptadas.</ahelp ></caseinline></switchinline>"
#: 02230200.xhp
msgctxt ""
@@ -10294,7 +10294,7 @@ msgctxt ""
"par_id3159166\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"modules/scalc/ui/showchangesdialog/showrejected\">Shows or hides the changes that were rejected.</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"CALC\"> <ahelp hid=\"modules/scalc/ui/showchangesdialog/showrejected\"> Mostra ou oculta as modificacións que foron rexeitadas. </Ahelp > </caseinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"modules/scalc/ui/showchangesdialog/showrejected\"> Mostra ou oculta as modificacións que foron rexeitadas.</ahelp ></caseinline></switchinline>"
#: 02230200.xhp
msgctxt ""
@@ -10846,7 +10846,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "Set the criteria for filtering the list of changes on the <link href=\"text/shared/01/02230401.xhp\" name=\"List\"><emph>List</emph></link> tab."
-msgstr "Establecer os criterios para filtrar a lista de cambios no <link href =\"text/shared/01/02230401.xhp\" name =\"lista\"> <emph>List </emph> </link> a ficha."
+msgstr "Establecer os criterios para filtrar a lista de cambios no <link href=\"text/shared/01/02230401.xhp\" name=\"lista\"> <emph>List</emph></link> a ficha."
#: 02230402.xhp
msgctxt ""
@@ -11014,7 +11014,7 @@ msgctxt ""
"par_id3163820\n"
"help.text"
msgid "You can also use <link href=\"text/shared/01/02100000.xhp\" name=\"regular expressions\">regular expressions</link> (wildcards) when you filter the comments."
-msgstr "Tamén pode usar <link href =\"text/shared/01/02100000.xhp\" name =\"expresións regulares\"> expresións regulares </link> (comodíns) cando filtrar os comentarios."
+msgstr "Tamén pode usar <link href=\"text/shared/01/02100000.xhp\" name=\"expresións regulares\">expresións regulares</link> (comodíns) cando filtrar os comentarios."
#: 02230500.xhp
msgctxt ""
@@ -11294,7 +11294,7 @@ msgctxt ""
"par_id3154471\n"
"help.text"
msgid "To delete a record in the current table, right-click the row header of the record, and then select <emph>Delete</emph>. <ahelp hid=\"SID_FM_DELETEROWS\" visibility=\"hidden\">Deletes the selected record.</ahelp>"
-msgstr "Para eliminar un rexistro na táboa actual, prema co botón dereito do rato na cabeceira da liña do rexistro e seleccione <emph>Eliminar </emph>. <ahelp hid= \\ visibilidade \"SID_FM_DELETEROWS\" =\"hidden\"> Exclúe o rexistro seleccionado.</ahelp>"
+msgstr "Para eliminar un rexistro na táboa actual, prema co botón dereito do rato na cabeceira da liña do rexistro e seleccione <emph>Eliminar</emph>. <ahelp hid=\"SID_FM_DELETEROWS\" visibility=\"hidden\">Exclúe o rexistro seleccionado.</ahelp>"
#: 02250000.xhp
msgctxt ""
@@ -11382,7 +11382,7 @@ msgctxt ""
"bm_id3154682\n"
"help.text"
msgid "<bookmark_value>zooming;page views</bookmark_value> <bookmark_value>views; scaling</bookmark_value> <bookmark_value>screen; scaling</bookmark_value> <bookmark_value>pages; scaling</bookmark_value>"
-msgstr "<bookmark_value> zoom, visualizacións de páxina </bookmark_value> <bookmark_value> puntos de vista; dimensionamento <bookmark_value /> <bookmark_value> pantalla; dimensionamento </bookmark_value> <bookmark_value> páxinas; dimensionamento </bookmark_value>"
+msgstr "<bookmark_value>zoom, visualizacións de páxina</bookmark_value><bookmark_value>puntos de vista; dimensionamento </bookmark_value><bookmark_value>pantalla; dimensionamento</bookmark_value><bookmark_value>páxinas; dimensionamento</bookmark_value>"
#: 03010000.xhp
msgctxt ""
@@ -11694,7 +11694,7 @@ msgctxt ""
"bm_id3160463\n"
"help.text"
msgid "<bookmark_value>full screen view</bookmark_value> <bookmark_value>screen; full screen views</bookmark_value> <bookmark_value>complete screen view</bookmark_value> <bookmark_value>views;full screen</bookmark_value>"
-msgstr "<bookmark_value> visualización en pantalla completa </​​bookmark_value> <bookmark_value> pantalla; vistas en pantalla completa </​​bookmark_value> <bookmark_value> visualización de pantalla completa </​​bookmark_value> <bookmark_value> puntos de vista; pantalla completa </​​bookmark_value>"
+msgstr "<bookmark_value>visualización en pantalla completa</bookmark_value>...<bookmark_value>pantalla; vistas en pantalla completa</​bookmark_value>...<bookmark_value>visualización de pantalla completa</bookmark_value>...<bookmark_value>puntos de vista; pantalla completa</bookmark_value>"
#: 03110000.xhp
msgctxt ""
@@ -11894,7 +11894,7 @@ msgctxt ""
"par_id0915200910571516\n"
"help.text"
msgid "In Calc, Draw, and Impress, the command <item type=\"menuitem\">Insert - Comment</item> inserts a comment."
-msgstr "No Calc, Draw e Impress, o comando <item type =\"menuitem\"> Inserir - Comentario </item> insire un comentario."
+msgstr "No Calc, Draw e Impress, o comando <item type=\"menuitem\">Inserir - Comentario</item> insire un comentario."
#: 04050000.xhp
msgctxt ""
@@ -12038,7 +12038,7 @@ msgctxt ""
"par_id2254402\n"
"help.text"
msgid "To change the printing option for comments for all your text documents, choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME Writer - Print</item>."
-msgstr "Para cambiar a opción de impresión para comentarios de todos os seus documentos de texto, escolla <tipo de elemento =\"menuitem\"> Ferramentas - Opcións -% PRODUCTNAME Writer - Imprimir </item>."
+msgstr "Para cambiar a opción de impresión para comentarios de todos os seus documentos de texto, escolla <item type=\"menuitem\">Ferramentas - Opcións - %PRODUCTNAME Writer - Imprimir</item>."
#: 04050000.xhp
msgctxt ""
@@ -12206,7 +12206,7 @@ msgctxt ""
"par_id3150278\n"
"help.text"
msgid "<variable id=\"anford\"><ahelp hid=\".uno:TwainTransfer\" visibility=\"visible\">Scans an image, and then inserts the result into the document. The scanning dialog is provided by the manufacturer of the scanner.</ahelp></variable> For an explanation of the dialog please refer to the documentation on your scanner."
-msgstr "<Variable id =\"anford\"> <ahelp hid=\".uno: TwainTransfer\" visibility =\"visible\"> dixitalizar unha imaxe, e logo inserir o resultado no documento. O diálogo de dixitalización fornecida polo fabricante do escáner.</ahelp> </variable> Para obter unha explicación da caixa de diálogo, consulte a documentación do seu escáner."
+msgstr "<variable id=\"anford\"><ahelp hid=\".uno:TwainTransfer\" visibility=\"visible\">Dixitalizar unha imaxe, e logo inserir o resultado no documento. O diálogo de dixitalización fornecida polo fabricante do escáner.</ahelp></variable> Para obter unha explicación da caixa de diálogo, consulte a documentación do seu escáner."
#: 04100000.xhp
msgctxt ""
@@ -12686,7 +12686,7 @@ msgctxt ""
"par_id3151100\n"
"help.text"
msgid "If you want to create HTML pages that use floating frames, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML compatibility</emph>, and then select the \"MS Internet Explorer\" option. The floating frame is bounded by <IFRAME> and </IFRAME> tags."
-msgstr "Se desexa crear páxinas HTML que usan cadros flotantes, escolla <emph><switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </caseinline> <defaultinline> Ferramentas - Opcións </defaultinline> </switchinline> - Cargar/Gardar - Compatibilidade HTML </emph>, e logo seleccione a opción \"MS Internet Explorer\" \\. A estrutura flotante é delimitada por <iframe> e </IFRAME> etiquetas."
+msgstr "Se desexa crear páxinas HTML que usan cadros flotantes, escolla <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferencias</emph></caseinline><defaultinline><emph>Ferramentas - Opcións</emph></defaultinline></switchinline><emph> - Cargar/Gardar - Compatibilidade HTML</emph>, e logo seleccione a opción \"MS Internet Explorer\". A estrutura flotante é delimitada por <IFRAME> e </IFRAME> etiquetas."
#: 04160500.xhp
msgctxt ""
@@ -12718,7 +12718,7 @@ msgctxt ""
"par_id3149495\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the databases that are registered in <item type=\"productname\">%PRODUCTNAME</item> and lets you manage the contents of the databases.</ahelp>"
-msgstr "<ahelp hid=\".uno: ViewDataSourceBrowser\"> Lista as bases de datos que están rexistrados no <item type =\"productname\">% PRODUCTNAME </item> e permite que administre o contido dos bancos de datos </ahelp>."
+msgstr "<ahelp hid=\".\"> Lista as bases de datos que están rexistrados no <item type=\"productname\">%PRODUCTNAME</item> e permite que administre o contido dos bancos de datos.</ahelp>"
#: 04180100.xhp
msgctxt ""
@@ -12742,7 +12742,7 @@ msgctxt ""
"par_id3156427\n"
"help.text"
msgid "<link href=\"text/shared/main0212.xhp\" name=\"Table Data bar\">Table Data bar</link>"
-msgstr "<link href =\"text/shared/main0212.xhp\" name =\"Táboa de Datos bar\"> bar Táboa de Datos </link>"
+msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Táboa de Datos bar\">bar Táboa de Datos</link>"
#: 04180100.xhp
msgctxt ""
@@ -12814,7 +12814,7 @@ msgctxt ""
"par_id3147261\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Direct formatting is formatting that you applied without using styles, such as setting bold typeface by clicking the <emph>Bold</emph> icon.</defaultinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"CADRO\"> </caseinline> <defaultinline> Formatar directa é o formato que aplicou, sen o uso de estilos, como a definición negra, premendo na <emph>Negriña </emph> icona. </defaultinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CADRO\"></caseinline><defaultinline>Formatar directa é o formato que aplicou, sen o uso de estilos, como a definición negra, premendo na <emph>Negriña</emph> icona.</defaultinline></switchinline>"
#: 05010000.xhp
msgctxt ""
@@ -12854,7 +12854,7 @@ msgctxt ""
"hd_id3149988\n"
"help.text"
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Texto\">Texto</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Texto\">Texto</link>"
#: 05020000.xhp
msgctxt ""
@@ -12886,7 +12886,7 @@ msgctxt ""
"hd_id3154812\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"><link href=\"text/shared/01/05020100.xhp\" name=\"Characters\">Characters</link></caseinline><defaultinline><link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link></defaultinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"CADRO\"> <link href =\"text/shared/01/05020100.xhp\" name =\"Personaxes\"> Personaxes </link> </caseinline> <defaultinline> <link href =\"text/shared/01/05020100.xhp\" name =\"fonte\"> Fonte </link> </defaultinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CHART\"><link href=\"text/shared/01/05020100.xhp\" name=\"Personaxes\">Personaxes</link></caseinline><defaultinline><link href=\"text/shared/01/05020100.xhp\" name=\"fonte\">Fonte</link></defaultinline></switchinline>"
#: 05020100.xhp
msgctxt ""
@@ -12894,7 +12894,7 @@ msgctxt ""
"par_id3158405\n"
"help.text"
msgid "<variable id=\"zn\"><ahelp hid=\"cui/ui/charnamepage/CharNamePage\">Specify the formatting and the font that you want to apply.</ahelp></variable>"
-msgstr "<Variable id =\"Zn\"> <ahelp hid=\"cui/ui/charnamepage/CharNamePage\"> Especifique o formato ea fonte que quere aplicar.</ahelp> </variable>"
+msgstr "<variable id=\"zn\"><ahelp hid=\"cui/ui/charnamepage/CharNamePage\">Especifique o formato ea fonte que quere aplicar.</ahelp></variable>"
#: 05020100.xhp
msgctxt ""
@@ -13054,7 +13054,7 @@ msgctxt ""
"par_id3145364\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Asian languages support\">Asian languages support</link>"
-msgstr "<link href =\"text/shared/Optionen/01140000.xhp\" name =\"linguas asiáticas apoio\"> idiomas asiáticos apoiar </link>"
+msgstr "<link href=\"text/shared/optionen/01140000.xhp\" name=\"linguas asiáticas apoio\">Idiomas asiáticos apoiar</link>"
#: 05020100.xhp
msgctxt ""
@@ -13062,7 +13062,7 @@ msgctxt ""
"par_id3147213\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Complex text layout support\">Complex text layout support</link>"
-msgstr "<link href =\"text/shared/Optionen/01140000.xhp\" name =\"esquema de texto complexo support\"> apoio esquema de texto complexo </link>"
+msgstr "<link href=\"text/shared/optionen/01140000.xhp\" name=\"esquema de texto complexo support\">Apoio esquema de texto complexo</link>"
#: 05020200.xhp
msgctxt ""
@@ -17862,7 +17862,7 @@ msgctxt ""
"par_id3153683\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/asiantypography/checkForbidList\">Prevents the characters in the list from starting or ending a line. The characters are relocated to either the previous or the next line.</ahelp> To edit the list of restricted characters, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - </emph><link href=\"text/shared/optionen/01150100.xhp\" name=\"Asian Layout\"><emph>Asian Layout</emph></link>."
-msgstr "<ahelp hid=\"cui/ui/asiantypography/checkForbidList\"> Impide que os personaxes na lista de inicio e fin dunha liña. Os personaxes son realocados para anterior ou á seguinte liña.</ahelp> Para editar a lista de caracteres restrinxidos, escolla <emph><switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </caseinline> <defaultinline> Ferramentas - Opcións </defaultinline> </switchinline> - Configuración de idioma - <link href =\"text/shared/Optionen/01150100.xhp\" name =\"Esquema \\ asiático\" > Esquema asiático </link> </emph>."
+msgstr "<ahelp hid=\"cui/ui/asiantypography/checkForbidList\">Impide que os personaxes na lista de inicio e fin dunha liña. Os personaxes son realocados para anterior ou á seguinte liña.</ahelp> Para editar a lista de caracteres restrinxidos, escolla <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferencias</emph></caseinline><defaultinline><emph>Ferramentas - Opcións</emph></defaultinline></switchinline><emph> - Configuración de idioma - </emph><link href=\"text/shared/optionen/01150100.xhp\" name=\"Esquema asiático\"><emph>Esquema asiático</emph></link>."
#: 05020700.xhp
msgctxt ""
@@ -17974,7 +17974,7 @@ msgctxt ""
"par_id3153910\n"
"help.text"
msgid "To change the measurement units used in this dialog, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General, and then select a new measurement unit in the Settings area."
-msgstr "Para cambiar as unidades de medida utilizadas neste diálogo, escolla <switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </caseinline> <defaultinline> Ferramentas - Opcións </defaultinline> </switchinline> -% PRODUCTNAME Writer - Xeral e, a continuación, seleccione unha nova unidade de medida na área Axustes."
+msgstr "Para cambiar as unidades de medida utilizadas neste diálogo, escolla <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias </caseinline><defaultinline>Ferramentas - Opcións</defaultinline></switchinline> - %PRODUCTNAME Writer - Xeral e, a continuación, seleccione unha nova unidade de medida na área Axustes."
#: 05030100.xhp
msgctxt ""
@@ -20326,7 +20326,7 @@ msgctxt ""
"hd_id3151318\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline>AutoFit object to page format</defaultinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"OFFICE\"> </caseinline> <caseinline select =\"Writer\"> </caseinline> <caseinline select =\"CALC\"> </caseinline> <caseinline select =\"CADRO\"> </caseinline> <caseinline select =\"MATH\"> </caseinline> <caseinline select =\"IMAGE\"> </caseinline> <defaultinline> AutoFit obxecto a formato da páxina </defaultinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"Writer\"></caseinline> <caseinline select=\"CALC\"></caseinline><caseinline select=\"CADRO\"></caseinline><caseinline select=\"MATH\"> </caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline>AutoFit obxecto a formato da páxina</defaultinline></switchinline>"
#: 05040200.xhp
msgctxt ""
@@ -20334,7 +20334,7 @@ msgctxt ""
"par_id3144746\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline><ahelp hid=\"cui/ui/pageformatpage/checkAdaptBox\">Resizes the drawing objects so that they fit on the paper format that you select. The arrangement of the drawing objects is preserved.</ahelp></defaultinline></switchinline>"
-msgstr "<switchinline select =\"appl\"> <caseinline select =\"OFFICE\"> </caseinline> <caseinline select =\"Writer\"> </caseinline> <caseinline select =\"CALC\"> </caseinline> <caseinline select =\"CADRO\"> </caseinline> <caseinline select =\"MATH\"> </caseinline> <caseinline select =\"IMAGE\"> </caseinline> <defaultinline> <ahelp hid=\"cui/ui/pageformatpage/checkAdaptBox\"> Redimensiona os obxectos de debuxo para que se encaixan no formato de papel que seleccionar. A disposición dos obxectos de debuxo é preservada.</ahelp> </defaultinline> </switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"Writer\"></caseinline> <caseinline select=\"CALC\"></caseinline><caseinline select=\"CADRO\"></caseinline><caseinline select=\"MATH\"> </caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline><ahelp hid=\"cui/ui/pageformatpage/checkAdaptBox\">Redimensiona os obxectos de debuxo para que se encaixan no formato de papel que seleccionar. A disposición dos obxectos de debuxo é preservada.</ahelp></defaultinline></switchinline>"
#: 05040200.xhp
msgctxt ""
@@ -27694,7 +27694,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=\".\"> Os comandos para o navegador da fonte de datos son atopados no <link href =\"text/shared/01/05340400.xhp\" name =\"Banco de Datos Bar\"> bar Táboa de Datos </link> e <link href =\"text/shared/01/05340400.xhp\" name =\"menú de contexto\"> menús de contexto </link>.</ahelp>"
+msgstr "<ahelp hid=\".\">Os comandos para o navegador da fonte de datos son atopados no <link href=\"text/shared/01/05340400.xhp\" name=\"Banco de Datos Bar\"> bar Táboa de Datos </link> e <link href=\"text/shared/01/05340400.xhp\" name=\"menú de contexto\"> menús de contexto </link>.</ahelp>"
#: 05340400.xhp
msgctxt ""
@@ -32222,7 +32222,7 @@ msgctxt ""
"par_id3158430\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/wordcompletionpage/whenclosing\">When enabled, the list gets cleared when closing the current document. When disabled, makes the current Word Completion list available to other documents after you close the current document. The list remains available until you exit %PRODUCTNAME.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/wordcompletionpage/whenclosing\"> Cando está activado, a lista fica limpo ao pechar o documento actual. Cando desactivada, fai que a lista actual de conclusión do Word dispoñible para outros documentos tras pechar o documento actual. A lista permanece dispoñible ata que saia% PRODUCTNAME.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/wordcompletionpage/whenclosing\"> Cando está activado, a lista fica limpo ao pechar o documento actual. Cando desactivada, fai que a lista actual de conclusión do Word dispoñible para outros documentos tras pechar o documento actual. A lista permanece dispoñible ata que saia %PRODUCTNAME.</ahelp>"
#: 06040600.xhp
msgctxt ""
@@ -34166,7 +34166,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\">. Grava unha nova macro </ahelp> Só dispoñible, se macro recurso de gravación está activado en <emph><switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </caseinline> <defaultinline> Ferramentas - Opcións </defaultinline> </switchinline> -% PRODUCTNAME - Avanzado </emph>."
+msgstr "<ahelp hid=\".uno:MacroRecorder\">Grava unha nova macro.</ahelp>Só dispoñible, se macro recurso de gravación está activado en <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferencias</emph></caseinline><defaultinline><emph>Ferramentas - Opcións</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Avanzado</emph>."
#: 06130010.xhp
msgctxt ""
@@ -36366,7 +36366,7 @@ msgctxt ""
"par_id3156330\n"
"help.text"
msgid "The path to the directory that contains the template must be included in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Paths</emph>. When you open an XML file whose filter uses the template, the template opens first. In the template, you can map $[officename] styles to display XML tags in the XML document."
-msgstr "O camiño ao directorio que contén o modelo debe ser incluído no <emph><switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </caseinline> <defaultinline> Ferramentas - Opcións </defaultinline> </switchinline> - $[officename] - Camiños </emph>. Cando se abre un ficheiro XML cuxo filtro utiliza o modelo, o modelo é aberto por primeira vez. No modelo, pode mapear $[officename] estilos para mostrar etiquetas XML no documento XML."
+msgstr "O camiño ao directorio que contén o modelo debe ser incluído no <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferencias</emph></caseinline><defaultinline><emph>Ferramentas - Opcións</emph></defaultinline></switchinline><emph> - $[officename] - Camiños </emph>. Cando se abre un ficheiro XML cuxo filtro utiliza o modelo, o modelo é aberto por primeira vez. No modelo, pode mapear $[officename] estilos para mostrar etiquetas XML no documento XML."
#: 06150200.xhp
msgctxt ""
@@ -38462,7 +38462,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 "Define a cor de reixa en <switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </caseinline> <defaultinline> Ferramentas - Opcións </defaultinline> </switchinline> -% PRODUCTNAME - <link href =\"text// Optionen/01012000.xhp\\ compartida\"> Aparencia </link>."
+msgstr "Define a cor de reixa en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Ferramentas - Opcións</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/01012000.xhp\">Aparencia</link>."
#: grid_and_helplines.xhp
msgctxt ""
@@ -39542,7 +39542,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 "Pode activar ou desactivar a comprobación automática en <switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </caseinline> <defaultinline> Ferramentas - Opcións </defaultinline> </switchinline > -% PRODUCTNAME - <link href =\"text// Optionen/online_update.xhp\\ compartida\"> Actualización Online </link>."
+msgstr "Pode activar ou desactivar a comprobación automática en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Ferramentas - Opcións</defaultinline></switchinline > - %PRODUCTNAME - <link href=\"text/shared/optionen/online_update.xhp\">Actualización Online</link>."
#: online_update.xhp
msgctxt ""
@@ -39574,7 +39574,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 "Se precisa dun servidor proxy, introduza a configuración do proxy en <switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </caseinline> <defaultinline> Ferramentas - Opcións </defaultinline> </switchinline> - Internet - Proxy."
+msgstr "Se precisa dun servidor proxy, introduza a configuración do proxy en <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Ferramentas - Opcións</defaultinline></switchinline> - Internet - Proxy."
#: online_update.xhp
msgctxt ""
@@ -39686,7 +39686,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 "Por defecto, as descargas serán gardados para o seu escritorio. Pode cambiar o cartafol onde o arquivo descargado será almacenado <switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </caseinline> <defaultinline> Ferramentas - Opcións </defaultinline > </switchinline> -% PRODUCTNAME - Actualización Online."
+msgstr "Por defecto, as descargas serán gardados para o seu escritorio. Pode cambiar o cartafol onde o arquivo descargado será almacenado <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline> <defaultinline>Ferramentas - Opcións</defaultinline></switchinline> - %PRODUCTNAME - Actualización Online."
#: online_update_dialog.xhp
msgctxt ""
@@ -42622,7 +42622,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 "A copia formatado HTML está escrito para os ficheiros temporais da carpeta que podes seleccionar en <tipo de elemento =\"menuitem\"> <switchinline select =\"sys\"> <caseinline select =\"MAC\">% PRODUCTNAME - Preferencias </caseinline> <defaultinline> Ferramentas - Opcións </defaultinline> </switchinline> -% PRODUCTNAME - Camiños </item>. Cando saia% PRODUCTNAME, o ficheiro HTML serán eliminados."
+msgstr "A copia formatado HTML está escrito para os ficheiros temporais da carpeta que podes seleccionar en <switchinline select =\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\"> %PRODUCTNAME - Preferencias </item></caseinline> <defaultinline><item type=\"menuitem\"> Ferramentas - Opcións </item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - Camiños </item>. Cando saia %PRODUCTNAME, o ficheiro HTML serán eliminados."
#: webhtml.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/guide.po b/source/gl/helpcontent2/source/text/shared/guide.po
index fd3c703eb30..a8754e42995 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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2018-11-14 12:00+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-21 15:50+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\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: 1542196807.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563724207.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -15598,7 +15598,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 "As versións máis recentes do %PRODUCTNAME poden cargar e gardar os formatos de documento Open XML do Office da Microsoft coas extensións docx, xlsx e pptx. As mesmas versións tamén poden executar algúns scripts de Visual Basic para Excel se se activa esta funcionalidade en <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Ferramentas - Opcións</defaultinline></switchinline> - Cargar/Gardar - Propiedades VBA</item>."
+msgstr "As versións máis recentes do %PRODUCTNAME poden cargar e gardar os formatos de documento Open XML do Office da Microsoft coas extensións docx, xlsx e pptx. As mesmas versións tamén poden executar algúns scripts de Visual Basic para Excel se se activa esta funcionalidade en <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferencias</item></caseinline><defaultinline><item type=\"menuitem\">Ferramentas - Opcións</item></defaultinline></switchinline><item type=\"menuitem\"> - Cargar/Gardar - Propiedades VBA</item>."
#: ms_import_export_limitations.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/swriter/01.po b/source/gl/helpcontent2/source/text/swriter/01.po
index b2d5a1bc45e..13a04e857a8 100644
--- a/source/gl/helpcontent2/source/text/swriter/01.po
+++ b/source/gl/helpcontent2/source/text/swriter/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-06-04 21:39+0000\n"
-"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
+"PO-Revision-Date: 2019-07-26 17:34+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\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: 1559684363.000000\n"
+"X-POOTLE-MTIME: 1564162476.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -3566,7 +3566,7 @@ msgctxt ""
"par_id3147176\n"
"help.text"
msgid "<variable id=\"manual_break_text\"><ahelp hid=\".uno:InsertBreak\">Inserts a manual line break, column break or a page break at the current cursor position.</ahelp> </variable>"
-msgstr "<variable id=\"umbruch\"><ahelp hid=\".uno:InsertBreak\">Insire unha quebra manual de liña, un salto de columna ou unha quebra de páxina na posición actual do cursor.</ahelp></variable>."
+msgstr "<variable id=\"manual_break_text\"><ahelp hid=\".uno:InsertBreak\">Insire unha quebra manual de liña, un salto de columna ou unha quebra de páxina na posición actual do cursor.</ahelp> </variable>"
#: 04010000.xhp
msgctxt ""
@@ -3782,7 +3782,7 @@ msgctxt ""
"bm_id5941038\n"
"help.text"
msgid "<bookmark_value>sections;inserting sections by DDE</bookmark_value><bookmark_value>DDE; command for inserting sections</bookmark_value>"
-msgstr "<Bookmark_value> seccións; inserción de seccións por DDE </ bookmark_value> <bookmark_value> DDE; comando para inserir seccións </ bookmark_value>"
+msgstr "<bookmark_value>seccións; inserción de seccións por DDE</bookmark_value><bookmark_value>DDE; comando para inserir seccións</bookmark_value>"
#: 04020100.xhp
msgctxt ""
@@ -4670,7 +4670,7 @@ msgctxt ""
"bm_id7094027\n"
"help.text"
msgid "<bookmark_value>inserting;envelopes</bookmark_value> <bookmark_value>letters;inserting envelopes</bookmark_value> <bookmark_value>envelopes</bookmark_value>"
-msgstr "<Bookmark_value> inserción; sobres </ bookmark_value><bookmark_value> letras; inserción de sobres </ bookmark_value><bookmark_value> sobres </ bookmark_value>"
+msgstr "<bookmark_value>inserción; sobres</bookmark_value><bookmark_value>letras; inserción de sobres</bookmark_value><bookmark_value>sobres</bookmark_value>"
#: 04070000.xhp
msgctxt ""
@@ -7350,7 +7350,7 @@ msgctxt ""
"par_id0903200802243625\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\">Lista os tipos de campo dispoñíbeis. Para engadir un campo ao documento, prema nun tipo de campo, prema no campo na lista<emph>Seleccionar</emph> e prema en <emph>Inserir</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Lista os tipos de campo dispoñíbeis. Para engadir un campo ao documento, prema nun tipo de campo, prema no campo na lista<emph>Seleccionar</emph> e prema en <emph>Inserir</emph>.</ahelp>"
#: 04090005.xhp
msgctxt ""
@@ -9678,7 +9678,7 @@ msgctxt ""
"par_id3151312\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/indexentry/entryed\">Displays the text that is selected in the document. If you want, you can enter a different word for the index entry. The selected text in the document is not changed.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/IndexEntry/entryed\"> Presenta otexto que está seleccionado no documento. Se quere, pode escribir unhapalabra diferente para a entrada de índice. O texto seleccionado nodocumento non se cambiou.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/indexentry/entryed\">Presenta otexto que está seleccionado no documento. Se quere, pode escribir unhapalabra diferente para a entrada de índice. O texto seleccionado nodocumento non se cambiou.</ahelp>"
#: 04120100.xhp
msgctxt ""
@@ -13198,7 +13198,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=\". Uno: InsertPageHeader\"> Engade ou elimina unha cabeceirado estilo de páxina que seleccione no submenú. A cabeceira engádese a todasas páxinas que usan o mesmo estilo de páxina.</ahelp> Nun documento novo,só o\"Default \" estilo de páxina está listado. Outros estilos de páxinaengádense á lista despois de que aplicala las no documento."
+msgstr "<ahelp hid=\".\"> Engade ou elimina unha cabeceirado estilo de páxina que seleccione no submenú. A cabeceira engádese a todasas páxinas que usan o mesmo estilo de páxina.</ahelp> Nun documento novo,só o\"Default \" estilo de páxina está listado. Outros estilos de páxinaengádense á lista despois de que aplicala las no documento."
#: 04220000.xhp
msgctxt ""
@@ -13262,7 +13262,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=\". Uno: InsertPageFooter\"> Engade ou elimina un pé de páxinado estilo de páxina que seleccione no submenú. O pé é engadido a todas aspáxinas que usan o mesmo estilo de páxina.</ahelp> Nun documento novo, sóo\"Default \" estilo de páxina está listado. Outros estilos de páxinaengádense á lista despois de que aplicala las no documento."
+msgstr "<ahelp hid=\".\"> Engade ou elimina un pé de páxinado estilo de páxina que seleccione no submenú. O pé é engadido a todas aspáxinas que usan o mesmo estilo de páxina.</ahelp> Nun documento novo, sóo\"Default \" estilo de páxina está listado. Outros estilos de páxinaengádense á lista despois de que aplicala las no documento."
#: 04230000.xhp
msgctxt ""
@@ -13662,7 +13662,7 @@ msgctxt ""
"bm_id7635731\n"
"help.text"
msgid "<bookmark_value>first letters as large capital letters</bookmark_value><bookmark_value>capital letters;starting paragraphs</bookmark_value><bookmark_value>drop caps insertion</bookmark_value>"
-msgstr "<Bookmark_value> primeiras letras como grandes maiúsculas </ bookmark_value> <bookmark_value> maiúsculas; parágrafos desde </ bookmark_value> <bookmark_value> capitulares inserción </ bookmark_value>"
+msgstr "<bookmark_value>primeiras letras como grandes maiúsculas</bookmark_value><bookmark_value>maiúsculas; parágrafos desde </bookmark_value><bookmark_value>capitulares inserción</bookmark_value>"
#: 05030400.xhp
msgctxt ""
@@ -18110,7 +18110,7 @@ msgctxt ""
"bm_id3154558\n"
"help.text"
msgid "<bookmark_value>tables;text flow around text tables</bookmark_value><bookmark_value>text flow;around text tables</bookmark_value><bookmark_value>columns; breaks in text tables</bookmark_value><bookmark_value>row breaks in text tables</bookmark_value><bookmark_value>tables; allowing page breaks</bookmark_value><bookmark_value>page breaks; tables</bookmark_value><bookmark_value>splitting tables;row breaks</bookmark_value>"
-msgstr "<Bookmark_value> mesas; fluxo de texto ao redor de mesas de texto </ bookmark_value><bookmark_value> fluxo de texto; arredor táboas de texto </ bookmark_value><bookmark_value> columnas; breaks en táboas de texto </ bookmark_value><bookmark_value> quebras de liña en táboas de texto </ bookmark_value><bookmark_value> táboas; permitindo que as quebras de páxina </ bookmark_value><bookmark_value> quebras de páxina; táboas </ bookmark_value><bookmark_value> táboas de división; quebras de liña </ bookmark_value>"
+msgstr "<bookmark_value>mesas; fluxo de texto ao redor de mesas de texto </bookmark_value><bookmark_value>fluxo de texto; arredor táboas de texto </bookmark_value><bookmark_value>columnas; breaks en táboas de texto</bookmark_value><bookmark_value>quebras de liña en táboas de texto </bookmark_value><bookmark_value>táboas; permitindo que as quebras de páxina</bookmark_value><bookmark_value>quebras de páxina; táboas </bookmark_value><bookmark_value>táboas de división; quebras de liña</bookmark_value>"
#: 05090300.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/swriter/guide.po b/source/gl/helpcontent2/source/text/swriter/guide.po
index 4091edaa8ad..944f6c2e353 100644
--- a/source/gl/helpcontent2/source/text/swriter/guide.po
+++ b/source/gl/helpcontent2/source/text/swriter/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-06-04 21:24+0000\n"
-"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
+"PO-Revision-Date: 2019-07-21 17:47+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\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: 1559683458.000000\n"
+"X-POOTLE-MTIME: 1563731231.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -3887,7 +3887,7 @@ msgctxt ""
"bm_id5111545\n"
"help.text"
msgid "<bookmark_value>inserting;date fields</bookmark_value> <bookmark_value>dates;inserting</bookmark_value> <bookmark_value>date fields;fixed/variable</bookmark_value> <bookmark_value>fixed dates</bookmark_value> <bookmark_value>variable dates</bookmark_value>"
-msgstr "<bookmark_value> inserción; campos de data </ ​​bookmark_value> <bookmark_value> datas; inserción </bookmark_value> <bookmark_value> campos de data;/variable fixa </bookmark_value> <bookmark_value> datas fixas </bookmark_value> <bookmark_value> datas variables </bookmark_value>"
+msgstr "<bookmark_value>inserción; campos de data</​​bookmark_value>..<bookmark_value>datas; inserción</bookmark_value>..<bookmark_value>campos de data;fixa/variable</bookmark_value>..<bookmark_value>datas fixas</bookmark_value>..<bookmark_value>datas variables</bookmark_value>"
#: fields_date.xhp
msgctxt ""
@@ -8164,7 +8164,7 @@ msgctxt ""
"bm_id3152999\n"
"help.text"
msgid "<bookmark_value>charts;copying from Calc into Writer</bookmark_value> <bookmark_value>copying; charts from $[officename] Calc</bookmark_value> <bookmark_value>text documents;inserting Calc charts</bookmark_value>"
-msgstr "<bookmark_value> gráficos, reproducións de Calc para Escritor </bookmark_value> <bookmark_value> copia; gráficos a partir de $ [officename] Calc </bookmark_value> <bookmark_value> documentos de texto; inserción de gráficos Calc </bookmark_value>"
+msgstr "<bookmark_value>gráficos, reproducións de Calc para Escritor</bookmark_value><bookmark_value>copia; gráficos a partir de $[officename] Calc</bookmark_value><bookmark_value>documentos de texto; inserción de gráficos Calc </bookmark_value>"
#: insert_graphic_fromchart.xhp
msgctxt ""
@@ -14303,12 +14303,13 @@ msgid "To increase the distance from the left edge of the page to the edge of th
msgstr "Para crear un círculo arrastando desde o centro, prema <switchinline select=\"sys\"><caseinline select=\"MAC\">Opción</caseinline><defaultinline>Alt</defaultinline></switchinline> ao arrastar."
#: table_sizing.xhp
+#, fuzzy
msgctxt ""
"table_sizing.xhp\n"
"par_id3155891\n"
"help.text"
msgid "You can specify the behavior for the arrow keys by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Table</emph>, and selecting the options that you want in the <emph>Keyboard handling</emph> area."
-msgstr "Antes de poder utilizar un controlador JDBC, cómpre engadir o camiño da clase. Escolla <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencias</caseinline><defaultinline>Ferramentas - Opcións</defaultinline></switchinline> - %PRODUCTNAME- Java, e prema no botón Camiño da clase. Logo de inserir a información do camiño, reinicie %PRODUCTNAME."
+msgstr "Antes de poder utilizar un controlador JDBC, cómpre engadir o camiño da clase. Escolla <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferencias</emph></caseinline><defaultinline><emph>Ferramentas - Opcións</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Java</emph>, e prema no botón Camiño da clase. Logo de inserir a información do camiño, reinicie %PRODUCTNAME."
#: table_sizing.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 dd8c4cc4e8f..e534627d039 100644
--- a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gl/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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-08 09:27+0000\n"
"Last-Translator: Xosé <xosecalvo@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: 1562578029.000000\n"
#: BaseWindowState.xcu
@@ -21054,6 +21054,24 @@ msgstr "Doar a LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/gl/sd/messages.po b/source/gl/sd/messages.po
index a55f3f5f13f..b44e1bebf7e 100644
--- a/source/gl/sd/messages.po
+++ b/source/gl/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-04 08:48+0000\n"
"Last-Translator: Xosé <xosecalvo@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: 1562230106.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "_Revisión"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Dispor"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Editar"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Grade"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Gráfica"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "C_or"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Multimedia"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Pre_sentación de diapositivas"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Ma_rco"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Ver"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Pá_xina principal"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Inserir"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Debuxa_r"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Ver"
diff --git a/source/gl/sw/messages.po b/source/gl/sw/messages.po
index b04830e3f28..49027436f08 100644
--- a/source/gl/sw/messages.po
+++ b/source/gl/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-07-08 09:27+0000\n"
"Last-Translator: Xosé <xosecalvo@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: 1562578065.000000\n"
#: sw/inc/app.hrc:29
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Escoller elemento: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Editar"
diff --git a/source/gu/cui/messages.po b/source/gu/cui/messages.po
index 6cee7daccf7..649ff30a1a0 100644
--- a/source/gu/cui/messages.po
+++ b/source/gu/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4497,147 +4497,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9535,76 +9535,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "મદદ"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME સંવાદો વાપરો(_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ખોલો/સંગ્રહો સંવાદ"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME સંવાદો વાપરો(_d)"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "સંવાદોને છાપો"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "\"બદલેલ દસ્તાવેજ\" સ્થિતિ સમૂહોને છાપી રહ્યા છીએ (_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "દસ્તાવેજ સ્થિતિ"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "ની વચ્ચે વર્ષો તરીકે અર્ષ સમજાવો (_I) "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "અને "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "વર્ષ (બે આંકડા)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "સિસ્ટમને શરૂ કરવા દરમ્યાન %PRODUCTNAME ને લાવો"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray Quickstarter ને સક્રિય કરો"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -13281,12 +13281,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 3db8965bb8e..beb2b665d7a 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Gujarati <>\n"
@@ -21357,6 +21357,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/gu/sd/messages.po b/source/gu/sd/messages.po
index e05d3ad9acb..8806e3cc62c 100644
--- a/source/gu/sd/messages.po
+++ b/source/gu/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5490,9 +5490,9 @@ msgstr "રીવ્યુ"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5569,8 +5569,8 @@ msgid "_Edit"
msgstr "ફેરફાર (~E)"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "જાળી (_G)"
@@ -5586,60 +5586,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "ગ્રાફિક"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "રંગ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "મીડિયા"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "સ્લાઇડ દેખાવ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "ફ્રેમ (_r)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "દેખાવ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "મુખ્ય પાનાંઓ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "દાખલ કરો (_I)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/gu/sw/messages.po b/source/gu/sw/messages.po
index 802c5d072e7..fee5c190bda 100644
--- a/source/gu/sw/messages.po
+++ b/source/gu/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8677,7 +8677,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "વસ્તુ પસંદ કરોઃ "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "ફેરફાર"
diff --git a/source/gug/chart2/messages.po b/source/gug/chart2/messages.po
index a2e71c4b272..b4597b1e537 100644
--- a/source/gug/chart2/messages.po
+++ b/source/gug/chart2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-02 16:31+0000\n"
+"PO-Revision-Date: 2019-07-29 21:46+0000\n"
"Last-Translator: pedrogimenez <ppgimeca@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gug\n"
@@ -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: 1562085064.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564436808.000000\n"
#: chart2/inc/chart.hrc:17
msgctxt "tp_ChartType|liststore1"
@@ -421,12 +421,12 @@ msgstr "Mba'e Dibújogui"
#, c-format
msgctxt "STR_TIP_DATASERIES"
msgid "Data Series '%SERIESNAME'"
-msgstr ""
+msgstr "marandu rysýi '%SERIESNAME'"
#: chart2/inc/strings.hrc:101
msgctxt "STR_TIP_DATAPOINT_INDEX"
msgid "Data Point %POINTNUMBER"
-msgstr ""
+msgstr "Kytã marandu %POINTNUMBER"
#: chart2/inc/strings.hrc:102
msgctxt "STR_TIP_DATAPOINT_VALUES"
diff --git a/source/gug/connectivity/messages.po b/source/gug/connectivity/messages.po
index d61eaf1537b..1c27ef7791b 100644
--- a/source/gug/connectivity/messages.po
+++ b/source/gug/connectivity/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-09-03 13:23+0200\n"
-"PO-Revision-Date: 2019-06-28 15:51+0000\n"
+"PO-Revision-Date: 2019-07-18 14:43+0000\n"
"Last-Translator: dejesusaquino <josesitopechocho197@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gug\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: 1561737102.000000\n"
+"X-POOTLE-MTIME: 1563461013.000000\n"
#. = the mozab driver's resource strings
#: connectivity/inc/strings.hrc:26
@@ -76,22 +76,22 @@ msgstr "jeikeha ndaipori mba'ekuaarã ñepyrũha ndíve "
#: connectivity/inc/strings.hrc:38
msgctxt "STR_WRONG_PARAM_INDEX"
msgid "You tried to set a parameter at position '$pos$' but there is/are only '$count$' parameter(s) allowed. One reason may be that the property \"ParameterNameSubstitution\" is not set to TRUE in the data source."
-msgstr ""
+msgstr "añeha'ã aguereko peteĩ tape ko tendape \"$pos$\" oĩnte pype \"$count$\" tendaku'éra ikatúva. Pe mba'e ikatu ha'e pe tenda $ParameterNameSubstitution\" ndikatúi TRUE pe oĩhape hembipopu"
#: connectivity/inc/strings.hrc:39
msgctxt "STR_NO_INPUTSTREAM"
msgid "The input stream was not set."
-msgstr ""
+msgstr "ndojehechaporãi syry ojeikeha"
#: connectivity/inc/strings.hrc:40
msgctxt "STR_NO_ELEMENT_NAME"
msgid "There is no element named '$name$'."
-msgstr ""
+msgstr "ndaipori nipeteĩ tembiporu heráva \"$name$\""
#: connectivity/inc/strings.hrc:41
msgctxt "STR_INVALID_BOOKMARK"
msgid "Invalid bookmark value"
-msgstr ""
+msgstr "omombaéva jehaipyre ndaha'éi hesegua"
#: connectivity/inc/strings.hrc:42
msgctxt "STR_PRIVILEGE_NOT_GRANTED"
diff --git a/source/gug/cui/messages.po b/source/gug/cui/messages.po
index 1aaaa6d055b..985b50b58e0 100644
--- a/source/gug/cui/messages.po
+++ b/source/gug/cui/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-02 16:22+0000\n"
-"Last-Translator: sabinanunez60 <sabinanunez60@gmail.com>\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-18 16:57+0000\n"
+"Last-Translator: davidgaleanoolivera <davidgaleanoolivera@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gug\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: 1562084550.000000\n"
+"X-POOTLE-MTIME: 1563469064.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1404,10 +1404,9 @@ msgid "Please enter a name for the external bitmap:"
msgstr "Ehai peteĩ téra mapabit peguarã okaragua:"
#: cui/inc/strings.hrc:323
-#, fuzzy
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
-msgstr "Ehai peteĩ téra mallarã:"
+msgstr "Emoinge peteĩ mbohapeha réra"
#: cui/inc/strings.hrc:324
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
@@ -1474,10 +1473,9 @@ msgid "Style:"
msgstr "Estilo:"
#: cui/inc/strings.hrc:336
-#, fuzzy
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
-msgstr "Tipografía"
+msgstr "Taira'anga"
#: cui/inc/strings.hrc:337
msgctxt "RID_SVXSTR_CHARNAME_HIGHLIGHTING"
@@ -1487,7 +1485,7 @@ msgstr "Sa'y Hi'ári"
#: cui/inc/strings.hrc:338
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
-msgstr "Puru tabla mbyekoviaha"
+msgstr "Eiporu tabla myengoviaha"
#: cui/inc/strings.hrc:339
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
@@ -1497,42 +1495,42 @@ msgstr "Myatyrõ MOkoĩ MAyúscula kuéra JApo mante"
#: cui/inc/strings.hrc:340
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
-msgstr "Ñepyry opavave ñe'ẽjoapy kuéra mayúscula ndi"
+msgstr "Eñepyrũ mayma ñe'ẽ taituichápe"
#: cui/inc/strings.hrc:341
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
-msgstr "*hũ'iva*,/italika/,-oñembongurusúva- ha_ haiguy_ipua'evévape"
+msgstr "*taihũ'ĩ*,/tai'yké/,-oñemongurusu- ha_ haiguýva_ijeheguívape"
#: cui/inc/strings.hrc:342
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
-msgstr "Kuaa'ỹ arapy kõi"
+msgstr "Epena'ỹ pa'ũ kõire"
#: cui/inc/strings.hrc:343
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
-msgstr "Jekuaa jey URL"
+msgstr "Ehechakuaa URL"
#: cui/inc/strings.hrc:344
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
-msgstr "Mbyekovia guiones"
+msgstr "Myengovia guiones"
#: cui/inc/strings.hrc:345
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
-msgstr "Heko katu jepuru accidental de la tecla bLOQ mAYÚS"
+msgstr "Tecla bLOQ mAYÚS jeporu vai ñemoi porã"
#: cui/inc/strings.hrc:346
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
-msgstr "Moĩ pa'ũ ojei'ỹvã mboyve puntación moñe'ẽrãpe Francés"
+msgstr "Pa'ũ ojei'ỹvã ñemoĩ kytãnguéra mboyve moñe'ẽrã Franceses-pe"
#: cui/inc/strings.hrc:347
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
-msgstr "Formatear los sufijos papapýgui ordinales (1o → 1.º)"
+msgstr "Hemboysaja hekopete papapý papýva (1o → 1.º)"
#: cui/inc/strings.hrc:348
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
@@ -1596,10 +1594,9 @@ msgid "Dimension line"
msgstr "Línea tuichavekuegui"
#: cui/inc/strings.hrc:361
-#, fuzzy
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
-msgstr "_Pe'a comillas:"
+msgstr "emoñepyrũ marandu'asa"
#: cui/inc/strings.hrc:362
msgctxt "RID_SVXSTR_ENDQUOTE"
@@ -1745,7 +1742,7 @@ msgstr "Versión:%ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX"
#: cui/inc/strings.hrc:395
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
-msgstr ""
+msgstr "Copyright©2000-2019 LibreOffice pytyvõhára"
#: cui/inc/strings.hrc:396
msgctxt "aboutdialog|link"
@@ -1770,7 +1767,7 @@ msgstr "LibreOffice se basó en OpenOffice.org."
#: cui/inc/strings.hrc:400
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
-msgstr ""
+msgstr "%PRODUCTINAME ou LibreOffice, péva kuri oñemopyenda OpenOffice.org "
#: cui/inc/strings.hrc:401
msgctxt "aboutdialog|locale"
@@ -1780,22 +1777,22 @@ msgstr "Configuración Tenda: $LOCALE"
#: cui/inc/strings.hrc:402
msgctxt "aboutdialog|uilocale"
msgid "UI-Language: $LOCALE"
-msgstr ""
+msgstr "IU Ñe'ẽ: $LOCALE"
#: cui/inc/strings.hrc:403
msgctxt "aboutdialog|releasenotes"
msgid "~Release Notes"
-msgstr ""
+msgstr "~Mba'epyahukuéra jekuaauka"
#: cui/inc/strings.hrc:404
msgctxt "aboutdialog|website"
msgid "~Website"
-msgstr ""
+msgstr "~web renda"
#: cui/inc/strings.hrc:405
msgctxt "aboutdialog|credits"
msgid "Cre~dits"
-msgstr ""
+msgstr "C~pytyvõharakuéra"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -1812,31 +1809,31 @@ msgstr "."
#: cui/inc/tipoftheday.hrc:47
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can handle styles conditionally: paragraph styles that have different properties depending on the context."
-msgstr ""
+msgstr "Writer ikatu oipuru ysaja ha'e omoneĩva: haipyvokuéra ysaja opáicha ojepurúva umi tekotevẽháme."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/05130100.html
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With File > Versions you can store multiple versions of the document in the same file. You can also open, delete, and compare previous versions."
-msgstr ""
+msgstr "Ñongatuha reheve ▸ Mbohasapyrekuéra ikatúva oñongatu heta mbohasapyre peteĩ kuatia'arandúgui peteĩ ñongatuha ryepýpe. Avei ikatu oipe'a, omboguete ha ombojoja umi mbohasapyre ãva mboyve guare."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/01190000.html
#: cui/inc/tipoftheday.hrc:49
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
-msgstr ""
+msgstr "Ikatu remoheñòi ta'ãnga rysỳi mba'e rerakuèra guive, ndaha'èi jehaipỳgui añònte."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/05190000.html
#: cui/inc/tipoftheday.hrc:50
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To temporarily starts with a fresh user profile or to restore a non-working %PRODUCTNAME instance start Help > Restart in Safe Mode."
-msgstr ""
+msgstr "Oñepyrũ hag̃ua %PRODUCTNAME sapy'aiterã puruhàra pyahùicha jehechaukarãme tèrã oñemyatyrõ hag̃ua peteĩ mohenda ndakatùiva ojepuru, tereho Pytyvõ meve > Emoñepyrũ ha'etevaitèpe."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
-msgstr ""
+msgstr "Emo'ambue taikuéra rejuhúva ojepuruhápe jepivoi térã kuatia'arandu ko'ãgagua Herramientas ryepýpe ▸ Opciones ▸ %PRODUCTNAME Writer ▸ Taikuéra ojepuruvéva ichagua."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
#: cui/inc/tipoftheday.hrc:52
@@ -1854,7 +1851,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:54
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools > Sort."
-msgstr ""
+msgstr "Eipuru tembipuru ▸ Emoĩ porã oñemohenda hagua achegety térã papapy rupi umi haipyvo térã kuaañongatuha rysýi "
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/06100000.html
#: cui/inc/tipoftheday.hrc:55
@@ -1920,7 +1917,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
-msgstr ""
+msgstr "Ikatu remoĩ ndereraguapy umi PDF marandu'atýpe ha avei ehechajey teraguapykuéra"
#. local help missing
#: cui/inc/tipoftheday.hrc:67
@@ -1938,7 +1935,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:69
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
-msgstr ""
+msgstr "¿Rembojoapysépa X jasy peteĩ arangépe? Eipuru = ARANGE.JASY(ArangeÑepyrũ; Jasykuéra)"
#. local help missing
#: cui/inc/tipoftheday.hrc:70
@@ -2022,7 +2019,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:83
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
-msgstr ""
+msgstr "Eipuru ne Android térã iPhone rehecha hagua mombyry guive impress mba'echauka"
#. local help missing
#: cui/inc/tipoftheday.hrc:84
@@ -2046,7 +2043,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:88
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get help from the community via the Ask portal."
-msgstr ""
+msgstr "Eheka pytyvõ tekohápe Ask ñandutirenda guive"
#: cui/inc/tipoftheday.hrc:89
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2071,7 +2068,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:93
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
-msgstr ""
+msgstr "Ne me'ẽrei oipytyõ ñande rekoha tetãitaguápe"
#: cui/inc/tipoftheday.hrc:94
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2096,7 +2093,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:98
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create editable Hybrid PDFs with %PRODUCTNAME."
-msgstr ""
+msgstr "Emoheñói PDF marandu'aty ikatúva oñemboheko %PRODUCTNAME rupive"
#: cui/inc/tipoftheday.hrc:99
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2131,7 +2128,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:105
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
-msgstr ""
+msgstr "Eipuru %PRODUCTNAME oimeraẽ kundahárape rollApp rupive"
#: cui/inc/tipoftheday.hrc:106
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2401,7 +2398,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Show or hide comments in Writer by clicking the comment toggle button in the ruler."
-msgstr ""
+msgstr "Ehechauka térã emoñemi temiandukuéra Writer-pe ehesakutúvo votõ oĩva mbojojápe"
#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2506,7 +2503,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete in one step all of your printing areas: select all sheets then Format > Print Ranges > Clear."
-msgstr ""
+msgstr "Emboguete peteĩ jeýpe opaite mboguatia renda: eiporavo opaite kuatia ha tereho ysajárekópe >Monguatia renda > Mopotĩ"
#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2541,7 +2538,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Ctrl+Alt+Shift+V to paste the contents of the clipboard as unformatted text."
-msgstr ""
+msgstr "Ehesakutu Ctrl + Alt + Mayús + V emboja hagua kuatiaryru pypegua moñe'ẽrã ijysaja'ỹvaramo"
#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -4399,147 +4396,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9206,72 +9203,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pytyvõ"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Puru ñemongeta %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Eavri/Ñongatu Ñemongeta"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Puru _ñemongeta %PRODUCTNAME "
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Ñemongeta Impresión"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Impresión reko atýpe ''documento oñemoambue va'ekue''"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Teko Documentogui"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar mba'éicha ára mbyte "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ha "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ára (Mokõi Dígitos)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Hupi %PRODUCTNAME ñepyrũ sistema jave"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Myendy ÑepyrũPya'e systray"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "ÑepyrũPya'e %PRODUCTNAME"
@@ -12815,12 +12812,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/gug/helpcontent2/source/text/sdraw.po b/source/gug/helpcontent2/source/text/sdraw.po
index c6d8d736100..5f64772e5a2 100644
--- a/source/gug/helpcontent2/source/text/sdraw.po
+++ b/source/gug/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-06-21 21:13+0000\n"
+"PO-Revision-Date: 2019-07-20 03:08+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: 1561151614.000000\n"
+"X-POOTLE-MTIME: 1563592100.000000\n"
#: main0000.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
-msgstr ""
+msgstr "Este menú permite insertar en documentos Draw elementos tales como imágenes y guías."
#: main_insert.xhp
msgctxt ""
diff --git a/source/gug/helpcontent2/source/text/shared/01.po b/source/gug/helpcontent2/source/text/shared/01.po
index 58e6557b9fb..82f59ecd477 100644
--- a/source/gug/helpcontent2/source/text/shared/01.po
+++ b/source/gug/helpcontent2/source/text/shared/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-06-18 23:31+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-07-21 20:26+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\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: 1560900665.000000\n"
+"X-POOTLE-MTIME: 1563740777.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -36270,7 +36270,7 @@ msgctxt ""
"par_id3154350\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".\">Enter or edit file information for an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"\">Escriba o edite la información de archivo para un <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">filtro XML</link>.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\".\">Escriba o edite la información de archivo para un <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">filtro XML</link>.</ahelp>"
#: 06150120.xhp
msgctxt ""
diff --git a/source/gug/helpcontent2/source/text/shared/02.po b/source/gug/helpcontent2/source/text/shared/02.po
index 7208d5a7c08..d5aed6de345 100644
--- a/source/gug/helpcontent2/source/text/shared/02.po
+++ b/source/gug/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-06-18 23:30+0000\n"
+"PO-Revision-Date: 2019-07-29 14:39+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: 1560900607.000000\n"
+"X-POOTLE-MTIME: 1564411145.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -14214,7 +14214,7 @@ msgctxt ""
"par_id3148481\n"
"help.text"
msgid "In this case, standard formatting is formatting that refers to the internally stored data. It is not always visible to the user, especially if it is used for simulating data types (for example, time fields in dBASE databases). This depends on the database used and the individual data type. Searching with field formatting is appropriate if you only want to find what is actually shown. This includes fields of type Date, Time, Date/Time and Number/Double."
-msgstr "En este caso, el formato estandar es aquel que se refiere al almacenado internamente. No siempre es visible al usuario, especialmente si es usado para simular tipos de datos (por ejemplo, campos de tiempo en bases de datos dBASE). Esto depende al uso de la base de datos y el tipo de datos individuales. Realize busquedas con el formato apropiado si solo dese encontrar lo que actualmente se muestra. Esto incluye campos de tipo Fecha, Tiempo, Fecha/hora y Números/Doble."
+msgstr "En este caso, el formato estándar es aquél referente a los datos almacenados internamente. Este formato no siempre es visible para el usuario, en particular si se utiliza para simular tipos de datos (por ejemplo, campos horarios en bases de datos dBASE). Esto depende de la base de datos empleada y de cada tipo de datos. La búsqueda con formato de campo es conveniente si únicamente desea encontrar lo que en efecto se muestra. Ello comprende campos de tipo Fecha, Hora, Fecha/hora y Número/doble."
#: 12100200.xhp
msgctxt ""
diff --git a/source/gug/helpcontent2/source/text/shared/autopi.po b/source/gug/helpcontent2/source/text/shared/autopi.po
index 8575ec07589..194559cb71f 100644
--- a/source/gug/helpcontent2/source/text/shared/autopi.po
+++ b/source/gug/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: 2018-04-24 12:21+0200\n"
-"PO-Revision-Date: 2019-06-18 23:27+0000\n"
+"PO-Revision-Date: 2019-07-29 14: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: 1560900468.000000\n"
+"X-POOTLE-MTIME: 1564411282.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_id3155805\n"
"help.text"
msgid "<ahelp hid=\".\">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 ""
+msgstr "<ahelp hid=\".\">Enumera los campos seleccionados en la página anterior del asistente. Para agrupar los informes por un campo, seleccione el nombre de este y pulse en el botón <emph>></emph>. Puede seleccionar un máximo de cuatro niveles de agrupación.</ahelp>"
#: 01100200.xhp
msgctxt ""
@@ -3702,7 +3702,7 @@ msgctxt ""
"par_id3155892\n"
"help.text"
msgid "<ahelp hid=\".\">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 ""
+msgstr "<ahelp hid=\".\">Enumera los campos por los que se agrupa el informe. Para quitar un nivel de agrupación, seleccione el nombre del campo y pulse en el botón <emph><</emph>. Puede seleccionar un máximo de cuatro niveles de agrupación.</ahelp>"
#: 01100200.xhp
msgctxt ""
diff --git a/source/gug/helpcontent2/source/text/shared/guide.po b/source/gug/helpcontent2/source/text/shared/guide.po
index 4f368b670f0..a928f379f95 100644
--- a/source/gug/helpcontent2/source/text/shared/guide.po
+++ b/source/gug/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-06-20 22:05+0000\n"
+"PO-Revision-Date: 2019-07-29 14: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: 1561068354.000000\n"
+"X-POOTLE-MTIME: 1564411719.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -3038,7 +3038,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "File Conversion Filters Tables"
-msgstr ""
+msgstr "Tablas de los filtros de conversión de archivos"
#: convertfilters.xhp
msgctxt ""
@@ -3366,7 +3366,7 @@ msgctxt ""
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
+msgstr "Documento de texto de OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -3374,7 +3374,7 @@ msgctxt ""
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
+msgstr "Documento de texto de OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -3382,7 +3382,7 @@ msgctxt ""
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
+msgstr "Documento de texto de OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
diff --git a/source/gug/helpcontent2/source/text/swriter/00.po b/source/gug/helpcontent2/source/text/swriter/00.po
index 940d077889b..da56f40d500 100644
--- a/source/gug/helpcontent2/source/text/swriter/00.po
+++ b/source/gug/helpcontent2/source/text/swriter/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-06-01 02:14+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-07-20 09:41+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\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: 1559355267.000000\n"
+"X-POOTLE-MTIME: 1563615688.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "Choose <emph>View - Styles</emph> - open context menu <emph>Modify/New - Columns</emph> tab."
-msgstr ""
+msgstr "Vaya a <emph>Ver ▸ Estilos</emph>, abra el menú contextual y seleccione <emph>Modificar/nuevo ▸</emph> pestaña <emph>Columnas</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"par_id3143276\n"
"help.text"
msgid "Choose <emph>Insert/Format - Section(s) - Columns</emph> tab."
-msgstr ""
+msgstr "Vaya a <emph> Insertar/Formato ▸ Sección(es) ▸</emph> pestaña <emph>Columnas</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"par_id3149817\n"
"help.text"
msgid "Choose <emph>Format - Page - Footnote</emph> tab."
-msgstr ""
+msgstr "Vaya a <emph>Formato ▸ Página ▸</emph> pestaña <emph>Nota al pie</emph>."
#: 00000405.xhp
msgctxt ""
diff --git a/source/gug/officecfg/registry/data/org/openoffice/Office.po b/source/gug/officecfg/registry/data/org/openoffice/Office.po
index fb2ffda15d7..c909e1f2005 100644
--- a/source/gug/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/gug/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-07-02 16:35+0000\n"
-"Last-Translator: pastora <pastora.leguizamon@gmail.com>\n"
+"PO-Revision-Date: 2019-07-18 15:09+0000\n"
+"Last-Translator: dejesusaquino <josesitopechocho197@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gug\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: 1562085332.000000\n"
+"X-POOTLE-MTIME: 1563462562.000000\n"
#: Addons.xcu
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "M~aster Document"
-msgstr ""
+msgstr "_kuatía rape"
#: Common.xcu
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Templates..."
-msgstr ""
+msgstr "_kuatia jehaipyrã "
#: Common.xcu
msgctxt ""
@@ -716,7 +716,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Report Builder"
-msgstr ""
+msgstr "marandu japoha"
#: ExtendedColorScheme.xcu
msgctxt ""
@@ -1187,14 +1187,13 @@ msgid "Choose which slides to delete"
msgstr "Eiporavo mba'e diapositivas ojejuka'arã"
#: PresentationMinimizer.xcu
-#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_DELETE_MASTER_PAGES\n"
"value.text"
msgid "Delete unused ~master slides"
-msgstr "Juka rogue ~master ojepurũ'ỹva"
+msgstr "oJuka togue ~master ojepurũ'ỹva"
#: PresentationMinimizer.xcu
msgctxt ""
@@ -1428,7 +1427,7 @@ msgctxt ""
"STR_FILENAME_SUFFIX\n"
"value.text"
msgid "(minimized)"
-msgstr ""
+msgstr "(momichĨha)"
#: PresentationMinimizer.xcu
msgctxt ""
@@ -1437,7 +1436,7 @@ msgctxt ""
"STR_WARN_UNSAVED_PRESENTATION\n"
"value.text"
msgid "Do you want to minimize presentation without saving?"
-msgstr ""
+msgstr "remomichĩse pe ojechaukáva oñeñongatu'ỹre"
#: PresentationMinimizer.xcu
msgctxt ""
@@ -1878,7 +1877,7 @@ msgctxt ""
"Right\n"
"value.text"
msgid "Switches monitors"
-msgstr ""
+msgstr "rembojojase ãa tembiporu"
#: PresenterScreen.xcu
msgctxt ""
@@ -8925,7 +8924,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Instruction"
-msgstr ""
+msgstr "kytã ojejapovaerã"
#: TableWizard.xcu
msgctxt ""
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 c247a06284b..9c76db0f10e 100644
--- a/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gug/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2018-11-12 11:51+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-26 16:40+0000\n"
+"Last-Translator: dejesusaquino <josesitopechocho197@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gug\n"
"MIME-Version: 1.0\n"
@@ -14,17 +14,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1542023460.000000\n"
+"X-POOTLE-MTIME: 1564159226.000000\n"
#: BaseWindowState.xcu
-#, fuzzy
msgctxt ""
"BaseWindowState.xcu\n"
"..BaseWindowState.UIElements.States.private:resource/popupmenu/edit\n"
"UIName\n"
"value.text"
msgid "Database Object"
-msgstr "Mba'e kuéra Base de Datos"
+msgstr "Mba'e kuéra oĩva mba'ekuaarãme"
#: BaseWindowState.xcu
msgctxt ""
@@ -87,7 +86,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Repeat Search"
-msgstr ""
+msgstr "rejapojey Rejehekáva"
#: BasicIDECommands.xcu
msgctxt ""
@@ -150,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Barra Oñemongu'e Oñenóva kuatia ñemyanyhe gui"
#: BasicIDECommands.xcu
msgctxt ""
@@ -168,7 +167,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "BASIC Module"
-msgstr ""
+msgstr "BASIC Modulogua "
#: BasicIDECommands.xcu
msgctxt ""
@@ -177,7 +176,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "BASIC Dialog"
-msgstr ""
+msgstr "kupy rundýva ñemongeta BASIC"
#: BasicIDECommands.xcu
msgctxt ""
@@ -189,44 +188,40 @@ msgid "Delete"
msgstr "Juka"
#: BasicIDECommands.xcu
-#, fuzzy
msgctxt ""
"BasicIDECommands.xcu\n"
"..BasicIDECommands.UserInterface.Commands..uno:RenameCurrent\n"
"Label\n"
"value.text"
msgid "Rename"
-msgstr "~Térajey"
+msgstr "~Téra jegueróva"
#: BasicIDECommands.xcu
-#, fuzzy
msgctxt ""
"BasicIDECommands.xcu\n"
"..BasicIDECommands.UserInterface.Commands..uno:HideCurPage\n"
"Label\n"
"value.text"
msgid "Hide"
-msgstr "M~okañy"
+msgstr "~Ñemongañy"
#: BasicIDECommands.xcu
-#, fuzzy
msgctxt ""
"BasicIDECommands.xcu\n"
"..BasicIDECommands.UserInterface.Popups..uno:RunMenu\n"
"Label\n"
"value.text"
msgid "~Run"
-msgstr "Momba'apo"
+msgstr "ñemomba'apo"
#: BasicIDECommands.xcu
-#, fuzzy
msgctxt ""
"BasicIDECommands.xcu\n"
"..BasicIDECommands.UserInterface.Popups..uno:DialogMenu\n"
"Label\n"
"value.text"
msgid "~Dialog"
-msgstr "Ñemongeta"
+msgstr "kupy rundýva Ñemongeta"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -244,7 +239,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Tab Bar"
-msgstr ""
+msgstr "tendayke rupa"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -451,7 +446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear"
-msgstr ""
+msgstr "Remonandipa"
#: CalcCommands.xcu
msgctxt ""
@@ -460,7 +455,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clear ~Direct Formatting"
-msgstr ""
+msgstr "Sambyhy arávo ñemopotĩ"
#: CalcCommands.xcu
msgctxt ""
@@ -469,7 +464,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Direct Formatting"
-msgstr ""
+msgstr "mboheko rehegua ñemopotĩ "
#: CalcCommands.xcu
msgctxt ""
@@ -667,7 +662,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Spreadsheet Theme"
-msgstr ""
+msgstr "kuatia ñembohape renda"
#: CalcCommands.xcu
msgctxt ""
@@ -1009,7 +1004,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert or Edit Pivot Table"
-msgstr ""
+msgstr "Remoĩnge terã embojoapy Tabla dinámica"
#: CalcCommands.xcu
msgctxt ""
@@ -1018,7 +1013,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Properties..."
-msgstr ""
+msgstr "Mba'e Tee kuéra "
#: CalcCommands.xcu
msgctxt ""
@@ -1027,7 +1022,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert or Edit..."
-msgstr ""
+msgstr "Emoĩnge terã remoĩ porã"
#: CalcCommands.xcu
msgctxt ""
@@ -1156,14 +1151,13 @@ msgid "Select Row"
msgstr "Poravo Tysỹi"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:SelectUnprotectedCells\n"
"Label\n"
"value.text"
msgid "Select Unprotected Cells"
-msgstr "Jeho Koty'i Oseguía Ñangareko'ỹ va'ekue"
+msgstr "Eiporávo Koty'i Ñangareko'ỹre"
#: CalcCommands.xcu
msgctxt ""
@@ -1172,7 +1166,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "C~onditional"
-msgstr ""
+msgstr "Sapy'agua"
#: CalcCommands.xcu
msgctxt ""
@@ -1199,7 +1193,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Conditional Formatting..."
-msgstr ""
+msgstr "teko mbokeko "
#: CalcCommands.xcu
msgctxt ""
@@ -1289,7 +1283,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage Conditional Formatting..."
-msgstr ""
+msgstr "Sambyhy mboheko sapyagua"
#: CalcCommands.xcu
msgctxt ""
@@ -1325,7 +1319,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell Edit Mode"
-msgstr ""
+msgstr "Ñemyãtyrõ koty'i"
#: CalcCommands.xcu
msgctxt ""
@@ -1391,14 +1385,13 @@ msgid "Wrap Text"
msgstr "Ojeahusta Moñe'ẽrã"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:CellProtection\n"
"Label\n"
"value.text"
msgid "Cell Protection"
-msgstr "Ñepytyvõ Koty'i"
+msgstr "Oñeñangareko Koty'ire"
#: CalcCommands.xcu
msgctxt ""
@@ -1407,7 +1400,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Print Area"
-msgstr ""
+msgstr "Kuatiajopy"
#: CalcCommands.xcu
msgctxt ""
@@ -1419,14 +1412,13 @@ msgid "~Define"
msgstr "~Oñedefini"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:DefinePrintArea\n"
"TooltipLabel\n"
"value.text"
msgid "Define Print Area"
-msgstr "~Oñedefini Área de Impresión"
+msgstr "Ñemyesakã kuatiajopy pegua"
#: CalcCommands.xcu
msgctxt ""
@@ -1453,7 +1445,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Print Ranges"
-msgstr ""
+msgstr "Ñemonandi kuatiajopy pegua"
#: CalcCommands.xcu
msgctxt ""
@@ -1501,14 +1493,13 @@ msgid "~Add"
msgstr "~Moĩ"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:AddPrintArea\n"
"TooltipLabel\n"
"value.text"
msgid "Add Print Range"
-msgstr "Editar Intervalos de Impresión"
+msgstr "Moĩ kuatiajopy pegua"
#: CalcCommands.xcu
msgctxt ""
@@ -1517,7 +1508,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cycle Cell Reference Types"
-msgstr ""
+msgstr "Remyẽngóvia moñe'ẽrã apytegui koty'i pegua"
#: CalcCommands.xcu
msgctxt ""
@@ -1589,7 +1580,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Down"
-msgstr ""
+msgstr "Ñemyanyhẽ yvý gotyo"
#: CalcCommands.xcu
msgctxt ""
@@ -1607,7 +1598,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Right"
-msgstr ""
+msgstr "Remyenyhẽ ~Akatúa gotýo"
#: CalcCommands.xcu
msgctxt ""
@@ -1625,7 +1616,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Up"
-msgstr ""
+msgstr "Remyenyhẽ ~Yvate gotýo"
#: CalcCommands.xcu
msgctxt ""
@@ -1643,7 +1634,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Left"
-msgstr ""
+msgstr "Remyenyhẽ ~Asúpe gotýo"
#: CalcCommands.xcu
msgctxt ""
@@ -1679,7 +1670,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Sheets..."
-msgstr ""
+msgstr "Remyenyhẽ ~Rogue kuéra..."
#: CalcCommands.xcu
msgctxt ""
@@ -1697,7 +1688,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill S~eries..."
-msgstr ""
+msgstr "Remyenyhẽ ~Series..."
#: CalcCommands.xcu
msgctxt ""
@@ -1715,7 +1706,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill R~andom Number..."
-msgstr ""
+msgstr "Remyenyhẽ Papapy sapy'a py'agua…"
#: CalcCommands.xcu
msgctxt ""
@@ -1805,7 +1796,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paired ~t-test..."
-msgstr ""
+msgstr "Ñeha'ã ~t mbojoyvy"
#: CalcCommands.xcu
msgctxt ""
@@ -1823,7 +1814,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Z-test..."
-msgstr ""
+msgstr "Ñeha'ã ~Z "
#: CalcCommands.xcu
msgctxt ""
@@ -1841,7 +1832,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~ourier Analysis..."
-msgstr ""
+msgstr "Hesa'yjo Forier pegua"
#: CalcCommands.xcu
msgctxt ""
@@ -1868,7 +1859,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Data ~Validation..."
-msgstr ""
+msgstr "~Moneĩ tembikuaaty pegua"
#: CalcCommands.xcu
msgctxt ""
@@ -1913,7 +1904,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Record"
-msgstr ""
+msgstr "~Ñeñongatu"
#: CalcCommands.xcu
msgctxt ""
@@ -1922,7 +1913,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Record Track Changes"
-msgstr ""
+msgstr "Ñeñongatu ñemyãtyvõvaekue"
#: CalcCommands.xcu
msgctxt ""
@@ -1931,7 +1922,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Show..."
-msgstr ""
+msgstr "~Jechauka.."
#: CalcCommands.xcu
msgctxt ""
@@ -1940,7 +1931,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Track Changes"
-msgstr ""
+msgstr "Jechauka ñemyãtyvõvaekue"
#: CalcCommands.xcu
msgctxt ""
@@ -1988,24 +1979,22 @@ msgid "Hide Comment"
msgstr "Mokañy Oje'éva"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ShowAllNotes\n"
"Label\n"
"value.text"
msgid "Show All Comments"
-msgstr "Hechauka Oje'éva"
+msgstr "Hechauka enteróve Oje'éva"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:HideAllNotes\n"
"Label\n"
"value.text"
msgid "Hide All Comments"
-msgstr "Hechauka Oje'éva"
+msgstr "Remoñemimbaite umi oje'éva"
#: CalcCommands.xcu
msgctxt ""
@@ -2059,7 +2048,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "View Headers"
-msgstr ""
+msgstr "Hecha myakãha"
#: CalcCommands.xcu
msgctxt ""
@@ -2167,7 +2156,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Manage..."
-msgstr ""
+msgstr "~Sambyhy..."
#: CalcCommands.xcu
msgctxt ""
@@ -2176,7 +2165,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Manage Track Changes"
-msgstr ""
+msgstr "Cambios de seguimiento del gerente"
#: CalcCommands.xcu
msgctxt ""
@@ -2185,7 +2174,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Comment..."
-msgstr ""
+msgstr "~Oje'éva "
#: CalcCommands.xcu
msgctxt ""
@@ -2194,7 +2183,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Track Change Comment"
-msgstr ""
+msgstr "Mbojoapy oje'evaekúe moambuére"
#: CalcCommands.xcu
msgctxt ""
@@ -2401,7 +2390,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Co~lumns Before"
-msgstr ""
+msgstr "Emoĩnge petĩ ytarysýive henondepe "
#: CalcCommands.xcu
msgctxt ""
@@ -2410,7 +2399,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Columns ~Before"
-msgstr ""
+msgstr "ytarysýimboyve"
#: CalcCommands.xcu
msgctxt ""
@@ -2419,7 +2408,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Insert Columns ~Before"
-msgstr ""
+msgstr "Emoĩnge peteĩ ytarysyive henondépe"
#: CalcCommands.xcu
msgctxt ""
@@ -2455,7 +2444,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Co~lumns After"
-msgstr ""
+msgstr "Emoĩnge peteĩ ytarysýve henondeotóve"
#: CalcCommands.xcu
msgctxt ""
@@ -2464,7 +2453,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Columns ~After"
-msgstr ""
+msgstr "Ytarysýive uperire"
#: CalcCommands.xcu
msgctxt ""
@@ -2473,7 +2462,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Insert Columns ~After"
-msgstr ""
+msgstr "Remoĩve ytarysýive uperire"
#: CalcCommands.xcu
msgctxt ""
@@ -2485,14 +2474,13 @@ msgid "Insert ~Sheet..."
msgstr "Moinge ~Togue..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertSheetFromFile\n"
"Label\n"
"value.text"
msgid "Insert Shee~t from File..."
-msgstr "Moinge ~Rogue Ñongatuha guive..."
+msgstr "Moinge ~Rogue Maranduaty guive..."
#: CalcCommands.xcu
msgctxt ""
@@ -2537,7 +2525,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Manage Names..."
-msgstr ""
+msgstr "Terakuéra Ñembohápe..."
#: CalcCommands.xcu
msgctxt ""
@@ -2546,7 +2534,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert Named Range or Expression..."
-msgstr ""
+msgstr "~Emoĩnge pa'ũ terã terakuéra oje'evaekúe"
#: CalcCommands.xcu
msgctxt ""
@@ -2555,7 +2543,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Named Range or Expression..."
-msgstr ""
+msgstr "Pa'ũ terã terakuera oje'éva ndíve"
#: CalcCommands.xcu
msgctxt ""
@@ -2834,7 +2822,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hide Sheet"
-msgstr ""
+msgstr "Re~gañy hogue"
#: CalcCommands.xcu
msgctxt ""
@@ -21178,6 +21166,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/gug/sc/messages.po b/source/gug/sc/messages.po
index c8be7a752b9..327c6b89c2f 100644
--- a/source/gug/sc/messages.po
+++ b/source/gug/sc/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-02 16:29+0000\n"
-"Last-Translator: porfiria <porrego9@gmail.com>\n"
+"PO-Revision-Date: 2019-07-31 10:28+0000\n"
+"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gug\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: 1562084960.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564568891.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -836,6 +836,9 @@ msgid ""
"an existing name and may not contain the characters [ ] * ? : / \\ \n"
"or the character ' (apostrophe) as first or last character."
msgstr ""
+"Kuatia rogue rèra ndovalèi .\n"
+"Ko tèra ndaikatùi opyta nandi ni oñemboheta mba'veichagua togue\n"
+"ni ndoguerekòiva'erã ko'a ñemboheko [ ] * ? : / \\ ñepyrũ tèrã ipahàpe."
#: sc/inc/globstr.hrc:185
msgctxt "STR_SCENARIO"
@@ -1490,8 +1493,8 @@ msgstr "Yvatekue"
msgctxt "STR_SCATTR_PAGE_SCALE_PAGES"
msgid "One page"
msgid_plural "%1 pages"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Peteĩ kuatiarogue"
+msgstr[1] "%1 kuatiaroguekuèra"
#: sc/inc/globstr.hrc:323
msgctxt "STR_SCATTR_PAGE_SCALE_AUTO"
@@ -1546,7 +1549,7 @@ msgstr "en"
#: sc/inc/globstr.hrc:333
msgctxt "STR_RELOAD_TABLES"
msgid "Automatic update of external links has been disabled."
-msgstr ""
+msgstr "Oñembogue jeapo jehegui joaju okapegua"
#: sc/inc/globstr.hrc:334
msgctxt "STR_REIMPORT_AFTER_LOAD"
@@ -1774,6 +1777,10 @@ msgid ""
"Exit change recording mode?\n"
"\n"
msgstr ""
+"Ko tembiapo omombàta ambue ñongatupỳicha\n"
+"Oñehundipaitèta marandu moambuekuèra rehegua \n"
+"¿Resẽsepa moambue ñongatuhàgui ?\n"
+"\n"
#: sc/inc/globstr.hrc:376
msgctxt "STR_CLOSE_ERROR_LINK"
@@ -1873,7 +1880,7 @@ msgstr "Las matrices oñeñangareko va'ekue ndojeomoneĩ."
#: sc/inc/globstr.hrc:395
msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
msgid "Unsupported inline array content."
-msgstr ""
+msgstr "Noñemoñeĩri matriz ojuajùvapegua"
#: sc/inc/globstr.hrc:396
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
@@ -2295,7 +2302,7 @@ msgstr "ha"
#: sc/inc/globstr.hrc:471
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
-msgstr ""
+msgstr "Ndaikatúi ojejapo,oñembogue terã oñemoambue apopy ojehaiva'ekue togue ñangarekopýpe."
#: sc/inc/globstr.hrc:472
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
@@ -2326,6 +2333,8 @@ msgid ""
"\n"
"Do you want to recalculate all formula cells now?"
msgstr ""
+"ko kuatia oñeñongatu kuri Excel file format(.xisx).ysaja rekópe.oĩ kotyjopy apopytee reve ikatúva ome'ẽ ambue mba'e ojejaposejeývo\n"
+"Eñakãngeta'apose jeýpa kotyjopy oĩva guive apopytee reve"
#: sc/inc/globstr.hrc:475
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
diff --git a/source/gug/sd/messages.po b/source/gug/sd/messages.po
index 8c5b4f93cd0..5b8eb1a382b 100644
--- a/source/gug/sd/messages.po
+++ b/source/gug/sd/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-06-28 16:09+0000\n"
-"Last-Translator: porfiria <porrego9@gmail.com>\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-26 16:41+0000\n"
+"Last-Translator: Porfiria Orrego <porrego9@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gug\n"
"MIME-Version: 1.0\n"
@@ -14,32 +14,32 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1561738179.000000\n"
+"X-POOTLE-MTIME: 1564159296.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
-msgstr "Diapositivas"
+msgstr "Ta'angajo'a"
#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
-msgstr "Folletos"
+msgstr "Kuatiaty'i"
#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
-msgstr "Notas"
+msgstr "Maranduhaiaty"
#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
-msgstr "Trazado"
+msgstr "Apytu'ũ roky"
#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
-msgstr "Oñemohenda porã haguaicha"
+msgstr "Moha'ánga oĩhaguaícha "
#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
@@ -49,67 +49,67 @@ msgstr "1"
#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
-msgstr "2"
+msgstr " 2"
#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
-msgstr "3"
+msgstr " 3"
#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
-msgstr "4"
+msgstr " 4"
#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
-msgstr "6"
+msgstr " 6"
#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
-msgstr "9"
+msgstr " 9"
#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
-msgstr "Asú akatúa ha yvy gotyo"
+msgstr " Asu guive akatua ha yvy gotyo"
#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
-msgstr "Yvatégui yvy gotyo ha upéi akatúa gotyo"
+msgstr " Yvategui yvy gotyo ha akatua gotyo"
#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
-msgstr "Sa'y ypy"
+msgstr " Sa'y ypy"
#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
-msgstr "Escala hũndy"
+msgstr "Sa'y hũndykuéra"
#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
-msgstr "Hũ ha morotĩ"
+msgstr "Morõtĩ ha hũ"
#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
-msgstr "Tamaño original"
+msgstr " Tuichakue ypykue"
#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
-msgstr "Emohenda oike hagua ikuatiahai haguãme "
+msgstr " Embojoja porã oñembokuatia haguame"
#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
-msgstr "Me'e heta rogue kuatiágui"
+msgstr " Emyasãi heta kuatiaroguépe"
#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
@@ -5400,9 +5400,9 @@ msgstr "Jehechajey"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Myatyrõ"
@@ -5477,8 +5477,8 @@ msgid "_Edit"
msgstr "~Editar"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5495,58 +5495,58 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Ta'anga"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Sa'y"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Multimedia"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Ehasa diapositívape"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Ma_rco"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Hecha"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Rogue Master"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Moinge"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/gug/sw/messages.po b/source/gug/sw/messages.po
index 15475c813d3..ff934ca3411 100644
--- a/source/gug/sw/messages.po
+++ b/source/gug/sw/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
-"Last-Translator: dejesusaquino <josesitopechocho197@gmail.com>\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
+"Last-Translator: pastora <pastora.leguizamon@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gug\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: 1561738769.000000\n"
+"X-POOTLE-MTIME: 1564159023.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -283,60 +283,51 @@ msgid "Error reading file."
msgstr "oiko Jejavy oñemoñe'ẽjave ñongatuha."
#: sw/inc/error.hrc:35
-#, fuzzy
msgctxt "RID_SW_ERRHDL"
msgid "This is not a valid WinWord6 file."
-msgstr "WinWord6 marandurenda oikóva."
+msgstr "kóva ndaha'éi maranduaty WinWord6 válido rehegua"
#: sw/inc/error.hrc:36
-#, fuzzy
msgctxt "RID_SW_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
-msgstr "Jejavy formatope ñongatuhágui ojetopa va'ekue en $(ARG1)(fila,col)."
+msgstr "Ojejuhu peteĩ jejavy ysajareko rehegua ñongatuhágui $(ARG1)(fila,col) . pe"
#: sw/inc/error.hrc:37
-#, fuzzy
msgctxt "RID_SW_ERRHDL"
msgid "This is not a valid WinWord97 file."
-msgstr "WinWord6 marandurenda oiko'ỹva."
+msgstr "Kóva ndaha'éi peteĩ marandurenda WinWord97 rehegua oĩporãva"
#: sw/inc/error.hrc:38 sw/inc/error.hrc:57
-#, fuzzy
msgctxt "RID_SW_ERRHDL"
msgid "Format error discovered in the file in sub-document $(ARG1) at $(ARG2)(row,col)."
-msgstr "Jejavy formatogui ojetopá va'ekue ñongatuhape sub-documentope $(ARG1) en $(ARG2)(tysỹi,col)."
+msgstr "Jejavy ysajareko ojejuhuva'ekue marandurenda kuatiamirĩ $(ARG1) en $(ARG2)(tysỹi,col).- me"
#. Export-Errors
#: sw/inc/error.hrc:40
-#, fuzzy
msgctxt "RID_SW_ERRHDL"
msgid "Error writing file."
-msgstr "Jejavy jahaijave ñongatuha."
+msgstr "Jejavy marandurenda ojehaívo"
#: sw/inc/error.hrc:41
-#, fuzzy
msgctxt "RID_SW_ERRHDL"
msgid "Wrong AutoText document version."
-msgstr "Versión heko katu'ỹ documentogui moñe'ẽrã automático."
+msgstr "Kuatia noĩporãiva moñe'ẽrã ijeheguireíva rehegua."
#: sw/inc/error.hrc:42 sw/inc/error.hrc:56
-#, fuzzy
msgctxt "RID_SW_ERRHDL"
msgid "Error in writing sub-document $(ARG1)."
-msgstr "Jejavy ojehairõ sub-documento $(ARG1)."
+msgstr "Jejavy ojehairõ kuatiamirĩ $(ARG1)."
#. Import-/Export-Errors
#: sw/inc/error.hrc:44 sw/inc/error.hrc:45
-#, fuzzy
msgctxt "RID_SW_ERRHDL"
msgid "Internal error in %PRODUCTNAME Writer file format."
-msgstr "Hyepy jejavy fomatope ñongatuhagui %PRODUCTNAME Writer."
+msgstr "Jejavy ysajareko ryepýpe marandurenda %PRODUCTNAMEWriter. - pegua"
#: sw/inc/error.hrc:46
-#, fuzzy
msgctxt "RID_SW_ERRHDL"
msgid "$(ARG1) has changed."
-msgstr "$(ARG1) ojemoambue va'ekue."
+msgstr "$(ARG1) oñemoambue."
#: sw/inc/error.hrc:47
msgctxt "RID_SW_ERRHDL"
@@ -344,22 +335,19 @@ msgid "$(ARG1) does not exist."
msgstr "$(ARG1) ndoĩrĩ."
#: sw/inc/error.hrc:48
-#, fuzzy
msgctxt "RID_SW_ERRHDL"
msgid "Cells cannot be further split."
-msgstr "Koty'i kuéra nikatúi odividive."
+msgstr "Koty'ikuéra ndaikatúi oñemboja'ove."
#: sw/inc/error.hrc:49
-#, fuzzy
msgctxt "RID_SW_ERRHDL"
msgid "Additional columns cannot be inserted."
-msgstr "Nikatúi moinge colúmnasve."
+msgstr "Ndaikatúi oñemoingeve ytarysýikuéra"
#: sw/inc/error.hrc:50
-#, fuzzy
msgctxt "RID_SW_ERRHDL"
msgid "The structure of a linked table cannot be modified."
-msgstr "Nikatúi moambue estructura peteĩ tabla amoirũgui va'ekue."
+msgstr "Ndaikatúi oñemoambue peteĩ jeporekaryru omoirũva ryepy."
#: sw/inc/error.hrc:52
#, fuzzy
@@ -8419,7 +8407,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Eiporavo Ítem: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
#, fuzzy
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
diff --git a/source/he/cui/messages.po b/source/he/cui/messages.po
index 800ae36d6e4..c40226e8a6f 100644
--- a/source/he/cui/messages.po
+++ b/source/he/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4469,147 +4469,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9489,76 +9489,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "עזרה"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "שימוש בדו-שיח ‏‪%PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "פתיחת/שמירת דו שיח"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "שימוש בדו-שיח ‏‪%PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "תיבות דו־שיח הדפסה"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "הדפסת המסמך משנה את מצב ה'המסמך השתנה' שלו"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "מצב מסמך"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "וגם "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "שנה (שתי ספרות)‏"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "טעינת ‏‪%PRODUCTNAME‬‏ במהלך עליית המערכת"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "הפעלת מאיץ האתחול"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "הפעלה מהירה של ‏‪%PRODUCTNAME‏"
@@ -13259,12 +13259,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 1d7213785bb..ad835ab327b 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21312,6 +21312,24 @@ msgstr "תרומה ל־LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/he/sd/messages.po b/source/he/sd/messages.po
index 01bcf93e19d..2933659bb1d 100644
--- a/source/he/sd/messages.po
+++ b/source/he/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5490,9 +5490,9 @@ msgstr "סקירה"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5570,8 +5570,8 @@ msgid "_Edit"
msgstr "~עריכה"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "רשת"
@@ -5587,60 +5587,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "גרפי"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "צבע"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "מדיה"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "תצוגת שקופיות"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "מ_סגרת"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "תצוגה"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "עמודי מאסטר"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "הו_ספה"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/he/sw/messages.po b/source/he/sw/messages.po
index 0b8c0f677c2..6ff802aa6e1 100644
--- a/source/he/sw/messages.po
+++ b/source/he/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8611,7 +8611,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "יש לבחור פריט: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "עריכה"
diff --git a/source/hi/cui/messages.po b/source/hi/cui/messages.po
index 83f04785031..6bbcc708c26 100644
--- a/source/hi/cui/messages.po
+++ b/source/hi/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4506,147 +4506,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9599,76 +9599,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदद"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME संवाद का प्रयोग करें (_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "संवाद खोलें/सहेजें"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME डायलॉग का प्रयोग करें (_d)"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "डायलॉग छापें"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "छपाई \"दस्तावेज़ सुधार किया\" वस्तुस्थिति सेट करता है (_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "दस्तावेज़ वस्तुस्थिति"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "और "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "वर्ष (दो अंक में)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME को तंत्र प्रारंभ होने के समय लोड करें"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "सिसट्रै क्विकस्टार्टर सक्रिय करें"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME द्रुत आरंभकर्ता"
@@ -13374,12 +13374,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 7d56188b56c..ada8a5d111f 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -21342,6 +21342,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/hi/sd/messages.po b/source/hi/sd/messages.po
index 43e7c823c62..3b6d70fe4d8 100644
--- a/source/hi/sd/messages.po
+++ b/source/hi/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5527,9 +5527,9 @@ msgstr "समीक्षा"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5606,8 +5606,8 @@ msgid "_Edit"
msgstr "संपादन (~E)"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "जाली (_G)"
@@ -5623,59 +5623,59 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "आलेखी"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "रंग"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "मीडिया"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "स्लाइड दिखाएँ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "ढ़ाचां"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "दृश्य"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "मुख्य पृष्ठ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "जोड़ें (_I)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/hi/sw/messages.po b/source/hi/sw/messages.po
index 978b30768ce..da7577d4b12 100644
--- a/source/hi/sw/messages.po
+++ b/source/hi/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -8668,7 +8668,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "मद चुनें: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
#, fuzzy
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
diff --git a/source/hr/chart2/messages.po b/source/hr/chart2/messages.po
index 4782422c9fe..56ef6643f81 100644
--- a/source/hr/chart2/messages.po
+++ b/source/hr/chart2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-17 00:43+0000\n"
+"PO-Revision-Date: 2019-07-18 10:29+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563324230.000000\n"
+"X-POOTLE-MTIME: 1563445756.000000\n"
#: chart2/inc/chart.hrc:17
msgctxt "tp_ChartType|liststore1"
@@ -636,7 +636,7 @@ msgid ""
"Ignore this change and close the dialog?"
msgstr ""
"Vaš zadnji unos je bio neispravan.\n"
-"Ignorirati ovu promjenu i zatvoriti dijaloški okvir?"
+"Zanemariti ovu promjenu i zatvoriti dijaloški okvir?"
#: chart2/inc/strings.hrc:143
msgctxt "STR_TEXT_DIRECTION_LTR"
diff --git a/source/hr/cui/messages.po b/source/hr/cui/messages.po
index fcef1872b9c..06d1ea91943 100644
--- a/source/hr/cui/messages.po
+++ b/source/hr/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-17 01:31+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-19 14:09+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563327064.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1563545359.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -265,7 +265,7 @@ msgstr "Ovo će obrisati sve izmjene prethodno napravljene na ovoj alatnoj traci
#: cui/inc/strings.hrc:66
msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT_MENU"
msgid "This will delete all changes previously made to this context menu. Do you really want to reset?"
-msgstr "Ovo će obrisati sve promjene prethodno napravljena na ovom kontekstualnome izborniku. Želite li vratiti zadane postavke?"
+msgstr "Ovo će obrisati sve promjene prethodno napravljena na ovom kontekstnom izborniku. Želite li vratiti zadane postavke?"
#: cui/inc/strings.hrc:67
msgctxt "RID_SVXSTR_MNUCFG_ALREADY_INCLUDED"
@@ -588,7 +588,7 @@ msgstr "Ispiši dokument"
#: cui/inc/strings.hrc:136
msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
msgid "'Modified' status was changed"
-msgstr "Stanje „Izmijenjeno” je promijenjeno"
+msgstr "Stanje „Promijenjeno” je promijenjeno"
#: cui/inc/strings.hrc:137
msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
@@ -773,7 +773,7 @@ msgstr "Prije slanja"
#: cui/inc/strings.hrc:173
msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
msgid "Text modified"
-msgstr "Tekst je izmijenjen"
+msgstr "Tekst promijenjen"
#: cui/inc/strings.hrc:174
msgctxt "RID_SVXSTR_EVENT_UNLOADING"
@@ -978,7 +978,7 @@ msgstr "Dodaj sliku"
#: cui/inc/strings.hrc:218
msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
-msgstr "Potvrđujuća lozinka ne odgovara lozinki. Ponovno postavite lozinku upisujući istu lozinku u oba polja."
+msgstr "Potvrdna lozinka se ne poklapa s lozinkom. Ponovo postavite lozinku, upisom iste lozinke u oba polja."
#: cui/inc/strings.hrc:219
msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
@@ -993,7 +993,7 @@ msgstr "Upišite lozinku za otvaranje ili izmjenu, ili za nastavak označite mog
#: cui/inc/strings.hrc:221
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
msgid "Set the password by entering the same password in both boxes."
-msgstr "Postavite lozinku upisujući istu lozinku u oba polja."
+msgstr "Postavite lozinku, upisom iste lozinke u oba polja."
#: cui/inc/strings.hrc:223
msgctxt "STR_AUTOLINK"
@@ -1596,12 +1596,12 @@ msgstr "Mjerna crta"
#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
-msgstr "Otvaranje navodnih znakova"
+msgstr "Otvarajući navodnici"
#: cui/inc/strings.hrc:362
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
-msgstr "Zatvaranje navodnih znakova"
+msgstr "Zatvarajući navodnici"
#: cui/inc/strings.hrc:364
msgctxt "RID_SVXSTR_SELECTEDPERSONA"
@@ -1905,7 +1905,7 @@ msgstr "Želite li znati ispravne parametre naredbenog retka? Pokrenite soffice
#: cui/inc/tipoftheday.hrc:64
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
-msgstr "Želite li upravljati predstavljanjem poveznica u radnom listu? Umetnite ih koristeći funkciju POVEZNICA."
+msgstr "Želite upravljati izgeldom poveznica u proračunskoj tablici? Umetnite ih koristeći funkciju POVEZNICA."
#. local help missing
#: cui/inc/tipoftheday.hrc:65
@@ -2738,7 +2738,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the default function in the status bar: right click on the area."
-msgstr ""
+msgstr "Zadanu funkciju možete promijeniti u statusnoj traci: desnom tipkom miša kliknite na područje."
#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2798,7 +2798,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? Alt+arrow Keys move objects (shape, picture, formula) by one pixel."
-msgstr ""
+msgstr "Želite precizno pozicionirati neki element? Tipke Alt+strelice pomiču objekte (oblik, sliku, formulu) za jedan piksel."
#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2814,12 +2814,12 @@ msgstr "Promijenite prikaz na nazive polja ili na stvarne vrijednosti, pomoću P
#, c-format
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Creating a Style based on another, you can enter a percentage value or a point value (e.g. 110% or -2pt or +5pt)."
-msgstr ""
+msgstr "Stvaranje stila na temelju jednog drugog stila, možete unijeti postotnu vrijednost ili vrijednost u točkama (npr. 110% ili -2pt ili +5pt)."
#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
-msgstr ""
+msgstr "Želite li se vratiti na zadano nakon primjene stila za popis? Na alatnoj traci Oblikovanje, uključite/isključite Predznaci ili Numeriranje."
#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2874,7 +2874,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in the selection, press / (divide key) on the number pad. Press * to restore entire page in screen."
-msgstr "Za brzo zumiranje na odabir, pritisnite / (tipku s kosom crtom) na brojčanoj tipkovnici. Pritisnite * (zvijezdicu) za vraćanje prikaza cijele stranice na zaslonu."
+msgstr "Za brzo zumiranje na odabir, pritisnite / (tipku s kosom crtom) na brojčanoj tipkovnici. Pritisnite * (tipku sa zvijezdicom) za vraćanje prikaza cijele stranice na zaslonu."
#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -3614,12 +3614,12 @@ msgstr "_Zamijeni"
#: cui/uiconfig/ui/applylocalizedpage.ui:234
msgctxt "applylocalizedpage|startquoteft"
msgid "_Start quote:"
-msgstr "Otvaranje navodnih _znakova:"
+msgstr "_Otvarajući navodnici:"
#: cui/uiconfig/ui/applylocalizedpage.ui:257
msgctxt "applylocalizedpage|startsingle-atkobject"
msgid "Start quote of single quotes"
-msgstr "Početak citata jednostrukim navodnicima"
+msgstr "Jednostruki otvarajući navodnici"
#: cui/uiconfig/ui/applylocalizedpage.ui:270
msgctxt "applylocalizedpage|singlestartex"
@@ -3634,17 +3634,17 @@ msgstr "_Uobičajeno"
#: cui/uiconfig/ui/applylocalizedpage.ui:294
msgctxt "applylocalizedpage|defaultsingle-atkobject"
msgid "Single quotes default"
-msgstr "Jednostruki navodnici kao zadani"
+msgstr "Jednostruki navodnici, zadani"
#: cui/uiconfig/ui/applylocalizedpage.ui:307
msgctxt "applylocalizedpage|endquoteft"
msgid "_End quote:"
-msgstr "Zatvaranj_e navodnih znakova:"
+msgstr "_Zatvarajući navodnici:"
#: cui/uiconfig/ui/applylocalizedpage.ui:330
msgctxt "applylocalizedpage|endsingle-atkobject"
msgid "End quote of single quotes"
-msgstr "Kraj citata jednostrukim navodnicima"
+msgstr "Jednostruki zatvarajući navodnici"
#: cui/uiconfig/ui/applylocalizedpage.ui:343
msgctxt "applylocalizedpage|singleendex"
@@ -3664,12 +3664,12 @@ msgstr "_Zamijeni"
#: cui/uiconfig/ui/applylocalizedpage.ui:412
msgctxt "applylocalizedpage|label6"
msgid "_Start quote:"
-msgstr "Otvaranje _navodnih znakova:"
+msgstr "_Otvarajući navodnici:"
#: cui/uiconfig/ui/applylocalizedpage.ui:435
msgctxt "applylocalizedpage|startdouble-atkobject"
msgid "Start quote of double quotes"
-msgstr "Početak citata dvostrukim navodnicima"
+msgstr "Dvostruki otvarajući navodnici"
#: cui/uiconfig/ui/applylocalizedpage.ui:448
msgctxt "applylocalizedpage|doublestartex"
@@ -3684,17 +3684,17 @@ msgstr "_Uobičajeno"
#: cui/uiconfig/ui/applylocalizedpage.ui:472
msgctxt "applylocalizedpage|defaultdouble-atkobject"
msgid "Double quotes default"
-msgstr "Dvostruki navodnici kao zadani"
+msgstr "Dvostruki navodnici, zadani"
#: cui/uiconfig/ui/applylocalizedpage.ui:485
msgctxt "applylocalizedpage|label8"
msgid "_End quote:"
-msgstr "Za_tvaranje navodnih znakova:"
+msgstr "_Zatvarajući navodnici:"
#: cui/uiconfig/ui/applylocalizedpage.ui:508
msgctxt "applylocalizedpage|enddouble-atkobject"
msgid "End quote of double quotes"
-msgstr "Kraj citata dvostrukim navodnicima"
+msgstr "Dvostruki zatvarajući navodnici"
#: cui/uiconfig/ui/applylocalizedpage.ui:521
msgctxt "applylocalizedpage|doubleendex"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Predznaci i numeriranje"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Razina"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Vrsta:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Započni na:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Znak:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Odaberi …"
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Odaberi sliku …"
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Širina:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Visina:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Zadrži omjer"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Ispred:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Iza:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Razdjeljivač"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Boja:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "_Rel. veličina:"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Uvlaka:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Širina:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "Relati_vno"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Položaj"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Poravnanje"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Slajd"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Odabir"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Primijeni na glavni"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Opseg"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Svojstva"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Pregled"
@@ -6534,7 +6534,7 @@ msgstr "_Dodaj sve"
#: cui/uiconfig/ui/gallerygeneralpage.ui:21
msgctxt "gallerygeneralpage|label1"
msgid "Modified:"
-msgstr "Mijenjano:"
+msgstr "Promijenjeno:"
#: cui/uiconfig/ui/gallerygeneralpage.ui:56
msgctxt "gallerygeneralpage|label2"
@@ -8067,7 +8067,7 @@ msgstr "_Uobičajeno"
#: cui/uiconfig/ui/menuassignpage.ui:730
msgctxt "menuassignpage|defaultsbtn"
msgid "Resets the selected toolbar, menu, or context menu to its default state."
-msgstr "Vraćanje postavki odabrane alatne trake, izbornika ili kontekstualnoga izbornika."
+msgstr "Vraćanje postavki odabrane alatne trake, izbornika ili kontekstnog izbornika."
#: cui/uiconfig/ui/menuassignpage.ui:764
msgctxt "menuassignpage|add"
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pomoć"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Koristi %PRODUCTNAME dijaloške okvire"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Otvori/Spremi dijaloške okvire"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Koristi %PRODUCTNAME _dijaloške okvire"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dijaloški okviri za ispis"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
-msgstr "Is_pis mijenja stanje dokumenta u 'dokument izmijenjen'"
+msgstr "_Ispis postavlja stanje „Dokument promijenjen”"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stanje dokumenta"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Kao godine tumači brojeve između "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "i "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Godina (dvije znamenke)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Prikupljaj podatke o korištenju i šalji ih organizaciji The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pomozite poboljšati %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Učitaj %PRODUCTNAME tijekom podizanja sustava"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Omogući brzo pokretanje iz sistemske trake"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Brzo pokretanje"
@@ -9656,7 +9656,7 @@ msgstr "_Promijeni..."
#: cui/uiconfig/ui/optonlineupdatepage.ui:220
msgctxt "optonlineupdatepage|extrabits"
msgid "_Send OS version and basic hardware information"
-msgstr "Pošalji inačicu operacijskog _sustava i informacije o hardveru"
+msgstr "Pošalji informacije o inačici operativnog _sustava i o hardveru"
#: cui/uiconfig/ui/optonlineupdatepage.ui:224
msgctxt "optonlineupdatepage|extrabits|tooltip_text"
@@ -10278,7 +10278,7 @@ msgstr "Koristi OpenGL za sva iscrtavanja"
#: cui/uiconfig/ui/optviewpage.ui:96
msgctxt "optviewpage|forceopengl"
msgid "Ignore OpenGL blacklist"
-msgstr "Ignoriraj OpenGL-ov popis nepoželjnih"
+msgstr "Zanemari OpenGL-ov popis nepoželjnih"
#: cui/uiconfig/ui/optviewpage.ui:101
msgctxt "optviewpage|forceopengl|tooltip_text"
@@ -10323,7 +10323,7 @@ msgstr "Prikaži"
#: cui/uiconfig/ui/optviewpage.ui:206
msgctxt "optviewpage|label10"
msgid "Shortcuts in context menus:"
-msgstr "Prečice u kontekstualnom izborniku:"
+msgstr "Prečice u kontekstnom izborniku:"
#: cui/uiconfig/ui/optviewpage.ui:220
msgctxt "optviewpage|menuicons"
@@ -10859,12 +10859,12 @@ msgstr "Jednostruko"
#: cui/uiconfig/ui/paraindentspacing.ui:388
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "1.15 Lines"
-msgstr "1.15 retka"
+msgstr "1,15 retka"
#: cui/uiconfig/ui/paraindentspacing.ui:389
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "1.5 Lines"
-msgstr "1.5 retka"
+msgstr "1,5 retka"
#: cui/uiconfig/ui/paraindentspacing.ui:390
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
@@ -11364,7 +11364,7 @@ msgstr "Spremiti vrh strelice?"
#: cui/uiconfig/ui/querychangelineenddialog.ui:14
msgctxt "querychangelineenddialog|AskChangeLineEndDialog"
msgid "The arrowhead was modified without saving."
-msgstr "Vrh strelice je izmjenjen bez spremanja."
+msgstr "Vrh strelice je promijenjen bez spremanja."
#: cui/uiconfig/ui/querychangelineenddialog.ui:15
msgctxt "querychangelineenddialog|AskChangeLineEndDialog"
@@ -11509,7 +11509,7 @@ msgstr "Spremiti popis?"
#: cui/uiconfig/ui/querysavelistdialog.ui:14
msgctxt "querysavelistdialog|AskSaveList"
msgid "The list was modified without saving."
-msgstr "Popis je izmijenjen bez spremanja."
+msgstr "Popis je promijenjen bez spremanja."
#: cui/uiconfig/ui/querysavelistdialog.ui:15
msgctxt "querysavelistdialog|AskSaveList"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Sljedeći savjet"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Jeste li znali?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Poveznica"
diff --git a/source/hr/dbaccess/messages.po b/source/hr/dbaccess/messages.po
index ae5f7a15e16..639eb77b9ab 100644
--- a/source/hr/dbaccess/messages.po
+++ b/source/hr/dbaccess/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-16 21:03+0000\n"
+"PO-Revision-Date: 2019-07-19 12:50+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563310997.000000\n"
+"X-POOTLE-MTIME: 1563540608.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -83,7 +83,7 @@ msgstr ""
#: dbaccess/inc/strings.hrc:34
msgctxt "RID_STR_NO_VALUE_CHANGED"
msgid "No values were modified."
-msgstr "Niti jedna vrijednost nije izmjijenjena."
+msgstr "Nijedna vrijednost nije promijenjena."
#: dbaccess/inc/strings.hrc:35
msgctxt "RID_STR_NO_XROWUPDATE"
@@ -98,7 +98,7 @@ msgstr "Vrijednosti se ne mogu unositi. ResultSet ne podržava XResultSetUpdate
#: dbaccess/inc/strings.hrc:37
msgctxt "RID_STR_NO_UPDATE_MISSING_CONDITION"
msgid "Values could not be modified, due to a missing condition statement."
-msgstr "Vrijednosti se nemogu izmijeniti, zbog izraza uvijeta koji nedostaje."
+msgstr "Vrijednosti se ne mogu promijeniti, zbog nedostajućeg uvjeta."
#: dbaccess/inc/strings.hrc:38
msgctxt "RID_STR_NO_COLUMN_ADD"
@@ -169,7 +169,7 @@ msgstr "Novi redak se nemože unjeti kada se ResultSet nije prvi do reda za unos
#: dbaccess/inc/strings.hrc:51
msgctxt "RID_STR_NO_UPDATEROW"
msgid "A row cannot be modified in this state"
-msgstr "U ovoj fazi se redak ne može mijenjati"
+msgstr "U ovoj fazi se redak ne može promijeniti"
#: dbaccess/inc/strings.hrc:52
msgctxt "RID_STR_NO_DELETEROW"
@@ -1732,7 +1732,7 @@ msgstr "Put do dBASE datoteka"
#: dbaccess/inc/strings.hrc:371
msgctxt "STR_FLAT_PATH_OR_FILE"
msgid "Path to the text files"
-msgstr "Putanja do tekstnih datoteka"
+msgstr "Putanja do tekstualnih datoteka"
#: dbaccess/inc/strings.hrc:372
msgctxt "STR_CALC_PATH_OR_FILE"
@@ -1882,7 +1882,7 @@ msgstr "Postavi dBASE vezu"
#: dbaccess/inc/strings.hrc:402
msgctxt "STR_PAGETITLE_TEXT"
msgid "Set up a connection to text files"
-msgstr "Postavi vezu s tekstnim datotekama"
+msgstr "Postavi vezu s tekstualnim datotekama"
#: dbaccess/inc/strings.hrc:403
msgctxt "STR_PAGETITLE_MSACCESS"
@@ -1981,17 +1981,17 @@ msgstr "Odaberite mapu gdje su pohranjene dBASE datoteke."
#: dbaccess/inc/strings.hrc:421
msgctxt "STR_TEXT_HEADERTEXT"
msgid "Set up a connection to text files"
-msgstr "Uspostavi vezu s tekstnim datotekama"
+msgstr "Postavi vezu s tekstualnim datotekama"
#: dbaccess/inc/strings.hrc:422
msgctxt "STR_TEXT_HELPTEXT"
msgid "Select the folder where the CSV (Comma Separated Values) text files are stored. %PRODUCTNAME Base will open these files in read-only mode."
-msgstr "Odaberite mapu u kojoj su pohranjene CSV (Comma Separated Values) tekstne datoteke. %PRODUCTNAME Base će otvoriti te datoteke isključivo za čitanje."
+msgstr "Odaberite mapu u kojoj su spremljene CSV (zarezom rastavljene vrijednosti) tekstualne datoteke. %PRODUCTNAME Base će otvoriti te datoteke isključivo za čitanje."
#: dbaccess/inc/strings.hrc:423
msgctxt "STR_TEXT_PATH_OR_FILE"
msgid "Path to text files"
-msgstr "Putanja do tekstnih datoteka"
+msgstr "Putanja do tekstualnih datoteka"
#: dbaccess/inc/strings.hrc:424
msgctxt "STR_MSACCESS_HEADERTEXT"
@@ -4063,12 +4063,12 @@ msgstr "Dodaj tablicu ili upit"
#: dbaccess/uiconfig/ui/textconnectionsettings.ui:8
msgctxt "textconnectionsettings|TextConnectionSettingsDialog"
msgid "Text Connection Settings"
-msgstr "Postavke spajanja s tekstnim datotekama"
+msgstr "Postavke spajanja s tekstualnim datotekama"
#: dbaccess/uiconfig/ui/textpage.ui:38
msgctxt "textpage|textfile"
msgid "Plain text files (*.txt)"
-msgstr "Neformatirane tekstne datoteke (*.txt)"
+msgstr "Neformatirane tekstualne datoteke (*.txt)"
#: dbaccess/uiconfig/ui/textpage.ui:55
msgctxt "textpage|csvfile"
diff --git a/source/hr/desktop/messages.po b/source/hr/desktop/messages.po
index 02dcff4e837..32532841d9c 100644
--- a/source/hr/desktop/messages.po
+++ b/source/hr/desktop/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-16 19:13+0000\n"
+"PO-Revision-Date: 2019-07-18 10:27+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563304406.000000\n"
+"X-POOTLE-MTIME: 1563445670.000000\n"
#: desktop/inc/strings.hrc:25
msgctxt "RID_STR_COPYING_PACKAGE"
@@ -468,7 +468,7 @@ msgstr "Nisu dostupna nova ažuriranja."
#: desktop/inc/strings.hrc:144
msgctxt "RID_DLG_UPDATE_NOINSTALLABLE"
msgid "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'."
-msgstr "Nisu dostupne nadogradnje koje se mogu instalirati. Ukoliko želite vidjeti ignorirane ili isključene nadogradnje, označite kučicu 'Prikaži sve nadogradnje'."
+msgstr "Nema dostupnih nadogradnji, koje bi se mogle instalirati. Ukoliko želite vidjeti zanemarene ili onemogućene nadogradnje, potvrdite „Prikaži sve nadogradnje”."
#: desktop/inc/strings.hrc:145
msgctxt "RID_DLG_UPDATE_FAILURE"
@@ -513,7 +513,7 @@ msgstr "Inačica"
#: desktop/inc/strings.hrc:153
msgctxt "RID_DLG_UPDATE_IGNORED_UPDATE"
msgid "This update will be ignored.\n"
-msgstr "Ova nadogradnja će biti ignorirana.\n"
+msgstr "Ova nadogradnja će biti zanemarena.\n"
#: desktop/inc/strings.hrc:155
msgctxt "STR_BOOTSTRAP_ERR_CANNOT_START"
diff --git a/source/hr/extensions/messages.po b/source/hr/extensions/messages.po
index e124fbb8894..d01f87ecf75 100644
--- a/source/hr/extensions/messages.po
+++ b/source/hr/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-07-16 23:44+0000\n"
+"PO-Revision-Date: 2019-07-19 10:36+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563320682.000000\n"
+"X-POOTLE-MTIME: 1563532592.000000\n"
#: extensions/inc/command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -1822,12 +1822,12 @@ msgstr "Gumb"
#: extensions/inc/strings.hrc:266
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
-msgstr "Gumb izbora"
+msgstr "Izborni gumb"
#: extensions/inc/strings.hrc:267
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
-msgstr "Kvadratić"
+msgstr "Potvrdni okvir"
#: extensions/inc/strings.hrc:268
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
@@ -1837,7 +1837,7 @@ msgstr "Polje oznake"
#: extensions/inc/strings.hrc:269
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
-msgstr "Okvir grupe"
+msgstr "Grupni okvir"
#: extensions/inc/strings.hrc:270
msgctxt "RID_STR_PROPTITLE_EDIT"
@@ -2470,7 +2470,7 @@ msgstr "Čarobnjak za okvire s popisom"
#: extensions/inc/strings.hrc:396
msgctxt "RID_STR_COMBOWIZARD_TITLE"
msgid "Combo Box Wizard"
-msgstr "Čarobnjak za kombinirane izbornike"
+msgstr "Čarobnjak za kombinirane okvire"
#: extensions/inc/strings.hrc:397
msgctxt "RID_STR_COULDNOTOPENTABLE"
@@ -2490,7 +2490,7 @@ msgstr " (Vrijeme)"
#: extensions/inc/strings.hrc:402
msgctxt "RID_STR_FIELDINFO_COMBOBOX"
msgid "The contents of the field selected will be shown in the combo box list."
-msgstr "Sadržaj odabranog polja bit će prikazan u kombiniranom okviru."
+msgstr "Sadržaj odabranog polja bit će prikazan u popisu kombiniranog okvira."
#: extensions/inc/strings.hrc:403
msgctxt "RID_STR_FIELDINFO_LISTBOX"
@@ -2500,7 +2500,7 @@ msgstr "Sadržaj odabranog polja bit će prikazan u okviru s popisom, ako su pov
#: extensions/inc/strings.hrc:404
msgctxt "RID_STR_COMBOWIZ_DBFIELD"
msgid "You can either save the value of the combo box in a database field or use it for display purposes."
-msgstr "Možete spremiti vrijednost kombiniranog okvira u polje baze podataka ili ga koristiti samo za prikaz."
+msgstr "Vrijednost iz kombiniranog okvira možete spremiti u polje baze podataka ili ga koristiti samo za prikaz."
#: extensions/inc/strings.hrc:406
msgctxt "RID_STR_GROUPWIZ_DBFIELD"
diff --git a/source/hr/extras/source/autocorr/emoji.po b/source/hr/extras/source/autocorr/emoji.po
index 39684608534..7252ec7156a 100644
--- a/source/hr/extras/source/autocorr/emoji.po
+++ b/source/hr/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: 2017-12-20 08:16+0100\n"
-"PO-Revision-Date: 2019-07-06 17:42+0000\n"
+"PO-Revision-Date: 2019-07-18 09:19+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1562434920.000000\n"
+"X-POOTLE-MTIME: 1563441569.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1751,7 +1751,7 @@ msgctxt ""
"BALLOT_BOX\n"
"LngText.text"
msgid "checkbox"
-msgstr "kućica"
+msgstr "potvrdni okvir"
#. ☑ (U+02611), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1760,7 +1760,7 @@ msgctxt ""
"BALLOT_BOX_WITH_CHECK\n"
"LngText.text"
msgid "checkbox2"
-msgstr "kućica2"
+msgstr "potvrdni okvir 2"
#. ☒ (U+02612), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1769,7 +1769,7 @@ msgctxt ""
"BALLOT_BOX_WITH_X\n"
"LngText.text"
msgid "checkbox3"
-msgstr "kućica3"
+msgstr "potvrdni okvir 3"
#. ☓ (U+02613), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7403,7 +7403,7 @@ msgctxt ""
"CLOSED_MAILBOX_WITH_RAISED_FLAG\n"
"LngText.text"
msgid "mailbox2"
-msgstr "poštanski sandučić2"
+msgstr "poštanski sandučić 2"
#. 📬 (U+1F4EC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7412,7 +7412,7 @@ msgctxt ""
"OPEN_MAILBOX_WITH_RAISED_FLAG\n"
"LngText.text"
msgid "mailbox3"
-msgstr "poštanski sandučić3"
+msgstr "poštanski sandučić 3"
#. 📭 (U+1F4ED), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7421,7 +7421,7 @@ msgctxt ""
"OPEN_MAILBOX_WITH_LOWERED_FLAG\n"
"LngText.text"
msgid "mailbox4"
-msgstr "poštanski sandučić4"
+msgstr "poštanski sandučić 4"
#. 📮 (U+1F4EE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7727,7 +7727,7 @@ msgctxt ""
"RADIO_BUTTON\n"
"LngText.text"
msgid "radio button"
-msgstr "radiogumb"
+msgstr "izborni gumb"
#. 🔞 (U+1F51E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10400,7 +10400,7 @@ msgctxt ""
"BALLOT_BOX_WITH_BOLD_SCRIPT_X\n"
"LngText.text"
msgid "checkbox4"
-msgstr "kućica za označavanje4"
+msgstr "potvrdni okvir 4"
#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11570,7 +11570,7 @@ msgctxt ""
"BALLOT_BOX_WITH_BOLD_CHECK\n"
"LngText.text"
msgid "checkbox5"
-msgstr "kućica za označavanje5"
+msgstr "potvrdni okvir 5"
#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11615,7 +11615,7 @@ msgctxt ""
"BALLOT_BOX_WITH_SCRIPT_X\n"
"LngText.text"
msgid "checkbox6"
-msgstr "kućica za označavanje6"
+msgstr "potvrdni okvir 6"
#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/hr/filter/source/config/fragments/filters.po b/source/hr/filter/source/config/fragments/filters.po
index eea56ec88c5..38542f3d345 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: 2019-06-03 17:45+0200\n"
-"PO-Revision-Date: 2019-07-07 13:21+0000\n"
+"PO-Revision-Date: 2019-07-17 22:42+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1562505702.000000\n"
+"X-POOTLE-MTIME: 1563403364.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -707,7 +707,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Flat XML ODF Text Document"
-msgstr "Jednostavan XML ODF tekstni dokument"
+msgstr "Jednostavan XML ODF tekstualni dokument"
#: OOXML_Text.xcu
msgctxt ""
@@ -1040,7 +1040,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr "OpenOffice.org 1.0 tekstni dokument"
+msgstr "OpenOffice.org 1.0 tekstualni dokument"
#: T602Document.xcu
msgctxt ""
diff --git a/source/hr/forms/messages.po b/source/hr/forms/messages.po
index 489892caa2c..fcf82657d22 100644
--- a/source/hr/forms/messages.po
+++ b/source/hr/forms/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2019-07-16 16:09+0000\n"
+"PO-Revision-Date: 2019-07-19 12:50+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -14,12 +14,12 @@ 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: 1563293383.000000\n"
+"X-POOTLE-MTIME: 1563540631.000000\n"
#: forms/inc/strings.hrc:25
msgctxt "RID_BASELISTBOX_ERROR_FILLLIST"
msgid "The contents of a combo box or list field could not be determined."
-msgstr "Nije bilo moguće odrediti sadržaj padajućega izbornika ili polja popisa."
+msgstr "Sadržaj kombiniranog okvira ili polja u popisu nije bilo moguće odrediti."
#: forms/inc/strings.hrc:26
msgctxt "RID_STR_IMPORT_GRAPHIC"
@@ -127,7 +127,7 @@ msgid ""
"The content of the current form has been modified.\n"
"Do you want to save your changes?"
msgstr ""
-"Promijenjen je sadržaj trenutačnog obrasca.\n"
+"Sadržaj trenutačnog obrasca je promijenjen.\n"
"Želite li spremiti promjene?"
#: forms/inc/strings.hrc:47
diff --git a/source/hr/framework/messages.po b/source/hr/framework/messages.po
index 6c830fc7a1a..fb16d64a857 100644
--- a/source/hr/framework/messages.po
+++ b/source/hr/framework/messages.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: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2019-07-18 10:25+0000\n"
+"Last-Translator: Milo Ivir <mail@milotype.de>\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-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563445506.000000\n"
#: framework/inc/strings.hrc:25
msgctxt "STR_MENU_HEADFOOTALL"
@@ -96,7 +99,7 @@ msgstr "Dodatak %num%"
#: framework/inc/strings.hrc:41
msgctxt "STR_FULL_DISC_RETRY_BUTTON"
msgid "Retry"
-msgstr "Pokušaj ponovno"
+msgstr "Ponovi"
#: framework/inc/strings.hrc:42
msgctxt "STR_FULL_DISC_MSG"
diff --git a/source/hr/helpcontent2/source/auxiliary.po b/source/hr/helpcontent2/source/auxiliary.po
index 2aec2ab0717..77766ea6755 100644
--- a/source/hr/helpcontent2/source/auxiliary.po
+++ b/source/hr/helpcontent2/source/auxiliary.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2018-07-19 12:51+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-17 23:05+0000\n"
+"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"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: 1532004704.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563404746.000000\n"
#: sbasic.tree
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"07\n"
"help_section.text"
msgid "Macros and Scripting"
-msgstr ""
+msgstr "Makronaredbe i skriptanje"
#: sbasic.tree
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"0701\n"
"node.text"
msgid "%PRODUCTNAME BASIC"
-msgstr ""
+msgstr "%PRODUCTNAME BASIC"
#: sbasic.tree
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"070101\n"
"node.text"
msgid "General Information and User Interface Usage"
-msgstr ""
+msgstr "Opće informacije i korištenje korisničkog sučelja"
#: sbasic.tree
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"070102\n"
"node.text"
msgid "Command Reference"
-msgstr ""
+msgstr "Reference za naredbe"
#: sbasic.tree
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"07010202\n"
"node.text"
msgid "Functions, Statements, and Operators"
-msgstr ""
+msgstr "Funkcije, naredbe i operatori"
#: sbasic.tree
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"07010201\n"
"node.text"
msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr ""
+msgstr "Abecedni popis funkcija, naredbi i operatora"
#: sbasic.tree
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"07010205\n"
"node.text"
msgid "Advanced Basic Libraries"
-msgstr ""
+msgstr "Napredne Basic biblioteke"
#: sbasic.tree
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"070103\n"
"node.text"
msgid "Guides"
-msgstr ""
+msgstr "Vodilice"
#: sbasic.tree
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"0702\n"
"node.text"
msgid "Python Scripts Help"
-msgstr ""
+msgstr "Pomoć za Python skritpe"
#: sbasic.tree
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"070201\n"
"node.text"
msgid "General Information and User Interface Usage"
-msgstr ""
+msgstr "Opće informacije i korištenje korisničkog sučelja"
#: sbasic.tree
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"070202\n"
"node.text"
msgid "Programming with Python"
-msgstr ""
+msgstr "Programiranje pomoću Pythona"
#: scalc.tree
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"08\n"
"help_section.text"
msgid "Spreadsheets (Calc)"
-msgstr ""
+msgstr "Proračunske tablice (Calc)"
#: scalc.tree
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"0801\n"
"node.text"
msgid "General Information and User Interface Usage"
-msgstr ""
+msgstr "Opće informacije i korištenje korisničkog sučelja"
#: scalc.tree
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"0802\n"
"node.text"
msgid "Command and Menu Reference"
-msgstr ""
+msgstr "Reference za naredbe i izbornik"
#: scalc.tree
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"0806\n"
"node.text"
msgid "Filtering and Sorting"
-msgstr ""
+msgstr "Filtriranje i razvrstavanje"
#: scalc.tree
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"0809\n"
"node.text"
msgid "Pivot Table"
-msgstr ""
+msgstr "Pivot tablica"
#: scalc.tree
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"08091\n"
"node.text"
msgid "Pivot Chart"
-msgstr ""
+msgstr "Pivot dijagram"
#: scalc.tree
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"11\n"
"help_section.text"
msgid "Drawings (Draw)"
-msgstr ""
+msgstr "Crteži (Draw)"
#: sdraw.tree
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"1101\n"
"node.text"
msgid "General Information and User Interface Usage"
-msgstr ""
+msgstr "Opće informacije i korištenje korisničkog sučelja"
#: sdraw.tree
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"1102\n"
"node.text"
msgid "Command and Menu Reference"
-msgstr ""
+msgstr "Reference za naredbe i izbornik"
#: sdraw.tree
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"11020201\n"
"node.text"
msgid "Menus"
-msgstr ""
+msgstr "Izbornici"
#: sdraw.tree
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"11020202\n"
"node.text"
msgid "Toolbars"
-msgstr ""
+msgstr "Alatne trake"
#: sdraw.tree
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"1103\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
-msgstr ""
+msgstr "Učitavanje, spremanje, uvoz i izvoz"
#: sdraw.tree
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"1104\n"
"node.text"
msgid "Formatting"
-msgstr ""
+msgstr "Formatiranje"
#: sdraw.tree
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"1105\n"
"node.text"
msgid "Printing"
-msgstr ""
+msgstr "Ispis"
#: sdraw.tree
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"1106\n"
"node.text"
msgid "Effects"
-msgstr ""
+msgstr "Efekti"
#: sdraw.tree
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"1107\n"
"node.text"
msgid "Objects, Graphics, and Bitmaps"
-msgstr ""
+msgstr "Objekti, grafike i bitmape"
#: sdraw.tree
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"1108\n"
"node.text"
msgid "Groups and Layers"
-msgstr ""
+msgstr "Grupe i slojevi"
#: sdraw.tree
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"1109\n"
"node.text"
msgid "Text in Drawings"
-msgstr ""
+msgstr "Tekst u crtežima"
#: sdraw.tree
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"1110\n"
"node.text"
msgid "Viewing"
-msgstr ""
+msgstr "Prikazivanje"
#: shared.tree
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"01\n"
"help_section.text"
msgid "%PRODUCTNAME Installation"
-msgstr ""
+msgstr "%PRODUCTNAME instalacija"
#: shared.tree
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"1001\n"
"node.text"
msgid "General Information"
-msgstr ""
+msgstr "Opće informacije"
#: shared.tree
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"1004\n"
"node.text"
msgid "%PRODUCTNAME Options"
-msgstr ""
+msgstr "%PRODUCTNAME mogućnosti"
#: shared.tree
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"10071\n"
"node.text"
msgid "Digital Signatures"
-msgstr ""
+msgstr "Digitalni potpisi"
#: shared.tree
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"1009\n"
"node.text"
msgid "Drag & Drop"
-msgstr ""
+msgstr "Povuci i ispusti"
#: shared.tree
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"1013\n"
"node.text"
msgid "Load, Save, Import, Export"
-msgstr ""
+msgstr "Učitaj, spremi, uvoz, izvoz"
#: shared.tree
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"1019\n"
"node.text"
msgid "Automatic Functions"
-msgstr ""
+msgstr "Automatske funkcije"
#: shared.tree
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"09\n"
"help_section.text"
msgid "Database Functionality (Base)"
-msgstr ""
+msgstr "Funkcionalnost baze podataka (Base)"
#: shared.tree
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"04\n"
"help_section.text"
msgid "Presentations (Impress)"
-msgstr ""
+msgstr "Prezentacije (Impress)"
#: simpress.tree
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"0402\n"
"node.text"
msgid "Command and Menu Reference"
-msgstr ""
+msgstr "Reference za naredbe i izbornik"
#: simpress.tree
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"0409\n"
"node.text"
msgid "Text in Presentations"
-msgstr ""
+msgstr "Tekst u prezentacijama"
#: simpress.tree
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"0411\n"
"node.text"
msgid "Slide Shows"
-msgstr ""
+msgstr "Prezentacije"
#: smath.tree
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"03\n"
"help_section.text"
msgid "Formulas (Math)"
-msgstr ""
+msgstr "Formule (Math)"
#: smath.tree
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"030101\n"
"node.text"
msgid "%PRODUCTNAME Formula Elements"
-msgstr ""
+msgstr "%PRODUCTNAME elementi formula"
#: smath.tree
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"0302\n"
"node.text"
msgid "Command and Menu Reference"
-msgstr ""
+msgstr "Reference za naredbe i izbornik"
#: smath.tree
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"02\n"
"help_section.text"
msgid "Text Documents (Writer)"
-msgstr ""
+msgstr "Tekstni dokumenti (Writer)"
#: swriter.tree
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"0202\n"
"node.text"
msgid "Command and Menu Reference"
-msgstr ""
+msgstr "Reference za naredbe i izbornik"
#: swriter.tree
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"0203\n"
"node.text"
msgid "Creating Text Documents"
-msgstr "Stvaranje tekstnog dokumneta"
+msgstr "Stvaranje tekstualnog dokumenta"
#: swriter.tree
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"0204\n"
"node.text"
msgid "Graphics in Text Documents"
-msgstr ""
+msgstr "Grafike u tekstualnim dokumentima"
#: swriter.tree
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"0205\n"
"node.text"
msgid "Tables in Text Documents"
-msgstr ""
+msgstr "Tablice u tekstualnim dokumentima"
#: swriter.tree
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"0206\n"
"node.text"
msgid "Objects in Text Documents"
-msgstr ""
+msgstr "Objekti u tekstualnim dokumentima"
#: swriter.tree
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"0207\n"
"node.text"
msgid "Sections and Frames in Text Documents"
-msgstr ""
+msgstr "Odjelci i okviri u tekstualnim dokumentima"
#: swriter.tree
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"0208\n"
"node.text"
msgid "Tables of Contents and Indexes"
-msgstr ""
+msgstr "Tablice sadržaja i indeksa"
#: swriter.tree
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"0209\n"
"node.text"
msgid "Fields in Text Documents"
-msgstr ""
+msgstr "Polja u tekstualnim dokumentima"
#: swriter.tree
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"0210\n"
"node.text"
msgid "Navigating Text Documents"
-msgstr ""
+msgstr "Navigiranje u tekstualnim dokumentima"
#: swriter.tree
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"0212\n"
"node.text"
msgid "Formatting Text Documents"
-msgstr ""
+msgstr "Oblikovanje tekstualnih dokumenata"
#: swriter.tree
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"0213\n"
"node.text"
msgid "Special Text Elements"
-msgstr ""
+msgstr "Posebni tekstualni elementi"
#: swriter.tree
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"0214\n"
"node.text"
msgid "Automatic Functions"
-msgstr ""
+msgstr "Automatske funkcije"
#: swriter.tree
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"0215\n"
"node.text"
msgid "Numbering and Lists"
-msgstr ""
+msgstr "Numeriranja i popisi"
#: swriter.tree
msgctxt ""
@@ -958,4 +958,4 @@ msgctxt ""
"06\n"
"help_section.text"
msgid "HTML Documents (Writer Web)"
-msgstr ""
+msgstr "HTML dokumenti (Writer Web)"
diff --git a/source/hr/helpcontent2/source/text/sbasic/shared.po b/source/hr/helpcontent2/source/text/sbasic/shared.po
index 1da43c26ed5..d0d33baf7b6 100644
--- a/source/hr/helpcontent2/source/text/sbasic/shared.po
+++ b/source/hr/helpcontent2/source/text/sbasic/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-07-16 22:58+0000\n"
+"PO-Revision-Date: 2019-07-19 13:19+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"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: 1563317880.000000\n"
+"X-POOTLE-MTIME: 1563542393.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -1030,7 +1030,7 @@ msgctxt ""
"par_id31469416\n"
"help.text"
msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
-msgstr ""
+msgstr "<variable id=\"err292\">292 DDE veza je prekinuta ili promijenjena</variable>"
#: 00000003.xhp
msgctxt ""
@@ -3174,7 +3174,7 @@ msgctxt ""
"par_id3147574\n"
"help.text"
msgid "The properties of a breakpoint are available through its context menu by right-clicking the breakpoint in the breakpoint column."
-msgstr "Svojstva prijelomnih točaka koje su dostupne kroz kontekstualni meni klikom na desnu tipku miša na prijelomnu točku u prijelomnoj koloni."
+msgstr "Svojstva prijelomnih točaka koje su dostupne kroz kontekstni izbornik, klikom na desnu tipku miša na prijelomnu točku u prijelomnom stupcu."
#: 01030300.xhp
msgctxt ""
@@ -5038,7 +5038,7 @@ msgctxt ""
"par_id3148869\n"
"help.text"
msgid "A text constant. This character cannot be modified by the user."
-msgstr ""
+msgstr "Tekstualna konstanta. Korisnik ne može promijeniti ovaj slovni znak."
#: 01170101.xhp
msgctxt ""
@@ -6350,7 +6350,7 @@ msgctxt ""
"hd_id3159096\n"
"help.text"
msgid "Modified"
-msgstr "Mijenjano"
+msgstr "Promijenjeno"
#: 01170103.xhp
msgctxt ""
@@ -6702,7 +6702,7 @@ msgctxt ""
"par_id3149410\n"
"help.text"
msgid "Display Abort, Retry, and Ignore buttons."
-msgstr ""
+msgstr "Prikaži gumbe za „Prekini”, „Ponovi” i „Zanemari”."
#: 03010101.xhp
msgctxt ""
@@ -6726,7 +6726,7 @@ msgctxt ""
"par_id3155601\n"
"help.text"
msgid "Display Retry and Cancel buttons."
-msgstr ""
+msgstr "Prikaži gumbe za „Ponovi” i „Odustani”."
#: 03010101.xhp
msgctxt ""
@@ -6966,7 +6966,7 @@ msgctxt ""
"par_id3149410\n"
"help.text"
msgid "Display Abort, Retry, and Ignore buttons."
-msgstr ""
+msgstr "Prikaži gumbe za „Prekini”, „Ponovi” i „Zanemari”."
#: 03010102.xhp
msgctxt ""
@@ -6990,7 +6990,7 @@ msgctxt ""
"par_id3155601\n"
"help.text"
msgid "Display Retry and Cancel buttons."
-msgstr ""
+msgstr "Prikaži gumbe za „Ponovi” i „Odustani”."
#: 03010102.xhp
msgctxt ""
@@ -7102,7 +7102,7 @@ msgctxt ""
"par_id4056825\n"
"help.text"
msgid "Abort"
-msgstr ""
+msgstr "Prekini"
#: 03010102.xhp
msgctxt ""
@@ -7110,7 +7110,7 @@ msgctxt ""
"par_id3155335\n"
"help.text"
msgid "Retry"
-msgstr ""
+msgstr "Ponovi"
#: 03010102.xhp
msgctxt ""
@@ -10726,7 +10726,7 @@ msgctxt ""
"par_id3156423\n"
"help.text"
msgid "Returns a string that contains the date and the time that a file was created or last modified."
-msgstr ""
+msgstr "Vraća znakovni niz koji sadrži datum i vrijeme kad je datoteka stvorena ili promijenjena."
#: 03020407.xhp
msgctxt ""
@@ -25374,7 +25374,7 @@ msgctxt ""
"par_idN10561\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Sintaksa:"
#: 03102450.xhp
msgctxt ""
@@ -27590,7 +27590,7 @@ msgctxt ""
"par_idN1055D\n"
"help.text"
msgid "Syntax:"
-msgstr ""
+msgstr "Sintaksa:"
#: 03104700.xhp
msgctxt ""
@@ -27966,7 +27966,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>"
#: 03120102.xhp
msgctxt ""
@@ -28078,7 +28078,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>"
#: 03120103.xhp
msgctxt ""
@@ -31198,7 +31198,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Other Commands"
-msgstr ""
+msgstr "Ostale naredbe"
#: 03130000.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/sbasic/shared/02.po b/source/hr/helpcontent2/source/text/sbasic/shared/02.po
index aa721d237ad..82b53795a22 100644
--- a/source/hr/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/hr/helpcontent2/source/text/sbasic/shared/02.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2017-05-12 15:13+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-19 11:07+0000\n"
+"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1494602005.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563534421.000000\n"
#: 11010000.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"hd_id3154585\n"
"help.text"
msgid "Horizontal Scrollbar"
-msgstr "Vodoravna linija s klizačem"
+msgstr "Vodoravni klizač"
#: 20000000.xhp
msgctxt ""
@@ -1182,7 +1182,7 @@ msgctxt ""
"hd_id3154119\n"
"help.text"
msgid "Vertical Scrollbar"
-msgstr "Okomita linija s klizačem"
+msgstr "Okomiti klizač"
#: 20000000.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"hd_id3150313\n"
"help.text"
msgid "Group Box"
-msgstr "Okvir grupe"
+msgstr "Grupni okvir"
#: 20000000.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/scalc/01.po b/source/hr/helpcontent2/source/text/scalc/01.po
index b56f127232e..067cacf14e4 100644
--- a/source/hr/helpcontent2/source/text/scalc/01.po
+++ b/source/hr/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: 2019-06-03 17:45+0200\n"
-"PO-Revision-Date: 2019-07-04 21:54+0000\n"
+"PO-Revision-Date: 2019-07-19 13:23+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"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: 1562277277.000000\n"
+"X-POOTLE-MTIME: 1563542631.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -23718,7 +23718,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\">Izračunava promijenjenu Bessel funkciju prve vrste In(x).</ahelp>"
#: 04060115.xhp
msgctxt ""
@@ -23846,7 +23846,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\">Izračunava promijenjenu Bessel funkciju druge vrste Kn(x).</ahelp>"
#: 04060115.xhp
msgctxt ""
@@ -55254,7 +55254,7 @@ msgctxt ""
"par_id3148829\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_JETZT\">Returns the computer system date and time.</ahelp> The value is updated when you recalculate the document or each time a cell value is modified."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_JETZT\">Vraća datum i vrijeme računalnog sustava.</ahelp> Vrijednost se aktualizira, kad ponovo izračunate dokument ili svaki put kad se promijeni vrijednost ćelije."
#: func_now.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/shared/01.po b/source/hr/helpcontent2/source/text/shared/01.po
index 6685da92a14..c44f8a22ab7 100644
--- a/source/hr/helpcontent2/source/text/shared/01.po
+++ b/source/hr/helpcontent2/source/text/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-07-16 22:18+0000\n"
+"PO-Revision-Date: 2019-07-19 13:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"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: 1563315485.000000\n"
+"X-POOTLE-MTIME: 1563543351.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"hd_id3149182\n"
"help.text"
msgid "Modified:"
-msgstr "Mijenjano:"
+msgstr "Datum promjene:"
#: 01100200.xhp
msgctxt ""
@@ -3150,7 +3150,7 @@ msgctxt ""
"hd_id3155342\n"
"help.text"
msgid "Total editing time:"
-msgstr ""
+msgstr "Ukupno vrijeme uređivanja:"
#: 01100200.xhp
msgctxt ""
@@ -3158,7 +3158,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 "Prikazuje kako dugo je datoteka otvorena za uređivanje, od kad je datoteka stvorena. Vrijeme uređivanja se aktualizira kad spremite datoteku."
#: 01100200.xhp
msgctxt ""
@@ -3206,7 +3206,7 @@ msgctxt ""
"par_id3152349\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/documentinfopage/reset\">Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/documentinfopage/reset\">Vraća vrijeme uređivanja na nulu, datum stvaranja na trenutačni datum i vrijeme, a broj verzije na 1. Datumi promjena i ispisa se također brišu.</ahelp>"
#: 01100300.xhp
msgctxt ""
@@ -9502,7 +9502,7 @@ msgctxt ""
"hd_id3153140\n"
"help.text"
msgid "Freeform Polygon"
-msgstr "Ručno crtani poligon"
+msgstr "Prostoručni poligon"
#: 02220000.xhp
msgctxt ""
@@ -9526,7 +9526,7 @@ msgctxt ""
"par_id3159128\n"
"help.text"
msgid "Freeform Polygon"
-msgstr "Ručno crtani poligon"
+msgstr "Prostoručni poligon"
#: 02220000.xhp
msgctxt ""
@@ -25894,7 +25894,7 @@ msgctxt ""
"par_id3154497\n"
"help.text"
msgid "You can change the shape of the text baseline to match semicircles, arcs, circles, and freeform lines."
-msgstr ""
+msgstr "Oblik pismovne linije teksta možete promijeniti, tako da se poklapa s polukrugom, lukom, krugom i prostoručnom linijom"
#: 05280000.xhp
msgctxt ""
@@ -30534,7 +30534,7 @@ msgctxt ""
"par_idN1059E\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the modified entry to the database file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sprema promijenjeni upis u datoteku baze podataka.</ahelp>"
#: 06010601.xhp
msgctxt ""
@@ -35086,7 +35086,7 @@ msgctxt ""
"par_id756248\n"
"help.text"
msgid "<ahelp hid=\".\">Resets modified values back to the default values.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vraća promijenjene vrijednosti na zadane vrijednosti.</ahelp>"
#: 06140300.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/shared/02.po b/source/hr/helpcontent2/source/text/shared/02.po
index c8b832f7973..afe02c8cf80 100644
--- a/source/hr/helpcontent2/source/text/shared/02.po
+++ b/source/hr/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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-07-16 22:13+0000\n"
+"PO-Revision-Date: 2019-07-19 11:24+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563315206.000000\n"
+"X-POOTLE-MTIME: 1563535480.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"hd_id3148587\n"
"help.text"
msgid "Freeform Line"
-msgstr "Ručno crtana linija"
+msgstr "Prostoručna linija"
#: 01140000.xhp
msgctxt ""
@@ -1518,7 +1518,7 @@ msgctxt ""
"hd_id3145147\n"
"help.text"
msgid "Group Box"
-msgstr "Okvir grupe"
+msgstr "Grupni okvir"
#: 01170000.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/shared/explorer/database.po b/source/hr/helpcontent2/source/text/shared/explorer/database.po
index 7f405946352..61b2f7799cf 100644
--- a/source/hr/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/hr/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-07-16 10:56+0000\n"
+"PO-Revision-Date: 2019-07-18 10:33+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563274606.000000\n"
+"X-POOTLE-MTIME: 1563445996.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -2702,7 +2702,7 @@ msgctxt ""
"hd_id3148983\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/05000001.xhp\" name=\"Table Context Menus\">Table Context Menus</link>"
-msgstr "<link href=\"text/shared/explorer/database/05000001.xhp\" name=\"Kontekstualni izbornici tablica\">Kontekstualni izbornici tablica</link>"
+msgstr "<link href=\"text/shared/explorer/database/05000001.xhp\" name=\"Kontekstualni izbornici tablica\">Kontekstni izbornici tablica</link>"
#: 05000001.xhp
msgctxt ""
@@ -5502,7 +5502,7 @@ msgctxt ""
"par_idN105C4\n"
"help.text"
msgid "Ignore the privileges from the database driver"
-msgstr "Ignoriraj povlastice iz baze podataka drivera"
+msgstr "Zanemari povlastice iz baze podataka drivera"
#: dabaadvpropdat.xhp
msgctxt ""
@@ -5646,7 +5646,7 @@ msgctxt ""
"hd_id0909200811170166\n"
"help.text"
msgid "Ignore currency field information"
-msgstr "Ignoriraj informaciju o polju valute"
+msgstr "Zanemari informaciju polja valute"
#: dabaadvpropdat.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/shared/guide.po b/source/hr/helpcontent2/source/text/shared/guide.po
index 39d87543a64..0b43b9140cc 100644
--- a/source/hr/helpcontent2/source/text/shared/guide.po
+++ b/source/hr/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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2018-11-14 12:01+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-19 13:37+0000\n"
+"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"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: 1542196875.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563543448.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2758,7 +2758,7 @@ msgctxt ""
"par_id2577593\n"
"help.text"
msgid "The document was not modified and saved by another user since user A opened the document."
-msgstr ""
+msgstr "Dokument nije promijenjen niti spremljen od bilo kojeg drugog korisnika, otkad ga je otvorio korisnik A."
#: collab.xhp
msgctxt ""
@@ -2774,7 +2774,7 @@ msgctxt ""
"par_id9049653\n"
"help.text"
msgid "The document was modified and saved by another user since user A opened the document."
-msgstr ""
+msgstr "Dokument je promijenjen niti spremljen od jednog drugog korisnika, otkad ga je otvorio korisnik A."
#: collab.xhp
msgctxt ""
@@ -10278,7 +10278,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 "Klikni na sličicu u traci naslova alatne trake, ili odaberi <emph>Zatvori alatnu traku</emph> iz kontekstnog menija. Alatna traka će automatski ponovo prikazati kada kontekst ponovo postane aktivan."
+msgstr "Klikni na sličicu u traci naslova alatne trake ili odaberi <emph>Zatvori alatnu traku</emph> iz kontekstnog izbornika. Alatna traka će se automatski ponovo prikazati, kad kontekst ponovo postane aktivan."
#: floating_toolbar.xhp
msgctxt ""
@@ -20726,7 +20726,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 "Predlošci spremaju vrijeme uređivanja pokretanjem novih dokumenata s unaprijed ispunjenim sadržajem i oblikovanjem. Upravljač za predloške vam omogućuje pristup i organiziranje predložaka u %PRODUCTNAME."
#: template_manager.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/shared/menu.po b/source/hr/helpcontent2/source/text/shared/menu.po
index 8fe6a9c3545..29b5fc9f225 100644
--- a/source/hr/helpcontent2/source/text/shared/menu.po
+++ b/source/hr/helpcontent2/source/text/shared/menu.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: 2016-05-23 21:37+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2019-07-19 11:59+0000\n"
+"Last-Translator: Milo Ivir <mail@milotype.de>\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-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563537554.000000\n"
#: insert_chart.xhp
msgctxt ""
@@ -99,7 +102,7 @@ msgctxt ""
"par_id030720160640091844\n"
"help.text"
msgid "<ahelp hid=\".\">This submenu contains straight, freeform, curved and polygon line shapes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ovaj podizbornik sadrži ravne linije, prostoručne linije, krivulje i poligone.</ahelp>"
#: insert_shape.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/shared/optionen.po b/source/hr/helpcontent2/source/text/shared/optionen.po
index 8cf8ffa913f..8d4234e3963 100644
--- a/source/hr/helpcontent2/source/text/shared/optionen.po
+++ b/source/hr/helpcontent2/source/text/shared/optionen.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-07-16 22:14+0000\n"
+"PO-Revision-Date: 2019-07-19 13:30+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"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: 1563315243.000000\n"
+"X-POOTLE-MTIME: 1563543020.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2574,7 +2574,7 @@ msgctxt ""
"hd_id3149299\n"
"help.text"
msgid "Printing sets \"document modified\" status"
-msgstr ""
+msgstr "Ispis postavlja stanje „Dokument promijenjen”"
#: 01010600.xhp
msgctxt ""
@@ -6806,7 +6806,7 @@ msgctxt ""
"par_idN107B5\n"
"help.text"
msgid "File name, Statistics, Document number, Editing time, Modified"
-msgstr ""
+msgstr "Ime datoteke, Statistika, Broj dokumenta, Vrijeme uređivanja, Promijenjeno"
#: 01040900.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/simpress/02.po b/source/hr/helpcontent2/source/text/simpress/02.po
index 1567dc71328..9765d582b41 100644
--- a/source/hr/helpcontent2/source/text/simpress/02.po
+++ b/source/hr/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-07-16 22:14+0000\n"
+"PO-Revision-Date: 2019-07-19 12:00+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563315291.000000\n"
+"X-POOTLE-MTIME: 1563537605.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -2502,7 +2502,7 @@ msgctxt ""
"hd_id3149292\n"
"help.text"
msgid "Freeform Line, Filled"
-msgstr "Linije slobodne forme, popunjena"
+msgstr "Prostoručna linija, ispunjena"
#: 10080000.xhp
msgctxt ""
@@ -2526,7 +2526,7 @@ msgctxt ""
"par_id3154264\n"
"help.text"
msgid "Freeform Line, Filled"
-msgstr "Linije slobodne forme, popunjena"
+msgstr "Prostoručna linija, ispunjena"
#: 10080000.xhp
msgctxt ""
@@ -2614,7 +2614,7 @@ msgctxt ""
"hd_id3149340\n"
"help.text"
msgid "Freeform Line"
-msgstr "Ručno crtana linija"
+msgstr "Prostoručna linija"
#: 10080000.xhp
msgctxt ""
@@ -2630,7 +2630,7 @@ msgctxt ""
"par_id3159192\n"
"help.text"
msgid "Freeform Line"
-msgstr "Ručno crtana linija"
+msgstr "Prostoručna linija"
#: 10090000.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/simpress/guide.po b/source/hr/helpcontent2/source/text/simpress/guide.po
index 17e013989a3..a6f9d92bc85 100644
--- a/source/hr/helpcontent2/source/text/simpress/guide.po
+++ b/source/hr/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2018-09-03 13:02+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-19 11:52+0000\n"
+"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1535979779.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563537132.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -3390,7 +3390,7 @@ msgctxt ""
"hd_id2071596\n"
"help.text"
msgid "How to use the Freeform Line tool"
-msgstr ""
+msgstr "Kako koristiti alat za prostoručnu liniju"
#: line_draw.xhp
msgctxt ""
@@ -3398,7 +3398,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 ""
+msgstr "Na altnoj traci za crtanje, otvorite alat za <emph>Krivulje</emph><image id=\"Graphic2\" src=\"cmd/sc_linetoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image> i odaberite alat <emph>Prostoručna linija</emph><image id=\"Graphic3\" src=\"cmd/sc_freeline_unfilled.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Ikona</alt></image>."
#: line_draw.xhp
msgctxt ""
@@ -3414,7 +3414,7 @@ msgctxt ""
"par_id5792107\n"
"help.text"
msgid "Draw the freeform line as you would do with a pencil."
-msgstr ""
+msgstr "Potegnite prostoručnu liniju kao da crtate olovkom."
#: line_draw.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/swriter/01.po b/source/hr/helpcontent2/source/text/swriter/01.po
index ec6f13c9469..5282de004e6 100644
--- a/source/hr/helpcontent2/source/text/swriter/01.po
+++ b/source/hr/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-07-16 11:09+0000\n"
+"PO-Revision-Date: 2019-07-19 13:17+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"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: 1563275361.000000\n"
+"X-POOTLE-MTIME: 1563542220.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"par_id3155136\n"
"help.text"
msgid "A hidden section in a document appears gray in the Navigator, and displays the text \"hidden\" when you rest the mouse pointer over it. The same applies to header and footer contents of Page Styles that are not used in a document, and hidden contents in tables, text frames, graphics, OLE objects, and indexes."
-msgstr "Skriven odjeljak dokumenta prikazan je sivom bojom u Navigatoru, a prelaskom pokazivača miša prikazuje se tekst \"skriven\". Isto se odnosi i na sadržaje zaglavlja i podnožja koji su postavljeni u stilovima stranica, ali nisu korišteni u dokumentu, na skriven sadržaj tablica, tekstnih okvira, grafika, OLE objekata i indeksa."
+msgstr "Skriveni odjeljak dokumenta prikazan je sivom bojom u Navigatoru, a prelaskom pokazivača miša, prikazuje se tekst \"skriven\". Isto se odnosi i na sadržaje zaglavlja i podnožja koji su postavljeni u stilovima stranica, ali nisu korišteni u dokumentu, na skriveni sadržaj tablica, tekstualnih okvira, grafika, OLE objekata i indeksa."
#: 02110000.xhp
msgctxt ""
@@ -7102,7 +7102,7 @@ msgctxt ""
"par_id3145774\n"
"help.text"
msgid "Modified"
-msgstr "Mijenjano"
+msgstr "Promijenjeno"
#: 04090004.xhp
msgctxt ""
diff --git a/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 71decd44bbd..3f631b16b42 100644
--- a/source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/hr/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-17 01:13+0000\n"
+"PO-Revision-Date: 2019-07-19 12:52+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563325981.000000\n"
+"X-POOTLE-MTIME: 1563540765.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"OOO_CONTROL_104\n"
"LngText.text"
msgid "The following applications are using files that need to be updated by this setup. Close these applications and click Retry to continue."
-msgstr "Sljedeći programi koriste datoteke koje trebaju biti ažurirane ovim podešavanjem. Zatvorite te aplikacije i kliknite Pokušaj ponovno za nastavak."
+msgstr "Sljedeći programi koriste datoteke koje trebaju biti ažurirane ovim podešavanjem. Zatvorite te programe i kliknite „Ponovi” za nastavak."
#: Control.ulf
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"OOO_CONTROL_108\n"
"LngText.text"
msgid "&Retry"
-msgstr "&Pokušaj ponovno"
+msgstr "&Ponovi"
#: Control.ulf
msgctxt ""
@@ -2078,7 +2078,7 @@ msgctxt ""
"OOO_CONTROL_186\n"
"LngText.text"
msgid "Your system has not been modified. To complete installation at another time, please run setup again."
-msgstr "Vaš sustav nije promijenjen. Za dovršetak instalacije nekom drugom prilikom, pokrenite instalaciju ponovno."
+msgstr "Vaš sustav nije promijenjen. Za dovršetak instalacije nekom drugom prilikom, ponovo pokrenite instalaciju."
#: Control.ulf
msgctxt ""
@@ -2174,7 +2174,7 @@ msgctxt ""
"OOO_CONTROL_204\n"
"LngText.text"
msgid "&Abort"
-msgstr "&Prekid"
+msgstr "&Prekini"
#: Control.ulf
msgctxt ""
@@ -2222,7 +2222,7 @@ msgctxt ""
"OOO_CONTROL_210\n"
"LngText.text"
msgid "&Retry"
-msgstr "&Pokušaj ponovno"
+msgstr "&Ponovi"
#: Control.ulf
msgctxt ""
@@ -2302,7 +2302,7 @@ msgctxt ""
"OOO_CONTROL_222\n"
"LngText.text"
msgid "Your system has not been modified. To install this program at a later time, please run the installation again."
-msgstr "Vaš sustav nije promijenjen. Pokrenite instalaciju ponovno kada poželite instalirati program."
+msgstr "Vaš sustav nije promijenjen. Za instaliranje programa nekom drugom prilikom, ponovo pokrenite instalaciju."
#: Control.ulf
msgctxt ""
@@ -2702,7 +2702,7 @@ msgctxt ""
"OOO_CONTROL_306\n"
"LngText.text"
msgid "To select a different version, click Change. Otherwise click Cancel to abort the Installation Wizard."
-msgstr "Za korištenje druge inačice, odaberite Promijeni. Odaberite Otkaži za prekid instalacije."
+msgstr "Za korištenje druge inačice, odaberite „Promijeni”. Odaberite „Odustani” za prekid instalacije."
#: Control.ulf
msgctxt ""
@@ -2726,7 +2726,7 @@ msgctxt ""
"OOO_CONTROL_309\n"
"LngText.text"
msgid "If you are just trying out [ProductName], you probably don't want this to happen, so leave the boxes unchecked."
-msgstr "Isprobavate li samo [ProductName], vjerojatno ne želite da se to dogodi, ostavite neoznačene kvadratiće."
+msgstr "Ukoliko samo isprobavate [ProductName], vjerojatno ne želite da se to dogodi, stoga ostavite potvrdne okvire neoznačene."
#: Control.ulf
msgctxt ""
@@ -2942,7 +2942,7 @@ msgctxt ""
"OOO_ERROR_16\n"
"LngText.text"
msgid "Out of memory. Shut down other applications before retrying."
-msgstr "Nedostatak memorije. Ugasite ostale programe prije ponovnog pokušaja."
+msgstr "Nedostatak memorije. Zatvorite ostale programe prije ponovnog pokušaja."
#: Error.ulf
msgctxt ""
@@ -3062,7 +3062,7 @@ msgctxt ""
"OOO_ERROR_31\n"
"LngText.text"
msgid "Another application has exclusive access to the file [2]. Please shut down all other applications, then click Retry."
-msgstr "Drugi program ima isključiv pristup datoteci [2]. Zatvorite sve druge programe i kliknite Pokušaj ponovno."
+msgstr "Drugi program ima isključiv pristup datoteci [2]. Zatvorite sve druge programe i kliknite „Ponovi”."
#: Error.ulf
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"OOO_ERROR_32\n"
"LngText.text"
msgid "There is not enough disk space to install the file [2]. Free some disk space and click Retry, or click Cancel to exit."
-msgstr "Na disku nema dovoljno prostora za instaliranje datoteke [2]. Osigurajte dovoljno prostora i odaberite Pokušaj ponovno, ili Odustani za izlaz."
+msgstr "Na disku nema dovoljno prostora za instaliranje datoteke [2]. Osigurajte dovoljno prostora i odaberite „Ponovi” ili „Odustani” za izlaz."
#: Error.ulf
msgctxt ""
@@ -3110,7 +3110,7 @@ msgctxt ""
"OOO_ERROR_37\n"
"LngText.text"
msgid "Cannot create the directory [2]. A file with this name already exists. Please rename or remove the file and click Retry, or click Cancel to exit."
-msgstr "Ne možete stvoriti mapu [2]. Datoteka s tim imenom već postoji. Preimenujete ili izbrišite datoteku i kliknite Pokušaj ponovno, ili odaberite Odustani za izlaz."
+msgstr "Ne možete stvoriti mapu [2]. Datoteka s tim imenom već postoji. Preimenujete ili izbrišite datoteku i kliknite „Ponovi” ili odaberite „Odustani” za izlaz."
#: Error.ulf
msgctxt ""
@@ -3238,7 +3238,7 @@ msgctxt ""
"OOO_ERROR_53\n"
"LngText.text"
msgid "Error applying patch to file [2]. It has probably been updated by other means, and can no longer be modified by this patch. For more information contact your patch vendor. {{System Error: [3]}}"
-msgstr "Greška pri primijeni zakrpe na datoteku [2]. Vjerojatno je ažurirana drugim sredstvim i više se ne može mijenjati ovom zakrpom. Za više informacija kontaktirajte autora zakrpe. {{System Error: [3]}}"
+msgstr "Greška pri primijeni zakrpe na datoteku [2]. Vjerojatno je ažurirana na drugi način i više se ne može promijeniti ovom zakrpom. Za dljnje informacije kontaktirajte autora zakrpe. {{System Error: [3]}}"
#: Error.ulf
msgctxt ""
@@ -3390,7 +3390,7 @@ msgctxt ""
"OOO_ERROR_72\n"
"LngText.text"
msgid "Out of disk space -- Volume: [2]; required space: [3] KB; available space: [4] KB. If rollback is disabled, enough space is available. Click Cancel to quit, Retry to check available disk space again, or Ignore to continue without rollback."
-msgstr "Nema slobodnog prostora -- Disk: [2]; potrebno prostora: [3] KB; dostupno prostora: [4] KB. Ako je povratak onemogućen, postoji dovoljno prostora. Kliknite na Odustani za završetak, Pokušaj ponovno za ponovnu provjeru dostupnog prostora, ili Zanemari za nastavak bez mogućnosti povrata na staro."
+msgstr "Nema slobodnog prostora -- Disk: [2]; potrebno prostora: [3] KB; dostupno prostora: [4] KB. Ako je povratak onemogućen, postoji dovoljno prostora. Kliknite na „Odustani” za završetak, „Ponovi” za ponovnu provjeru dostupnog prostora, ili „Zanemari” za nastavak bez mogućnosti povratka na staro."
#: Error.ulf
msgctxt ""
@@ -3502,7 +3502,7 @@ msgctxt ""
"OOO_ERROR_86\n"
"LngText.text"
msgid "An error occurred while writing installation information to disk. Check to make sure enough disk space is available, and click Retry, or Cancel to end the installation."
-msgstr "Dogodila se pogreška prilikom pisanja instalacijskih podataka na disk. Provjerite ima li na disku dovoljno prostora te odaberite Pokušaj ponovno, ili Odustani za prestanak instalacije."
+msgstr "Dogodila se pogreška prilikom pisanja instalacijskih podataka na disk. Provjerite ima li na disku dovoljno prostora te odaberite „Ponovi”, ili „Odustani” za prekid instalacije."
#: Error.ulf
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"OOO_ERROR_91\n"
"LngText.text"
msgid "Out of memory. Shut down other applications before retrying."
-msgstr "Nema dovoljno memorije. Ugasite ostale programe prije ponovnog pokušaja."
+msgstr "Nedostatak memorije. Zatvorite ostale programe prije ponovnog pokušaja."
#: Error.ulf
msgctxt ""
@@ -3550,7 +3550,7 @@ msgctxt ""
"OOO_ERROR_92\n"
"LngText.text"
msgid "There is no disk in drive [2]. Please insert one and click Retry, or click Cancel to go back to the previously selected volume."
-msgstr "Nema diska u uređaju [2]. Umetnite disk i kliknite Pokušaj ponovno, ili kliknite Odustani za povratak na prije izabrani disk."
+msgstr "Nema diska u uređaju [2]. Umetnite disk i kliknite „Ponovi” ili kliknite „Odustani” za povratak na prije izabrani disk."
#: Error.ulf
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"OOO_ERROR_93\n"
"LngText.text"
msgid "There is no disk in drive [2]. Please insert one and click Retry, or click Cancel to return to the browse dialog and select a different volume."
-msgstr "Nema diska u uređaju [2]. Umetnite disk i kliknite Pokušaj ponovo, ili kliknite Odustani za povratak na dijaloški okvir za pregled i izaberite drugi disk."
+msgstr "Nema diska u uređaju [2]. Umetnite disk i kliknite „Ponovi” ili kliknite „Odustani” za povratak na dijalog za pregled i izaberite drugi disk."
#: Error.ulf
msgctxt ""
diff --git a/source/hr/librelogo/source/pythonpath.po b/source/hr/librelogo/source/pythonpath.po
index c0cece5c9d0..450ccd3a535 100644
--- a/source/hr/librelogo/source/pythonpath.po
+++ b/source/hr/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: 2019-07-04 13:42+0000\n"
+"PO-Revision-Date: 2019-07-17 22:42+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1562247745.000000\n"
+"X-POOTLE-MTIME: 1563403369.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -1118,4 +1118,4 @@ msgctxt ""
"ERR_NOTAPROGRAM\n"
"property.text"
msgid "Do you want to run this text document?"
-msgstr "Želite li pokrenuti ovaj tekstni dokument?"
+msgstr "Želite li pokrenuti ovaj tekstualni dokument?"
diff --git a/source/hr/officecfg/registry/data/org/openoffice/Office.po b/source/hr/officecfg/registry/data/org/openoffice/Office.po
index afe97ca7c0b..e86d82e6802 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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-07-16 18:49+0000\n"
+"PO-Revision-Date: 2019-07-17 22:42+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563302992.000000\n"
+"X-POOTLE-MTIME: 1563403376.000000\n"
#: Addons.xcu
msgctxt ""
@@ -815,7 +815,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Text Box Bound Content"
-msgstr "Granični sadržaj tekstnoga okvira"
+msgstr "Sadržaj ograničen na tekstualni okvir"
#: FormWizard.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 ff15e28e822..b8fcfd06f8d 100644
--- a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hr/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-17 01:34+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-19 22:19+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563327299.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1563574791.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Option Button"
-msgstr "Gumb mogućnosti obrasca"
+msgstr "Izborni gumb obrasca"
#: BasicIDECommands.xcu
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Check Box"
-msgstr "Kvadratić formulara"
+msgstr "Potvrdni okvir obrasca"
#: BasicIDECommands.xcu
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Spin Button"
-msgstr "Gumb okretanja obrasca"
+msgstr "Okretni gumb obrasca"
#: BasicIDECommands.xcu
msgctxt ""
@@ -293,7 +293,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Toolbox"
-msgstr "Alatni okvir"
+msgstr "Alatna traka"
#: BasicIDEWindowState.xcu
msgctxt ""
@@ -4550,7 +4550,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: CalcWindowState.xcu
msgctxt ""
@@ -4721,7 +4721,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: CalcWindowState.xcu
msgctxt ""
@@ -10310,7 +10310,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: DrawWindowState.xcu
msgctxt ""
@@ -10625,7 +10625,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: DrawWindowState.xcu
msgctxt ""
@@ -11282,7 +11282,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Spin In"
-msgstr "Ulijetanje"
+msgstr "Vrtnja prema unutra"
#: Effects.xcu
msgctxt ""
@@ -11921,7 +11921,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Spin Out"
-msgstr "Zavrćeno prema van"
+msgstr "Vrtnja prema van"
#: Effects.xcu
msgctxt ""
@@ -15575,7 +15575,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vertical Scroll"
-msgstr "Okomito klizanje"
+msgstr "Okomiti svitak"
#: GenericCommands.xcu
msgctxt ""
@@ -15584,7 +15584,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Horizontal Scroll"
-msgstr "Vodoravno klizanje"
+msgstr "Vodoravni svitak"
#: GenericCommands.xcu
msgctxt ""
@@ -15944,7 +15944,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Replace with Spin Button"
-msgstr "Zamijeni sa okretnim gumbom"
+msgstr "Zamijeni okretnim gumbom"
#: GenericCommands.xcu
msgctxt ""
@@ -15980,7 +15980,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Text Box"
-msgstr "Umetanje tekstnoga okvira"
+msgstr "Umetanje tekstualnog okvira"
#: GenericCommands.xcu
msgctxt ""
@@ -17746,7 +17746,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Option Button"
-msgstr "Gumb izbora"
+msgstr "Izborni gumb"
#: GenericCommands.xcu
msgctxt ""
@@ -17773,7 +17773,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Check Box"
-msgstr "Kvadratić"
+msgstr "Potvrdni okvir"
#: GenericCommands.xcu
msgctxt ""
@@ -18448,7 +18448,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Group Box"
-msgstr "Okvir grupe"
+msgstr "Grupni okvir"
#: GenericCommands.xcu
msgctxt ""
@@ -18538,7 +18538,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Document Modified"
-msgstr "Dokument izmijenjen"
+msgstr "Dokument promijenjen"
#: GenericCommands.xcu
msgctxt ""
@@ -18736,7 +18736,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Text Frame"
-msgstr "Umetni tekstni okvir"
+msgstr "Umetni tekstualni okvir"
#: GenericCommands.xcu
msgctxt ""
@@ -19069,7 +19069,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Text Box"
-msgstr "Umetanje tekstnoga okvira"
+msgstr "Umetanje tekstualnog okvira"
#: GenericCommands.xcu
msgctxt ""
@@ -20275,7 +20275,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Text Document Options"
-msgstr "Mogućnosti tekstnog dokumenta"
+msgstr "Mogućnosti tekstualnog dokumenta"
#: GenericCommands.xcu
msgctxt ""
@@ -20491,7 +20491,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeform Line"
-msgstr "Ručno crtana linija"
+msgstr "Prostoručna linija"
#: GenericCommands.xcu
msgctxt ""
@@ -20509,7 +20509,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Freeform Redaction"
-msgstr "Prostoručna redakcija"
+msgstr "Prostoručno redigiranje"
#: GenericCommands.xcu
msgctxt ""
@@ -21054,6 +21054,24 @@ msgstr "Donirajte LibreOfficeu"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
@@ -21292,7 +21310,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Option Button"
-msgstr "Gumb izbora"
+msgstr "Izborni gumb"
#: GenericCommands.xcu
msgctxt ""
@@ -21301,7 +21319,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Check Box"
-msgstr "Kvadratić"
+msgstr "Potvrdni okvir"
#: GenericCommands.xcu
msgctxt ""
@@ -21319,7 +21337,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Group Box"
-msgstr "Okvir grupe"
+msgstr "Grupni okvir"
#: GenericCommands.xcu
msgctxt ""
@@ -22003,7 +22021,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Replace with Text Box"
-msgstr "Zamijeni tekstnim okvirom"
+msgstr "Zamijeni tekstualnim okvirom"
#: GenericCommands.xcu
msgctxt ""
@@ -22039,7 +22057,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Replace with Check Box"
-msgstr "Zamijeni kvadratićem"
+msgstr "Zamijeni potvrdnim okvirom"
#: GenericCommands.xcu
msgctxt ""
@@ -22048,7 +22066,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Replace with Radio Button"
-msgstr "Zamijeni radiogumbom"
+msgstr "Zamijeni izbornim gumbom"
#: GenericCommands.xcu
msgctxt ""
@@ -22057,7 +22075,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Replace with Group Box"
-msgstr "Zamijeni okvirom grupe"
+msgstr "Zamijeni grupnim okvirom"
#: GenericCommands.xcu
msgctxt ""
@@ -22588,7 +22606,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Check Box Form Field"
-msgstr "Polje označivanja kvačicom"
+msgstr "Polje potvrdnog okvira"
#: GenericCommands.xcu
msgctxt ""
@@ -23209,7 +23227,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Set Focus in Combo Box"
-msgstr "Postavi fokus u kombinirani izbornik"
+msgstr "Postavi fokus u kombinirani okvir"
#: GenericCommands.xcu
msgctxt ""
@@ -23488,7 +23506,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23749,7 +23767,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: ImpressWindowState.xcu
msgctxt ""
@@ -24217,7 +24235,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Modified"
-msgstr "Mijenjano"
+msgstr "Promijenjeno"
#: MathCommands.xcu
msgctxt ""
@@ -25765,7 +25783,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Add Text Box"
-msgstr "Dodaj tekstni okvir"
+msgstr "Dodaj tekstualni okvir"
#: WriterCommands.xcu
msgctxt ""
@@ -25774,7 +25792,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove Text Box"
-msgstr "Ukloni tekstni okvir"
+msgstr "Ukloni tekstualni okvir"
#: WriterCommands.xcu
msgctxt ""
@@ -30697,7 +30715,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Box List Blue"
-msgstr "Plavi okvir s popisom"
+msgstr "Plavi popis"
#: WriterCommands.xcu
msgctxt ""
@@ -30706,7 +30724,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Box List Green"
-msgstr "Zeleni okvir s popisom"
+msgstr "Zeleni popis"
#: WriterCommands.xcu
msgctxt ""
@@ -30715,7 +30733,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Box List Red"
-msgstr "Crveni okvir s popisom"
+msgstr "Crveni popis"
#: WriterCommands.xcu
msgctxt ""
@@ -30724,7 +30742,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Box List Yellow"
-msgstr "Žuti okvir s popisom"
+msgstr "Žuti popis"
#: WriterCommands.xcu
msgctxt ""
@@ -30886,7 +30904,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -31048,7 +31066,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -31174,7 +31192,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Object"
-msgstr "Tekstni objekt"
+msgstr "Tekstualni objekt"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -31327,7 +31345,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: WriterGlobalWindowState.xcu
msgctxt ""
@@ -31489,7 +31507,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: WriterGlobalWindowState.xcu
msgctxt ""
@@ -31606,7 +31624,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Object"
-msgstr "Tekstni objekt"
+msgstr "Tekstualni objekt"
#: WriterGlobalWindowState.xcu
msgctxt ""
@@ -31786,7 +31804,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: WriterReportWindowState.xcu
msgctxt ""
@@ -31948,7 +31966,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: WriterReportWindowState.xcu
msgctxt ""
@@ -32074,7 +32092,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Object"
-msgstr "Tekstni objekt"
+msgstr "Tekstualni objekt"
#: WriterReportWindowState.xcu
msgctxt ""
@@ -32209,7 +32227,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: WriterWebWindowState.xcu
msgctxt ""
@@ -32353,7 +32371,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Object"
-msgstr "Tekstni objekt"
+msgstr "Tekstualni objekt"
#: WriterWebWindowState.xcu
msgctxt ""
@@ -32398,7 +32416,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: WriterWebWindowState.xcu
msgctxt ""
@@ -32605,7 +32623,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: WriterWindowState.xcu
msgctxt ""
@@ -32821,7 +32839,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: WriterWindowState.xcu
msgctxt ""
@@ -32938,7 +32956,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Object"
-msgstr "Tekstni objekt"
+msgstr "Tekstualni objekt"
#: WriterWindowState.xcu
msgctxt ""
@@ -33136,7 +33154,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: XFormsWindowState.xcu
msgctxt ""
@@ -33298,7 +33316,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Oblikovanje tekstnoga okvira"
+msgstr "Oblikovanje tekstualnog okvira"
#: XFormsWindowState.xcu
msgctxt ""
@@ -33424,7 +33442,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Object"
-msgstr "Tekstni objekt"
+msgstr "Tekstualni objekt"
#: XFormsWindowState.xcu
msgctxt ""
diff --git a/source/hr/sc/messages.po b/source/hr/sc/messages.po
index a046cce6570..80b7aa83717 100644
--- a/source/hr/sc/messages.po
+++ b/source/hr/sc/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-17 00:54+0000\n"
+"PO-Revision-Date: 2019-07-19 12:53+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563324882.000000\n"
+"X-POOTLE-MTIME: 1563540825.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -952,7 +952,7 @@ msgstr "Svojstva teksta"
#: sc/inc/globstr.hrc:207
msgctxt "STR_PROTECTIONERR"
msgid "Protected cells can not be modified."
-msgstr "Zaštićene ćelije ne mogu se promijeniti."
+msgstr "Zaštićene ćelije se ne mogu promijeniti."
#: sc/inc/globstr.hrc:208
msgctxt "STR_READONLYERR"
@@ -1209,7 +1209,7 @@ msgstr "Jeste li sigurni da želite li obrisati trenutačni scenarij?"
#: sc/inc/globstr.hrc:266
msgctxt "STR_EXPORT_ASCII"
msgid "Export Text File"
-msgstr "Izvezi tekstnu datoteku"
+msgstr "Izvezi tekstualnu datoteku"
#: sc/inc/globstr.hrc:267
msgctxt "STR_IMPORT_LOTUS"
@@ -1269,7 +1269,7 @@ msgstr "Izvještaj"
#: sc/inc/globstr.hrc:278
msgctxt "STR_THESAURUS_NO_STRING"
msgid "Thesaurus can only be used in text cells!"
-msgstr "Rječnik se sinonima može koristiti samo u tekstnim ćelijama!"
+msgstr "Rječnik sinonima se može koristiti samo u tekstualnim ćelijama!"
#: sc/inc/globstr.hrc:279
msgctxt "STR_SPELLING_BEGIN_TAB"
@@ -1996,12 +1996,12 @@ msgstr "Gumb"
#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
-msgstr "Kvadratić"
+msgstr "Potvrdni okvir"
#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
-msgstr "Gumb mogućnosti"
+msgstr "Izborni gumb"
#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_LABEL"
@@ -2016,7 +2016,7 @@ msgstr "Okvir s popisom"
#: sc/inc/globstr.hrc:414
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
-msgstr "Okvir grupe"
+msgstr "Grupni okvir"
#: sc/inc/globstr.hrc:415
msgctxt "STR_FORM_DROPDOWN"
@@ -2031,7 +2031,7 @@ msgstr "Traka odabira"
#: sc/inc/globstr.hrc:417
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
-msgstr "Klizna traka"
+msgstr "Klizač"
#: sc/inc/globstr.hrc:418
msgctxt "STR_STYLE_FAMILY_CELL"
@@ -2436,7 +2436,7 @@ msgstr "Popis iz"
#: sc/inc/globstr.hrc:492
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
-msgstr "Ćelije bez teksta su ignorirane."
+msgstr "Ćelije bez teksta su zanemarene."
#: sc/inc/globstr.hrc:493
#, c-format
@@ -11629,7 +11629,7 @@ msgstr "Indeks podraspona ako se odnosi na višestruki raspon."
#: sc/inc/scfuncs.hrc:3396
msgctxt "SC_OPCODE_INDIRECT"
msgid "Returns the contents of a cell that is referenced in text form."
-msgstr "Vraća sadržaj ćelije na koju se referira u tekstnom obrascu."
+msgstr "Vraća sadržaj ćelije na koju se referira u tekstualnom obliku."
#: sc/inc/scfuncs.hrc:3397
msgctxt "SC_OPCODE_INDIRECT"
@@ -11639,7 +11639,7 @@ msgstr "Referenca"
#: sc/inc/scfuncs.hrc:3398
msgctxt "SC_OPCODE_INDIRECT"
msgid "The cell whose contents are to be evaluated is to be referenced in text form (e.g. \"A1\")."
-msgstr "Ćeliju čiji se sadržaj procjenjuje, mora se pozvati u tekstnom obliku (npr. „A1”)."
+msgstr "Ćelija, čiji se sadržaj procjenjuje, se mora referencirati u tekstualnom obliku (npr. „A1”)."
#: sc/inc/scfuncs.hrc:3399
msgctxt "SC_OPCODE_INDIRECT"
@@ -12064,7 +12064,7 @@ msgstr "Tekst iz kojega se uklanjaju neispisivi znakovi."
#: sc/inc/scfuncs.hrc:3568
msgctxt "SC_OPCODE_CONCAT"
msgid "Combines several text items into one."
-msgstr "Združuje nekoliko tekstnih stavki u jednu."
+msgstr "Združuje nekoliko tekstualnih stavki u jednu."
#: sc/inc/scfuncs.hrc:3569
msgctxt "SC_OPCODE_CONCAT"
@@ -18400,7 +18400,7 @@ msgstr "Spremi fo_rmule ćelije umjesto izračunatih vrijednosti"
#: sc/uiconfig/scalc/ui/imoptdialog.ui:182
msgctxt "imoptdialog|quoteall"
msgid "_Quote all text cells"
-msgstr "_Citiraj sve tekstne ćelije"
+msgstr "_Citiraj sve tekstualne ćelije"
#: sc/uiconfig/scalc/ui/imoptdialog.ui:198
msgctxt "imoptdialog|fixedwidth"
diff --git a/source/hr/scaddins/messages.po b/source/hr/scaddins/messages.po
index 6140d64049b..0e4c45b3044 100644
--- a/source/hr/scaddins/messages.po
+++ b/source/hr/scaddins/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-02-27 15:06+0100\n"
-"PO-Revision-Date: 2019-07-16 20:50+0000\n"
+"PO-Revision-Date: 2019-07-19 12:54+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563310217.000000\n"
+"X-POOTLE-MTIME: 1563540866.000000\n"
#: scaddins/inc/analysis.hrc:27
msgctxt "ANALYSIS_Workday"
@@ -425,7 +425,7 @@ msgstr "Broj ili popis brojeva"
#: scaddins/inc/analysis.hrc:169
msgctxt "ANALYSIS_Besseli"
msgid "Returns the modified Bessel function In(x)"
-msgstr "Vraća izmijenjenu Bessel funkciju In(x)"
+msgstr "Vraća promijenjenu Bessel funkciju In(x)"
#: scaddins/inc/analysis.hrc:170
msgctxt "ANALYSIS_Besseli"
@@ -2175,7 +2175,7 @@ msgstr "Osnovica za određivanje broja dana u godini"
#: scaddins/inc/analysis.hrc:766
msgctxt "ANALYSIS_Mduration"
msgid "Returns the Macaulay modified duration for a security with an assumed par value of 100 currency units"
-msgstr "Vraća izmijenjeno Macaulay trajanje za vrijednosni papir s pretpostavljenom nominalnom vrijednosti 100 novčanih jedinica"
+msgstr "Vraća promijenjeno Macaulay trajanje za vrijednosni papir s pretpostavljenom nominalnom vrijednosti 100 valutnih jedinica"
#: scaddins/inc/analysis.hrc:767
msgctxt "ANALYSIS_Mduration"
diff --git a/source/hr/scp2/source/writer.po b/source/hr/scp2/source/writer.po
index cb59075ee6c..d4f45192af8 100644
--- a/source/hr/scp2/source/writer.po
+++ b/source/hr/scp2/source/writer.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: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2018-11-19 16:56+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2019-07-17 22:47+0000\n"
+"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1542646602.000000\n"
+"X-POOTLE-MTIME: 1563403643.000000\n"
#: folderitem_writer.ulf
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"STR_REG_VAL_SO60_TEXT\n"
"LngText.text"
msgid "%SXWFORMATNAME %SXWFORMATVERSION Text Document"
-msgstr "%SXWFORMATNAME %SXWFORMATVERSION tekstni dokument"
+msgstr "%SXWFORMATNAME %SXWFORMATVERSION tekstualni dokument"
#: registryitem_writer.ulf
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"STR_REG_VAL_SO60_WRITER_TEMPLATE\n"
"LngText.text"
msgid "%SXWFORMATNAME %SXWFORMATVERSION Text Document Template"
-msgstr "%SXWFORMATNAME %SXWFORMATVERSION predložak za tekstne dokumente"
+msgstr "%SXWFORMATNAME %SXWFORMATVERSION predložak za tekstualne dokumente"
#: registryitem_writer.ulf
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"STR_REG_VAL_UNIFORM_OFFICE_FORMAT_TEXT\n"
"LngText.text"
msgid "Uniform Office Format Text Document"
-msgstr "Uniform Office Format tekstni dokument"
+msgstr "Uniform Office Format tekstualni dokument"
#: registryitem_writer.ulf
msgctxt ""
@@ -230,4 +230,4 @@ msgctxt ""
"STR_REG_VAL_T602_TEXT_FILE\n"
"LngText.text"
msgid "T602 Text File"
-msgstr "T602 tekstna datoteka"
+msgstr "T602 tekstualna datoteka"
diff --git a/source/hr/sd/messages.po b/source/hr/sd/messages.po
index 8f9fb8b305f..85c2556efe6 100644
--- a/source/hr/sd/messages.po
+++ b/source/hr/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-16 21:53+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-17 22:47+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563314038.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1563403648.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -702,7 +702,7 @@ msgstr "Sve datoteke"
#: sd/inc/strings.hrc:101
msgctxt "STR_UNDO_INSERT_TEXTFRAME"
msgid "Insert text frame"
-msgstr "Umetni tekstni okvir"
+msgstr "Umetni tekstualni okvir"
#: sd/inc/strings.hrc:102
msgctxt "STR_ACTION_NOTPOSSIBLE"
@@ -5345,9 +5345,9 @@ msgstr "_Provjera"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "R_asporedi"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "Ur_edi"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Mreža"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Grafika"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "B_oja"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Medij"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Prika_z prezentacije"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Okvi_r"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Po_gled"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "_Nadzorna stranica"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Umetn_i"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "D_raw"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "Pogle_d"
@@ -5719,7 +5719,7 @@ msgstr "Može se odabrati samo područje teksta"
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:79
msgctxt "optimpressgeneralpage|label2"
msgid "Text Objects"
-msgstr "Tekstni objekti"
+msgstr "Tekstualni objekti"
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:113
msgctxt "optimpressgeneralpage|startwithwizard"
diff --git a/source/hr/setup_native/source/mac.po b/source/hr/setup_native/source/mac.po
index d6fb5966ad0..857fc6051bf 100644
--- a/source/hr/setup_native/source/mac.po
+++ b/source/hr/setup_native/source/mac.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://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: 2019-07-02 15:38+0000\n"
+"PO-Revision-Date: 2019-07-18 10:07+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1562081904.000000\n"
+"X-POOTLE-MTIME: 1563444432.000000\n"
#: macinstall.ulf
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"AbortLabel\n"
"LngText.text"
msgid "Abort"
-msgstr "Prekid"
+msgstr "Prekini"
#: macinstall.ulf
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"ListCancelLabel\n"
"LngText.text"
msgid "Abort"
-msgstr "Prekid"
+msgstr "Prekini"
#: macinstall.ulf
msgctxt ""
diff --git a/source/hr/sfx2/messages.po b/source/hr/sfx2/messages.po
index 91957b6c81a..6926f3dd11d 100644
--- a/source/hr/sfx2/messages.po
+++ b/source/hr/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-06-03 17:46+0200\n"
-"PO-Revision-Date: 2019-07-16 18:52+0000\n"
+"PO-Revision-Date: 2019-07-19 12:55+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563303177.000000\n"
+"X-POOTLE-MTIME: 1563540915.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -182,7 +182,7 @@ msgstr ""
#: include/sfx2/strings.hrc:56
msgctxt "STR_QRYTEMPL_MESSAGE"
msgid "The template '$(ARG1)' on which this document is based, has been modified. Do you want to update style based formatting according to the modified template?"
-msgstr "Predložak '$(ARG1)' na kojemu se dokument temelji, promijenjen je. Želite li ažurirati oblikovanja na temelju promijenjenog predloška?"
+msgstr "Predložak '$(ARG1)' na kojemu se dokument temelji je promijenjen. Želite li ažurirati oblikovanja na temelju promijenjenog predloška?"
#: include/sfx2/strings.hrc:57
msgctxt "STR_QRYTEMPL_UPDATE_BTN"
@@ -1286,7 +1286,7 @@ msgstr "Ovaj dokument ima neispravan potpis."
#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
-msgstr "Potpis je bio ispravan, ali je dokument u međuvremenu izmjenjen"
+msgstr "Potpis je bio ispravan, ali je dokument u međuvremenu promijenjen"
#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
diff --git a/source/hr/shell/source/win32/shlxthandler/res.po b/source/hr/shell/source/win32/shlxthandler/res.po
index d2f94afd8fd..1037c5f98c0 100644
--- a/source/hr/shell/source/win32/shlxthandler/res.po
+++ b/source/hr/shell/source/win32/shlxthandler/res.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2019-07-06 16:09+0000\n"
+"PO-Revision-Date: 2019-07-19 12:55+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1562429357.000000\n"
+"X-POOTLE-MTIME: 1563540932.000000\n"
#: shlxthdl.ulf
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"%MODIFIED%\n"
"LngText.text"
msgid "Modified"
-msgstr "Mijenjano"
+msgstr "Promijenjeno"
#: shlxthdl.ulf
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"%MODIFIED_COLON%\n"
"LngText.text"
msgid "Modified:"
-msgstr "Mijenjano:"
+msgstr "Promijenjeno:"
#: shlxthdl.ulf
msgctxt ""
diff --git a/source/hr/svtools/messages.po b/source/hr/svtools/messages.po
index 5e86421506a..969fbb22aca 100644
--- a/source/hr/svtools/messages.po
+++ b/source/hr/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-07-16 20:36+0000\n"
+"PO-Revision-Date: 2019-07-19 13:09+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563309416.000000\n"
+"X-POOTLE-MTIME: 1563541785.000000\n"
#. To translators: tdf#125447 use no mnemonic in this string
#: include/svtools/strings.hrc:26
@@ -1532,7 +1532,7 @@ msgstr "MyThes tezaurus"
#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
-msgstr "Popis ignoriranih riječi"
+msgstr "Popis zanemarenih riječi"
#: svtools/inc/borderline.hrc:18
msgctxt "RID_SVXSTR_BORDERLINE"
@@ -1925,7 +1925,7 @@ msgstr "Operacija je pokrenuta s neispravnim parametrima."
#: svtools/inc/errtxt.hrc:100
msgctxt "RID_ERRHDL"
msgid "The operation on the file was aborted."
-msgstr "Otkazana je aktivnost nad datotekom."
+msgstr "Operacija nad datotekom je prekinuta."
#: svtools/inc/errtxt.hrc:101
msgctxt "RID_ERRHDL"
@@ -4164,12 +4164,12 @@ msgstr "Vrsta"
#: svtools/inc/templwin.hrc:48
msgctxt "STRARY_SVT_DOCINFO"
msgid "Modified on"
-msgstr "Izmjenjeno na"
+msgstr "Datum promjene"
#: svtools/inc/templwin.hrc:49
msgctxt "STRARY_SVT_DOCINFO"
msgid "Modified by"
-msgstr "Izmijenjeno od"
+msgstr "Autor promjene"
#: svtools/inc/templwin.hrc:50
msgctxt "STRARY_SVT_DOCINFO"
@@ -4619,7 +4619,7 @@ msgstr "Da bi značajka cirkularne pošte radila dobro, potrebno je ponovno pokr
#: svtools/uiconfig/ui/restartdialog.ui:100
msgctxt "restartdialog|reason_pdf"
msgid "For the modified default print job format to take effect, %PRODUCTNAME must be restarted."
-msgstr "Da bi se promjene na zadanim postavkama ispisa mogle primijeniti, potrebno je ponovno pokrenuti %PRODUCTNAME."
+msgstr "Da bi se promjene u zadanim postavkama za ispis primijenile, potrebno je ponovo pokrenuti %PRODUCTNAME."
#: svtools/uiconfig/ui/restartdialog.ui:115
msgctxt "restartdialog|reason_bibliography_install"
@@ -4649,7 +4649,7 @@ msgstr "Kako bi ažurirane postavke jezika počele raditi, potrebno je ponovno p
#: svtools/uiconfig/ui/restartdialog.ui:190
msgctxt "restartdialog|reason_exp_features"
msgid "For the modified experimental features to take effect, %PRODUCTNAME must be restarted."
-msgstr "Kako bi izmjenjene eksperimentalne funkcije počele raditi, potrebno je ponovo pokrenuti %PRODUCTNAME."
+msgstr "Da bi se promijenjene eksperimentalne funkcije primijenile, potrebno je ponovo pokrenuti %PRODUCTNAME."
#: svtools/uiconfig/ui/restartdialog.ui:205
msgctxt "restartdialog|reason_extension_install"
diff --git a/source/hr/svx/messages.po b/source/hr/svx/messages.po
index d7e98b2ea08..c088f32b75c 100644
--- a/source/hr/svx/messages.po
+++ b/source/hr/svx/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-07-17 01:36+0000\n"
+"PO-Revision-Date: 2019-07-19 13:12+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563327379.000000\n"
+"X-POOTLE-MTIME: 1563541940.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -264,22 +264,22 @@ msgstr "Bézier krivulje"
#: include/svx/strings.hrc:74
msgctxt "STR_ObjNameSingulFREELINE"
msgid "Freeform Line"
-msgstr "Ručno crtana linija"
+msgstr "Prostoručna linija"
#: include/svx/strings.hrc:75
msgctxt "STR_ObjNamePluralFREELINE"
msgid "Freeform Lines"
-msgstr "Ručno crtane linije"
+msgstr "Prostoručne linije"
#: include/svx/strings.hrc:76
msgctxt "STR_ObjNameSingulFREEFILL"
msgid "Freeform Line"
-msgstr "Ručno crtana linija"
+msgstr "Prostoručna linija"
#: include/svx/strings.hrc:77
msgctxt "STR_ObjNamePluralFREEFILL"
msgid "Freeform Lines"
-msgstr "Ručno crtane linije"
+msgstr "Prostoručne linije"
#: include/svx/strings.hrc:78
msgctxt "STR_ObjNameSingulCOMBLINE"
@@ -319,12 +319,12 @@ msgstr "Okvir teksta"
#: include/svx/strings.hrc:85
msgctxt "STR_ObjNameSingulTEXTLNK"
msgid "Linked text frame"
-msgstr "Povezani tekstni okvir"
+msgstr "Povezani tekstualni okvir"
#: include/svx/strings.hrc:86
msgctxt "STR_ObjNamePluralTEXTLNK"
msgid "Linked text frames"
-msgstr "Povezani tekstni okviri"
+msgstr "Povezani tekstualni okviri"
#: include/svx/strings.hrc:87
msgctxt "STR_ObjNameSingulTITLETEXT"
@@ -1802,22 +1802,22 @@ msgstr "Smjesti tekst u okvir"
#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
-msgstr "Lijevi razmak tekstnog okvira"
+msgstr "Lijevi razmak tekstualnog okvira"
#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
-msgstr "Desni razmak tekstnog okvira"
+msgstr "Desni razmak tekstualnog okvira"
#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
-msgstr "Gornji razmak tekstnog okvira"
+msgstr "Gornji razmak tekstualnog okvira"
#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
-msgstr "Donji razmak tekstnog okvira"
+msgstr "Donji razmak tekstualnog okvira"
#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_VERTADJUST"
@@ -3112,22 +3112,22 @@ msgstr "Akademski"
#: include/svx/strings.hrc:654
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
-msgstr "Plavi okvir s popisom"
+msgstr "Plavi popis"
#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
-msgstr "Zeleni okvir s popisom"
+msgstr "Zeleni popis"
#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
-msgstr "Crveni okvir s popisom"
+msgstr "Crveni popis"
#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
-msgstr "Žuti okvir s popisom"
+msgstr "Žuti popis"
#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
@@ -3774,7 +3774,7 @@ msgstr "Šljunak"
#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
-msgstr "Radionica pergamena"
+msgstr "Radionica pergamenta"
#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_BMP19"
@@ -5342,12 +5342,12 @@ msgstr "Gumb za pritisnuti"
#: include/svx/strings.hrc:1135
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
-msgstr "Gumb izbora"
+msgstr "Izborni gumb"
#: include/svx/strings.hrc:1136
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
-msgstr "Kvadratić"
+msgstr "Potvrdni okvir"
#: include/svx/strings.hrc:1137
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
@@ -5357,7 +5357,7 @@ msgstr "Polje oznake"
#: include/svx/strings.hrc:1138
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
-msgstr "Okvir grupe"
+msgstr "Grupni okvir"
#: include/svx/strings.hrc:1139
msgctxt "RID_STR_PROPTITLE_EDIT"
@@ -5847,12 +5847,12 @@ msgstr "Digitalni potpis: Potpis dokumenta i certifikat su u redu, ali nisu potp
#: include/svx/strings.hrc:1236
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
-msgstr "Dokument je izmijenjen. Kliknite kako biste spremili dokument."
+msgstr "Dokument je promijenjen. Kliknite, kako biste spremili dokument."
#: include/svx/strings.hrc:1237
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
-msgstr "Dokument nije izmjenjen od zadnjeg spremanja."
+msgstr "Dokument nije promijenjen od zadnjeg spremanja."
#: include/svx/strings.hrc:1238
msgctxt "RID_SVXSTR_DOC_LOAD"
@@ -6426,8 +6426,8 @@ msgid ""
"The image has been modified. By default the original image will be saved.\n"
"Do you want to save the modified version instead?"
msgstr ""
-"Slika je izmijenjena. Po zadanim će postavkama izvorna slika biti spremljena.\n"
-"Želite li umjesto toga spremiti izmijenjenu inačicu slike?"
+"Slika je promijenjena. Izvorna slika će standardno biti spremljena.\n"
+"Želite li umjesto toga spremiti inačicu promijenjene slike?"
#: include/svx/strings.hrc:1368
msgctxt "RID_SUBSETMAP"
@@ -10837,7 +10837,7 @@ msgstr "Polje _naziva"
#: svx/uiconfig/ui/convertmenu.ui:40
msgctxt "convertmenu|ConvertToGroup"
msgid "G_roup Box"
-msgstr "Okvir grupe"
+msgstr "G_rupni okvir"
#: svx/uiconfig/ui/convertmenu.ui:49
msgctxt "convertmenu|ConvertToList"
@@ -10852,12 +10852,12 @@ msgstr "_Potvrdni okvir"
#: svx/uiconfig/ui/convertmenu.ui:67
msgctxt "convertmenu|ConvertToRadio"
msgid "_Radio Button"
-msgstr "_Radiogumb"
+msgstr "_Izborni gumb"
#: svx/uiconfig/ui/convertmenu.ui:76
msgctxt "convertmenu|ConvertToCombo"
msgid "Combo Bo_x"
-msgstr "Padajući _izbornik"
+msgstr "_Kombinirani okvir"
#: svx/uiconfig/ui/convertmenu.ui:85
msgctxt "convertmenu|ConvertToImageBtn"
@@ -12626,7 +12626,7 @@ msgstr "Poligon"
#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
-msgstr "Ručno crtani poligon"
+msgstr "Prostoručni poligon"
#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
diff --git a/source/hr/sw/messages.po b/source/hr/sw/messages.po
index c36ee1a894b..5bd4d3e872a 100644
--- a/source/hr/sw/messages.po
+++ b/source/hr/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-17 01:37+0000\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-19 13:13+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563327438.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1563542002.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -2754,12 +2754,12 @@ msgstr "Postavi pokazivač"
#: sw/inc/strings.hrc:470
msgctxt "STR_UNDO_CHAIN"
msgid "Link text frames"
-msgstr "Poveži tekstne okvire"
+msgstr "Poveži tekstualne okvire"
#: sw/inc/strings.hrc:471
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink text frames"
-msgstr "Odspoji tekstne okvire"
+msgstr "Odspoji tekstualne okvire"
#: sw/inc/strings.hrc:472
msgctxt "STR_UNDO_FTNINFO"
@@ -2860,7 +2860,7 @@ msgid "One line break"
msgid_plural "$1 line breaks"
msgstr[0] "$1 prijelom retka"
msgstr[1] "$1 prijeloma retka"
-msgstr[2] "$1 prijeloma redaka"
+msgstr[2] ""
#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_PAGEBREAKS"
@@ -3860,7 +3860,7 @@ msgstr "Stvoreno"
#: sw/inc/strings.hrc:701
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
-msgstr "Izmijenjeno"
+msgstr "Promijenjeno"
#: sw/inc/strings.hrc:702
msgctxt "FLD_DOCINFO_PRINT"
@@ -4255,17 +4255,17 @@ msgstr "Zahtijevani oblik međuspremnika nije dostupan."
#: sw/inc/strings.hrc:784
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
-msgstr "%PRODUCTNAME %PRODUCTVERSION tekstni dokument"
+msgstr "%PRODUCTNAME %PRODUCTVERSION tekstualni dokument"
#: sw/inc/strings.hrc:785
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
-msgstr "Slika (%PRODUCTNAME %PRODUCTVERSION tekstni dokument)"
+msgstr "Slika (%PRODUCTNAME %PRODUCTVERSION tekstualni dokument)"
#: sw/inc/strings.hrc:786
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
-msgstr "Objekt (%PRODUCTNAME %PRODUCTVERSION tekstni dokument)"
+msgstr "Objekt (%PRODUCTNAME %PRODUCTVERSION tekstualni dokument)"
#: sw/inc/strings.hrc:787
msgctxt "STR_DDEFORMAT"
@@ -5818,7 +5818,7 @@ msgstr "Sljedeća tablica"
#: sw/inc/strings.hrc:1148
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next text frame"
-msgstr "Sljedeći tekstni okvir"
+msgstr "Sljedeći tekstualni okvir"
#: sw/inc/strings.hrc:1149
msgctxt "STR_IMGBTN_PGE_DOWN"
@@ -5898,7 +5898,7 @@ msgstr "Prethodna tablica"
#: sw/inc/strings.hrc:1164
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous text frame"
-msgstr "Prethodni tekstni okvir"
+msgstr "Prethodni tekstualni okvir"
#: sw/inc/strings.hrc:1165
msgctxt "STR_IMGBTN_PGE_UP"
@@ -8372,7 +8372,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Odaberi stavku: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Uređivanje"
@@ -10959,7 +10959,7 @@ msgstr "Prazne linije"
#: sw/uiconfig/swriter/ui/linenumbering.ui:468
msgctxt "linenumbering|linesintextframes"
msgid "Lines in text frames"
-msgstr "Linije u tekstnim okvirima"
+msgstr "Redci u tekstualnim okvirima"
#: sw/uiconfig/swriter/ui/linenumbering.ui:484
msgctxt "linenumbering|showfooterheadernumbering"
@@ -11914,7 +11914,7 @@ msgstr "Degradiraj poglavlje"
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:135
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
-msgstr "Uključ/Isključi okvir s popisom"
+msgstr "Uključi/Isključi okvir s popisom"
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:148
msgctxt "navigatorpanel|root|tooltip_text"
diff --git a/source/hr/swext/mediawiki/help.po b/source/hr/swext/mediawiki/help.po
index c0c710477f3..4a2d6148d2b 100644
--- a/source/hr/swext/mediawiki/help.po
+++ b/source/hr/swext/mediawiki/help.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-11-15 13:53+0100\n"
-"PO-Revision-Date: 2019-07-17 00:47+0000\n"
+"PO-Revision-Date: 2019-07-18 10:30+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563324448.000000\n"
+"X-POOTLE-MTIME: 1563445840.000000\n"
#: help.tree
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"par_id5328836\n"
"help.text"
msgid "In the <emph>URL</emph> text box, enter the address of a wiki that you want to connect to."
-msgstr "U tekstualni okvir <emph>URL-a</emph> upišite adresu wikija na koji se želite povezati."
+msgstr "U tekstualni okvir <emph>URL-a</emph> upišite adresu wikija na koju se želite povezati."
#: wiki.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"par_id389416\n"
"help.text"
msgid "You can copy the URL from a web browser and paste it into the textbox."
-msgstr "Možete kopirati URL iz internetskoga preglednika i zalijepiti ga u tekstni okvir."
+msgstr "Možete kopirati URL iz internetskoga preglednika i zalijepiti ga u tekstualni okvir."
#: wiki.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 "U nastavku slijedi popis tekstnih formata koja Wiki Publisher može postaviti na wiki poslužitelj."
+msgstr "U nastavku slijedi popis tekstualnih formata koje Wiki Publisher može postaviti na wiki poslužitelj."
#: wikiformats.xhp
msgctxt ""
@@ -542,7 +542,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 "Izrada je jednostavnih tablica dobro podržana. Zaglavlja će tablice biti izvezena u odgovarajućim stilovima zaglavlja wiki tablica. Međutim, bit će ignorirana prilagođena oblikovanja obruba, veličine stupaca te boje pozadine."
+msgstr "Izrada jednostavnih tablica je dobro podržana. Zaglavlja tablice će biti izvezena u odgovarajućim stilovima zaglavlja wiki tablica. Međutim, zanemarit će se prilagođena oblikovanja obruba, veličine stupaca te boje pozadine."
#: wikiformats.xhp
msgctxt ""
diff --git a/source/hr/uui/messages.po b/source/hr/uui/messages.po
index a5a255c68a3..b2fc66d2d7b 100644
--- a/source/hr/uui/messages.po
+++ b/source/hr/uui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-07-05 12:34+0000\n"
+"PO-Revision-Date: 2019-07-19 13:13+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -14,12 +14,12 @@ 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: 1562330067.000000\n"
+"X-POOTLE-MTIME: 1563542024.000000\n"
#: uui/inc/ids.hrc:27
msgctxt "RID_UUI_ERRHDL"
msgid "The operation executed on $(ARG1) was aborted."
-msgstr "Prekinuta je operacija izvršavana nad $(ARG1)."
+msgstr "Operacija izvršavana nad $(ARG1) je prekinuta."
#: uui/inc/ids.hrc:29
msgctxt "RID_UUI_ERRHDL"
@@ -513,7 +513,7 @@ msgid ""
msgstr ""
"Datoteka dokumenta '$(ARG1)' je zaključana s vaše strane na drugom sustavu od $(ARG2).\n"
"\n"
-"Otvorite dokument samo za čitanje, ili ignorirajte vlastito zaključavanje i otvorite dokument za uređivanje."
+"Otvorite dokument samo za čitanje ili zanemarite vlastito zaključavanje i otvorite dokument za uređivanje."
#: uui/inc/strings.hrc:35
msgctxt "STR_ALREADYOPEN_READONLY_BTN"
@@ -534,7 +534,7 @@ msgid ""
msgstr ""
"Zaključali ste datoteku '$(ARG1)' na drugom sustavu od $(ARG2).\n"
"\n"
-"Zatvorite dokument na drugom sustavi i pokušajte ga ponovno spremiti, ili ignorirajte vlastito zaključavanje i spremite sadašnji dokument."
+"Zatvorite dokument na drugom sustavi i pokušajte ga ponovno spremiti ili zanemarite vlastito zaključavanje i spremite sadašnji dokument."
#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
@@ -603,7 +603,7 @@ msgid ""
"You may also ignore the file locking and open the document for editing."
msgstr ""
"\n"
-"Možete i ignorirati zaključavanje dokumenta i otvoriti dokument za uređivanje."
+"Možete i zanemariti zaključavanje dokumenta i otvoriti dokument za uređivanje."
#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
@@ -674,7 +674,7 @@ msgstr ""
"\n"
"$(ARG2)\n"
"\n"
-"Možete pokušati ignorirati zaključavanje i u dokument unijeti novi sadržaj preko postojećega."
+"Možete pokušati zanemariti zaključavanje i prepisati postojeći dokument novim sadržajem."
#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
@@ -717,7 +717,7 @@ msgstr "Lozinka nije ispravna. Datoteka se ne može otvoriti."
#: uui/inc/strings.hrc:71
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
-msgstr "Lozinka nije ispravna. Datoteka se ne može izmijeniti."
+msgstr "Lozinka je neispravna. Datoteka se ne može promijeniti."
#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
diff --git a/source/hr/vcl/messages.po b/source/hr/vcl/messages.po
index de4aef5c3e5..e617859003c 100644
--- a/source/hr/vcl/messages.po
+++ b/source/hr/vcl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:23+0200\n"
-"PO-Revision-Date: 2019-07-16 18:18+0000\n"
+"PO-Revision-Date: 2019-07-18 10:26+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563301111.000000\n"
+"X-POOTLE-MTIME: 1563445608.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -575,7 +575,7 @@ msgstr "~Ne"
#: vcl/inc/strings.hrc:55
msgctxt "SV_BUTTONTEXT_RETRY"
msgid "~Retry"
-msgstr "~Pokušaj ponovo"
+msgstr "~Ponovi"
#: vcl/inc/strings.hrc:56
msgctxt "SV_BUTTONTEXT_HELP"
diff --git a/source/hr/wizards/messages.po b/source/hr/wizards/messages.po
index d01e135fa6f..1aed3d1649c 100644
--- a/source/hr/wizards/messages.po
+++ b/source/hr/wizards/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2019-07-16 18:02+0000\n"
+"PO-Revision-Date: 2019-07-18 09:41+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563300166.000000\n"
+"X-POOTLE-MTIME: 1563442906.000000\n"
#: wizards/com/sun/star/wizards/common/strings.hrc:32
msgctxt "RID_COMMON_START_0"
@@ -24,7 +24,7 @@ msgstr "Mapa '%1' ne može biti stvorena.<BR>Možda nema dovoljno prostora na tv
#: wizards/com/sun/star/wizards/common/strings.hrc:33
msgctxt "RID_COMMON_START_1"
msgid "The text document could not be created.<BR>Please check if the module 'PRODUCTNAME Writer' is installed."
-msgstr "Nije moguće stvoriti tekstni dokument.<BR>Provjerite imate li instaliran modul 'PRODUCTNAME Writer'."
+msgstr "Nije moguće stvoriti tekstualni dokument.<BR>Provjerite imate li instaliran modul 'PRODUCTNAME Writer'."
#: wizards/com/sun/star/wizards/common/strings.hrc:34
msgctxt "RID_COMMON_START_2"
@@ -128,9 +128,9 @@ msgid ""
"Under 'Tools - Options - %PRODUCTNAME - Paths' click the 'Default' button to reset the paths to the original default settings.\n"
"Then run the wizard again."
msgstr ""
-"Čarobnjak nije pokrenut zato što neke važne datoteke nisu pronađene.\n"
-"U izborniku Alati pod 'Mogućnosti - %PRODUCTNAME - Putanje' odaberite Zadano radi vraćanja putanja na zadane vrijednosti.\n"
-"Nakon toga ponovno pokrenite čarobnjak."
+"Čarobnjak nije pokrenut, jer neke važne datoteke nisu pronađene.\n"
+"U izborniku „Alati – Mogućnosti – %PRODUCTNAME – Putanje” odaberite „Zadano,” kako bi se vratile zadane vrijednosti za putanje.\n"
+"Nakon toga ponovo pokrenite čarobnjaka."
#: wizards/com/sun/star/wizards/common/strings.hrc:56
msgctxt "RID_LETTERWIZARDDIALOG_START_1"
diff --git a/source/hr/wizards/source/resources.po b/source/hr/wizards/source/resources.po
index 5feaebdd46e..d68384255b2 100644
--- a/source/hr/wizards/source/resources.po
+++ b/source/hr/wizards/source/resources.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2019-07-16 19:07+0000\n"
+"PO-Revision-Date: 2019-07-19 13:15+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\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: 1563304077.000000\n"
+"X-POOTLE-MTIME: 1563542121.000000\n"
#: resources_en_US.properties
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"RID_COMMON_21\n"
"property.text"
msgid "The wizard could not be run, because important files were not found.\\nUnder 'Tools - Options - %PRODUCTNAME - Paths' click the 'Default' button to reset the paths to the original default settings.\\nThen run the wizard again."
-msgstr "Čarobnjak nije mogao biti pokrenut zato što važne datoteke nisu nađene.\\nPod Alati - Mogućnosti - %PRODUCTNAME - Staze kliknite na tipku Zadano kako biste postavili putanje na izvorne zadane postavke.\\nNakon toga ponovno pokrenite čarobnjak."
+msgstr "Čarobnjak nije pokrenut, jer neke važne datoteke nisu pronađene.\\nU izborniku „Alati – Mogućnosti – %PRODUCTNAME – Putanje” odaberite „Zadano,” kako bi se vratile zadane vrijednosti za putanje.\\nNakon toga ponovo pokrenite čarobnjaka."
#: resources_en_US.properties
msgctxt ""
@@ -3174,7 +3174,7 @@ msgctxt ""
"MESSAGES_13\n"
"property.text"
msgid "The Wizard cannot edit this document as cell formats cannot be modified in documents containing protected spreadsheets."
-msgstr "Čarobnjak ne može napraviti izmjene na ovom dokumentu zato što oblikovanje ćelija ne može biti izmijenjeno u dokumentima koji sadrže zaštićene listove."
+msgstr "Čarobnjak ne može urediti ovaj dokument, jer se oblikovanje ćelija ne može mijenjati u dokumentima koji sadrže zaštićene listove."
#: resources_en_US.properties
msgctxt ""
diff --git a/source/hsb/cui/messages.po b/source/hsb/cui/messages.po
index b85671a5bea..81838116b38 100644
--- a/source/hsb/cui/messages.po
+++ b/source/hsb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-04 17:35+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562261725.000000\n"
#: cui/inc/numcategories.hrc:17
@@ -4385,147 +4385,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Naličenske znamješka a čisłowanje"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Runina "
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Typ:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Započeć wot:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Znamješko:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Wubrać..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Wobraz wubrać..."
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Šěrokosć:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Wysokosć:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Poměr bokow wobchować"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Před:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Za:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Dźělatko"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Barba:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "_Relatiwna wulkosć:"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Zasunjenje:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Šěrokosć:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "Re_latiwny"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Pozicija"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Wusměrjenje"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Folija"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Wuběr"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Na globalny dokument nałožić"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Wobłuk płaćiwosće"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Kajkosće"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Přehlad"
@@ -9177,72 +9177,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pomoc"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Dialogi %PRODUCTNAME wužiwać"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialogi wočinić/składować"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Dia_logi %PRODUCTNAME wužiwać"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Ćišćerske dialogi"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Ćišćenje _status \"dokument změnjeny\" staja"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentowy status"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretować jako lěta mjez "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "a "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Lěto (dwuměstnowe)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Wužiwanske daty hromadźić a na załožbu The Document Foundation pósłać"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pomoc při polěpšenju %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME za systemowy start začitać"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Spěšny startowak w žłobiku zmóžnić"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Spěšny startowak %PRODUCTNAME"
@@ -12771,12 +12771,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Přichodny pokiw"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Sće hižo wědźał?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Wotkaz"
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 e3df33a4c20..c41366c4273 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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-03 21:48+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-30 19:06+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: 1562190536.000000\n"
+"X-POOTLE-MTIME: 1564513589.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -21053,6 +21053,24 @@ msgstr "Za LibreOffice darić"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr "Nowe funkcije a změny"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr "Wočińće wersijowe informacije za instalowanu wersiju w standardnym wobhladowaku"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/hsb/sd/messages.po b/source/hsb/sd/messages.po
index 0621e8e6696..70ebbe1f773 100644
--- a/source/hsb/sd/messages.po
+++ b/source/hsb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-03 21:59+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562191169.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5344,9 +5344,9 @@ msgstr "_Přepruwowanje"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Rjadować"
@@ -5414,8 +5414,8 @@ msgid "_Edit"
msgstr "Wo~bdźěłać"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Lěsyca"
@@ -5430,52 +5430,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "_3D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Grafika"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Barba"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Medije"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_Prezentacija"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Wobłu_k"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Napohlad"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "_Folijowy wuhotowak"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Zasadźić"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "_Rysować"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Napohlad"
diff --git a/source/hsb/sw/messages.po b/source/hsb/sw/messages.po
index 6e71c45d209..a26bb55f8c6 100644
--- a/source/hsb/sw/messages.po
+++ b/source/hsb/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -8372,7 +8372,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Zapisk wubrać: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Wobdźěłać"
diff --git a/source/hu/chart2/messages.po b/source/hu/chart2/messages.po
index 23e595b2bdf..1d72a14eec4 100644
--- a/source/hu/chart2/messages.po
+++ b/source/hu/chart2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-03-11 21:58+0000\n"
+"PO-Revision-Date: 2019-07-24 12:54+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: 1552341513.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563972858.000000\n"
#: chart2/inc/chart.hrc:17
msgctxt "tp_ChartType|liststore1"
@@ -612,7 +612,7 @@ msgstr "Névtelen adatsorok"
#: chart2/inc/strings.hrc:138
msgctxt "STR_DATA_UNNAMED_SERIES_WITH_INDEX"
msgid "Unnamed Series %NUMBER"
-msgstr "Névtelen adatsorok %NUMBER"
+msgstr "%NUMBER. adatsor"
#: chart2/inc/strings.hrc:139
msgctxt "STR_DATA_SELECT_RANGE_FOR_SERIES"
diff --git a/source/hu/cui/messages.po b/source/hu/cui/messages.po
index 4b2fcd99e31..24d1dcc35f8 100644
--- a/source/hu/cui/messages.po
+++ b/source/hu/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-14 13:56+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-31 09:18+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563112578.000000\n"
+"X-POOTLE-MTIME: 1564564727.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1858,213 +1858,213 @@ msgstr "Abécé- vagy számsorrendbe rendezheti a bekezdéseket vagy táblázats
#: cui/inc/tipoftheday.hrc:55
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sections in %PRODUCTNAME Writer to protect part of a text, show/hide text, reuse parts from other documents, use different column layout."
-msgstr ""
+msgstr "Használjon szakaszokat a %PRODUCTNAME Writerben, hogy a szöveg egy részét megvédje, megjelenítse, elrejtse, újra felhasználja más dokumentumok részeit vagy különböző oszlopelrendezéseket használjon."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/04020100.html
#: cui/inc/tipoftheday.hrc:56
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet > Fill Cells > Random Number to generate a random series based on various distributions."
-msgstr ""
+msgstr "Használja a Munkalap > Cellák kitöltése > Véletlen szám lehetőséget, hogy véletlen sorozatokat állítson elő bizonyos eloszlások alapján."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/02140700.html
#: cui/inc/tipoftheday.hrc:57
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format > Conditional Formatting > Manage in Calc to find out which cells have been defined with conditional formatting."
-msgstr ""
+msgstr "Használja a Formátum > Feltételes formázás > Kezelés lehetőséget, hogy megtudja mely cellák lettek feltételes formázással meghatározva."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/05120000.html
#: cui/inc/tipoftheday.hrc:58
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
-msgstr ""
+msgstr "A tartalomjegyzék mellett a %PRODUCTNAME ábécérend szerinti, illusztrációkat, táblázatokat, objektumokat, bibliográfiai tárgymutatókat és felhasználó által megadott jegyzékeket is létre tud hozni."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/indices_toc.html
#: cui/inc/tipoftheday.hrc:59
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a series in %PRODUCTNAME Calc such as A1, A2, A3, A11, A15, not in alphabetical order but on the number? Enable natural sort in the Options tab."
-msgstr ""
+msgstr "Egy olyan sorozatot akar rendezni a %PRODUCTNAME Calcban, mint az A1, A2, A3, A11, A15, tehát nem ábécésorrendben, hanem szám szerint? Engedélyezze a természetes rendezést a Beállítások lapon."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/12030200.html
#: cui/inc/tipoftheday.hrc:60
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools > Options > OpenCL."
-msgstr ""
+msgstr "Engedélyezheti a képletcellák tömegesen párhuzamos feldolgozását az Eszközök > Beállítások > OpenCL lapon."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/opencl.html
#: cui/inc/tipoftheday.hrc:61
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
-msgstr ""
+msgstr "A %PRODUCTNAME négy makróbiztonsági szintet (alacsonytól nagyon magasig), és megbízható forrásokat támogat."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:63
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
-msgstr ""
+msgstr "Tudni szeretné az érvényes parancssori paramétereket? Indítja az soffice programok a --help, -h vagy -? kapcsolók egyikével."
#. local help missing
#: cui/inc/tipoftheday.hrc:64
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
-msgstr ""
+msgstr "A hiperhivatkozások megjelenését szeretné kezelni a táblázatban? Szúrja be azokat a HIPERHIVATKOZÁS függvénnyel."
#. local help missing
#: cui/inc/tipoftheday.hrc:65
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Can not get what you want with VLOOKUP? With INDEX and MATCH you can do everything!"
-msgstr ""
+msgstr "Nem sikerült elérni, amit akart az FKERES függvénnyel? Az INDEX és a HOL.VAN mindenre képes!"
#. local help missing
#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
-msgstr ""
+msgstr "Aláírhatja a meglévő PDF-fájlokat és ellenőrizheti az aláírásukat."
#. local help missing
#: cui/inc/tipoftheday.hrc:67
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer includes LibreLogo: simple Logo-like programming environment with turtle vector graphics, DTP and graphic design."
-msgstr ""
+msgstr "A Writer része a LibreLogo: egy egyszerű Logo-szerű programozási környezet teknős-vektorgrafikával, DTP-vel és grafikai tervezéssel."
#. local help missing
#: cui/inc/tipoftheday.hrc:68
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format > Cells > Protection. To prevent insert, delete, rename, move/copy of sheets use Tools > Protect Sheet."
-msgstr ""
+msgstr "Megvédheti a cellákat a Formátum > Cellák > Védelem lehetőséggel. A beszúrás, törlés, átnevezés, lapok áthelyezésének/másolásának megakadályozásához használja az Eszközök > Munkalap védelme lehetőséget."
#. local help missing
#: cui/inc/tipoftheday.hrc:69
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
-msgstr ""
+msgstr "Hozzá akar adni x hónapot egy dátumhoz? Használja ezt: =EDATE(kezdő dátum;hónapok)."
#. local help missing
#: cui/inc/tipoftheday.hrc:70
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependants (Shift+F5) (or use Tools > Detective). For each hit you go one more step in the chain."
-msgstr ""
+msgstr "Kövesse a képletben használt cellákat, előzményeket (Shift+F9) vagy függőségeket (Shift+F5) (vagy használja az Eszközök > Detektív menüpontot). Minden egyes lépéssel egyet lép a láncolatban."
#. local help missing
#: cui/inc/tipoftheday.hrc:71
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a serie? Select the cell range and Sheet > Fill Cells > Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Ki kell töltenie egy sorozatot? Válassza ki a cellatartományt, és használja a Munkalap > Cellák kitöltése > Sorozat funkciót, és válasszon a Számtani, Mértani, Dátumsorozat és az Automatikus kitöltés közül. "
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
-msgstr ""
+msgstr "A %PRODUCTNAME segítségével használhatja a Google Mail fiókját egy körlevél készítéséhez. Töltse ki az Eszközök > Beállítások > %PRODUCTNAME Writer > Körlevél e-mailben lapot."
#. local help missing
#: cui/inc/tipoftheday.hrc:73
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Data > Validity allows you to create drop-down lists where the user selects a value instead of typing."
-msgstr ""
+msgstr "Az Adatok > Érvényesség lehetővé teszi, hogy legördülő listákat hozzon létre, ahol a felhasználó egy értéket választ ki, ahelyett hogy gépelne."
#. local help missing
#: cui/inc/tipoftheday.hrc:74
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use View > Value Highlighting to display cell contents in colors: Text/black, Formulas/green, Numbers/blue, Protected cells/grey background."
-msgstr ""
+msgstr "Használja a Nézet > Értékkiemelés funkciót, hogy színezve jelenítse meg a cellák tartalmát: Szöveg/fekete, Képletek/zöld, Számok/kék, Védett cellák/szürke háttér."
#. local help missing
#: cui/inc/tipoftheday.hrc:75
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
-msgstr ""
+msgstr "Furcsa hiba a Calcban? Err: amelyet egy szám követ? Ez a lap magyarázatot ad:"
#. local help missing
#: cui/inc/tipoftheday.hrc:76
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find the words in bold in a Writer document? Edit > Find & Replace > Other options > Attributes > Font weight."
-msgstr ""
+msgstr "Szeretné megtalálni a félkövér szavakat egy Writer dokumentumban? Szerkesztés > Keresés és csere > Egyéb beállítások > Attribútumok > Betűvastagság."
#. local help missing
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit > Find & Replace: Search = [<|>], Replace = blank and check ‘Regular expressions’ under Other options."
-msgstr ""
+msgstr "Szeretné eltávolítani az összes <> karaktert a dokumentumból, de megtartaná a köztük lévő szöveget? Szerkesztés > Keresés és csere: Keresés = [<|>], Csere = üres, és kapcsolja be a „Reguláris kifejezések” kapcsolót az Egyéb beállítások alatt."
#. local help missing
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > Detective > Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
-msgstr ""
+msgstr "Az Eszközök > Detektív > Érvénytelen adatok megjelenítése funkció kiemeli az összes cellát a munkalapon, amely az ellenőrzési szabályokban megadott tartományokon kívül esik."
#. local help missing
#: cui/inc/tipoftheday.hrc:79
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to allow changes to parts of a read-only document in Writer? Insert frames or sections that can authorize changes."
-msgstr ""
+msgstr "Engedélyeznie kell a módosításokat egy írásvédett dokumentum egy részén a Writerben? Szúrjon be kereteket vagy szakaszokat, amelyekben engedélyezi a módosításokat."
#. local help missing
#: cui/inc/tipoftheday.hrc:80
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writing a book? %PRODUCTNAME master document lets you manage large documents as a container for individual %PRODUCTNAME Writer files."
-msgstr ""
+msgstr "Könyvet ír? A %PRODUCTNAME fődokumentum lehetővé teszi, hogy nagy dokumentumokat kezeljen, amelyeket konténerként szolgálnak az egyes %PRODUCTNAME Writer fájlokhoz."
#. local help missing
#: cui/inc/tipoftheday.hrc:81
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
-msgstr ""
+msgstr "A Calcban használja a RÉSZÁTLAG() függvényt, hogy visszaadja annak az adathalmaznak az átlagát, amely nem tartalmazza a legnagyobb és a legkisebb értéket."
#. local help missing
#: cui/inc/tipoftheday.hrc:82
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
-msgstr ""
+msgstr "Számítsa ki a hiteltörlesztést a Calc-kal: például RÉSZLET(2%/12;36;2500), fizetési periódusra vonatkozó kamatláb: 2%/12, 36 hónap, a hitel összege: 2500."
#. local help missing
#: cui/inc/tipoftheday.hrc:83
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
-msgstr ""
+msgstr "Használja az androidos vagy iPhone telefonját, hogy távolról vezérelje az Impress bemutatóját."
#. local help missing
#: cui/inc/tipoftheday.hrc:84
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
-msgstr ""
+msgstr "Az előadói konzol egy nagyszerű funkció, ha a %PRODUCTNAME Impress-szel dolgozik. Kipróbálta már?"
#. local help missing
#: cui/inc/tipoftheday.hrc:85
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
-msgstr ""
+msgstr "Automatikusan megjelölheti a betűvel jelölt tartalomjegyzék-bejegyzéseket egy szómutatófájl segítségével."
#. local help missing
#: cui/inc/tipoftheday.hrc:86
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
-msgstr ""
+msgstr "A keretek összekapcsolhatóak, így a szöveg átfolyhat az egyikből a másikba, mint a kiadványszerkesztő programokban."
#. local help missing
#: cui/inc/tipoftheday.hrc:88
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get help from the community via the Ask portal."
-msgstr ""
+msgstr "Kapjon segítséget a közösségtől az Ask portálon keresztül."
#: cui/inc/tipoftheday.hrc:89
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has great extensions to increase your productivity, check them out."
-msgstr ""
+msgstr "A %PRODUCTNAME nagyszerű kiegészítőkkel rendelkezik, amelyek gyorsítják a munkáját, nézze meg őket."
#: cui/inc/tipoftheday.hrc:90
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents, check it out."
-msgstr ""
+msgstr "A %PRODUCTNAME rendelkezik egy sablonközponttal, hogy jól kinéző dokumentumokat készíthessen, nézze meg."
#: cui/inc/tipoftheday.hrc:91
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by clicking on F1, if you've installed it. Otherwise check online at:"
-msgstr ""
+msgstr "A beépített súgó az F1 megnyomásával érhető el, ha már telepítette. Egyébként nézze meg online:"
#: cui/inc/tipoftheday.hrc:92
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
-msgstr ""
+msgstr "Szerezze be a %PRODUCTNAME dokumentációt és az ingyenes, felhasználóknak készült könyveket itt:"
#: cui/inc/tipoftheday.hrc:93
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2149,117 +2149,117 @@ msgstr "Válasszon másik ikonkészletet az Eszközök > Beállítások > %PRODU
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File > Properties > Font."
-msgstr ""
+msgstr "Használja a betűkészlet-beágyazást a többi irodai csomaggal történő jobb együttműködés érdekében: Fájl > Tulajdonságok > Betűkészlet."
#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Generate fully customized PDF documents with the exact format, image compression, comments, access rights, password, etc., via File > Export as PDF."
-msgstr ""
+msgstr "Állítson elő teljesen testreszabott PDF dokumentumokat, konkrét formátummal, képtömörítéssel, megjegyzésekkel, hozzáférési jogosultságokkal, jelszavakkal, stb.: Fájl > Exportálás PDF-be."
#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data > Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
-msgstr ""
+msgstr "Használja az Adatok > Statisztika lehetőséget mintavételhez, leíróstatisztikához, varianciaanalízishez, korrelációhoz és másokhoz a %PRODUCTNAME Calcban."
#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select 'Selection count' to display the number of selected cells."
-msgstr ""
+msgstr "Kattintson jobb gombbal a %PRODUCTNAME Calc állapotsorára, és válassza a „Kijelöltek száma” lehetőséget, hogy megjelenítse az éppen kijelölt cellák számát."
#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress use Insert > Media > Photo Album to create a slideshow from a series of pictures with the 'Photo Album' feature."
-msgstr ""
+msgstr "A %PRODUCTNAME Impressben használja a Beszúrás > Média > Fényképalbum lehetőséget, hogy diasort készítsen egy képsorozatból a „Fényképalbum” funkcióval."
#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use shortcut Ctrl+Alt+C for it."
-msgstr ""
+msgstr "Tudta, hogy megjegyzést tehet szövegrészletekhez? Csak használja a Ctrl+Alt+C gyorsbillentyűt."
#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to insert the date in a spreadsheet cell? Type Ctrl+; or Shift+Ctrl+; to insert the time."
-msgstr ""
+msgstr "Dátumot kell beszúrnia egy táblázatcellába? Nyomja meg s Ctrl+; kombinációt, vagy Shift+Ctrl+; az idő beszúrásához."
#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut Ctrl+Alt+Arrow (Up/Down)"
-msgstr ""
+msgstr "Át kell helyeznie egy vagy több bekezdést? Nem kell kivágnia és másolnia: használja a Ctrl+Alt+Nyíl (Fel/Le) billentyűkombinációt"
#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File > Wizards > Document converter."
-msgstr ""
+msgstr "Tömegesen átalakíthatja az MS Office dokumentumokat OpenDocument formátumba a menüben lévő Dokumentumátalakító tündér segítségével: Fájl > Tündérek > Dokumentumátalakító."
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
-msgstr ""
+msgstr "Kapcsolja ki az Eszközök > Beállítások > %PRODUCTNAME Calc > Nézet > Nagyítás: „Munkalapok szinkronizálása” funkciót, így minden munkalap saját nagyítási szinttel rendelkezhet."
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet > Sheet from file."
-msgstr ""
+msgstr "Nyisson meg egy CSV fájlt új munkalapként a jelenlegi munkafüzetben a Munkalap > Munkalap beszúrása fájlból funkcióval."
#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table > Select > Table and Insert > Frame… and move where you want."
-msgstr ""
+msgstr "Át kell helyeznie egy Writer táblázatot? Táblázat > Kijelölés > Táblázat és Beszúrás > Keret…, ezután oda helyezheti, ahová csak szeretné."
#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
-msgstr ""
+msgstr "Ha módosítani akarja a vonalzók 0/0 pontját a %PRODUCTNAME Drawban, akkor húzza a két vonalzó kereszteződését a munkaterület bal felső sarkába."
#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Hold down Ctrl and turn the mouse wheel to change the zoom factor."
-msgstr ""
+msgstr "A nagyítási szint módosításához tartsa lenyomva a Ctrl gombot, és görgessen az egérrel."
#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit > Find & Replace lets you insert special characters directly: right click in input fields or press Shift+Ctrl+S."
-msgstr ""
+msgstr "A Szerkesztés > Keresés és Csere segítségével közvetlenül szúrhat be különleges karaktereket: jobb kattintás a bemeneti mezőkben, vagy nyomja le a Shift+Ctrl+S billentyűkombinációt."
#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don't use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
-msgstr ""
+msgstr "Ne használjon tabulátorokat egy Writer dokumentumban az elemek elrendezéséhez. Attól függően, hogy mit szeretne elérni, egy keret nélküli táblázat jobb választás lehet."
#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
-msgstr ""
+msgstr "Húzzon egy formázott objektumot a Stílusok és formázás ablakra. Egy párbeszédablak fog kinyílni, csak adja meg az új stílus nevét."
#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the 'leading zeroes' cell format option or format the cell as text before entering the number."
-msgstr ""
+msgstr "Tartsa meg a számok előtti nullákat a „vezető nullák” cellaformázási lehetőséggel, vagy formázza a cellát szövegként még mielőtt beírja a számot."
#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except ‘Comments’ in dialog. Use Operations ‘Add’ to not override existing content."
-msgstr ""
+msgstr "Ahhoz hogy anélkül másoljon egy megjegyzést, hogy elveszítené a célcella tartalmát, használja a Speciális beillesztést, és kapcsoljon ki mindent a párbeszédablakon, kivéve a „Megjegyzéseket”. Használja a „Hozzáadás” műveletet, hogy ne írja felül a meglévő tartalmat."
#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
-msgstr ""
+msgstr "Válasszon ki egy objektumot a dokumentum hátterében a Rajzolás eszköztáron lévő Kiválasztás eszközzel, úgy hogy körülrajzolja a kiválasztandó objektumot."
#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apply Heading paragraph styles in Writer with shortcut keys: Ctrl+1 applies Heading 1, Ctrl+2 applies Heading 2, etc."
-msgstr ""
+msgstr "Alkalmazza gyorsbillentyűkkel a bekezdésstílusokat a Writerben: a Ctrl+1 alkalmazza a Címsor 1 stílust, a Ctrl+2 a Címsor 2 stílust, stb."
#: cui/inc/tipoftheday.hrc:131
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
-msgstr ""
+msgstr "Keverje az álló és fekvő elrendezéseket a Calc táblázatokban azáltal, hogy különböző oldalstílusokat állít be a munkalapokon."
#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create different master pages in a presentation template: View > Master Slide and Slide > New Master (or per toolbar or right click in slide pane)."
-msgstr ""
+msgstr "Hozzon létre különböző sablonokat a bemutatósablonban: Nézet > Diasablon és Nézet > Új sablon (vagy az eszköztárról, vagy jobb kattintással a diapanelen)."
#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2269,7 +2269,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
-msgstr ""
+msgstr "Egy automatikusan lejátszott bemutató módosításához nyissa meg azt, majd ha elindult kattintson a jobb egérgombra, és válassza a Szerkesztés lehetőséget a helyi menüben."
#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2279,7 +2279,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the ‘Apply to All Slides’ button."
-msgstr ""
+msgstr "Játsszon le zenét a bemutató alatt úgy, hogy hangot rendel az első diaátmenethez, anélkül hogy rákattintana az „Alkalmazás az összes diára” gombra."
#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2299,7 +2299,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the ‘Printable’ flag is not set (right click on the tab and ‘Modify Layer’)."
-msgstr ""
+msgstr "Látni akar egy objektumot a Drawban, de nem nyomtatásban nem szeretné? Rajzolja egy olyan rétegre, amelyen nincs beállítva a „Nyomtatható” jelző (jobb kattintás a lapon, és „Réteg módosítása”)."
#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2309,62 +2309,62 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the ‘Vertical Text’ tool in the Drawing toolbar, check Tools > Options > Language Settings > Languages > Default languages > Asian (and make the button visible with right click)."
-msgstr ""
+msgstr "Ahhoz hogy elérje a „Függőleges szöveg” eszközt a Rajzolás eszköztáron, nézze meg az Eszközök > Beállítások > Nyelvi beállítások > Nyelvek > Alapértelmezett nyelvek > Ázsiai beállítást (és tegye láthatóvá jobb kattintással)."
#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to add many shapes in Draw/Impress? Double-click a tool in the drawing toolbar to use it for repeated tasks."
-msgstr ""
+msgstr "Számos alakzatot akar hozzáadni a Drawban/Impressben? Kattintson duplán az eszközre a rajzolás eszköztáron, hogy ismétlődő feladatokhoz használja azt."
#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data > AutoFilter, click the drop-down arrow, and chose ‘Top10’."
-msgstr ""
+msgstr "Csak a legmagasabb értékeket akarja megjeleníteni egy táblázatban? Válassza az Adatok > Automatikus szűrő lehetőséget, kattintson a legördülő nyílra, és válassza az „Első 10” lehetőséget."
#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
-msgstr ""
+msgstr "Nem tud módosítani vagy törölni egy egyéni cellastílust? Nézze meg az összes munkalapot, egyik se legyen írásvédett."
#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
-msgstr ""
+msgstr "Meg akarja tudni, hogy hány nap van a jelenlegi hónapban? Használja a DAYSINMONTH(MA()) függvényt."
#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert > Image or drag a background from the Gallery, then Format > Arrange > To Background."
-msgstr ""
+msgstr "Adjon háttérképeket a táblázatoknak a Beszúrás > Kép menüponttal, vagy húzzon át egy háttérképet a Galériából, majd Formátum > Elrendezés > Háttérbe."
#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert > Object > Formula to convert the text."
-msgstr ""
+msgstr "Hogy gyorsan matematikai objektumot kapjon a Writerben, gépelje be a képletet, jelölje ki, majd Beszúrás > Objektum > Képlet a szöveg átalakításához."
#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check ‘Print automatically inserted blank pages’ in the print dialog’s Writer tab."
-msgstr ""
+msgstr "A Writer képes arra, hogy üres oldalt szúrjon be két egymást követő páratlan (páros) oldal közé. Nézze meg az „Automatikusan beszúrt üres lapok” beállítást a nyomtatási párbeszédablak Writer lapján."
#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
-msgstr ""
+msgstr "Az FKERES 4., nem kötelező paramétere azt jelzi, hogy az első adatoszlop rendezett-e. Ha nem, írja be, hogy HAMIS vagy 0."
#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format > Columns > Show."
-msgstr ""
+msgstr "Meg akarja jeleníteni a rejtett A oszlopot? Kattintson egy cellára a B oszlopban, nyomja meg a bal egérgombot, mozgassa balra az egeret, majd engedje fel. Ezután kapcsolja be a Formátum > Oszlopok > Megjelenítés lehetőséggel."
#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File > Save a Copy you create a new document continuing to work on the original."
-msgstr ""
+msgstr "A Writer segít a biztonsági másolatok készítésében: a Fájl > Másolat mentése segítségével új dokumentumot hozhat létre, miközben az eredetin dolgozik tovább."
#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File > Send > Outline to Presentation automatically creates a slideshow from the outline."
-msgstr ""
+msgstr "Egy Writerben készült jelentést kell bemutatnia? Fájl > Küldés > Vázlatból bemutató automatikusan bemutatót hoz létre a dokumentum vázlatából."
#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2644,7 +2644,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create a master document from the current Writer document? File > Send > Create Master Document (sub-documents are created depending of outline)."
-msgstr ""
+msgstr "Fődokumentumot akar létrehozni a jelenlegi Writer dokumentumból? Fájl > Küldés > Fődokumentum létrehozása (az aldokumentumok a vázlat alapján kerülnek létrehozásra)."
#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -4387,147 +4387,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Felsorolás és számozás"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Szint"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Típus:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Kezdőérték:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Karakter:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Kiválasztás…"
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Kép kiválasztása…"
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Szélesség:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Magasság:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Rögzített méretarány"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Előtte:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Utána:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Elválasztó"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Szín:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "_Rel. méret:"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Behúzás:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Szélesség:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "_Viszonylagos"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Pozíció"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Igazítás"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Dia"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Kijelölés"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Alkalmazás a sablonon"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Hatókör"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Tulajdonságok"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Előnézet"
@@ -9179,72 +9179,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Súgó"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME-párbeszédablakok _használata"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Megnyitás és mentés párbeszédablakok"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME-párbeszédablakok _használata"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Nyomtatási párbeszédablakok"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Nyomtatáskor „módosított” állapotba kerül"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentumállapot"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "A _következő évszámok között: "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "és "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Év (két számjeggyel)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Felhasználási adatok gyűjtése és elküldése a The Document Foundationnek"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Segítsen a %PRODUCTNAME tökéletesítésében"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "A %PRODUCTNAME betöltése a rendszer indításakor"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Gyorsindító engedélyezése"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME gyorsindító"
@@ -12773,12 +12773,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Következő tipp"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Tudta?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Hivatkozás"
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 2ad86deb8bf..efb96a18cd8 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-14 10:21+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot 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: 1563099668.000000\n"
#: BaseWindowState.xcu
@@ -21054,6 +21054,24 @@ msgstr "Adományozás a LibreOffice-nak"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/hu/sd/messages.po b/source/hu/sd/messages.po
index c00a8030894..6b8ddadfeca 100644
--- a/source/hu/sd/messages.po
+++ b/source/hu/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-14 10:57+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@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: 1563101856.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "_Véleményezés"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Elrendezés"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Szerkesztés"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Rács"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Kép"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Szín"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Méd_ia"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Diavetíté_s"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Ke_ret"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Nézet"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "_Sablonoldal"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Beszúrás"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "_Rajzolás"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Nézet"
diff --git a/source/hu/sw/messages.po b/source/hu/sw/messages.po
index 4e8b3861ebb..e116cb2615a 100644
--- a/source/hu/sw/messages.po
+++ b/source/hu/sw/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-14 10:59+0000\n"
-"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-18 12:58+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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563101961.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1563454680.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Elem választása: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Szerkesztés"
@@ -17467,7 +17467,7 @@ msgstr "_Optimális"
#: sw/uiconfig/swriter/ui/wrappage.ui:195
msgctxt "wrappage|label1"
msgid "Settings"
-msgstr "Beállítások"
+msgstr "Körbefuttatás stílusa"
#: sw/uiconfig/swriter/ui/wrappage.ui:242
msgctxt "wrappage|label4"
diff --git a/source/id/cui/messages.po b/source/id/cui/messages.po
index dc1ae1323d5..6fecc43625e 100644
--- a/source/id/cui/messages.po
+++ b/source/id/cui/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-14 12:57+0000\n"
-"Last-Translator: Syahmin Sukhairi <syahmin@gmail.com>\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-24 06:05+0000\n"
+"Last-Translator: Andik Nur Achmad <andik.achmad@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=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563109068.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1563948345.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1911,13 +1911,13 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:65
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Can not get what you want with VLOOKUP? With INDEX and MATCH you can do everything!"
-msgstr ""
+msgstr "Tidak bisa mendapatkan yang Anda mau dengan VLOOKUP? Dengan INDEX dan MATCH Anda dapat melakukan segalanya!"
#. local help missing
#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
-msgstr ""
+msgstr "Anda dapat menandatangani berkas PDF yang ada dan juga memverifikasi tanda tangan itu."
#. local help missing
#: cui/inc/tipoftheday.hrc:67
@@ -1929,13 +1929,13 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:68
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format > Cells > Protection. To prevent insert, delete, rename, move/copy of sheets use Tools > Protect Sheet."
-msgstr ""
+msgstr "Anda dapat melindungi sel dengan Format > Sel > Proteksi. Untuk mencegah menyisipkan, menghapus, mengganti nama, memindahkan/menyalin lembar gunakan Perkakas > Lindungi Lembar."
#. local help missing
#: cui/inc/tipoftheday.hrc:69
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
-msgstr ""
+msgstr "Anda ingin menambahkan x bulan ke sebuah tanggal? Gunakan =EDATE(tanggal;bulan)."
#. local help missing
#: cui/inc/tipoftheday.hrc:70
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Bantuan"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "G_unakan dialog %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialog Buka/Simpan"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Gunakan _dialog %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialog Cetak"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Mencetak mengubah status \"dokumen berubah\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Status Dokumen"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Tafs_irkan sebagai tahun antara "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "dan "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Tahun (Dua Digit)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Kumpulkan data pemakaian dan kirim ke Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Bantu Perbaiki %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Memuat %PRODUCTNAME saat awal mula sistem"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Aktifkan Awal-Cepat baki sistem"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Awal-Cepat %PRODUCTNAME"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/id/helpcontent2/source/text/shared/04.po b/source/id/helpcontent2/source/text/shared/04.po
index 621f5ebbf40..f197d0b1f70 100644
--- a/source/id/helpcontent2/source/text/shared/04.po
+++ b/source/id/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: 2019-01-07 11:14+0100\n"
-"PO-Revision-Date: 2019-02-24 08:42+0000\n"
-"Last-Translator: KucingMaboek <kucingmaboek.iam@gmail.com>\n"
+"PO-Revision-Date: 2019-07-26 17:30+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\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: 1550997740.000000\n"
+"X-POOTLE-MTIME: 1564162250.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"hd_id3154198\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Ctrl+Shift+J</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Ctrl+Shift+J</defaultinline></caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Ctrl+Shift+J</defaultinline></switchinline>"
#: 01010000.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"hd_id3149404\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>F1</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>F1</defaultinline></caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>F1</defaultinline></switchinline>"
#: 01010000.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"hd_id3154951\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Shift+F1</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Shift+F1</defaultinline></caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Shift+F1</defaultinline></switchinline>"
#: 01010000.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"par_id3153309\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Context Help</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Bantuan Konteks</defaultinline></caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Bantuan Konteks</defaultinline></switchinline>"
#: 01010000.xhp
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 153899e2f79..91e7dfd6de1 100644
--- a/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-06-30 10:54+0000\n"
"Last-Translator: Andik Nur Achmad <andik.achmad@gmail.com>\n"
"Language-Team: Indonesian <>\n"
@@ -21054,6 +21054,24 @@ msgstr "Menyumbang ke LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/id/scp2/source/winexplorerext.po b/source/id/scp2/source/winexplorerext.po
index 58c182260e6..e5c446262b5 100644
--- a/source/id/scp2/source/winexplorerext.po
+++ b/source/id/scp2/source/winexplorerext.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2013-05-23 23:41+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-20 16:19+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=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1369352491.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563639596.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -30,4 +30,4 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
-msgstr ""
+msgstr "Membuat Microsoft Windows Explorer mampu menampilkan informasi tentang dokumen %PRODUCTNAME, misalnya pratinjau gambar mini, dan pencarian teks lengkap."
diff --git a/source/id/sd/messages.po b/source/id/sd/messages.po
index 0f2c4a4d200..511210d13a9 100644
--- a/source/id/sd/messages.po
+++ b/source/id/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-02-24 04:16+0000\n"
"Last-Translator: artemtech <sofyanartem@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5345,9 +5345,9 @@ msgstr "_Tinjau"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Susun"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Sunting"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Kisi"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Grafis"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Warna"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Pertunjukan _Salindia"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Bing_kai"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Tilik"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Hala_man Induk"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "S_isip"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Gamba_r"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Tilik"
diff --git a/source/id/sfx2/messages.po b/source/id/sfx2/messages.po
index e88188b7ce9..5c18a2c187f 100644
--- a/source/id/sfx2/messages.po
+++ b/source/id/sfx2/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-06-03 17:46+0200\n"
-"PO-Revision-Date: 2019-02-25 14:24+0000\n"
-"Last-Translator: kul.abdi <sholikhul.abdi@gmail.com>\n"
+"PO-Revision-Date: 2019-07-20 16:22+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=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1551104692.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563639732.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -891,7 +891,7 @@ msgstr "S~isip"
#: include/sfx2/strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL_IMAGES"
msgid "<All images>"
-msgstr ""
+msgstr "<Semua gambar>"
#: include/sfx2/strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
@@ -1206,22 +1206,22 @@ msgstr "Terlibat"
#: include/sfx2/strings.hrc:248
msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr ""
+msgstr "Donasi Anda mendukung komunitas kami di seluruh dunia."
#: include/sfx2/strings.hrc:249
msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr ""
+msgstr "Sumbang"
#: include/sfx2/strings.hrc:250
msgctxt "STR_WHATSNEW"
msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
-msgstr ""
+msgstr "Anda menjalankan versi %PRODUCTVERSION dari %PRODUCTNAME untuk pertama kali. Apakah Anda ingin mempelajari apa yang baru?"
#: include/sfx2/strings.hrc:251
msgctxt "STR_WHATSNEW_BUTTON"
msgid "Release Notes"
-msgstr ""
+msgstr "Catatan Rilis"
#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
@@ -2296,22 +2296,22 @@ msgstr ""
#: sfx2/uiconfig/ui/linefragment.ui:55
msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
-msgstr ""
+msgstr "Buang Properti"
#: sfx2/uiconfig/ui/linefragment.ui:144
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
-msgstr ""
+msgstr "..."
#: sfx2/uiconfig/ui/linefragment.ui:180
msgctxt "linefragment|yes"
msgid "Yes"
-msgstr ""
+msgstr "Ya"
#: sfx2/uiconfig/ui/linefragment.ui:196
msgctxt "linefragment|no"
msgid "No"
-msgstr ""
+msgstr "Tidak"
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
@@ -2911,7 +2911,7 @@ msgstr "atau Buat sebuah Kategori Baru"
#: sfx2/uiconfig/ui/templatedlg.ui:45
msgctxt "colsmenu|insert"
msgid "Reset Default Template"
-msgstr ""
+msgstr "Atur Ulang Templat Baku"
#: sfx2/uiconfig/ui/templatedlg.ui:61
msgctxt "templatedlg|TemplateDialog"
diff --git a/source/id/svx/messages.po b/source/id/svx/messages.po
index e6795738275..6d4b11f3b75 100644
--- a/source/id/svx/messages.po
+++ b/source/id/svx/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-02-25 03:33+0000\n"
-"Last-Translator: Andik Nur Achmad <andik.achmad@gmail.com>\n"
+"PO-Revision-Date: 2019-07-27 02: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=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1551065608.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564195798.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -5817,7 +5817,7 @@ msgstr "Timpa"
#: include/svx/strings.hrc:1230
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
-msgstr ""
+msgstr "Sisip"
#: include/svx/strings.hrc:1231
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
@@ -7923,7 +7923,7 @@ msgstr "Kiri ke kanan (vertikal)"
#: include/svx/strings.hrc:1669
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
-msgstr ""
+msgstr "Dasar ke puncak, kiri ke kanan (vertikal)"
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
@@ -11340,42 +11340,42 @@ msgstr "Sumber Cahaya 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Warna ringan 1"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Warna ringan 2"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Warna ringan 3"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Warna ringan 4"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Warna ringan 5"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Warna ringan 6"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Warna ringan 7"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Warna ringan 8"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -11885,7 +11885,7 @@ msgstr "Dokumen Pemulihan %PRODUCTNAME %PRODUCTVERSION"
#: svx/uiconfig/ui/docrecoverysavedialog.ui:76
msgctxt "docrecoverysavedialog|label1"
msgid "Due to an error, %PRODUCTNAME crashed. All the files you were working on will now be saved. The next time %PRODUCTNAME is launched, your files will be recovered automatically."
-msgstr ""
+msgstr "Karena suatu kesalahan, %PRODUCTNAME mengalami kres. Semua berkas yang tengah Anda kerjakan saat ini akan disimpan. Kala berikutnya %PRODUCTNAME dijalankan, berkas-berkas Anda tersebut akan dipulihkan secara otomatis."
#: svx/uiconfig/ui/docrecoverysavedialog.ui:98
msgctxt "docrecoverysavedialog|label2"
@@ -12200,7 +12200,7 @@ msgstr "Penyunting Kontur"
#: svx/uiconfig/ui/floatingcontour.ui:44
msgctxt "floatingcontour|statuscolor"
msgid "Color"
-msgstr ""
+msgstr "Warna"
#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
@@ -13373,12 +13373,12 @@ msgstr "Komentar"
#: svx/uiconfig/ui/redlineviewpage.ui:146
msgctxt "redlineviewpage|calcchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Perubahan"
#: svx/uiconfig/ui/redlineviewpage.ui:245
msgctxt "redlineviewpage|writerchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Perubahan"
#: svx/uiconfig/ui/rowsmenu.ui:12
msgctxt "rowsmenu|delete"
diff --git a/source/id/sw/messages.po b/source/id/sw/messages.po
index f3e039aafec..7051b7aed2b 100644
--- a/source/id/sw/messages.po
+++ b/source/id/sw/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
-"Last-Translator: kul.abdi <sholikhul.abdi@gmail.com>\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\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: 1551106154.000000\n"
+"X-POOTLE-MTIME: 1564195616.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1886,7 +1886,7 @@ msgstr "Sembunyikan Semu~a Komentar $1"
#: sw/inc/strings.hrc:290
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
-msgstr ""
+msgstr "Penomoran Bab"
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
@@ -3115,7 +3115,7 @@ msgstr "Mengubah nama objek $1"
#: sw/inc/strings.hrc:544
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr ""
+msgstr "Mengubah deskripsi objek $1"
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -3140,7 +3140,7 @@ msgstr "Hapus tabel"
#: sw/inc/strings.hrc:549
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
-msgstr ""
+msgstr "Menyisipkan ruas formulir"
#: sw/inc/strings.hrc:551
msgctxt "STR_ACCESS_DOC_NAME"
@@ -3426,27 +3426,27 @@ msgstr "Ketikan kanan-ke-kiri"
#: sw/inc/strings.hrc:611
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "All ~Pages"
-msgstr ""
+msgstr "Semua ~Halaman"
#: sw/inc/strings.hrc:612
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
-msgstr ""
+msgstr "~Halaman:"
#: sw/inc/strings.hrc:613
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
-msgstr ""
+msgstr "Halaman g~enap"
#: sw/inc/strings.hrc:614
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
-msgstr ""
+msgstr "Halaman gan~jil"
#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
-msgstr ""
+msgstr "~Seleksi"
#: sw/inc/strings.hrc:616
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
@@ -3506,7 +3506,7 @@ msgstr "Mode Seret"
#: sw/inc/strings.hrc:629
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
-msgstr ""
+msgstr "Kirim Kerangka ke Papan Klip"
#: sw/inc/strings.hrc:630
msgctxt "STR_HYPERLINK"
@@ -4520,7 +4520,7 @@ msgstr "Selesai memeriksa ejaan."
#: sw/inc/strings.hrc:844
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
-msgstr ""
+msgstr "Tidak ada kamus"
#. --------------------------------------------------------------------
#. Description: strings for the types
@@ -4877,7 +4877,7 @@ msgstr "Tel. (Kantor)"
#: sw/inc/strings.hrc:931
msgctxt "FLD_EU_FAX"
msgid "Fax"
-msgstr ""
+msgstr "Faks"
#: sw/inc/strings.hrc:932
msgctxt "FLD_EU_EMAIL"
@@ -6658,7 +6658,7 @@ msgstr "Men~urun"
#: sw/inc/strings.hrc:1339
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
-msgstr ""
+msgstr "Tidak ada Butir yang dinyatakan"
#. --------------------------------------------------------------------
#. Description: Classification strings
@@ -7014,17 +7014,17 @@ msgstr "Jadikan ruas dari sumber data Anda cocok dengan elemen alamat."
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:185
msgctxt "assignfieldsdialog|ST_ADDRESSELEMENT"
msgid "Address elements"
-msgstr ""
+msgstr "Elemen alamat"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:197
msgctxt "assignfieldsdialog|ST_PREVIEW"
msgid "Preview"
-msgstr ""
+msgstr "Pratinjau"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:210
msgctxt "assignfieldsdialog|ST_MATCHESTO"
msgid "Matches to field"
-msgstr ""
+msgstr "Yang cocok ke ruas"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:236
msgctxt "assignfieldsdialog|PREVIEW_LABEL"
@@ -7309,7 +7309,7 @@ msgstr "Kategori"
#: sw/uiconfig/swriter/ui/autotext.ui:475
msgctxt "autotext|example-atkobject"
msgid "Preview"
-msgstr ""
+msgstr "Pratinjau"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:8
msgctxt "bibliographyentry|BibliographyEntryDialog"
@@ -7454,7 +7454,7 @@ msgstr "Nomor telepon rumah"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:214
msgctxt "businessdatapage|url-atkobject"
msgid "Fax number"
-msgstr ""
+msgstr "Nomor faks"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:231
msgctxt "businessdatapage|email-atkobject"
@@ -7679,7 +7679,7 @@ msgstr "Karakter"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "_Standar"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -8361,7 +8361,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Pilih Item: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Sunting"
@@ -8384,12 +8384,12 @@ msgstr ""
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:218
msgctxt "dropdownformfielddialog|up"
msgid "Move Up"
-msgstr ""
+msgstr "Naikkan"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:232
msgctxt "dropdownformfielddialog|down"
msgid "Move Down"
-msgstr ""
+msgstr "Turunkan"
#: sw/uiconfig/swriter/ui/editcategories.ui:18
msgctxt "editcategories|EditCategoriesDialog"
@@ -9898,7 +9898,7 @@ msgstr "Cer_minkan pada halaman genap"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:698
msgctxt "frmtypepage|followtextflow"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Jaga tetap di dalam batas teks"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:721
msgctxt "frmtypepage|label11"
@@ -10288,27 +10288,27 @@ msgstr "_Dengan Kondisi"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:198
msgctxt "insertbookmark|page"
msgid "Page"
-msgstr ""
+msgstr "Halaman"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:212
msgctxt "insertbookmark|name"
msgid "Name"
-msgstr ""
+msgstr "Nama"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:226
msgctxt "insertbookmark|text"
msgid "Text"
-msgstr ""
+msgstr "Teks"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:240
msgctxt "insertbookmark|hidden"
msgid "Hidden"
-msgstr ""
+msgstr "Tersembunyi"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:254
msgctxt "insertbookmark|condition"
msgid "Condition"
-msgstr ""
+msgstr "Syarat"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:280
msgctxt "insertbookmark|goto"
@@ -11438,7 +11438,7 @@ msgstr "Seluruh halaman"
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:375
msgctxt "mmlayoutpage|example-atkobject"
msgid "Preview"
-msgstr ""
+msgstr "Pratinjau"
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:402
msgctxt "mmlayoutpage|label1"
diff --git a/source/id/vcl/messages.po b/source/id/vcl/messages.po
index 12073240c0d..5ab51c552c5 100644
--- a/source/id/vcl/messages.po
+++ b/source/id/vcl/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:23+0200\n"
-"PO-Revision-Date: 2019-03-04 09:56+0000\n"
-"Last-Translator: Andik Nur Achmad <andik.achmad@gmail.com>\n"
+"PO-Revision-Date: 2019-07-27 07:05+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=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1551693387.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564211137.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -977,17 +977,17 @@ msgstr "Ruas Kosong"
#: vcl/inc/strings.hrc:147
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
-msgstr ""
+msgstr "Hari"
#: vcl/inc/strings.hrc:148
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
-msgstr ""
+msgstr "Minggu"
#: vcl/inc/strings.hrc:149
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
-msgstr ""
+msgstr "Hari ini"
#. To translators: This is the first entry of a sequence of measurement unit names
#: vcl/inc/units.hrc:28
@@ -1500,7 +1500,7 @@ msgstr "Slashed Zero"
#: vcl/uiconfig/ui/aboutbox.ui:73
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
-msgstr ""
+msgstr "Lihat Log: $GITHASH"
#: vcl/uiconfig/ui/cupspassworddialog.ui:8
msgctxt "cupspassworddialog|CUPSPasswordDialog"
@@ -1525,7 +1525,7 @@ msgstr "Harap masukkan data otentikasi Anda bagi server \"%s\""
#: vcl/uiconfig/ui/cupspassworddialog.ui:145
msgctxt "cupspassworddialog|label1"
msgid "_Domain:"
-msgstr ""
+msgstr "_Domain:"
#: vcl/uiconfig/ui/editmenu.ui:12
msgctxt "editmenu|undo"
@@ -1710,12 +1710,12 @@ msgstr "Pencetak"
#: vcl/uiconfig/ui/printdialog.ui:540
msgctxt "printdialog|rbAllPages"
msgid "_All pages"
-msgstr ""
+msgstr "Semu_a halaman"
#: vcl/uiconfig/ui/printdialog.ui:556
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
-msgstr ""
+msgstr "_Halaman:"
#: vcl/uiconfig/ui/printdialog.ui:577
msgctxt "printdialog|pagerange"
@@ -1725,47 +1725,47 @@ msgstr "contoh: 1, 3-5, 7, 9"
#: vcl/uiconfig/ui/printdialog.ui:587
msgctxt "printdialog|rmEvenPages"
msgid "_Even pages"
-msgstr ""
+msgstr "Halaman g_enap"
#: vcl/uiconfig/ui/printdialog.ui:605
msgctxt "printdialog|rbOddPages"
msgid "_Odd pages"
-msgstr ""
+msgstr "Halaman _ganjil"
#: vcl/uiconfig/ui/printdialog.ui:625
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
-msgstr ""
+msgstr "_Dari cetakan mana:"
#: vcl/uiconfig/ui/printdialog.ui:650
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
-msgstr ""
+msgstr "_Sisi kertas:"
#: vcl/uiconfig/ui/printdialog.ui:677
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
-msgstr ""
+msgstr "Cacah sali_nan:"
#: vcl/uiconfig/ui/printdialog.ui:701
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
-msgstr ""
+msgstr "Cetak dalam urutan te_rbalik"
#: vcl/uiconfig/ui/printdialog.ui:722
msgctxt "printdialog|collate"
msgid "_Collate"
-msgstr ""
+msgstr "_Kolasi"
#: vcl/uiconfig/ui/printdialog.ui:758
msgctxt "printdialog|cbPrintOrder"
msgid "_Order:"
-msgstr ""
+msgstr "_Urutan:"
#: vcl/uiconfig/ui/printdialog.ui:780
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
-msgstr ""
+msgstr "_Seleksi"
#: vcl/uiconfig/ui/printdialog.ui:828
msgctxt "printdialog|label2"
diff --git a/source/id/wizards/messages.po b/source/id/wizards/messages.po
index 7531c21947c..b9dc34c7656 100644
--- a/source/id/wizards/messages.po
+++ b/source/id/wizards/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2019-02-16 08:25+0000\n"
+"PO-Revision-Date: 2019-07-20 16: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=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1550305552.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563639793.000000\n"
#: wizards/com/sun/star/wizards/common/strings.hrc:32
msgctxt "RID_COMMON_START_0"
@@ -1085,7 +1085,7 @@ msgstr "Palet Agendaku"
#: wizards/com/sun/star/wizards/common/strings.hrc:264
msgctxt "RID_AGENDAWIZARDDIALOG_START_43"
msgid "An error occurred while saving the agenda template."
-msgstr ""
+msgstr "Kesalahan terjadi saat menyimpan templat agenda."
#: wizards/com/sun/star/wizards/common/strings.hrc:265
msgctxt "RID_AGENDAWIZARDDIALOG_START_44"
@@ -1145,7 +1145,7 @@ msgstr "Nama dan Lokasi"
#: wizards/com/sun/star/wizards/common/strings.hrc:276
msgctxt "RID_AGENDAWIZARDDIALOG_START_56"
msgid "An error occurred while opening the agenda template."
-msgstr ""
+msgstr "Terjadi kesalahan saat membuka templat agenda."
#: wizards/com/sun/star/wizards/common/strings.hrc:277
msgctxt "RID_AGENDAWIZARDDIALOG_START_57"
diff --git a/source/id/wizards/source/resources.po b/source/id/wizards/source/resources.po
index 55d6edc42da..3aee4b0ba70 100644
--- a/source/id/wizards/source/resources.po
+++ b/source/id/wizards/source/resources.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2018-09-20 13:45+0000\n"
-"Last-Translator: Jordan Maulana <jordanmaulana26@gmail.com>\n"
+"PO-Revision-Date: 2019-07-20 16:23+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=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1537451133.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563639812.000000\n"
#: resources_en_US.properties
msgctxt ""
@@ -4206,7 +4206,7 @@ msgctxt ""
"RTErrorDesc\n"
"property.text"
msgid "An error has occurred in the wizard."
-msgstr ""
+msgstr "Suatu kesalah terjadi dalam wahana pandu."
#: resources_en_US.properties
msgctxt ""
diff --git a/source/is/cui/messages.po b/source/is/cui/messages.po
index d23e1ae653f..9fc82bde8cf 100644
--- a/source/is/cui/messages.po
+++ b/source/is/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-05-03 12:49+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hjálp"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Nota valmyndir %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Opna/Vista gluggar"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Nota _valmyndir %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Prentunargluggar"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Prentun breytir stöðu \"breytt skjal\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Staða skjals"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Túlka sem ár á m_illi"
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "og "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ár (tveir tölustafir)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Safna gögnum um notkun og senda þau til The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Hjálpa til við að bæta %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Hlaða inn %PRODUCTNAME við kerfisræsingu"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Virkja flýtiræsi í kerfisbakka"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME flýtiræsir"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/is/dbaccess/messages.po b/source/is/dbaccess/messages.po
index 1b28e7867e9..4956982f6db 100644
--- a/source/is/dbaccess/messages.po
+++ b/source/is/dbaccess/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-05-03 12:50+0000\n"
+"PO-Revision-Date: 2019-07-19 06:26+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: 1556887841.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563517570.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -3234,7 +3234,7 @@ msgstr "_Síðar"
#: dbaccess/uiconfig/ui/migrwarndlg.ui:61
msgctxt "migrationwarndialog|link"
msgid "Click for important information about migration."
-msgstr ""
+msgstr "Smelltu til að sjá mikilvægar upplýsingar varðandi yfirfærslu."
#: dbaccess/uiconfig/ui/mysqlnativepage.ui:47
msgctxt "mysqlnativepage|connectionheader"
diff --git a/source/is/extensions/messages.po b/source/is/extensions/messages.po
index 759cdb93c3c..bee1325a6ba 100644
--- a/source/is/extensions/messages.po
+++ b/source/is/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-02-18 11:36+0000\n"
+"PO-Revision-Date: 2019-07-19 06:29+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: 1550489814.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563517775.000000\n"
#: extensions/inc/command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -1718,62 +1718,62 @@ msgstr "(Sjálfgefið)"
#: extensions/inc/strings.hrc:244
msgctxt "RID_STR_URL"
msgid "URL"
-msgstr ""
+msgstr "Slóð (URL)"
#: extensions/inc/strings.hrc:245
msgctxt "RID_STR_SELECTIONMODEL"
msgid "Selection Type"
-msgstr ""
+msgstr "Valtegund"
#: extensions/inc/strings.hrc:246
msgctxt "RID_STR_USEGRIDLINE"
msgid "Use grid line"
-msgstr ""
+msgstr "Nota hnitalínu"
#: extensions/inc/strings.hrc:247
msgctxt "RID_STR_GRIDLINECOLOR"
msgid "Grid line color"
-msgstr ""
+msgstr "Litur hnitalínu"
#: extensions/inc/strings.hrc:248
msgctxt "RID_STR_SHOWCOLUMNHEADER"
msgid "Show column header"
-msgstr ""
+msgstr "Birta fyrirsögn dálks"
#: extensions/inc/strings.hrc:249
msgctxt "RID_STR_SHOWROWHEADER"
msgid "Show row header"
-msgstr ""
+msgstr "Birta fyrirsögn raðar"
#: extensions/inc/strings.hrc:250
msgctxt "RID_STR_HEADERBACKGROUNDCOLOR"
msgid "Header background color"
-msgstr ""
+msgstr "Bakgrunnslitur fyrirsagna"
#: extensions/inc/strings.hrc:251
msgctxt "RID_STR_HEADERTEXTCOLOR"
msgid "Header text color"
-msgstr ""
+msgstr "Leturlitur fyrirsagna"
#: extensions/inc/strings.hrc:252
msgctxt "RID_STR_ACTIVESELECTIONBACKGROUNDCOLOR"
msgid "Active selection background color"
-msgstr ""
+msgstr "Bakgrunnslitur á virku vali"
#: extensions/inc/strings.hrc:253
msgctxt "ID_STR_ACTIVESELECTIONTEXTCOLOR"
msgid "Active selection text color"
-msgstr ""
+msgstr "Textalitur á virku vali"
#: extensions/inc/strings.hrc:254
msgctxt "RID_STR_INACTIVESELECTIONBACKGROUNDCOLOR"
msgid "Inactive selection background color"
-msgstr ""
+msgstr "Bakgrunnslitur á óvirku vali"
#: extensions/inc/strings.hrc:255
msgctxt "RID_STR_INACTIVESELECTIONTEXTCOLOR"
msgid "Inactive selection text color"
-msgstr ""
+msgstr "Textalitur á óvirku vali"
#: extensions/inc/strings.hrc:256
msgctxt "RID_STR_STANDARD"
diff --git a/source/is/filter/messages.po b/source/is/filter/messages.po
index dcecfaf6489..bd443426293 100644
--- a/source/is/filter/messages.po
+++ b/source/is/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-05-24 12:58+0000\n"
+"PO-Revision-Date: 2019-07-19 06:35+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: 1558702681.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563518132.000000\n"
#: filter/inc/strings.hrc:25
msgctxt "STR_UNKNOWN_APPLICATION"
@@ -518,7 +518,7 @@ msgstr "Flytja einungis út _minnispunkta"
#: filter/uiconfig/ui/pdfgeneralpage.ui:710
msgctxt "pdfgeneralpage|pdfa"
msgid "Archive (P_DF/A, ISO 19005)"
-msgstr ""
+msgstr "Safnskrá (P_DF/A, ISO 19005)"
#: filter/uiconfig/ui/pdfgeneralpage.ui:714
msgctxt "pdfgeneralpage|pdfa|tooltip_text"
@@ -528,12 +528,12 @@ msgstr "Býr til ISO 19005-2 samhæfða PDF skrá, góður kostur til að geyma
#: filter/uiconfig/ui/pdfgeneralpage.ui:732
msgctxt "pdfgeneralpage|pdfa"
msgid "PDF/A-2b"
-msgstr ""
+msgstr "PDF/A-2b"
#: filter/uiconfig/ui/pdfgeneralpage.ui:746
msgctxt "pdfgeneralpage|pdfa"
msgid "PDF/A-1b"
-msgstr ""
+msgstr "PDF/A-1b"
#: filter/uiconfig/ui/pdfgeneralpage.ui:779
msgctxt "pdfgeneralpage|label4"
diff --git a/source/is/filter/source/config/fragments/filters.po b/source/is/filter/source/config/fragments/filters.po
index 72090291d7a..887d0f33d82 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: 2019-06-03 17:45+0200\n"
-"PO-Revision-Date: 2019-02-18 11:37+0000\n"
+"PO-Revision-Date: 2019-07-19 06:37+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: 1550489830.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563518224.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–365"
-msgstr ""
+msgstr "Word 2007–365"
#: MS_Word_2007_XML_Template.xcu
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–365 Template"
-msgstr ""
+msgstr "Word 2007–365 sniðmát"
#: MS_Word_2007_XML_VBA.xcu
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–365 VBA"
-msgstr ""
+msgstr "Word 2007–365 VBA"
#: MS_Word_95.xcu
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–365 (macro-enabled)"
-msgstr ""
+msgstr "Excel 2007–365 (virkir fjölvar)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
@@ -1301,7 +1301,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–365"
-msgstr ""
+msgstr "Excel 2007–365"
#: calc_MS_Excel_2007_XML_Template.xcu
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–365 Template"
-msgstr ""
+msgstr "Excel 2007–365 sniðmát"
#: calc_OOXML.xcu
msgctxt ""
@@ -1589,7 +1589,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365"
-msgstr ""
+msgstr "PowerPoint 2007–365"
#: impress_MS_PowerPoint_2007_XML_AutoPlay.xcu
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365 AutoPlay"
-msgstr ""
+msgstr "PowerPoint 2007–365 sjálfspilandi"
#: impress_MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
@@ -1607,7 +1607,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365 Template"
-msgstr ""
+msgstr "PowerPoint 2007–365 sniðmát"
#: impress_MS_PowerPoint_2007_XML_VBA.xcu
msgctxt ""
@@ -1616,7 +1616,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365 VBA"
-msgstr ""
+msgstr "PowerPoint 2007–365 VBA"
#: impress_OOXML.xcu
msgctxt ""
diff --git a/source/is/filter/source/config/fragments/types.po b/source/is/filter/source/config/fragments/types.po
index 9f94d1accba..9534cbb2e34 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: 2019-06-03 17:45+0200\n"
-"PO-Revision-Date: 2018-08-20 22:58+0000\n"
+"PO-Revision-Date: 2019-07-19 06:37+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: 1534805884.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563518263.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007–365 VBA XML"
-msgstr ""
+msgstr "Microsoft Excel 2007–365 VBA XML"
#: MS_Excel_2007_XML.xcu
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–365"
-msgstr ""
+msgstr "Excel 2007–365"
#: MS_Excel_2007_XML_Template.xcu
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–365 Template"
-msgstr ""
+msgstr "Excel 2007–365 sniðmát"
#: MS_PowerPoint_2007_XML.xcu
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365"
-msgstr ""
+msgstr "PowerPoint 2007–365"
#: MS_PowerPoint_2007_XML_AutoPlay.xcu
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365"
-msgstr ""
+msgstr "PowerPoint 2007–365"
#: MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365 Template"
-msgstr ""
+msgstr "PowerPoint 2007–365 sniðmát"
#: MS_PowerPoint_2007_XML_VBA.xcu
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365 VBA"
-msgstr ""
+msgstr "PowerPoint 2007–365 VBA"
#: StarBase.xcu
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–365"
-msgstr ""
+msgstr "Word 2007–365"
#: writer_MS_Word_2007_XML_Template.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–365 Template"
-msgstr ""
+msgstr "Word 2007–365 sniðmát"
#: writer_MS_Word_2007_XML_VBA.xcu
msgctxt ""
@@ -320,7 +320,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–365 VBA"
-msgstr ""
+msgstr "Word 2007–365 VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/is/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/is/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 9d4f8820c2a..716dba8671c 100644
--- a/source/is/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/is/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2018-11-20 18:11+0000\n"
+"PO-Revision-Date: 2019-07-19 07:53+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: 1542737503.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563522795.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"OOO_CONTROL_7\n"
"LngText.text"
msgid "{&DialogDefaultBold}Change Current Destination Folder"
-msgstr ""
+msgstr "{&DialogDefaultBold}Breyta núverandi möppu fyrir uppsetningu"
#: Control.ulf
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"OOO_CONTROL_27\n"
"LngText.text"
msgid "{&DialogDefaultBold}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogDefaultBold}Velkomin í uppsetningarforritið fyrir [ProductName]"
#: Control.ulf
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"OOO_CONTROL_36\n"
"LngText.text"
msgid "{\\DialogDefault}{80}"
-msgstr ""
+msgstr "{\\DialogDefault}{80}"
#: Control.ulf
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"OOO_CONTROL_40\n"
"LngText.text"
msgid "{&DialogDefaultBold}User Information"
-msgstr ""
+msgstr "{&DialogDefaultBold}Upplýsingar um notanda"
#: Control.ulf
msgctxt ""
@@ -1230,7 +1230,7 @@ msgctxt ""
"OOO_CONTROL_41\n"
"LngText.text"
msgid "{\\DialogDefault}{50}"
-msgstr ""
+msgstr "{\\DialogDefault}{50}"
#: Control.ulf
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"OOO_CONTROL_54\n"
"LngText.text"
msgid "{&DialogDefaultBold}Custom Setup"
-msgstr ""
+msgstr "{&DialogDefaultBold}Sérsniðin uppsetning"
#: Control.ulf
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"OOO_CONTROL_65\n"
"LngText.text"
msgid "{&DialogDefaultBold}Custom Setup Tips"
-msgstr ""
+msgstr "{&DialogDefaultBold}Ábendingar fyrir sérsniðna uppsetningu"
#: Control.ulf
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"OOO_CONTROL_90\n"
"LngText.text"
msgid "{&DialogDefaultBold}Destination Folder"
-msgstr ""
+msgstr "{&DialogDefaultBold}Úttaksmappa"
#: Control.ulf
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"OOO_CONTROL_98\n"
"LngText.text"
msgid "{&DialogDefaultBold}Disk Space Requirements"
-msgstr ""
+msgstr "{&DialogDefaultBold}Kröfur um diskpláss"
#: Control.ulf
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"OOO_CONTROL_105\n"
"LngText.text"
msgid "{&DialogDefaultBold}Files in Use"
-msgstr ""
+msgstr "{&DialogDefaultBold}Skrár í notkun"
#: Control.ulf
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"OOO_CONTROL_115\n"
"LngText.text"
msgid "{&DialogDefaultBold}Change Current Destination Folder"
-msgstr ""
+msgstr "{&DialogDefaultBold}Breyta núverandi möppu fyrir uppsetningu"
#: Control.ulf
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"OOO_CONTROL_126\n"
"LngText.text"
msgid "{&DialogHeading}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogHeading}Velkomin í uppsetningarforritið fyrir [ProductName]"
#: Control.ulf
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"OOO_CONTROL_133\n"
"LngText.text"
msgid "{&DialogDefaultBold}License Agreement"
-msgstr ""
+msgstr "{&DialogDefaultBold}Notkunarskilmálar"
#: Control.ulf
msgctxt ""
@@ -1766,7 +1766,7 @@ msgctxt ""
"OOO_CONTROL_140\n"
"LngText.text"
msgid "{&DialogDefaultBold}Program Maintenance"
-msgstr ""
+msgstr "{&DialogDefaultBold}Viðhald forrits"
#: Control.ulf
msgctxt ""
@@ -1830,7 +1830,7 @@ msgctxt ""
"OOO_CONTROL_149\n"
"LngText.text"
msgid "{&DialogDefaultBold}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogDefaultBold}Velkomin í uppsetningarforritið fyrir [ProductName]"
#: Control.ulf
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"OOO_CONTROL_155\n"
"LngText.text"
msgid "{&DialogDefaultBold}Out of Disk Space"
-msgstr ""
+msgstr "{&DialogDefaultBold}Ekki nægt diskpláss"
#: Control.ulf
msgctxt ""
@@ -1910,7 +1910,7 @@ msgctxt ""
"OOO_CONTROL_161\n"
"LngText.text"
msgid "{&DialogHeading}Welcome to the Patch for [ProductName]"
-msgstr ""
+msgstr "{&DialogHeading}Velkomin í endurbótina fyrir [ProductName]"
#: Control.ulf
msgctxt ""
@@ -1966,7 +1966,7 @@ msgctxt ""
"OOO_CONTROL_170\n"
"LngText.text"
msgid "{&DialogDefaultBold}Ready to Modify the Program"
-msgstr ""
+msgstr "{&DialogDefaultBold}Tilbúið í að breyta forritinu"
#: Control.ulf
msgctxt ""
@@ -1974,7 +1974,7 @@ msgctxt ""
"OOO_CONTROL_171\n"
"LngText.text"
msgid "{&DialogDefaultBold}Ready to Repair the Program"
-msgstr ""
+msgstr "{&DialogDefaultBold}Tilbúið í að gera við forritið"
#: Control.ulf
msgctxt ""
@@ -1982,7 +1982,7 @@ msgctxt ""
"OOO_CONTROL_172\n"
"LngText.text"
msgid "{&DialogDefaultBold}Ready to Install the Program"
-msgstr ""
+msgstr "{&DialogDefaultBold}Tilbúið í að setja upp forritið"
#: Control.ulf
msgctxt ""
@@ -2038,7 +2038,7 @@ msgctxt ""
"OOO_CONTROL_181\n"
"LngText.text"
msgid "{&DialogDefaultBold}Remove the Program"
-msgstr ""
+msgstr "{&DialogDefaultBold}Fjarlægja forritið"
#: Control.ulf
msgctxt ""
@@ -2110,7 +2110,7 @@ msgctxt ""
"OOO_CONTROL_190\n"
"LngText.text"
msgid "{&DialogHeading}Installation Wizard Completed"
-msgstr ""
+msgstr "{&DialogHeading}Uppsetningaferli lokið"
#: Control.ulf
msgctxt ""
@@ -2150,7 +2150,7 @@ msgctxt ""
"OOO_CONTROL_198\n"
"LngText.text"
msgid "{&DialogHeading}Installation Wizard Completed"
-msgstr ""
+msgstr "{&DialogHeading}Uppsetningaferli lokið"
#: Control.ulf
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"OOO_CONTROL_217\n"
"LngText.text"
msgid "{&DialogHeading}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogHeading}Velkomin í uppsetningarforritið fyrir [ProductName]"
#: Control.ulf
msgctxt ""
@@ -2334,7 +2334,7 @@ msgctxt ""
"OOO_CONTROL_226\n"
"LngText.text"
msgid "{&DialogHeading}Installation Wizard Completed"
-msgstr ""
+msgstr "{&DialogHeading}Uppsetningaferli lokið"
#: Control.ulf
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"OOO_CONTROL_238\n"
"LngText.text"
msgid "{&DialogDefaultBold}Installing [ProductName]"
-msgstr ""
+msgstr "{&DialogDefaultBold}Uppsetning [ProductName]"
#: Control.ulf
msgctxt ""
@@ -2414,7 +2414,7 @@ msgctxt ""
"OOO_CONTROL_239\n"
"LngText.text"
msgid "{&DialogDefaultBold}Uninstalling [ProductName]"
-msgstr ""
+msgstr "{&DialogDefaultBold}Fjarlæging [ProductName]"
#: Control.ulf
msgctxt ""
@@ -2494,7 +2494,7 @@ msgctxt ""
"OOO_CONTROL_250\n"
"LngText.text"
msgid "{&DialogHeading}Resuming the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "{&DialogHeading}Halda áfram með uppsetningaforrit fyrir [ProductName]"
#: Control.ulf
msgctxt ""
@@ -2550,7 +2550,7 @@ msgctxt ""
"OOO_CONTROL_259\n"
"LngText.text"
msgid "{&DialogDefaultBold}Setup Type"
-msgstr ""
+msgstr "{&DialogDefaultBold}Tegund uppsetningar"
#: Control.ulf
msgctxt ""
@@ -2646,7 +2646,7 @@ msgctxt ""
"OOO_CONTROL_278\n"
"LngText.text"
msgid "{&DialogDefaultBold}File Type"
-msgstr ""
+msgstr "{&DialogDefaultBold}Skráategund"
#: Control.ulf
msgctxt ""
@@ -2782,7 +2782,7 @@ msgctxt ""
"OOO_CONTROL_324\n"
"LngText.text"
msgid "{&DialogDefaultBold}Files in Use"
-msgstr ""
+msgstr "{&DialogDefaultBold}Skrár í notkun"
#: Control.ulf
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"OOO_ERROR_131\n"
"LngText.text"
msgid "Installing a pre-requisite [2] failed. You might need to manually install it from Microsoft site to be able to run the product.[3]"
-msgstr ""
+msgstr "Uppsetning forkröfu [2] mistókst. Þú gætir þurft að ná í það af vef Microsoft og setja upp handvirkt til að geta keyrt hugbúnaðinn.[3]"
#: LaunchCo.ulf
msgctxt ""
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 babb5946e5b..fad7640c12e 100644
--- a/source/is/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/is/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-02-18 11:36+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -21054,6 +21054,24 @@ msgstr "Gefa til LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/is/scp2/source/winexplorerext.po b/source/is/scp2/source/winexplorerext.po
index 5aa7bf76370..4fcc312172c 100644
--- a/source/is/scp2/source/winexplorerext.po
+++ b/source/is/scp2/source/winexplorerext.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2013-05-24 07:39+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-19 06:32+0000\n"
+"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\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: 1369381140.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563517955.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -30,4 +30,4 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
-msgstr ""
+msgstr "Lætur Microsoft Windows Explorer geta sýnt upplýsingar um %PRODUCTNAME skjöl, svo sem smámyndir og að geta leitað í öllum textanum."
diff --git a/source/is/sd/messages.po b/source/is/sd/messages.po
index ff96c7b9c66..483d9e68091 100644
--- a/source/is/sd/messages.po
+++ b/source/is/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5345,9 +5345,9 @@ msgstr "Yfi_rfara"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "R_aða upp"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "Br_eyta"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Hnitanet"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "Þríví_dd"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Mynde_fni"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "L_itur"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Gagna_miðlar"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_Skyggnusýning"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "_Rammi"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "S_koða"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Y_firsíða"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Setja _inn"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "_Teikna"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "S_koða"
diff --git a/source/is/sfx2/messages.po b/source/is/sfx2/messages.po
index 1a1f08f61ae..1b533c1176b 100644
--- a/source/is/sfx2/messages.po
+++ b/source/is/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-06-03 17:46+0200\n"
-"PO-Revision-Date: 2019-05-24 13:02+0000\n"
+"PO-Revision-Date: 2019-07-19 06:30+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: 1558702946.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563517827.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -891,7 +891,7 @@ msgstr "Setja ~inn"
#: include/sfx2/strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL_IMAGES"
msgid "<All images>"
-msgstr ""
+msgstr "<Allar myndir>"
#: include/sfx2/strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
@@ -2296,22 +2296,22 @@ msgstr ""
#: sfx2/uiconfig/ui/linefragment.ui:55
msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
-msgstr ""
+msgstr "Fjarlægja eiginleika"
#: sfx2/uiconfig/ui/linefragment.ui:144
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
-msgstr ""
+msgstr "..."
#: sfx2/uiconfig/ui/linefragment.ui:180
msgctxt "linefragment|yes"
msgid "Yes"
-msgstr ""
+msgstr "Já"
#: sfx2/uiconfig/ui/linefragment.ui:196
msgctxt "linefragment|no"
msgid "No"
-msgstr ""
+msgstr "Nei"
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
diff --git a/source/is/svtools/messages.po b/source/is/svtools/messages.po
index b9d9bb2a660..b268d7f882e 100644
--- a/source/is/svtools/messages.po
+++ b/source/is/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-05-24 13:00+0000\n"
+"PO-Revision-Date: 2019-07-19 06:31+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: 1558702850.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563517903.000000\n"
#. To translators: tdf#125447 use no mnemonic in this string
#: include/svtools/strings.hrc:26
@@ -26,7 +26,7 @@ msgstr "Afturkalla: "
#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
msgid "Redo: "
-msgstr ""
+msgstr "Endurtaka: "
#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
@@ -4674,7 +4674,7 @@ msgstr "Til að marg-þráða útreikningar taki gildi, þá verður að endurr
#: svtools/uiconfig/ui/restartdialog.ui:265
msgctxt "restartdialog|reason_mscompatible_formsmenu"
msgid "For restructuring the Forms menu, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "Til að endurbyggja eyðublaðavalmyndina þarf að endurræsa %PRODUCTNAME."
#: svtools/uiconfig/ui/restartdialog.ui:280
msgctxt "restartdialog|label"
diff --git a/source/is/svx/messages.po b/source/is/svx/messages.po
index d25d63e397a..662e65419c9 100644
--- a/source/is/svx/messages.po
+++ b/source/is/svx/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-05-24 12:59+0000\n"
+"PO-Revision-Date: 2019-07-19 06:34+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: 1558702791.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563518077.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -11340,42 +11340,42 @@ msgstr "Ljósgjafi 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Ljós litur 1"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Ljós litur 2"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Ljós litur 3"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Ljós litur 4"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Ljós litur 5"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Ljós litur 6"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Ljós litur 7"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Ljós litur 8"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -11885,7 +11885,7 @@ msgstr "Endurheimt %PRODUCTNAME %PRODUCTVERSION skjals"
#: svx/uiconfig/ui/docrecoverysavedialog.ui:76
msgctxt "docrecoverysavedialog|label1"
msgid "Due to an error, %PRODUCTNAME crashed. All the files you were working on will now be saved. The next time %PRODUCTNAME is launched, your files will be recovered automatically."
-msgstr ""
+msgstr "%PRODUCTNAME hrundi af völdum villu. Öll skjölin sem þú varst með í vinnslu verða núna vistuð. Næst þegar %PRODUCTNAME verður ræst, verða skjölin þín endurheimt sjálfvirkt."
#: svx/uiconfig/ui/docrecoverysavedialog.ui:98
msgctxt "docrecoverysavedialog|label2"
@@ -12200,7 +12200,7 @@ msgstr "Útlínuritill"
#: svx/uiconfig/ui/floatingcontour.ui:44
msgctxt "floatingcontour|statuscolor"
msgid "Color"
-msgstr ""
+msgstr "Litur"
#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
diff --git a/source/is/sw/messages.po b/source/is/sw/messages.po
index 34e0725d4a9..c25abd1faba 100644
--- a/source/is/sw/messages.po
+++ b/source/is/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-02-18 09:22+0000\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-19 08:02+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\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: 1550481733.000000\n"
+"X-POOTLE-MTIME: 1563523359.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1509,31 +1509,31 @@ msgstr "Tölusetning ivx"
#: sw/inc/strings.hrc:207
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
-msgstr ""
+msgstr "Áherslumerki •"
#. Bullet \u2013
#: sw/inc/strings.hrc:209
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
-msgstr ""
+msgstr "Áherslumerki –"
#. Bullet \uE4C4
#: sw/inc/strings.hrc:211
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
-msgstr ""
+msgstr "Áherslumerki "
#. Bullet \uE49E
#: sw/inc/strings.hrc:213
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
-msgstr ""
+msgstr "Áherslumerki "
#. Bullet \uE20B
#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
-msgstr ""
+msgstr "Áherslumerki "
#: sw/inc/strings.hrc:216
msgctxt "STR_COLUMN_VALUESET_ITEM0"
@@ -1891,7 +1891,7 @@ msgstr "~Fela allar athugasemdir frá $1"
#: sw/inc/strings.hrc:290
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
-msgstr ""
+msgstr "Tölusetning kafla"
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
@@ -3120,7 +3120,7 @@ msgstr "Breyta titli hlutar $1"
#: sw/inc/strings.hrc:544
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr ""
+msgstr "Breyta lýsingu hlutar $1"
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -3145,7 +3145,7 @@ msgstr "Eyða töflu"
#: sw/inc/strings.hrc:549
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
-msgstr ""
+msgstr "Setja inn eyðublaðssvið"
#: sw/inc/strings.hrc:551
msgctxt "STR_ACCESS_DOC_NAME"
@@ -3431,27 +3431,27 @@ msgstr "Hægri-til-vinstri skrift"
#: sw/inc/strings.hrc:611
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "All ~Pages"
-msgstr ""
+msgstr "A~llar síður"
#: sw/inc/strings.hrc:612
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
-msgstr ""
+msgstr "Síð~ur:"
#: sw/inc/strings.hrc:613
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
-msgstr ""
+msgstr "S~létttölusíður"
#: sw/inc/strings.hrc:614
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
-msgstr ""
+msgstr "~Oddatölusíður"
#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
-msgstr ""
+msgstr "~Val"
#: sw/inc/strings.hrc:616
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
@@ -3511,7 +3511,7 @@ msgstr "Dráttarhamur"
#: sw/inc/strings.hrc:629
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
-msgstr ""
+msgstr "Senda efnisskipan á klippispjaldið"
#: sw/inc/strings.hrc:630
msgctxt "STR_HYPERLINK"
@@ -4525,7 +4525,7 @@ msgstr "Stafsetningayfirferð er lokið."
#: sw/inc/strings.hrc:844
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
-msgstr ""
+msgstr "Ekkert orðasafn tiltækt"
#. --------------------------------------------------------------------
#. Description: strings for the types
@@ -4882,7 +4882,7 @@ msgstr "Sími (Vinna)"
#: sw/inc/strings.hrc:931
msgctxt "FLD_EU_FAX"
msgid "Fax"
-msgstr ""
+msgstr "Póstfax"
#: sw/inc/strings.hrc:932
msgctxt "FLD_EU_EMAIL"
@@ -6663,7 +6663,7 @@ msgstr "~Niður á við"
#: sw/inc/strings.hrc:1339
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
-msgstr ""
+msgstr "Ekkert atriði tilgreint"
#. --------------------------------------------------------------------
#. Description: Classification strings
@@ -7019,17 +7019,17 @@ msgstr "Úthluta gagnasviðum frá gagnagjafa þannig að þau samsvari einingum
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:185
msgctxt "assignfieldsdialog|ST_ADDRESSELEMENT"
msgid "Address elements"
-msgstr ""
+msgstr "Nafnaskráreiningar"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:197
msgctxt "assignfieldsdialog|ST_PREVIEW"
msgid "Preview"
-msgstr ""
+msgstr "Forskoða"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:210
msgctxt "assignfieldsdialog|ST_MATCHESTO"
msgid "Matches to field"
-msgstr ""
+msgstr "Samsvaranir við gagnasvið"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:236
msgctxt "assignfieldsdialog|PREVIEW_LABEL"
@@ -7314,7 +7314,7 @@ msgstr "Flokkur"
#: sw/uiconfig/swriter/ui/autotext.ui:475
msgctxt "autotext|example-atkobject"
msgid "Preview"
-msgstr ""
+msgstr "Forskoða"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:8
msgctxt "bibliographyentry|BibliographyEntryDialog"
@@ -7459,7 +7459,7 @@ msgstr "Heimasími"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:214
msgctxt "businessdatapage|url-atkobject"
msgid "Fax number"
-msgstr ""
+msgstr "Faxnúmer"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:231
msgctxt "businessdatapage|email-atkobject"
@@ -7684,7 +7684,7 @@ msgstr "Stafur"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "_Staðlað"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Veldu hlut: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Breyta"
@@ -8379,22 +8379,22 @@ msgstr ""
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:96
msgctxt "dropdownformfielddialog|item_label"
msgid "Item"
-msgstr ""
+msgstr "Atriði"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:146
msgctxt "dropdownformfielddialog|listitem_label"
msgid "Items on list"
-msgstr ""
+msgstr "Atriði á lista"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:218
msgctxt "dropdownformfielddialog|up"
msgid "Move Up"
-msgstr ""
+msgstr "Færa upp"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:232
msgctxt "dropdownformfielddialog|down"
msgid "Move Down"
-msgstr ""
+msgstr "Færa niður"
#: sw/uiconfig/swriter/ui/editcategories.ui:18
msgctxt "editcategories|EditCategoriesDialog"
@@ -10293,27 +10293,27 @@ msgstr "Með skil_yrði"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:198
msgctxt "insertbookmark|page"
msgid "Page"
-msgstr ""
+msgstr "Síða"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:212
msgctxt "insertbookmark|name"
msgid "Name"
-msgstr ""
+msgstr "Nafn"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:226
msgctxt "insertbookmark|text"
msgid "Text"
-msgstr ""
+msgstr "Texti"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:240
msgctxt "insertbookmark|hidden"
msgid "Hidden"
-msgstr ""
+msgstr "Falið"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:254
msgctxt "insertbookmark|condition"
msgid "Condition"
-msgstr ""
+msgstr "Skilyrði"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:280
msgctxt "insertbookmark|goto"
@@ -11443,7 +11443,7 @@ msgstr "Öll síðan"
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:375
msgctxt "mmlayoutpage|example-atkobject"
msgid "Preview"
-msgstr ""
+msgstr "Forskoða"
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:402
msgctxt "mmlayoutpage|label1"
@@ -12173,17 +12173,17 @@ msgstr "S_krá"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2887
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Skrá"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2935
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Upphaf"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4482
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Upphaf"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4535
msgctxt "notebookbar_compact|InsertMenuButton"
@@ -12193,7 +12193,7 @@ msgstr "Setja _inn"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5628
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "Setja ~inn"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6426
msgctxt "notebookbar_compact|LayoutMenuButton"
@@ -12203,7 +12203,7 @@ msgstr "Framsetning"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6478
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "Fra~msetning"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6526
msgctxt "notebookbar_compact|ReferencesMenuButton"
@@ -12213,7 +12213,7 @@ msgstr "Tilví_sanir"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7294
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "Tilví~sanir"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8131
msgctxt "notebookbar_compact|ReviewMenuButton"
@@ -12223,7 +12223,7 @@ msgstr "Yfi_rfara"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8164
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Yfirfara"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8846
msgctxt "notebookbar_compact|ViewMenuButton"
@@ -12233,7 +12233,7 @@ msgstr "S_koða"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8898
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "S~koða"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8946
msgctxt "notebookbar_compact|TableMenuButton"
@@ -12243,17 +12243,17 @@ msgstr "Ta_fla"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10298
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tafla"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11698
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Im_age"
-msgstr ""
+msgstr "Myn_d"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11732
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "M~ynd"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13160
msgctxt "notebookbar_compact|DrawMenuButton"
@@ -12273,7 +12273,7 @@ msgstr "Hlutur"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14337
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Hlutur"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15102
msgctxt "notebookbar_compact|MediaButton"
@@ -12283,7 +12283,7 @@ msgstr "_Margmiðlun"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Gögn"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15835
msgctxt "notebookbar_compact|PrintPreviewButton"
@@ -12293,17 +12293,17 @@ msgstr "Prenta"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15890
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "~Prenta"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17319
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Eyðu_blað"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17374
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Eyðu~blað"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17424
msgctxt "notebookbar_compact|ToolsMenuButton"
@@ -12313,7 +12313,7 @@ msgstr "_Verkfæri"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18462
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Verkfæri"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2736
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12428,7 +12428,7 @@ msgstr "Þríví_dd"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7818
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "_Letursmiðja"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7932
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9079
@@ -12455,7 +12455,7 @@ msgstr "_Hlutur"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9983
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "_Rammi"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10353
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12573,7 +12573,7 @@ msgstr "S_koða"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:16260
msgctxt "notebookbar_groupedbar_full|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Eyðu_blað"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7163
msgctxt "notebookbar_groupedbar_full|TableButton"
@@ -12664,7 +12664,7 @@ msgstr "L_itur"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13811
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Hlutur"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14690
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13423,7 +13423,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:184
msgctxt "optcompatpage|label2"
msgid "Global compatibility options"
-msgstr ""
+msgstr "Almennir samhæfnivalkostir"
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:103
msgctxt "optfonttabpage|font_label"
@@ -14947,7 +14947,7 @@ msgstr "Heimasími"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:265
msgctxt "privateuserpage|url-atkobject"
msgid "Fax number"
-msgstr ""
+msgstr "Faxnúmer"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:282
msgctxt "privateuserpage|email-atkobject"
@@ -15536,12 +15536,12 @@ msgstr "Skráin sem þú valdir hefur að geyma fleiri en eina töflu. Veldu tö
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:139
msgctxt "selecttabledialog|column1"
msgid "Name"
-msgstr ""
+msgstr "Nafn"
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:152
msgctxt "selecttabledialog|column2"
msgid "Type"
-msgstr ""
+msgstr "Tegund"
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:179
msgctxt "selecttabledialog|preview"
@@ -16121,7 +16121,7 @@ msgstr "Lárétt"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
-msgstr ""
+msgstr "Lóðrétt (ofan og niður)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
msgctxt "tabletextflowpage|liststore1"
@@ -16131,7 +16131,7 @@ msgstr "Nota víðari/æðri stillingar hluta"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:301
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
-msgstr ""
+msgstr "Lóðrétt (neðan og upp)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:322
msgctxt "tabletextflowpage|headline"
@@ -16406,7 +16406,7 @@ msgstr "Síðustíll"
#: sw/uiconfig/swriter/ui/templatedialog8.ui:71
msgctxt "templatedialog8|standard"
msgid "Standard"
-msgstr ""
+msgstr "Staðlað"
#: sw/uiconfig/swriter/ui/templatedialog8.ui:166
msgctxt "templatedialog8|organizer"
@@ -16956,7 +16956,7 @@ msgstr "Efni í stafrófsröð"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
-msgstr ""
+msgstr "Tafla yfir myndir"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
@@ -17281,17 +17281,17 @@ msgstr "Sýna"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:223
msgctxt "viewoptionspage|hiddentextfield"
msgid "Hidden te_xt"
-msgstr ""
+msgstr "Falinn te_xti"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:237
msgctxt "viewoptionspage|hiddenparafield"
msgid "Hidden p_aragraphs"
-msgstr ""
+msgstr "F_aldar málsgreinar"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:257
msgctxt "viewoptionspage|fieldslabel"
msgid "Display fields"
-msgstr ""
+msgstr "Birta gagnasvið"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:301
msgctxt "viewoptionspage|smoothscroll"
diff --git a/source/it/cui/messages.po b/source/it/cui/messages.po
index 35bd9ba9846..3b682c04fc3 100644
--- a/source/it/cui/messages.po
+++ b/source/it/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-13 18:39+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-28 08:32+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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563043196.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1564302777.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Elenchi puntati e numerati"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Livello"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Tipo:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "Comincia con:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Carattere:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "Seleziona..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "Seleziona immagine..."
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Larghezza:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Altezza:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Mantieni rapporto"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Prima:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Dopo:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Separatore"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Colore:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "Dim. _relativa:"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Rientro:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Larghezza:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "Relati_vo"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Posizione"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr "Allineamento"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Diapositiva"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Selezione"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Applica a diapositiva schema"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Ambito"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Proprietà"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Anteprima"
@@ -8576,7 +8576,7 @@ msgstr "A sinistra"
#: cui/uiconfig/ui/numberingpositionpage.ui:390
msgctxt "numberingpositionpage|liststore1"
msgid "Centered"
-msgstr "Al centro"
+msgstr "Centrato"
#: cui/uiconfig/ui/numberingpositionpage.ui:391
msgctxt "numberingpositionpage|liststore1"
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Guida"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Usa finestre di dialogo di %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Finestre di dialogo apri/salva"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Usa le finestre di _dialogo di %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Finestre di dialogo di stampa"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Dopo la stampa cambia lo stato in \"documento modificato\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stato del documento"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Considera come anno tra "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "e "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Anno (due cifre)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Raccogli i dati di utilizzo e inviali a The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Aiutaci a migliorare %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Carica %PRODUCTNAME all'avvio del sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Abilita QuickStart nell'area di notifica"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "QuickStart di %PRODUCTNAME"
@@ -10233,7 +10233,7 @@ msgstr "Indirizzo"
#: cui/uiconfig/ui/optuserpage.ui:851
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
-msgstr "Chiave di firma OpenPGP:"
+msgstr "Chiave per la firma OpenPGP:"
#: cui/uiconfig/ui/optuserpage.ui:865
msgctxt "optuserpage|encryptionkeylabel"
@@ -10729,7 +10729,7 @@ msgstr "Inizio"
#: cui/uiconfig/ui/paragalignpage.ui:221
msgctxt "paragalignpage|liststoreLB_LASTLINE"
msgid "Centered"
-msgstr "Al centro"
+msgstr "Centrato"
#: cui/uiconfig/ui/paragalignpage.ui:222
msgctxt "paragalignpage|liststoreLB_LASTLINE"
@@ -11915,7 +11915,7 @@ msgstr "Cancella"
#: cui/uiconfig/ui/signsignatureline.ui:206
msgctxt "signsignatureline|label_image_dimensions"
msgid "Best image size: 600 x 100 px"
-msgstr "Dimensione ideale immagine: 600 x 100 px"
+msgstr "Dimensione ideale: 600 x 100 px"
#: cui/uiconfig/ui/signsignatureline.ui:237
msgctxt "signsignatureline|label_sign"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Prossimo suggerimento"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Lo sapevi?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Collegamento"
diff --git a/source/it/extensions/messages.po b/source/it/extensions/messages.po
index fffbccee695..514bfd2b109 100644
--- a/source/it/extensions/messages.po
+++ b/source/it/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-07-07 22:53+0000\n"
+"PO-Revision-Date: 2019-07-26 20:38+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.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: 1562539993.000000\n"
+"X-POOTLE-MTIME: 1564173487.000000\n"
#: extensions/inc/command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -539,7 +539,7 @@ msgstr "Sotto a destra"
#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
-msgstr "Al centro"
+msgstr "Centrato"
#: extensions/inc/stringarrays.hrc:219
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
diff --git a/source/it/helpcontent2/source/auxiliary.po b/source/it/helpcontent2/source/auxiliary.po
index 204424c18ea..e381780daac 100644
--- a/source/it/helpcontent2/source/auxiliary.po
+++ b/source/it/helpcontent2/source/auxiliary.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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-16 14:56+0000\n"
+"PO-Revision-Date: 2019-07-18 21:38+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: 1563289008.000000\n"
+"X-POOTLE-MTIME: 1563485928.000000\n"
#: sbasic.tree
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"0702\n"
"node.text"
msgid "Python Scripts Help"
-msgstr ""
+msgstr "Guida agli script di Python"
#: sbasic.tree
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"070202\n"
"node.text"
msgid "Programming with Python"
-msgstr ""
+msgstr "Programmare con Python"
#: scalc.tree
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"11\n"
"help_section.text"
msgid "Drawings (Draw)"
-msgstr ""
+msgstr "Disegni (Draw)"
#: sdraw.tree
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"1109\n"
"node.text"
msgid "Text in Drawings"
-msgstr ""
+msgstr "Testo nei disegni"
#: sdraw.tree
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"04\n"
"help_section.text"
msgid "Presentations (Impress)"
-msgstr ""
+msgstr "Presentazioni (Impress)"
#: simpress.tree
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"0409\n"
"node.text"
msgid "Text in Presentations"
-msgstr ""
+msgstr "Testo nelle presentazioni"
#: simpress.tree
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"030101\n"
"node.text"
msgid "%PRODUCTNAME Formula Elements"
-msgstr ""
+msgstr "Elementi di formula %PRODUCTNAME"
#: smath.tree
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/sbasic/python.po b/source/it/helpcontent2/source/text/sbasic/python.po
index cd3e1ca3156..0800739ea15 100644
--- a/source/it/helpcontent2/source/text/sbasic/python.po
+++ b/source/it/helpcontent2/source/text/sbasic/python.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-15 21:42+0000\n"
-"Last-Translator: Elisabetta Manuele <calembour@hotmail.it>\n"
+"PO-Revision-Date: 2019-07-22 16:17+0000\n"
+"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\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: 1563226938.000000\n"
+"X-POOTLE-MTIME: 1563812253.000000\n"
#: main0000.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"N0102\n"
"help.text"
msgid "You can execute Python scripts choosing <menuitem>Tools - Macros - Run Macro</menuitem>. Editing scripts can be done with your preferred text editor. Python scripts are present in various locations detailed hereafter. You can refer to Programming examples for macros illustrating how to run the Python interactive console from %PRODUCTNAME."
-msgstr ""
+msgstr "Potete eseguire gli script Python scegliendo <menuitem>Strumenti - Macro - Esegui macro</menuitem>. Potete modificare gli script col vostro editor di testo preferito. Gli script Python sono presenti in varie posizioni, di seguito dettagliate. Potete fare riferimento agli esempi di programmazione per le macro che illustrano come avviare la console interattiva di Python da %PRODUCTNAME."
#: python_dialogs.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Opening a Dialog with Python"
-msgstr ""
+msgstr "Aprire una finestra di dialogo usando Python"
#: python_dialogs.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"N0334\n"
"help.text"
msgid "<bookmark_value>Python;dialogs</bookmark_value> <bookmark_value>dialog box;Python</bookmark_value> <bookmark_value>dialogs;Python</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;finestre di dialogo</bookmark_value><bookmark_value>Riquadro di dialogo;Python</bookmark_value> <bookmark_value>Finestra di dialogo;Python</bookmark_value>"
#: python_dialogs.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"N0336\n"
"help.text"
msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Aprire una finestra di dialogo usando Python</link></variable>"
#: python_dialogs.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"N0337\n"
"help.text"
msgid "%PRODUCTNAME static dialogs are created with the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog editor\">Dialog editor</link> and are stored in varying places according to their personal (My Macros), shared (%PRODUCTNAME Macros) or document-embedded nature. In reverse, dynamic dialogs are constructed at runtime, from Basic or Python scripts, or using any other <link href=\"text/shared/guide/scripting.xhp\">%PRODUCTNAME supported language</link> for that matter. Opening static dialogs with Python is illustrated herewith. Exception handling and internationalization are omitted for clarity."
-msgstr ""
+msgstr "Le finestre di dialogo statiche di %PRODUCTNAME vengono create con l'<link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog editor\">editor delle finestre di dialogo</link> e sono memorizzate in varie posizioni a seconda della loro natura personalizzata (Macro personali), condivisa (Macro di %PRODUCTNAME) o se incorporate in un documento. al contrario, le finestre dinamiche vengono costruite al tempo di esecuzione, da script Basic o Python, oppure utilizzando qualsiasi altro <link href=\"text/shared/guide/scripting.xhp\">linguaggio supportato da %PRODUCTNAME</link> utile a tale scopo. L'apertura delle finestre di dialogo statiche utilizzando Python è illustrata di seguito. La gestione delle eccezioni e l'internalizzazione sono omesse per questioni di chiarezza."
#: python_dialogs.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"N0338\n"
"help.text"
msgid "My Macros or %PRODUCTNAME Macros dialogs"
-msgstr ""
+msgstr "Finestre di dialogo delle macro personali o delle macro di %PRODUCTNAME"
#: python_dialogs.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"N0339\n"
"help.text"
msgid "The examples below open <literal>Access2Base Trace</literal> console or the imported <literal>TutorialsDialog</literal> dialog with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
-msgstr ""
+msgstr "Gli esempi sotto riportati aprono la console <literal>Access2Base Trace</literal> o la finestra di dialogo <literal>TutorialsDialog</literal> importata col menu <menuitem>Strumenti – Macro – Esegui macro...</menuitem>:"
#: python_dialogs.xhp
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"N0364\n"
"help.text"
msgid "Document embedded dialogs"
-msgstr ""
+msgstr "Finestre di dialogo incorporate nei documenti"
#: python_dialogs.xhp
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"N0365\n"
"help.text"
msgid "The example below opens a newly edited <literal>Dialog1</literal> dialog from a document with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
-msgstr ""
+msgstr "L'esempio qui sotto apre una finestra di dialogo <literal>Dialog1</literal> modificata di recente da un documento col menu <menuitem>Strumenti – Macro – Esegui macro...</menuitem>:"
#: python_dialogs.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"N0370\n"
"help.text"
msgid "\"\"\" Display a doc-based dialog \"\"\""
-msgstr ""
+msgstr "\"\"\" Visualizza una finestra di dialogo basata su un documento \"\"\""
#: python_dialogs.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"N0381\n"
"help.text"
msgid "Refer to <literal>msgbox.py</literal> in <literal>{installation}/program/</literal> directory for Python dynamic dialog examples."
-msgstr ""
+msgstr "Si riferisce alla cartella <literal>msgbox.py</literal> in <literal>{installation}/program/</literal> per gli esempi delle finestre di dialogo dinamiche Python."
#: python_document_events.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python : Monitoring Document Events"
-msgstr ""
+msgstr "Python : monitoraggio degli eventi del documento"
#: python_document_events.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"N0526\n"
"help.text"
msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Basic;monitoraggio degli eventi del documento</bookmark_value> <bookmark_value>Python;monitoraggio degli eventi del documento</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
#: python_document_events.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"N0527\n"
"help.text"
msgid "<variable id=\"pythonmonitor\"><link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitoring Document Events\">Monitoring Document Events</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonmonitor\"><link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitoraggio degli eventi del documento\">Monitoraggio degli eventi del documento</link></variable>"
#: python_document_events.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"N0528\n"
"help.text"
msgid "Next to <link href=\"text/sbasic/shared/01040000.xhp\" name=\"assigning macros to events\">assigning macros to events</link>, one can monitor events raised by %PRODUCTNAME documents. Application Programming Interface (API) broadcasters are responsible for calling event scripts. Unlike listeners that require to define all supported methods, even if unused, document monitors require only two methods next to hooked event scripts."
-msgstr ""
+msgstr "Accanto all'<link href=\"text/sbasic/shared/01040000.xhp\" name=\"assigning macros to events\">assegnazione di macro agli eventi</link>, un utente può monitorare gli eventi generati dai documenti %PRODUCTNAME. Le emittenti API (Application Programming Interface) sono responsabili delle chiamate degli script degli eventi. A differenza dei listener, che richiedono di definire tutti i metodi supportati, anche se non utilizzati, i monitor degli eventi richiedono solo due metodi accanto agli script degli eventi collegati."
#: python_document_events.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"N0529\n"
"help.text"
msgid "Listening to Document Events"
-msgstr ""
+msgstr "Ascolto degli eventi del documento"
#: python_document_events.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"N0530\n"
"help.text"
msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning <literal>OnLoad</literal> script, to the <literal>Open Document</literal> event, suffices to initiate and terminate document event monitoring. <menuitem>Tools – Customise...</menuitem> menu <menuitem>Events</menuitem> tab is used to assign either scripts."
-msgstr ""
+msgstr "Il monitoraggio viene qui illustrato per i linguaggi Basic e Python che utilizzano la programmazione orientata agli oggetti (OOP). Assegnazione dello script <literal>OnLoad</literal>, all'evento <literal>Open Document</literal>, è sufficiente per iniziare e terminare il monitoraggio degli eventi del document. La scheda <menuitem>Eventi</menuitem> del menu <menuitem>Strumenti – Personalizza...</menuitem> viene utilizzata per assegnare uno qualunque degli script."
#: python_document_events.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"N0531\n"
"help.text"
msgid "Intercepting events helps setting scripts pre- and post-conditions such as loading and unloading libraries or track script processing in the background. <literal>Access2Base Trace</literal> module usage is illustrating that second context."
-msgstr ""
+msgstr "L'intercettazione degli eventi aiuta a impostare le pre- e post-condizioni degli script, come il caricamento o il rilascio di librerie o la tracciatura in sottofondo dell'elaborazione degli script. L'uso del modulo <literal>Access2Base Trace</literal> illustra questo secondo contesto."
#: python_document_events.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"N0532\n"
"help.text"
msgid "With Python"
-msgstr ""
+msgstr "Con Python"
#: python_document_events.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"N0533\n"
"help.text"
msgid "Events monitoring starts from object instantiation and ultimately stops when Python releases the object. Raised events are reported using <literal>Access2Base</literal> console."
-msgstr ""
+msgstr "Il monitoraggio degli eventi parte dall'istanziazione dell'oggetto e si ferma quando Python lo pubblica. Gli eventi generati vengono riportati utilizzando la console <literal>Access2Base</literal>."
#: python_document_events.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"N0534\n"
"help.text"
msgid "<literal>OnLoad</literal> and <literal>OnUnload</literal> events can be used to respectively set and unset Python programs path. They are described as <literal>Open document</literal> and <literal>Document closed</literal>."
-msgstr ""
+msgstr "Gli eventi <literal>OnLoad</literal> e <literal>OnUnload</literal> si possono utilizzare rispettivamente per impostare e de-impostare il percorso dei programmi Python. Essi sono descritti come <literal>Open document</literal> e <literal>Document closed</literal>."
#: python_document_events.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"N0543\n"
"help.text"
msgid "class UiDocument(unohelper.Base, AdapterPattern):"
-msgstr ""
+msgstr "class UiDocument(unohelper.Base, AdapterPattern):"
#: python_document_events.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"N0544\n"
"help.text"
msgid "\"\"\" Monitor document events \"\"\""
-msgstr ""
+msgstr "\"\"\" Monitora gli eventi del documento \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"N0546\n"
"help.text"
msgid "adapted from 'Python script to monitor OnSave event' at"
-msgstr ""
+msgstr "adattato da 'Python script to monitor OnSave event' in"
#: python_document_events.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"N0550\n"
"help.text"
msgid "\"\"\" Document events monitor \"\"\""
-msgstr ""
+msgstr "\"\"\" Monitor degli eventi del documento \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"N0551\n"
"help.text"
msgid "''' report using Access2Base.Trace console OR"
-msgstr ""
+msgstr "''' rapporto utilizzando la console Access2Base.Trace OR"
#: python_document_events.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"N0552\n"
"help.text"
msgid "report in 1st sheet, 1st column for Calc docs '''"
-msgstr ""
+msgstr "rapporto nel 1° foglio, 1^ colonna per i documenti Calc '''"
#: python_document_events.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"N0558\n"
"help.text"
msgid "#self.row = 0 # uncomment for Calc documents only"
-msgstr ""
+msgstr "#self.row = 0 # decommenta solo per i documenti Calc"
#: python_document_events.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"N0560\n"
"help.text"
msgid "self.listen() # Start monitoring doc. events"
-msgstr ""
+msgstr "self.listen() # Avvia il monitoraggio degli eventi dei doc."
#: python_document_events.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"N0569\n"
"help.text"
msgid "\"\"\" Output doc. events on 1st column of a Calc spreadsheet \"\"\""
-msgstr ""
+msgstr "\"\"\" Mostra il risultato degli eventi dei doc. sulla 1^ colonna di un foglio elettronico Calc \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"N0575\n"
"help.text"
msgid "def listen(self, *args): # OnLoad/OnNew at the earliest"
-msgstr ""
+msgstr "def listen(self, *args): # OnLoad/OnNew al più presto"
#: python_document_events.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"N0576\n"
"help.text"
msgid "\"\"\" Start doc. events monitoring \"\"\""
-msgstr ""
+msgstr "\"\"\" Avvia il monitoraggio degli eventi del doc. \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"N0578\n"
"help.text"
msgid "Console.log(\"INFO\", \"Document events are being logged\", True)"
-msgstr ""
+msgstr "Console.log(\"INFO\", \"Si stanno registrando gli eventi del documento\", True)"
#: python_document_events.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"N0580\n"
"help.text"
msgid "def sleep(self, *args): # OnUnload at the latest (optional)"
-msgstr ""
+msgstr "def sleep(self, *args): # OnUnload at the latest (optional)"
#: python_document_events.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"N0581\n"
"help.text"
msgid "\"\"\" Stop doc. events monitoring \"\"\""
-msgstr ""
+msgstr "\"\"\" Ferma il monitoraggio degli eventi del doc. \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"N0583\n"
"help.text"
msgid "Console.log(\"INFO\", \"Document events have been logged\", True)"
-msgstr ""
+msgstr "Console.log(\"INFO\", \"Gli eventi del documento sono stati registrati\", True)"
#: python_document_events.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"N0587\n"
"help.text"
msgid "\"\"\" Intercepts all doc. events \"\"\""
-msgstr ""
+msgstr "\"\"\" Intercetta tutti gli eventi del doc. \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"N0588\n"
"help.text"
msgid "#self.setCell(event.Source, event.EventName) # only for Calc docs"
-msgstr ""
+msgstr "#self.setCell(event.Source, event.EventName) # solo per i documenti Calc"
#: python_document_events.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"N0595\n"
"help.text"
msgid "\"\"\" Release all activities \"\"\""
-msgstr ""
+msgstr "\"\"\" Pubblica tutte le attività \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"N0601\n"
"help.text"
msgid "def OnLoad(*args): # 'Open Document' event"
-msgstr ""
+msgstr "def OnLoad(*args): # Evento 'Open Document'"
#: python_document_events.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"N0604\n"
"help.text"
msgid "def OnUnload(*args): # 'Document has been closed' event"
-msgstr ""
+msgstr "def OnUnload(*args): # Evento 'Document has been closed'"
#: python_document_events.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"N0605\n"
"help.text"
msgid "pass # (optional) performed when disposed"
-msgstr ""
+msgstr "pass # (facoltativo) eseguito durante la cancellazione"
#: python_document_events.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"N0613\n"
"help.text"
msgid "(Back/Fore)ground console to report/log program execution."
-msgstr ""
+msgstr "Console in primo/secondo piano per riportare/registrare l'esecuzione del programma."
#: python_document_events.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"N0617\n"
"help.text"
msgid "\"\"\" Print free item list to console \"\"\""
-msgstr ""
+msgstr "\"\"\" Stampa elenco degli elementi liberi nella console \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"N0622\n"
"help.text"
msgid "\"\"\" Append log message to console, optional user prompt \"\"\""
-msgstr ""
+msgstr "\"\"\" Allega messaggio di registro alla console, richiesta utente facoltativa \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"N0627\n"
"help.text"
msgid "\"\"\" Set log messages lower limit \"\"\""
-msgstr ""
+msgstr "\"\"\" Imposta limite inferiore per messaggi registro \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"N0632\n"
"help.text"
msgid "\"\"\" Display console content/dialog \"\"\""
-msgstr ""
+msgstr "\"\"\" Mostra finestra di dialogo/contenuto console \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"N0647\n"
"help.text"
msgid "Mind the misspelled <literal>documentEventOccured</literal> method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)."
-msgstr ""
+msgstr "Tenete presente il metodo <literal>documentEventOccured</literal> ortograficamente errato che eredita un errore dall'API (Application Programming Interface) di %PRODUCTNAME."
#: python_document_events.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"N0648\n"
"help.text"
msgid "<literal>Start application</literal> and <literal>Close application</literal> events can respectively be used to set and to unset Python path for user scripts or %PRODUCTNAME scripts. In a similar fashion, document based Python libraries or modules can be loaded and released using <literal>Open document</literal> and <literal>Document closed</literal> events. Refer to <link href=\"text/sbasic/python/python_import.xhp\" name=\"Importing Python Modules\">Importing Python Modules</link> for more information."
-msgstr ""
+msgstr "Gli eventi <literal>Start application</literal> e <literal>Close application</literal>si possono utilizzare rispettivamente per impostare e de-impostare il percorso Python per gli script degli utenti o di %PRODUCTNAME. In modo simile, le librerie o i moduli di Python basate su documenti possono essere caricate e pubblicate utilizzando gli eventi <literal>Open document</literal> e <literal>Document closed</literal>. Per ulteriori informazioni, consultate <link href=\"text/sbasic/python/python_import.xhp\" name=\"Importazione di moduli Python\">Importazione di moduli Python</link>."
#: python_document_events.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"N0649\n"
"help.text"
msgid "With %PRODUCTNAME Basic"
-msgstr ""
+msgstr "Con %PRODUCTNAME Basic"
#: python_document_events.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"N0650\n"
"help.text"
msgid "The <literal>Onload</literal> script is assigned to <literal>Open document</literal> event using <menuitem>Tools – Customise...</menuitem> menu <menuitem>Events</menuitem> tab. Events monitoring starts from the moment a <literal>ConsoleLogger</literal> object is instantiated and ultimately stops when Basic engine releases it. <literal>OnLoad</literal> event loads necessary Basic libraries, while caught events are reported using <literal>Access2Base.Trace</literal> module."
-msgstr ""
+msgstr "Lo script <literal>Onload</literal> viene assegnato all'evento <literal>Open document</literal> utilizzando la scheda <menuitem>Eventi</menuitem> nel menu <menuitem>Strumenti – Personalizza...</menuitem>. Il monitoraggio degli eventi inizia dal momento in cui un oggetto <literal>ConsoleLogger</literal> viene istanziato e si ferma quando il motore Basic lo pubblica. L'evento <literal>OnLoad</literal> carica le librerie Basic necessarie, mentre gli eventi catturati sono registrati utilizzando il modulo <literal>Access2Base.Trace</literal>."
#: python_document_events.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"N0651\n"
"help.text"
msgid "REM controller.Events module"
-msgstr ""
+msgstr "REM controller.Events module"
#: python_document_events.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"N0653\n"
"help.text"
msgid "Private _obj As Object ' controller.ConsoleLogger instance"
-msgstr ""
+msgstr "Istanza Private _obj As Object ' controller.ConsoleLogger"
#: python_document_events.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"N0655\n"
"help.text"
msgid "Sub OnLoad(evt As com.sun.star.document.DocumentEvent) ' >> Open Document <<"
-msgstr ""
+msgstr "Sub OnLoad(evt As com.sun.star.document.DocumentEvent) ' >> Open Document <<"
#: python_document_events.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"N0659\n"
"help.text"
msgid "REM controller.ConsoleLogger class module"
-msgstr ""
+msgstr "REM controller.ConsoleLogger class module"
#: python_document_events.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"N0664\n"
"help.text"
msgid "' ADAPTER design pattern object to be instantiated in « Open Document » event"
-msgstr ""
+msgstr "' oggetto del modello di progettazione ADAPTER da istanziarsi nell'evento « Open Document »"
#: python_document_events.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"N0668\n"
"help.text"
msgid "' CONSTRUCTOR/DESTRUCTOR"
-msgstr ""
+msgstr "' CONSTRUCTOR/DESTRUCTOR"
#: python_document_events.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"N0674\n"
"help.text"
msgid "' MEMBERS"
-msgstr ""
+msgstr "' MEMBRI"
#: python_document_events.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"N0679\n"
"help.text"
msgid "''' System-dependent filename '''"
-msgstr ""
+msgstr "''' Nome file dipendente dal sistema '''"
#: python_document_events.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"N0686\n"
"help.text"
msgid "' METHODS"
-msgstr ""
+msgstr "' METODI"
#: python_document_events.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"N0688\n"
"help.text"
msgid "''' Monitor document events '''"
-msgstr ""
+msgstr "''' Monitora gli eventi del documento '''"
#: python_document_events.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"N0701\n"
"help.text"
msgid "''' Initialize document events logging '''"
-msgstr ""
+msgstr "''' Inizializza il registro degli eventi del documento '''"
#: python_document_events.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"N0706\n"
"help.text"
msgid "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events are being logged\", _"
-msgstr ""
+msgstr "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Si stanno registrando gli eventi del documento\", _"
#: python_document_events.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"N0714\n"
"help.text"
msgid "''' Terminate document events logging '''"
-msgstr ""
+msgstr "''' Termina la registrazione degli eventi del documento '''"
#: python_document_events.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"N0717\n"
"help.text"
msgid "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events have been logged\", _"
-msgstr ""
+msgstr "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Gli eventi del documento sono stati registrati\", _"
#: python_document_events.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"N0723\n"
"help.text"
msgid "' Your code for handled events goes here"
-msgstr ""
+msgstr "' Il vostro codice per gli eventi gestiti va qui"
#: python_document_events.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"N0724\n"
"help.text"
msgid "Mind the misspelled <literal>_documentEventOccured</literal> method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)."
-msgstr ""
+msgstr "Tenete presente il metodo <literal>_documentEventOccured</literal> ortograficamente errato che eredita un errore dall'API (Application Programming Interface) di %PRODUCTNAME."
#: python_document_events.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"N0725\n"
"help.text"
msgid "Discovering Documents Events"
-msgstr ""
+msgstr "Scoperta degli eventi del documento"
#: python_document_events.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"N0726\n"
"help.text"
msgid "The broadcaster API object provides the list of events it is responsible for:"
-msgstr ""
+msgstr "L'oggetto API emittente fornisce l'elenco degli eventi di cui è responsabile:"
#: python_document_events.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"N0727\n"
"help.text"
msgid "With Python"
-msgstr ""
+msgstr "Con Python"
#: python_document_events.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"N0734\n"
"help.text"
msgid "\"\"\" Display document events \"\"\""
-msgstr ""
+msgstr "\"\"\" Mostra gli eventi del documento \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"N0736\n"
"help.text"
msgid "adapted from DisplayAvailableEvents() by A. Pitonyak"
-msgstr ""
+msgstr "adattato da DisplayAvailableEvents() di A. Pitonyak"
#: python_document_events.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"N0747\n"
"help.text"
msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer\">Alternative Python Script Organizer (APSO)</link> extension is used to render events information on screen."
-msgstr ""
+msgstr "L'estensione <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer\">Alternative Python Script Organizer (APSO)</link> viene utilizzata per restituire le informazioni degli eventi sullo schermo."
#: python_document_events.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"N0748\n"
"help.text"
msgid "With %PRODUCTNAME Basic"
-msgstr ""
+msgstr "Con %PRODUCTNAME Basic"
#: python_document_events.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"N0750\n"
"help.text"
msgid "''' Display document events '''"
-msgstr ""
+msgstr "''' Mostra gli eventi del documento '''"
#: python_examples.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"bm_id20191031405\n"
"help.text"
msgid "<bookmark_value>Python;examples</bookmark_value> <bookmark_value>Python;shell</bookmark_value> <bookmark_value>Python;platform</bookmark_value> <bookmark_value>Python;session</bookmark_value> <bookmark_value>Python;screen input/output</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;esempi</bookmark_value> <bookmark_value>Python;shell</bookmark_value> <bookmark_value>Python;piattaforma</bookmark_value> <bookmark_value>Python;sessione</bookmark_value> <bookmark_value>Python;input/output su schermo</bookmark_value>"
#: python_examples.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id541543348965465\n"
"help.text"
msgid "Writing Python macros requires extra configuration steps to set an IDE of choice."
-msgstr ""
+msgstr "La scrittura di macro Python richiede passaggi di configurazione aggiuntivi per configurare un IDE di propria scelta."
#: python_ide.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"N0106\n"
"help.text"
msgid "Unlike Basic language macros development in %PRODUCTNAME, developing Python scripts for %PRODUCTNAME requires to configure an external Integrated Development Environment (IDE). Multiple IDEs are available that range from beginners to advanced Python coders. While using a Python IDE programmers benefit from numerous features such as syntax highlighting, code folding, class browsing, code completion, coding standard enforcement, test driven development, debugging, version control and many more. You can refer to <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"Designing & Developing Python Applications\">Designing & Developing Python Applications</link> on the Wiki for more in-depth information about the setup of a bridge between your IDE and a running instance %PRODUCTNAME."
-msgstr ""
+msgstr "A differenza dello sviluppo di macro in linguaggio Basic in %PRODUCTNAME, lo sviluppo di script Python per %PRODUCTNAME richiede la configurazione di un IDE (Integrated Development Environment) esterno. Esistono vari IDE adatti sia ai principianti, sia ai programmatori Python avanzati. Utilizzando un IDE Python i programmatori traggono vantaggio dalle numerose funzionalità quali evidenziazione della sintassi, code folding, navigazione tra classi, completamento del codice, class browsing, code completion, applicazione degli standard di codifica, test driven development, debugging, controllo di versione e molto altro. Puoi consultare la pagina wiki <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"Designing & Developing Python Applications\">Designing & Developing Python Applications</link> per informazioni più approfondite sulla configurazione di un ponte tra il tuo IDE e un'istanza in esecuzione di %PRODUCTNAME."
#: python_ide.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"N0104\n"
"help.text"
msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer (APSO)\">Alternative Python Script Organizer (APSO)</link> extension eases the edition of Python scripts, in particular when embedded in a document. Using APSO you can configure your preferred source code editor, start the integrated Python shell and debug Python scripts. Extensions exist that help inspect arbitrary UNO objects, refer to <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"eDesigning & Developing Python Applications\">Designing & Developing Python Applications</link> for additional details on such extensions."
-msgstr ""
+msgstr "L'estensione <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer (APSO)\">Alternative Python Script Organizer (APSO)</link> facilita la pubblicazione di script Python, in particolare quando incorporati in un documento. Con APSO puoi configurare il tuo editor di codice preferito, avviare la shell integrata per Python ed eseguire il debug sugli script Python. Esistono estensioni che aiutano a ispezionare gli oggetti UNO arbitrari, per informazioni dettagliate su tali estensioni consultate la pagina wiki <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"eDesigning & Developing Python Applications\">Designing & Developing Python Applications</link>."
#: python_import.xhp
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python : Importing Modules"
-msgstr ""
+msgstr "Python: importazione dei moduli"
#: python_import.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"N0461\n"
"help.text"
msgid "<bookmark_value>Python;import</bookmark_value> <bookmark_value>Python;Modules</bookmark_value> <bookmark_value>Python;pythonpath</bookmark_value> <bookmark_value>PythonLibraries</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;importazione</bookmark_value> <bookmark_value>Python;Moduli</bookmark_value> <bookmark_value>Python;pythonpath</bookmark_value> <bookmark_value>PythonLibraries</bookmark_value>"
#: python_import.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"N0462\n"
"help.text"
msgid "<variable id=\"pythonimporth1\"><link href=\"text/sbasic/python/python_import.xhp\" name=\"python imports\">Importing Python Modules</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonimporth1\"><link href=\"text/sbasic/python/python_import.xhp\" name=\"python imports\">Importazione dei moduli Python</link></variable>"
#: python_import.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"N0463\n"
"help.text"
msgid "%PRODUCTNAME Python scripts come in three distinct flavors, they can be personal, shared or embedded in documents. They are stored in varying places described in <link href=\"text/sbasic/python/python_locations.xhp\">Python Scripts Organization and Location</link>. In order to import Python modules, their locations must be known from Python at run time."
-msgstr ""
+msgstr "Gli script Python di %PRODUCTNAME si presentano in tre varietà distinte: personali, condivisi o incorporati nei documenti. Sono memorizzati in posizioni variabili descritte nel capitolo <link href=\"text/sbasic/python/python_locations.xhp\">Organizzazione e posizione degli script Python</link>. Per importare moduli, Python deve conoscere la loro posizione al tempo di esecuzione."
#: python_import.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"N0464\n"
"help.text"
msgid "This mechanism is illustrated for file system based modules and document based modules. Exception handling is omitted for clarity. The terms library or directory, scripts or modules are used interchangeably. A Python macro refers to a function inside a module."
-msgstr ""
+msgstr "Questo meccanismo viene illustrato per i moduli basati sul file system e quelli basati su documento. Per questioni di chiarezza la gestione delle eccezioni viene omessa. I termini libreria o cartella (o directory), script o moduli sono utilizzati in modo intercambiabile. Una macro Python si riferisce a una funzione all'interno di un modulo."
#: python_import.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"N0465\n"
"help.text"
msgid "Note that <literal><User Profile>/Scripts/python/pythonpath</literal> local directory is always explored when running a Python macro from <literal><User Profile>/Scripts/python</literal>."
-msgstr ""
+msgstr "Da notare che quando si esegue una macro Python da <literal><User Profile>/Scripts/python</literal>, la cartella locale <literal><User Profile>/Scripts/python/pythonpath</literal> viene sempre esaminata."
#: python_import.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"N0466\n"
"help.text"
msgid "File System module import"
-msgstr ""
+msgstr "Importazione di moduli dal file system"
#: python_import.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"N0467\n"
"help.text"
msgid "User or Shared Modules"
-msgstr ""
+msgstr "Moduli condivisi o personali"
#: python_import.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"N0468\n"
"help.text"
msgid "Personal & shared Python scripts can be imported once their directories are included in Python run time path. Refer to <link href=\"text/sbasic/python/python_session.xhp\">Getting session information</link> page for more details regarding omitted Session Class."
-msgstr ""
+msgstr "Gli script Python personali e condivisi possono essere importati una volta che le loro cartelle sono incluse nel percorso del tempo di esecuzione Python. Per maggiori dettagli sulla Classe di sessione omessa, consultate il capitolo <link href=\"text/sbasic/python/python_session.xhp\">Ottenere informazioni sulla sessione</link>."
#: python_import.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"N0473\n"
"help.text"
msgid "user_lib = Session().UserPythonScripts # User scripts location"
-msgstr ""
+msgstr "user_lib = Session().UserPythonScripts # Posizione degli script personali"
#: python_import.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"N0475\n"
"help.text"
msgid "sys.path.insert(0, user_lib) # Add to search path"
-msgstr ""
+msgstr "sys.path.insert(0, user_lib) # Aggiunta al percorso di ricerca"
#: python_import.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"N0476\n"
"help.text"
msgid "import screen_io as ui # 'screen_io.py' module resides in user_lib directory"
-msgstr ""
+msgstr "import screen_io as ui # il modulo 'screen_io.py' si trova nella cartella user_lib"
#: python_import.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"N0477\n"
"help.text"
msgid "# Your code follows here"
-msgstr ""
+msgstr "# Il vostro codice segue qui"
#: python_import.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"N0478\n"
"help.text"
msgid "This Python example exposes a local XSCRIPTCONTEXT variable to an imported module:"
-msgstr ""
+msgstr "Questo esempio Python mette in contatto una variabile XSCRIPTCONTEXT locale con un modulo importato:"
#: python_import.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"N0483\n"
"help.text"
msgid "share_lib = Session.SharedPythonScripts() # Shared scripts location"
-msgstr ""
+msgstr "share_lib = Session.SharedPythonScripts() # Posizione degli script condivisi"
#: python_import.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"N0485\n"
"help.text"
msgid "sys.path.insert(0, share_lib) # Add to search path"
-msgstr ""
+msgstr "sys.path.insert(0, share_lib) # Aggiunta al percorso di ricerca"
#: python_import.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"N0486\n"
"help.text"
msgid "from IDE_utils import ScriptContext # 'IDE_utils.py' sits with shared Python scripts."
-msgstr ""
+msgstr "from IDE_utils import ScriptContext # 'IDE_utils.py' risiede con gli script Python condivisi."
#: python_import.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"N0488\n"
"help.text"
msgid "# Your code follows here"
-msgstr ""
+msgstr "# Il vostro codice segue qui"
#: python_import.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"N0489\n"
"help.text"
msgid "Installation Modules for Applications"
-msgstr ""
+msgstr "Installazione di moduli per le applicazioni"
#: python_import.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"N0490\n"
"help.text"
msgid "Unlike personal and shared scripts, %PRODUCTNAME installation scripts can be imported any time. Next to <literal>uno</literal> & <literal>unohelper</literal> %PRODUCTNAME Python modules, other scripts present in <literal><installation_path>/program</literal> directory can be imported directly, such as the <literal>msgbox</literal> module."
-msgstr ""
+msgstr "A differenza degli script personali e condivisi, gli script di installazione di %PRODUCTNAME possono essere importati in qualunque momento. Accanto ai moduli Python di %PRODUCTNAME <literal>uno</literal> e <literal>unohelper</literal>, possono essere importati direttamente altri script presenti nella cartella <literal><installation_path>/program</literal>, come il modulo <literal>msgbox</literal>."
#: python_import.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"N0491\n"
"help.text"
msgid "With Python shell:"
-msgstr ""
+msgstr "Con shell Python:"
#: python_import.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"N0534\n"
"help.text"
msgid "Document Module Import"
-msgstr ""
+msgstr "Importazione dei moduli del documento"
#: python_import.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"N0535\n"
"help.text"
msgid "Importing a Python document embedded module is illustrated below. Error handling is not detailed. Python run time path is updated when document has been opened and before closure. Refer to <link href=\"text/sbasic/shared/01040000.xhp\">Event-Driven Macros</link> to learn how to associate Python macros to document events."
-msgstr ""
+msgstr "Sotto viene illustrata l'importazione di un modulo Python incorporato in un documento. La gestione degli errori non è argomentata. Il percorso del tempo di esecuzione (runtime) Python viene aggiornato quando il documento è stato aperto e prima della chiusura. Per sapere come associare le macro Python agli eventi del documento, consultate il capitolo <link href=\"text/sbasic/shared/01040000.xhp\">Macro controllate da eventi</link>."
#: python_import.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"N0541\n"
"help.text"
msgid "\"\"\" Prepare Python modules import when doc. loaded \"\"\""
-msgstr ""
+msgstr "\"\"\" Preparare l'importazione dei moduli Python quando il doc. viene caricato \"\"\""
#: python_import.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"N0542\n"
"help.text"
msgid "PythonLibraries.loadLibrary('lib/subdir') # Add directory to search path"
-msgstr ""
+msgstr "PythonLibraries.loadLibrary('lib/subdir') # Aggiunta della cartella al percorso di ricerca"
#: python_import.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"N0543\n"
"help.text"
msgid "PythonLibraries.loadLibrary('my_gui', 'screen_io') # Add dir. & import screen_io"
-msgstr ""
+msgstr "PythonLibraries.loadLibrary('my_gui', 'screen_io') # Aggiunta cartella e importazione screen_io"
#: python_import.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"N0546\n"
"help.text"
msgid "\"\"\" Cleanup PYTHON_PATH when doc. Gets closed \"\"\""
-msgstr ""
+msgstr "\"\"\" Ripulitura di PYTHON_PATH quando il doc. viene chiuso \"\"\""
#: python_import.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"N0547\n"
"help.text"
msgid "PythonLibraries.unloadLibrary('my_gui') # Python runtime path cleanup"
-msgstr ""
+msgstr "PythonLibraries.unloadLibrary('my_gui') # Ripulitura percorso runtime di Python"
#: python_import.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"N0548\n"
"help.text"
msgid "# Note: imported modules remain loaded in this example.."
-msgstr ""
+msgstr "# Nota: in questo esempio i moduli importati rimangono caricati."
#: python_import.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"N0553\n"
"help.text"
msgid "\"\"\" Python library loader and module importer"
-msgstr ""
+msgstr "\"\"\" Caricatore di librerie e importatore di moduli Python"
#: python_import.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"N0555\n"
"help.text"
msgid "adapted from 'Bibliothèque de fonctions' by Hubert Lambert"
-msgstr ""
+msgstr "adattato da 'Bibliothèque de fonctions' di Hubert Lambert"
#: python_import.xhp
msgctxt ""
@@ -998,7 +998,7 @@ msgctxt ""
"N0556\n"
"help.text"
msgid "at https://forum.openoffice.org/fr/forum/viewtopic.php?p=286213 \"\"\""
-msgstr ""
+msgstr "all'indirizzo https://forum.openoffice.org/fr/forum/viewtopic.php?p=286213 \"\"\""
#: python_import.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"N0558\n"
"help.text"
msgid "\"\"\" Check run time module list \"\"\""
-msgstr ""
+msgstr "\"\"\" Check dell'elenco dei moduli al tempo di esecuzione \"\"\""
#: python_import.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"N0561\n"
"help.text"
msgid "\"\"\" Check PYTHON_PATH content \"\"\""
-msgstr ""
+msgstr "\"\"\" Check del contenuto PYTHON_PATH \"\"\""
#: python_import.xhp
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"N0564\n"
"help.text"
msgid "\"\"\" add directory to PYTHON_PATH, import named module \"\"\""
-msgstr ""
+msgstr "\"\"\" aggiunta cartella a PYTHON_PATH, importazione module specificato \"\"\""
#: python_import.xhp
msgctxt ""
@@ -1030,7 +1030,7 @@ msgctxt ""
"N0573\n"
"help.text"
msgid "\"\"\" remove directory from PYTHON_PATH \"\"\""
-msgstr ""
+msgstr "\"\"\" rimozione cartella da PYTHON_PATH \"\"\""
#: python_import.xhp
msgctxt ""
@@ -1038,7 +1038,7 @@ msgctxt ""
"N0580\n"
"help.text"
msgid "Refer to <link href=\"text/sbasic/python/python_listener.xhp\">Creating a Python Listener</link> for examples of event-driven macros."
-msgstr ""
+msgstr "Per visualizzare esempi di macro controllate da eventi, consultate il capitolo <link href=\"text/sbasic/python/python_listener.xhp\">Creazione di un listener Python</link>."
#: python_listener.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python Listeners : Creating Event Listeners"
-msgstr ""
+msgstr "Listener Python: creazione di listener di eventi"
#: python_listener.xhp
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"N0385\n"
"help.text"
msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;Listener di eventi</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Listener di eventi</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
#: python_listener.xhp
msgctxt ""
@@ -1062,7 +1062,7 @@ msgctxt ""
"N0386\n"
"help.text"
msgid "<variable id=\"pythonlistener\"><link href=\"text/sbasic/python/python_listener.xhp\" name=\"python listeners\">Creating Event Listeners</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonlistener\"><link href=\"text/sbasic/python/python_listener.xhp\" name=\"listener python\">Creazione di listener di eventi</link></variable>"
#: python_listener.xhp
msgctxt ""
@@ -1070,7 +1070,7 @@ msgctxt ""
"N0387\n"
"help.text"
msgid "Events raised by dialogs, documents, forms or graphical controls can be linked to macros, which is referred to as event-driven programming. The most common method to relate events to macros are the <literal>Events</literal> tab in <menuitem>Tools – Customize</menuitem> menu and the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Create dialog\">Dialog Editor</link> Control properties pane from <menuitem>Tools - Macros – Organise Dialogs...</menuitem> menu."
-msgstr ""
+msgstr "Gli eventi generati da finestre di dialogo, documenti, formulari o controlli grafici si possono collegare a macro, a cui ci si può riferire come programmazione controllata da eventi. Il metodo più comune per collegare eventi alle macro è utilizzare la scheda <literal>Eventi</literal> nel menu <menuitem>Strumenti – Personalizza</menuitem> e il pannello delle proprietà dei controlli dell'<link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Crea finestra di dialogo\">Editor delle finestre di dialogo</link> dal menu <menuitem>Strumenti - Macro – Organizza finestre di dialogo...</menuitem>."
#: python_listener.xhp
msgctxt ""
@@ -1078,7 +1078,7 @@ msgctxt ""
"N0388\n"
"help.text"
msgid "Graphical artifacts, keyboard inputs, mouse moves and other man/machine interactions can be controlled using UNO listeners that watch for the user’s behaviour. Listeners are dynamic program code alternatives to macro assignments. One may create as many UNO listeners as events to watch for. A single listener can also handle multiple user interface controls."
-msgstr ""
+msgstr "Gli artefatti grafici, gli input di tastiera, i movimenti del mouse e altre interazioni uomo/macchina possono essere controllati mediante listener UNO che \"ascoltano\" il comportamento dell'utente. I listener sono alternative di codice di programmazione dinamica alle assegnazioni macro. Si possono creare tanti listener UNO quanti sono gli eventi da ascoltare. Un listener singolo può anche gestire più controlli di interfaccia utente."
#: python_listener.xhp
msgctxt ""
@@ -1086,7 +1086,7 @@ msgctxt ""
"N0389\n"
"help.text"
msgid "Creating an event listener"
-msgstr ""
+msgstr "Creazione di un listener di eventi"
#: python_listener.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"N0390\n"
"help.text"
msgid "Listeners get attached to controls held in dialogs, as well as to document or form events. Listeners are also used when creating runtime dialogs or when adding controls to a dialog on the fly."
-msgstr ""
+msgstr "Listener vengono allegati ai controlli contenuti negli eventi contenuti nelle finestre di dialogo, nel documento o nei formulari. I listener vengono utilizzati anche quando si creano finestre di dialogo al tempo di esecuzione o quando si aggiungono al volo controlli a una finestra di dialogo."
#: python_listener.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"N0391\n"
"help.text"
msgid "This example creates a listener for <literal>Button1</literal> control of <literal>Dialog1</literal> dialog in <literal>Standard</literal> library."
-msgstr ""
+msgstr "Questo esempio crea un listener per il controllo <literal>Button1</literal> della finestra di dialogo <literal>Dialog1</literal> nella libreria <literal>Standard</literal>."
#: python_listener.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"N0392\n"
"help.text"
msgid "With Python"
-msgstr ""
+msgstr "Con Python"
#: python_listener.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"N0405\n"
"help.text"
msgid "_MY_LABEL = 'Python listens..'"
-msgstr ""
+msgstr "_MY_LABEL = 'Python è in ascolto..'"
#: python_listener.xhp
msgctxt ""
@@ -1126,7 +1126,7 @@ msgctxt ""
"N0417\n"
"help.text"
msgid "MsgBox(\"The user acknowledged the dialog.\")"
-msgstr ""
+msgstr "MsgBox(\"L'utente ha dato l'ok alla finestra di dialogo.\")"
#: python_listener.xhp
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"N0419\n"
"help.text"
msgid "MsgBox(\"The user canceled the dialog.\")"
-msgstr ""
+msgstr "MsgBox(\"L'utente ha annullato la finestra di dialogo.\")"
#: python_listener.xhp
msgctxt ""
@@ -1142,7 +1142,7 @@ msgctxt ""
"N0424\n"
"help.text"
msgid "\"\"\" Create a Dialog from its location \"\"\""
-msgstr ""
+msgstr "\"\"\" Creare una finestra di dialogo dalla sua posizione \"\"\""
#: python_listener.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"N0437\n"
"help.text"
msgid "\"\"\" Listen to & count button clicks \"\"\""
-msgstr ""
+msgstr "\"\"\" Ascoltare e conteggiare i clic dei pulsanti \"\"\""
#: python_listener.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"N0448\n"
"help.text"
msgid "def disposing(self, evt: EventObject): # mandatory routine"
-msgstr ""
+msgstr "def disposing(self, evt: EventObject): # routine obbligatoria"
#: python_listener.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"N0457\n"
"help.text"
msgid "<emph>msgbox.py</emph> in <emph>{installation}/program/</emph> directory has some examples of button listeners."
-msgstr ""
+msgstr "il file <emph>msgbox.py</emph> nella cartella <emph>{installation}/program/</emph> contiene alcuni esempi di listener dei pulsanti."
#: python_listener.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"N0458\n"
"help.text"
msgid "With %PRODUCTNAME Basic"
-msgstr ""
+msgstr "Con %PRODUCTNAME Basic"
#: python_listener.xhp
msgctxt ""
@@ -1182,7 +1182,7 @@ msgctxt ""
"N0459d\n"
"help.text"
msgid "Const MY_LABEL = \"Basic listens..\""
-msgstr ""
+msgstr "Const MY_LABEL = \"Basic è in ascolto..\""
#: python_listener.xhp
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"N0478\n"
"help.text"
msgid "Case rc.OK : MsgBox \"The user acknowledged the dialog.\",, \"Basic\""
-msgstr ""
+msgstr "Case rc.OK : MsgBox \"L'utente ha dato l'ok alla finestra di dialogo.\",, \"Basic\""
#: python_listener.xhp
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"N0479\n"
"help.text"
msgid "Case rc.CANCEL : MsgBox \"The user canceled the dialog.\",, \"Basic\""
-msgstr ""
+msgstr "Case rc.CANCEL : MsgBox \"L'utente ha annullato la finestra di dialogo.\",, \"Basic\""
#: python_listener.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"N0486\n"
"help.text"
msgid "''' Listen to & count button clicks '''"
-msgstr ""
+msgstr "''' Ascoltare e conteggiare i clic dei pulsanti '''"
#: python_listener.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"N0496\n"
"help.text"
msgid "' your code goes here"
-msgstr ""
+msgstr "' il vostro codice va qui"
#: python_listener.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"N0498\n"
"help.text"
msgid "Other Event Listeners"
-msgstr ""
+msgstr "Altri listener di eventi"
#: python_listener.xhp
msgctxt ""
@@ -1230,7 +1230,7 @@ msgctxt ""
"N0499\n"
"help.text"
msgid "Listeners are usually coded along with <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"dialog opening\">dialog opening</link>. Numerous listener approaches are possible such as event handlers for dialogs or event monitors for documents or forms."
-msgstr ""
+msgstr "I listener sono in genere codificati insieme con l'<link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"apertura della finestra di dialogo\">apertura della finestra di dialogo</link>. Sono possibili numerosi approcci di listener, come i gestori degli eventi per le finestre di dialogo o il monitor degli eventi per i documenti o i formulari."
#: python_listener.xhp
msgctxt ""
@@ -1238,7 +1238,7 @@ msgctxt ""
"N0505\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function\">CreateUnoListener Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"Funzione CreateUnoListener\">Funzione CreateUnoListener</link>"
#: python_listener.xhp
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"N0506\n"
"help.text"
msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Events mapping to objects\">Events mapping to objects</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05060700.xhp\" name=\"Mappatura di eventi agli oggetti\">Mappatura di eventi agli oggetti</link>"
#: python_listener.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"N0509\n"
"help.text"
msgid "See also <link href=\"text/sbasic/shared/01040000.xhp\" name=\"Document events\">Document events</link>, <link href=\"text/shared/02/01170202.xhp\" name=\"Form events\">Form events</link>."
-msgstr ""
+msgstr "Vedere anche <link href=\"text/sbasic/shared/01040000.xhp\" name=\"Eventi del documento\">Eventi del documento</link>, <link href=\"text/shared/02/01170202.xhp\" name=\"Eventi del formulario\">Eventi del formulario</link>."
#: python_locations.xhp
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python Scripts Organization"
-msgstr ""
+msgstr "Organizzazione degli script Python"
#: python_locations.xhp
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"hd_id391543358231021\n"
"help.text"
msgid "<variable id=\"pythonlocations1\"><link href=\"text/sbasic/python/python_locations.xhp\" name=\"command_name\">Python Scripts Organization and Location</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonlocations1\"><link href=\"text/sbasic/python/python_locations.xhp\" name=\"command_name\">Organizzazione e posizione degli script Python</link></variable>"
#: python_locations.xhp
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"par_id771543358231022\n"
"help.text"
msgid "The Python script files are stored in the filesystem, in folders controlled by %PRODUCTNAME. The macros can be started at installation, user or file level."
-msgstr ""
+msgstr "I file degli script Python sono memorizzati nel filesystem, in cartelle controllate da %PRODUCTNAME. Le macro possono essere avviate a livello di installazione, utente o file."
#: python_locations.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"hd_id911544049584458\n"
"help.text"
msgid "Python Script Locations"
-msgstr ""
+msgstr "Posizione degli script Python"
#: python_locations.xhp
msgctxt ""
@@ -1294,7 +1294,7 @@ msgctxt ""
"par_id121551089455774\n"
"help.text"
msgid "Refer to <link href=\"text/sbasic/python/python_session.xhp\" name=\"Getting Session Information\">Getting Session Information</link> in order to get programmatic access to Python script locations."
-msgstr ""
+msgstr "Per ottenere accesso programmatico alle posizioni degli script Python, fate riferimento al capitolo <link href=\"text/sbasic/python/python_session.xhp\" name=\"Ottenere informazioni sulla sessione\">Ottenere informazioni sulla sessione</link>."
#: python_locations.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"hd_id591544049572647\n"
"help.text"
msgid "%PRODUCTNAME Macros container"
-msgstr ""
+msgstr "Contenitore di macro %PRODUCTNAME"
#: python_locations.xhp
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"par_id261544049064421\n"
"help.text"
msgid "Existing macros in this location (container) were copied by the installation program and are available to every computer user, and any open document can access macros stored the container. You need administrative rights to store or edit macros here."
-msgstr ""
+msgstr "Le macro esistenti in questa posizione (contenitore) vengono copiate dal programma di installazione e sono disponibili a tutti gli utenti del computer e a qualsiasi documento aperto che può accedere alle macro memorizzate nel contenitore. È necessario possedere i diritti amministrativi per memorizzare o modificare qui le macro."
#: python_locations.xhp
msgctxt ""
@@ -1318,7 +1318,7 @@ msgctxt ""
"par_id861544210028670\n"
"help.text"
msgid "The %PRODUCTNAME Macros container location in the file system depends on the operating system:"
-msgstr ""
+msgstr "La posizione del contenitore di macro %PRODUCTNAME nel filesystem dipende dal sistema operativo:"
#: python_locations.xhp
msgctxt ""
@@ -1326,7 +1326,7 @@ msgctxt ""
"par_id191544210072242\n"
"help.text"
msgid "For <emph>Windows</emph>: <literal>{Installation}\\share\\Scripts\\python</literal>."
-msgstr ""
+msgstr "Per <emph>Windows</emph>: <literal>{Installazione}\\share\\Scripts\\python</literal>."
#: python_locations.xhp
msgctxt ""
@@ -1334,7 +1334,7 @@ msgctxt ""
"par_id61544210078654\n"
"help.text"
msgid "For <emph>Linux</emph> and <emph>macOS</emph>: <literal>{Installation}/share/Scripts/python</literal>."
-msgstr ""
+msgstr "Per <emph>Linux</emph> e <emph>macOS</emph>: <literal>{Installazione}/share/Scripts/python</literal>."
#: python_locations.xhp
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"hd_id861544049692222\n"
"help.text"
msgid "My Macros"
-msgstr ""
+msgstr "Macro personali"
#: python_locations.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"par_id981544049055996\n"
"help.text"
msgid "This container is accessible only by the %PRODUCTNAME user. Any open document can access macros stored the container. Macros in this location are stored in the %PRODUCTNAME user profile."
-msgstr ""
+msgstr "Questo contenitore è accessibile solo dall'utente %PRODUCTNAME. Alle macro contenute nel contenitore possono accedere tutti i documenti aperti. Le macro in questa posizione sono memorizzate nel profilo utente di %PRODUCTNAME."
#: python_locations.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"par_id341544210187846\n"
"help.text"
msgid "The My Macros container location is in the user space and depends on the operating system:"
-msgstr ""
+msgstr "La posizione del contenitore Macro personali si trova nello spazio utente e dipende dal sistema operativo:"
#: python_locations.xhp
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"par_id381544210213190\n"
"help.text"
msgid "For <emph>Windows</emph>,<br/><literal>%APPDATA%\\LibreOffice\\4\\user\\Scripts\\python</literal>."
-msgstr ""
+msgstr "Per <emph>Windows</emph>,<br/><literal>%APPDATA%\\LibreOffice\\4\\user\\Scripts\\python</literal>."
#: python_locations.xhp
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"par_id691544210219850\n"
"help.text"
msgid "For <emph>Linux</emph> and <emph>macOS</emph>,<br/><literal>$HOME/.config/libreoffice/4/user/Scripts/python</literal>."
-msgstr ""
+msgstr "Per <emph>Linux</emph> e <emph>macOS</emph>,<br/><literal>$HOME/.config/libreoffice/4/user/Scripts/python</literal>."
#: python_locations.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"hd_id101544049707712\n"
"help.text"
msgid "Document macros"
-msgstr ""
+msgstr "Macro dei documenti"
#: python_locations.xhp
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"par_id31544049046497\n"
"help.text"
msgid "Document macros are embedded in the document and are accessible only when the document is open."
-msgstr ""
+msgstr "Le macro dei documenti sono incorporate nel documento e sono accessibili solo quando il documento è aperto."
#: python_locations.xhp
msgctxt ""
@@ -1398,7 +1398,7 @@ msgctxt ""
"hd_id171544049715310\n"
"help.text"
msgid "Libraries, Modules and Macros"
-msgstr ""
+msgstr "Librerie, moduli e macro"
#: python_locations.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"par_id181544209916707\n"
"help.text"
msgid "Like BASIC macros, Python macros can be organized in libraries, modules and macros."
-msgstr ""
+msgstr "Esattamente come le macro BASIC, le macro Python si possono organizzare in librerie, moduli e macro."
#: python_locations.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"hd_id21544209865082\n"
"help.text"
msgid "Creating a Python Library"
-msgstr ""
+msgstr "Creazione di una libreria Python"
#: python_locations.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"par_id191544209928221\n"
"help.text"
msgid "Libraries are folders in the container tree. To create a library, add a folder in the target container. The library name is the folder name."
-msgstr ""
+msgstr "Le librerie sono cartelle in una struttura di contenitori. Per creare una libreria, aggiungete una cartella nel contenitore di destinazione. Il nome della libreria corrisponde al nome della cartella."
#: python_locations.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"hd_id31544209872869\n"
"help.text"
msgid "Creating a Python Module."
-msgstr ""
+msgstr "Creazione di un modulo Python."
#: python_locations.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"par_id161544209936743\n"
"help.text"
msgid "A module is a python file in the library or the container. Create a module adding a file in the container."
-msgstr ""
+msgstr "Un modulo è un file python all'interno della libreria o del contenitore. Create un modulo aggiungendo un file all'interno del contenitore."
#: python_locations.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"hd_id151544209895574\n"
"help.text"
msgid "Python macros"
-msgstr ""
+msgstr "Macro Python"
#: python_locations.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"par_id61544209944591\n"
"help.text"
msgid "A macro is a python object in the module."
-msgstr ""
+msgstr "Una macro è un oggetto python all'interno del modulo."
#: python_platform.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python : Platform class"
-msgstr ""
+msgstr "Python: classe della piattaforma"
#: python_platform.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"N0508\n"
"help.text"
msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Piattaforma;isLinux</bookmark_value> <bookmark_value>Piattaforma;isMacOsX</bookmark_value> <bookmark_value>Piattaforma;isWindows</bookmark_value> <bookmark_value>Piattaforma;ComputerName</bookmark_value> <bookmark_value>Piattaforma;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Strumenti;GetRegistryContent</bookmark_value>"
#: python_platform.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"N0509\n"
"help.text"
msgid "<variable id=\"pythonplatform\"><link href=\"text/sbasic/python/python_platform.xhp\" name=\"platform01\">Identifying the operating system</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonplatform\"><link href=\"text/sbasic/python/python_platform.xhp\" name=\"platform01\">Identificazione del sistema operativo</link></variable>"
#: python_platform.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"N0510\n"
"help.text"
msgid "Identifying the operating system can be performed with Python or Basic language."
-msgstr ""
+msgstr "L'identificazione del sistema operativo si può eseguire col linguaggio Python o Basic."
#: python_platform.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"N0511\n"
"help.text"
msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
-msgstr ""
+msgstr "La proprietà ComputerName è disponibile solo per Windows. Le chiamate Basic alle macro Python aiutano a superare le limitazioni di %PRODUCTNAME Basic."
#: python_platform.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"N0512\n"
"help.text"
msgid "Using a Python class:"
-msgstr ""
+msgstr "Uso di una classe Python:"
#: python_platform.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"N0529\n"
"help.text"
msgid "Using a Basic classmodule:"
-msgstr ""
+msgstr "Uso di un modulo di classe Basic:"
#: python_platform.xhp
msgctxt ""
@@ -1518,7 +1518,7 @@ msgctxt ""
"NO529b\n"
"help.text"
msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
-msgstr ""
+msgstr "%PRODUCTNAME Basic difetta del riconoscimento nativo per MacOS X. L'identificazione della piattaforma è possibile utilizzando l'API (Application Programming Interface) di %PRODUCTNAME."
#: python_platform.xhp
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"N0451\n"
"help.text"
msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
-msgstr ""
+msgstr "' Restituisce il nome della piattaforma come \"MAC\", \"UNIX\", \"WIN\""
#: python_platform.xhp
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"N0551\n"
"help.text"
msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
-msgstr ""
+msgstr "' Dedotta dalla funzione \"Tools.UCB.ShowHelperDialog\""
#: python_platform.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"N0564\n"
"help.text"
msgid "Examples:"
-msgstr ""
+msgstr "Esempi:"
#: python_platform.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"N0565\n"
"help.text"
msgid "With Python"
-msgstr ""
+msgstr "Con Python"
#: python_platform.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"N0567\n"
"help.text"
msgid "<literal>>>> print(Platform().isMacOSX) # object property</literal>"
-msgstr ""
+msgstr "<literal>>>> print(Platform().isMacOSX) # proprietà dell'oggetto</literal>"
#: python_platform.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"N0569\n"
"help.text"
msgid "<literal>>>> input(Platform().OSName) # object property</literal>"
-msgstr ""
+msgstr "<literal>>>> input(Platform().OSName) # proprietà dell'oggetto</literal>"
#: python_platform.xhp
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"N0571\n"
"help.text"
msgid "From <menuitem>Tools – Macros - Run Macro...</menuitem> menu."
-msgstr ""
+msgstr "Dal menu <menuitem>Strumenti – Macro - Esegui macro...</menuitem>."
#: python_platform.xhp
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"N0576\n"
"help.text"
msgid "With %PRODUCTNAME Basic"
-msgstr ""
+msgstr "Con %PRODUCTNAME Basic"
#: python_platform.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"N0578\n"
"help.text"
msgid "Dim p As New Platform ' instance of Platform class"
-msgstr ""
+msgstr "Dim p As New Platform ' istanza di classe di piattaforma"
#: python_platform.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"N0579\n"
"help.text"
msgid "MsgBox p.isLinux ' object property"
-msgstr ""
+msgstr "MsgBox p.isLinux ' proprietà dell'oggetto"
#: python_platform.xhp
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"N0580\n"
"help.text"
msgid "Print p.isWindows, p.OSName ' object properties"
-msgstr ""
+msgstr "Print p.isWindows, p.OSName ' proprietà dell'oggetto"
#: python_programming.xhp
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python : Programming with Python"
-msgstr ""
+msgstr "Python: programmare con Python"
#: python_programming.xhp
msgctxt ""
@@ -1622,7 +1622,7 @@ msgctxt ""
"N0218\n"
"help.text"
msgid "<bookmark_value>Python;Programming</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;Python</bookmark_value> <bookmark_value>uno.py</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;Programmare</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;Python</bookmark_value> <bookmark_value>uno.py</bookmark_value>"
#: python_programming.xhp
msgctxt ""
@@ -1630,7 +1630,7 @@ msgctxt ""
"hd_id691546462755220\n"
"help.text"
msgid "<variable id=\"pythonprogrammingheading\"><link href=\"text/sbasic/python/python_programming.xhp\" name=\"python programming\">Programming with Python Scripts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonprogrammingheading\"><link href=\"text/sbasic/python/python_programming.xhp\" name=\"programmazione python\">Programmare con script Python</link></variable>"
#: python_programming.xhp
msgctxt ""
@@ -1638,7 +1638,7 @@ msgctxt ""
"N0220\n"
"help.text"
msgid "A Python macro is a function within a .py file, identified as a module. Unlike %PRODUCTNAME Basic and its dozen of <link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects functions or services\">UNO objects functions or services</link>, Python macros use the <literal>XSCRIPTCONTEXT</literal> UNO single object, shared with JavaScript and BeanShell. The <literal>g_exportedScripts</literal> global tuple explicitly lists selectable macros from a module. Python modules hold autonomous code logic, and are independent from one another."
-msgstr ""
+msgstr "Una macro Python è una funzione all'interno di un file .py, identificata come un modulo. A differenza di %PRODUCTNAME Basic e la sua dozzina di <link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"servizi o funzioni di oggetti UNO\">servizi o funzioni di oggetti UNO</link>, le macro Python utilizzano l'oggetto singolo UNO <literal>XSCRIPTCONTEXT</literal>, condiviso con JavaScript e BeanShell. La tuple globale <literal>g_exportedScripts</literal> elenca in modo esplicito le macro selezionabili da un modulo. I moduli Python possiedono una logica di codice autonoma e sono indipendenti l'uno dall'altro."
#: python_programming.xhp
msgctxt ""
@@ -1646,7 +1646,7 @@ msgctxt ""
"N0221\n"
"help.text"
msgid "XSCRIPTCONTEXT Global Variable"
-msgstr ""
+msgstr "Variabile globale XSCRIPTCONTEXT"
#: python_programming.xhp
msgctxt ""
@@ -1654,7 +1654,7 @@ msgctxt ""
"N0222\n"
"help.text"
msgid "Genuine Basic UNO facilities can be inferred from <literal>XSCRIPTCONTEXT</literal> global variable. Refer to %PRODUCTNAME API for a complete <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScriptContext.html\" name=\"description of XSCRIPTCONTEXT\">description of XSCRIPTCONTEXT</link>. <literal>XSCRIPTCONTEXT</literal> methods summarize as:"
-msgstr ""
+msgstr "Le funzioni Basic UNO originali si possono dedurre dalla variabile globale <literal>XSCRIPTCONTEXT</literal>. Per una <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScriptContext.html\" name=\"descrizione di XSCRIPTCONTEXT\">descrizione di XSCRIPTCONTEXT</link> esaustiva, fate riferimento all'API di %PRODUCTNAME. I metodi di <literal>XSCRIPTCONTEXT</literal> si riepilogano in:"
#: python_programming.xhp
msgctxt ""
@@ -1662,7 +1662,7 @@ msgctxt ""
"N0224\n"
"help.text"
msgid "Methods"
-msgstr ""
+msgstr "Metodi"
#: python_programming.xhp
msgctxt ""
@@ -1670,7 +1670,7 @@ msgctxt ""
"N0225\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descrizione"
#: python_programming.xhp
msgctxt ""
@@ -1678,7 +1678,7 @@ msgctxt ""
"N0226\n"
"help.text"
msgid "Mapped in Basic as"
-msgstr ""
+msgstr "Mappata in Basic come"
#: python_programming.xhp
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"N0228\n"
"help.text"
msgid "The document reference on which the script can operate."
-msgstr ""
+msgstr "Il riferimento del documento su cui lo script può operare."
#: python_programming.xhp
msgctxt ""
@@ -1694,7 +1694,7 @@ msgctxt ""
"N0231\n"
"help.text"
msgid "The desktop reference on which the script can operate."
-msgstr ""
+msgstr "Il riferimento del desktop su cui lo script può operare."
#: python_programming.xhp
msgctxt ""
@@ -1702,7 +1702,7 @@ msgctxt ""
"N0234\n"
"help.text"
msgid "The component context which the script can use to create other uno components."
-msgstr ""
+msgstr "Il contesto del componente che lo script può utilizzare per creare altri componenti uno."
#: python_programming.xhp
msgctxt ""
@@ -1710,7 +1710,7 @@ msgctxt ""
"N0237\n"
"help.text"
msgid "<emph>HelloWorld</emph> and <emph>Capitalise</emph> installation shared scripts illustrate UNO-related macros making use of <literal>XSCRIPTCONTEXT</literal> global variable."
-msgstr ""
+msgstr "Gli script condivisi di installazione <emph>HelloWorld</emph> e <emph>Capitalise</emph> illustrano le macro collegate a UNO che fanno uso della variabile globale <literal>XSCRIPTCONTEXT</literal>."
#: python_programming.xhp
msgctxt ""
@@ -1718,7 +1718,7 @@ msgctxt ""
"N0238\n"
"help.text"
msgid "Python standard output file is not available when running Python macros from <menuitem>Tools - Macros - Run Macro</menuitem> menu. Refer to <emph>Input/Output to Screen</emph> for more information."
-msgstr ""
+msgstr "Quando avviate le macro Python dal menu <menuitem>Strumenti - Macro - Esegui macro</menuitem>, il file di output standard Python non è disponibile. Per maggiori informazioni consultate il capitolo <emph>Input/output sullo schermo</emph>."
#: python_programming.xhp
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"N0239\n"
"help.text"
msgid "Module import"
-msgstr ""
+msgstr "Importazione di moduli"
#: python_programming.xhp
msgctxt ""
@@ -1734,7 +1734,7 @@ msgctxt ""
"N0240\n"
"help.text"
msgid "<literal>XSCRIPTCONTEXT</literal> is not provided to imported modules."
-msgstr ""
+msgstr "<literal>XSCRIPTCONTEXT</literal> non viene fornito ai moduli importati."
#: python_programming.xhp
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"N0241\n"
"help.text"
msgid "%PRODUCTNAME Basic libraries contain classes, routines and variables, Python modules contain classes, functions and variables. Common pieces of reusable Python or UNO features must be stored in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"My macros\">My macros</link> within <literal>(User Profile)/Scripts/python/pythonpath</literal>. Python libraries help organize modules in order to prevent module name collisions. Import <literal>uno.py</literal> inside shared modules."
-msgstr ""
+msgstr "Le librerie di %PRODUCTNAME Basic contengono classi, routine e variabili, i moduli Python contengono classi, funzioni e variabili. Le parti comuni delle funzioni Python o UNO riutilizzabili devono essere memorizzate in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"Macro personali\">Macro personali</link>all'interno del percorso <literal>(Profilo utente)/Scripts/python/pythonpath</literal>. Le librerie Python aiutano a organizzare i moduli in modo da evitare conflitti di nome. Importate <literal>uno.py</literal> dentro i moduli condivisi."
#: python_programming.xhp
msgctxt ""
@@ -1750,7 +1750,7 @@ msgctxt ""
"N0242\n"
"help.text"
msgid "Genuine BASIC UNO facilities can be inferred using <literal>uno.py</literal> module. Use <link href=\"text/sbasic/python/python_shell.xhp\" name=\"Python interactive shell\">Python interactive shell</link> to get a complete module description using <literal>dir()</literal> and <literal>help()</literal> Python commands."
-msgstr ""
+msgstr "Le funzioni BASIC UNO originali si possono dedurre utilizzando il modulo <literal>uno.py</literal>. Utilizzate la <link href=\"text/sbasic/python/python_shell.xhp\" name=\"shell interattiva di Python\">shell interattiva di Python</link> per ottenere una descrizione completa dei moduli mediante i comandi Python <literal>dir()</literal> e <literal>help()</literal>."
#: python_programming.xhp
msgctxt ""
@@ -1758,7 +1758,7 @@ msgctxt ""
"N0244\n"
"help.text"
msgid "Functions"
-msgstr ""
+msgstr "Funzioni"
#: python_programming.xhp
msgctxt ""
@@ -1766,7 +1766,7 @@ msgctxt ""
"N0245\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descrizione"
#: python_programming.xhp
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"N0246\n"
"help.text"
msgid "Mapped in Basic as"
-msgstr ""
+msgstr "Mappata in Basic come"
#: python_programming.xhp
msgctxt ""
@@ -1782,7 +1782,7 @@ msgctxt ""
"N0248\n"
"help.text"
msgid "Returns an absolute file url from the given urls."
-msgstr ""
+msgstr "Restituisce l'URL assoluto di un file dagli URL specificati."
#: python_programming.xhp
msgctxt ""
@@ -1790,7 +1790,7 @@ msgctxt ""
"N0251\n"
"help.text"
msgid "Creates a UNO struct or exception given by typeName."
-msgstr ""
+msgstr "Crea uno struct UNO o un'eccezione specificata da typeName."
#: python_programming.xhp
msgctxt ""
@@ -1798,7 +1798,7 @@ msgctxt ""
"N0254\n"
"help.text"
msgid "Returns a system path."
-msgstr ""
+msgstr "Restituisce un percorso di sistema."
#: python_programming.xhp
msgctxt ""
@@ -1806,7 +1806,7 @@ msgctxt ""
"N0257\n"
"help.text"
msgid "Returns the class of a concrete UNO exception, struct, or interface."
-msgstr ""
+msgstr "Restituisce la classe di un'eccezione, struct o interfaccia UNO concreta."
#: python_programming.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"N0260\n"
"help.text"
msgid "Returns the UNO component context used to initialize the Python runtime."
-msgstr ""
+msgstr "Restituisce il contesto del componente UNO utilizzato per inizializzare il tempo di esecuzione (runtime) Python."
#: python_programming.xhp
msgctxt ""
@@ -1822,7 +1822,7 @@ msgctxt ""
"N0264\n"
"help.text"
msgid "Looks up the value of an IDL constant by giving its explicit name."
-msgstr ""
+msgstr "Cerca il valore di una costante IDL fornendo il suo nome esplicito."
#: python_programming.xhp
msgctxt ""
@@ -1830,7 +1830,7 @@ msgctxt ""
"N0265\n"
"help.text"
msgid "See API constant groups"
-msgstr ""
+msgstr "Vedere i gruppi di costanti API"
#: python_programming.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"N0267\n"
"help.text"
msgid "Returns True, when obj is a class of a UNO interface."
-msgstr ""
+msgstr "Restituisce True (Vero), quando l'oggetto è una classe di un'interfaccia UNO."
#: python_programming.xhp
msgctxt ""
@@ -1846,7 +1846,7 @@ msgctxt ""
"N0270\n"
"help.text"
msgid "Returns a file URL for the given system path."
-msgstr ""
+msgstr "Restituisce un file URL per il percorso di sistema specificato."
#: python_programming.xhp
msgctxt ""
@@ -1854,7 +1854,7 @@ msgctxt ""
"N0272\n"
"help.text"
msgid "<emph>LibreLogo</emph> and <emph>TableSample</emph> installation shared scripts use <literal>uno.py</literal> module."
-msgstr ""
+msgstr "Gli script condivisi di installazione <emph>LibreLogo</emph> e <emph>TableSample</emph> utilizzano il modulo <literal>uno.py</literal>."
#: python_programming.xhp
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"N0273\n"
"help.text"
msgid "More Python-Basic samples"
-msgstr ""
+msgstr "Altri esempi Python-Basic"
#: python_programming.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"N0275\n"
"help.text"
msgid "Python UNO"
-msgstr ""
+msgstr "Python UNO"
#: python_programming.xhp
msgctxt ""
@@ -1878,7 +1878,7 @@ msgctxt ""
"N0276\n"
"help.text"
msgid "Basic UNO features"
-msgstr ""
+msgstr "Funzionalità Basic UNO"
#: python_programming.xhp
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"N0284\n"
"help.text"
msgid "See <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"Opening a Dialog\">Opening a Dialog</link>"
-msgstr ""
+msgstr "Vedere <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"Visualizzare una finestra di dialogo\">Visualizzare una finestra di dialogo</link>"
#: python_programming.xhp
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"N0286\n"
"help.text"
msgid "See <link href=\"text/sbasic/python/python_listener.xhp\" name=\"Creating a Listener\">Creating a Listener</link>"
-msgstr ""
+msgstr "Vedere <link href=\"text/sbasic/python/python_listener.xhp\" name=\"Creazione di un listener\">Creazione di un listener</link>"
#: python_programming.xhp
msgctxt ""
@@ -1902,7 +1902,7 @@ msgctxt ""
"N0288\n"
"help.text"
msgid "See UNO data types"
-msgstr ""
+msgstr "Vedere Tipi di dati UNO"
#: python_programming.xhp
msgctxt ""
@@ -1910,7 +1910,7 @@ msgctxt ""
"N0297\n"
"help.text"
msgid "Importing an embedded Module"
-msgstr ""
+msgstr "Importazione di un modulo incorporato"
#: python_programming.xhp
msgctxt ""
@@ -1918,7 +1918,7 @@ msgctxt ""
"N0298\n"
"help.text"
msgid "Similarly to %PRODUCTNAME Basic that supports browsing and dynamic loading of libraries, Python libraries can be explored and imported on demand. For more information on library containers, visit <link href=\"https://api.libreoffice.org/\" name=\"API Documentation site\">%PRODUCTNAME Application Programming Interface</link> (API) or download <link href=\"https://www.libreoffice.org/download/download/\" name=\"SDK download page\">%PRODUCTNAME Software Development Kit</link> (SDK)."
-msgstr ""
+msgstr "In modo simile a %PRODUCTNAME Basic, che supporta la navigazione e il caricamento dinamico delle librerie, le librerie Python si possono esplorare e importare su richiesta. Per ulteriori informazioni sui contenitori delle librerie, visitate il sito di <link href=\"https://api.libreoffice.org/\" name=\"sito della documentazione API\">%PRODUCTNAME Application Programming Interface</link> (API) o scaricate <link href=\"https://www.libreoffice.org/download/download/\" name=\"SDK download page\">%PRODUCTNAME Software Development Kit</link> (SDK)."
#: python_programming.xhp
msgctxt ""
@@ -1926,7 +1926,7 @@ msgctxt ""
"N0299\n"
"help.text"
msgid "Importing a Python document embedded module is illustrated below, exception handling is not detailed:"
-msgstr ""
+msgstr "L'impostazione di un modulo Python incorporato in un documento viene illustrata di seguito, ad eccezione della gestione, non trattata in dettaglio:"
#: python_programming.xhp
msgctxt ""
@@ -1934,7 +1934,7 @@ msgctxt ""
"N0303\n"
"help.text"
msgid "\"\"\" load library and import module"
-msgstr ""
+msgstr "\"\"\" carica libreria e importa modulo"
#: python_programming.xhp
msgctxt ""
@@ -1942,7 +1942,7 @@ msgctxt ""
"N0305\n"
"help.text"
msgid "Adapted from 'Bibliothèque de fonctions' by Hubert Lambert"
-msgstr ""
+msgstr "adattato da 'Bibliothèque de fonctions' di Hubert Lambert"
#: python_programming.xhp
msgctxt ""
@@ -1950,7 +1950,7 @@ msgctxt ""
"N0306\n"
"help.text"
msgid "at https://forum.openoffice.org/fr/forum/viewtopic.php?p=286213\"\"\""
-msgstr ""
+msgstr "all'indirizzo https://forum.openoffice.org/fr/forum/viewtopic.php?p=286213\"\"\""
#: python_programming.xhp
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"N0307\n"
"help.text"
msgid "doc = XSCRIPTCONTEXT.getDocument() # current document"
-msgstr ""
+msgstr "doc = XSCRIPTCONTEXT.getDocument() # documento attuale"
#: python_programming.xhp
msgctxt ""
@@ -1966,7 +1966,7 @@ msgctxt ""
"N0310\n"
"help.text"
msgid "if not url in sys.path: # add path if necessary"
-msgstr ""
+msgstr "if not url in sys.path: # aggiunge percorso se necessario"
#: python_programming.xhp
msgctxt ""
@@ -1974,7 +1974,7 @@ msgctxt ""
"N0311\n"
"help.text"
msgid "sys.path.insert(0, url) # doclib takes precedence"
-msgstr ""
+msgstr "sys.path.insert(0, url) # doclib ha la precedenza"
#: python_programming.xhp
msgctxt ""
@@ -1982,7 +1982,7 @@ msgctxt ""
"N0312\n"
"help.text"
msgid "if module_name: # import if requested"
-msgstr ""
+msgstr "if module_name: # importa se richiesto"
#: python_programming.xhp
msgctxt ""
@@ -1990,7 +1990,7 @@ msgctxt ""
"N0316\n"
"help.text"
msgid "ui = load_library(\"my_gui\",'screen_io') # add <lib> path + import <module>"
-msgstr ""
+msgstr "ui = load_library(\"my_gui\",'screen_io') # aggiunge percorso <lib> + importa <module>"
#: python_programming.xhp
msgctxt ""
@@ -1998,7 +1998,7 @@ msgctxt ""
"N0321\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects page\">Basic UNO Objects, Functions and Services</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects page\">Oggetti, funzioni e servizi UNO Basic</link>"
#: python_screen.xhp
msgctxt ""
@@ -2006,7 +2006,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python : Screen Input/Output"
-msgstr ""
+msgstr "Python: schermo input/output"
#: python_screen.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"N0433\n"
"help.text"
msgid "<bookmark_value>Python;InputBox</bookmark_value> <bookmark_value>Python;MsgBox</bookmark_value> <bookmark_value>Python;Print</bookmark_value> <bookmark_value>API;MasterScriptProvider</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;InputBox</bookmark_value> <bookmark_value>Python;MsgBox</bookmark_value> <bookmark_value>Python;Print</bookmark_value> <bookmark_value>API;MasterScriptProvider</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
#: python_screen.xhp
msgctxt ""
@@ -2022,7 +2022,7 @@ msgctxt ""
"N0434\n"
"help.text"
msgid "<variable id=\"ioscreen\"><link href=\"text/sbasic/python/python_screen.xhp\" name=\"IO to screen\">Input/Output to Screen</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ioscreen\"><link href=\"text/sbasic/python/python_screen.xhp\" name=\"IO su schermo\">Input/output su schermo</link></variable>"
#: python_screen.xhp
msgctxt ""
@@ -2030,7 +2030,7 @@ msgctxt ""
"N0435\n"
"help.text"
msgid "Python standard output file is not available when running Python macros from <menuitem>Tools – Macros - Run Macro</menuitem>... menu. Presenting the output of a module requires the Python interactive console. Features such as <literal>input()</literal>, <literal>print()</literal>, <literal>repr()</literal> and <literal>str()</literal> are available from the Python shell."
-msgstr ""
+msgstr "Il file output standard di Python non è disponibile quando si eseguono macro Python dal menu <menuitem>Strumenti – Macro - Esegui macro</menuitem>. La presentazione dell'output di un modulo richiede la console interattiva di Python. Funzioni quali <literal>input()</literal>, <literal>print()</literal>, <literal>repr()</literal> e <literal>str()</literal> sono disponibili dalla shell di Python."
#: python_screen.xhp
msgctxt ""
@@ -2038,7 +2038,7 @@ msgctxt ""
"N0436\n"
"help.text"
msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"apso\">Alternative Python Script Organizer</link> (APSO) extension offers a msgbox() function out of its <literal>apso_utils</literal> module."
-msgstr ""
+msgstr "L'estensione <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"apso\">Alternative Python Script Organizer</link> (APSO) offre una funzione msgbox() al di fuori del suo modulo <literal>apso_utils</literal>."
#: python_screen.xhp
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"N0437\n"
"help.text"
msgid "%PRODUCTNAME Basic proposes <literal>InputBox()</literal>, <literal>Msgbox()</literal> and <literal>Print()</literal> screen I/O functions. Python alternatives exist relying either on %PRODUCTNAME API Abstract Windowing Toolkit, either on Python to Basic function calls. The latter proposes a syntax that is intentionally close to that of Basic, and uses a Python module next to a Basic module. The API Scripting Framework is used to perform Basic, BeanShell, JavaScript and Python inter-languages function calls."
-msgstr ""
+msgstr "%PRODUCTNAME Basic propone funzioni di I/O su schermo <literal>InputBox()</literal>, <literal>Msgbox()</literal> e <literal>Print()</literal>. Esistono alternative Python che si appoggiano sia sul %PRODUCTNAME API Abstract Windowing Toolkit, sia sulle chiamate alle funzioni di Python a Basic. Quest'ultima propone una sintassi che è intenzionalmente vicino a quella di Basic, e utilizza un modulo Python accanto a un modulo Basic. L'API Scripting Framework viene utilizzato per eseguire funzioni di chiamata tra i linguaggi Basic, BeanShell, JavaScript e Python."
#: python_screen.xhp
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"N0438\n"
"help.text"
msgid "Python syntax:"
-msgstr ""
+msgstr "Sintassi Python:"
#: python_screen.xhp
msgctxt ""
@@ -2062,7 +2062,7 @@ msgctxt ""
"N0442\n"
"help.text"
msgid "Examples:"
-msgstr ""
+msgstr "Esempi:"
#: python_screen.xhp
msgctxt ""
@@ -2070,7 +2070,7 @@ msgctxt ""
"N0449\n"
"help.text"
msgid "Installation:"
-msgstr ""
+msgstr "Installazione:"
#: python_screen.xhp
msgctxt ""
@@ -2078,7 +2078,7 @@ msgctxt ""
"N0450\n"
"help.text"
msgid "Copy <literal>screen_io</literal> Python module in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"User macros\">My macros</link> within <UserProfile>/Scripts/python/pythonpath,"
-msgstr ""
+msgstr "Copiate il modulo Python <literal>screen_io</literal> in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"Macro dell'utente\">Macro personali</link> all'interno di <UserProfile>/Scripts/python/pythonpath,"
#: python_screen.xhp
msgctxt ""
@@ -2086,7 +2086,7 @@ msgctxt ""
"N0451\n"
"help.text"
msgid "Copy <literal>uiScripts</literal> Basic module in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"User macros\">My macros</link> Standard Basic library,"
-msgstr ""
+msgstr "Copiate il modulo Basic <literal>uiScripts</literal> nella libreria Basic standard <link href=\"text/sbasic/python/python_locations.xhp\" name=\"Macro dell'utente\">Macro personali</link>,"
#: python_screen.xhp
msgctxt ""
@@ -2094,7 +2094,7 @@ msgctxt ""
"N0452\n"
"help.text"
msgid "Restart %PRODUCTNAME."
-msgstr ""
+msgstr "Riavviate %PRODUCTNAME."
#: python_screen.xhp
msgctxt ""
@@ -2102,7 +2102,7 @@ msgctxt ""
"N0453\n"
"help.text"
msgid "<literal>screen_io</literal> Python module"
-msgstr ""
+msgstr "Modulo Python <literal>screen_io</literal>"
#: python_screen.xhp
msgctxt ""
@@ -2110,7 +2110,7 @@ msgctxt ""
"N0467\n"
"help.text"
msgid "\"\"\" Displays a dialog box containing a message and returns a value.\"\"\""
-msgstr ""
+msgstr "\"\"\" Mostra un riquadro contenente un messaggio e restituisce un valore.\"\"\""
#: python_screen.xhp
msgctxt ""
@@ -2118,7 +2118,7 @@ msgctxt ""
"N0473\n"
"help.text"
msgid "\"\"\" Displays a prompt in a dialog box at which the user can enter text.\"\"\""
-msgstr ""
+msgstr "\"\"\" Mostra una richiesta in un riquadro di dialogo in cui l'utente può inserire del testo.\"\"\""
#: python_screen.xhp
msgctxt ""
@@ -2126,7 +2126,7 @@ msgctxt ""
"N0479\n"
"help.text"
msgid "\"\"\"Outputs the specified strings or numeric expressions in a dialog box.\"\"\""
-msgstr ""
+msgstr "\"\"\"Restituisce le stringhe specificate o le espressioni numeriche in un riquadro di dialogo.\"\"\""
#: python_screen.xhp
msgctxt ""
@@ -2134,7 +2134,7 @@ msgctxt ""
"N0492\n"
"help.text"
msgid "<literal>uiScripts</literal> Basic module"
-msgstr ""
+msgstr "Modulo Basic <literal>uiScripts</literal>"
#: python_session.xhp
msgctxt ""
@@ -2142,7 +2142,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python_Session : Session class"
-msgstr ""
+msgstr "Python_Session: classe di sessione"
#: python_session.xhp
msgctxt ""
@@ -2150,7 +2150,7 @@ msgctxt ""
"N0339\n"
"help.text"
msgid "<bookmark_value>Session;ComputerName</bookmark_value> <bookmark_value>Session;SharedScripts</bookmark_value> <bookmark_value>Session;SharedPythonScripts</bookmark_value> <bookmark_value>Session;UserProfile</bookmark_value> <bookmark_value>Session;UserScripts</bookmark_value> <bookmark_value>Session;UserPythonScripts</bookmark_value> <bookmark_value>API;PathSubstitution</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Sessione;ComputerName</bookmark_value> <bookmark_value>Sessione;SharedScripts</bookmark_value> <bookmark_value>Sessione;SharedPythonScripts</bookmark_value> <bookmark_value>Sessione;UserProfile</bookmark_value> <bookmark_value>Sessione;UserScripts</bookmark_value> <bookmark_value>Sessione;UserPythonScripts</bookmark_value> <bookmark_value>API;PathSubstitution</bookmark_value>"
#: python_session.xhp
msgctxt ""
@@ -2158,7 +2158,7 @@ msgctxt ""
"N0340\n"
"help.text"
msgid "<variable id=\"pythonsession\"><link href=\"text/sbasic/python/python_session.xhp\" name=\"session01\">Getting Session Information</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonsession\"><link href=\"text/sbasic/python/python_session.xhp\" name=\"session01\">Ottenere informazioni sulla sessione</link></variable>"
#: python_session.xhp
msgctxt ""
@@ -2166,7 +2166,7 @@ msgctxt ""
"N0341\n"
"help.text"
msgid "Computing %PRODUCTNAME user profile and shared modules system file paths can be performed with Python or with Basic languages. BeanShell, Java, JavaScript and Python scripts locations can be derived from this information."
-msgstr ""
+msgstr "L'elaborazione del profilo utente e dei percorsi dei file di sistema condivisi di %PRODUCTNAME si possono eseguire con il linguaggio Python o Basic. Le posizioni degli script BeanShell, Java, JavaScript e Python si possono derivare da queste informazioni."
#: python_session.xhp
msgctxt ""
@@ -2174,7 +2174,7 @@ msgctxt ""
"N0343\n"
"help.text"
msgid "Examples:"
-msgstr ""
+msgstr "Esempi:"
#: python_session.xhp
msgctxt ""
@@ -2182,7 +2182,7 @@ msgctxt ""
"N0344\n"
"help.text"
msgid "With Python shell."
-msgstr ""
+msgstr "Con shell Python."
#: python_session.xhp
msgctxt ""
@@ -2190,7 +2190,7 @@ msgctxt ""
"N0346\n"
"help.text"
msgid "<literal>>>> print(Session.SharedPythonScripts()) # static method</literal>"
-msgstr ""
+msgstr "<literal>>>> print(Session.SharedPythonScripts()) # metodo statico</literal>"
#: python_session.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"N0347\n"
"help.text"
msgid "<literal>>>> print(Session().UserName) # object property</literal>"
-msgstr ""
+msgstr "<literal>>>> print(Session().UserName) # proprietà dell'oggetto</literal>"
#: python_session.xhp
msgctxt ""
@@ -2206,7 +2206,7 @@ msgctxt ""
"N0348\n"
"help.text"
msgid "<literal>>>> input(Session().UserProfile) # object property</literal>"
-msgstr ""
+msgstr "<literal>>>> input(Session().UserProfile) # proprietà dell'oggetto</literal>"
#: python_session.xhp
msgctxt ""
@@ -2214,7 +2214,7 @@ msgctxt ""
"N0349\n"
"help.text"
msgid "From <menuitem>Tools – Macros - Run Macro</menuitem>... menu."
-msgstr ""
+msgstr "Dal menu <menuitem>Strumenti – Macro - Esegui macro</menuitem>."
#: python_session.xhp
msgctxt ""
@@ -2222,7 +2222,7 @@ msgctxt ""
"N0354\n"
"help.text"
msgid "ui.MsgBox(Session.Share(),title='Installation Share') # static method"
-msgstr ""
+msgstr "ui.MsgBox(Session.Share(),title='Installation Share') # metodo static"
#: python_session.xhp
msgctxt ""
@@ -2230,7 +2230,7 @@ msgctxt ""
"N0355\n"
"help.text"
msgid "ui.Print(Session.SharedPythonScripts()) # static method"
-msgstr ""
+msgstr "ui.Print(Session.SharedPythonScripts()) # metodo statico"
#: python_session.xhp
msgctxt ""
@@ -2238,7 +2238,7 @@ msgctxt ""
"N0356\n"
"help.text"
msgid "s = Session() # instance creation"
-msgstr ""
+msgstr "s = Session() # creazione istanza"
#: python_session.xhp
msgctxt ""
@@ -2246,7 +2246,7 @@ msgctxt ""
"N0357\n"
"help.text"
msgid "ui.MsgBox(s.UserName,title='Hello') # object property"
-msgstr ""
+msgstr "ui.MsgBox(s.UserName,title='Hello') # proprietà dell'oggetto"
#: python_session.xhp
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"N0358\n"
"help.text"
msgid "ui.Print(s.UserPythonScripts) # object property"
-msgstr ""
+msgstr "ui.Print(s.UserPythonScripts) # proprietà dell'oggetto"
#: python_session.xhp
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"N0360\n"
"help.text"
msgid "g_exportedScripts = (demo_session,) # public macros"
-msgstr ""
+msgstr "g_exportedScripts = (demo_session,) # macro pubbliche"
#: python_session.xhp
msgctxt ""
@@ -2270,7 +2270,7 @@ msgctxt ""
"N0361\n"
"help.text"
msgid "With %PRODUCTNAME Basic."
-msgstr ""
+msgstr "Con %PRODUCTNAME Basic."
#: python_session.xhp
msgctxt ""
@@ -2278,7 +2278,7 @@ msgctxt ""
"N0364\n"
"help.text"
msgid "Print \"Shared scripts location:\", s.SharedScripts"
-msgstr ""
+msgstr "Print \"Posizioni script condivise:\", s.SharedScripts"
#: python_session.xhp
msgctxt ""
@@ -2286,7 +2286,7 @@ msgctxt ""
"N0365\n"
"help.text"
msgid "MsgBox s.UserName,,\"Hello\""
-msgstr ""
+msgstr "MsgBox s.UserName,,\"Hello\""
#: python_session.xhp
msgctxt ""
@@ -2294,7 +2294,7 @@ msgctxt ""
"N0368\n"
"help.text"
msgid "Using COM/OLE and Visual Basic Scripting language."
-msgstr ""
+msgstr "Uso di COM/OLE e del linguaggio Visual Basic Scripting."
#: python_session.xhp
msgctxt ""
@@ -2302,7 +2302,7 @@ msgctxt ""
"N0369\n"
"help.text"
msgid "' The service manager is always the entry point"
-msgstr ""
+msgstr "' Il gestore del servizio è sempre il punto di accesso"
#: python_session.xhp
msgctxt ""
@@ -2310,7 +2310,7 @@ msgctxt ""
"N0370\n"
"help.text"
msgid "' If there is no office running then an office is started up"
-msgstr ""
+msgstr "' Se non esiste un compito in esecuzione allora viene fatto partire un compito"
#: python_session.xhp
msgctxt ""
@@ -2318,7 +2318,7 @@ msgctxt ""
"N0372\n"
"help.text"
msgid "' PathSubstitution service exhibits information to infer"
-msgstr ""
+msgstr "' Il servizio PathSubstitution mostra le informazioni da dedurre"
#: python_session.xhp
msgctxt ""
@@ -2326,7 +2326,7 @@ msgctxt ""
"N0373\n"
"help.text"
msgid "' <UserProfile|Share>/Scripts/python locations from"
-msgstr ""
+msgstr "' posizioni da <UserProfile|Share>/Scripts/python"
#: python_session.xhp
msgctxt ""
@@ -2334,7 +2334,7 @@ msgctxt ""
"N0381\n"
"help.text"
msgid "Python Session class:"
-msgstr ""
+msgstr "Classe di sessione Python:"
#: python_session.xhp
msgctxt ""
@@ -2342,7 +2342,7 @@ msgctxt ""
"N0401\n"
"help.text"
msgid "@property # alternative to '$(username)' variable"
-msgstr ""
+msgstr "@property # alternativa alla variabile '$(username)'"
#: python_session.xhp
msgctxt ""
@@ -2350,7 +2350,7 @@ msgctxt ""
"N0342\n"
"help.text"
msgid "Unlike Basic, pathname normalization is performed with Python inside Session class."
-msgstr ""
+msgstr "A differenza di Basic, la normalizzazione del nome_percorso viene eseguita con Python dentro la classe di sessione."
#: python_session.xhp
msgctxt ""
@@ -2358,7 +2358,7 @@ msgctxt ""
"N0412\n"
"help.text"
msgid "%PRODUCTNAME Basic Session class:"
-msgstr ""
+msgstr "Classe di sessione di %PRODUCTNAME Basic:"
#: python_session.xhp
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"N0417\n"
"help.text"
msgid "Private _ps As Object ' Private member"
-msgstr ""
+msgstr "Private _ps As Object ' Membro privato"
#: python_session.xhp
msgctxt ""
@@ -2374,7 +2374,7 @@ msgctxt ""
"N0422\n"
"help.text"
msgid "End Sub ' Constructor"
-msgstr ""
+msgstr "End Sub ' Constructor"
#: python_session.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"N0426\n"
"help.text"
msgid "End Sub ' Destructor"
-msgstr ""
+msgstr "End Sub ' Destructor"
#: python_session.xhp
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"N0439\n"
"help.text"
msgid "Public Property Get UserName() As String ' User account name"
-msgstr ""
+msgstr "Public Property Get UserName() As String ' Nome account utente"
#: python_session.xhp
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"N0443\n"
"help.text"
msgid "Public Property Get UserProfile() As String ' User profile system path"
-msgstr ""
+msgstr "Public Property Get UserProfile() As String ' Percorso di sistema profilo utente"
#: python_session.xhp
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"N0447\n"
"help.text"
msgid "Public Property Get UserScripts() As String ' User scripts system path"
-msgstr ""
+msgstr "Public Property Get UserScripts() As String ' Percorso di sistema script utente"
#: python_session.xhp
msgctxt ""
@@ -2414,7 +2414,7 @@ msgctxt ""
"N0451\n"
"help.text"
msgid "Public Property Get UserPythonScripts() As String ' User Python scripts system path"
-msgstr ""
+msgstr "Public Property Get UserPythonScripts() As String ' Percorso di sistema script Python"
#: python_shell.xhp
msgctxt ""
@@ -2422,7 +2422,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python Interactive Shell"
-msgstr ""
+msgstr "Shell interattiva Python"
#: python_shell.xhp
msgctxt ""
@@ -2430,7 +2430,7 @@ msgctxt ""
"N0117\n"
"help.text"
msgid "<bookmark_value>Python console</bookmark_value> <bookmark_value>Python Interactive Shell</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python, console</bookmark_value><bookmark_value>Python, shell interattiva</bookmark_value>"
#: python_shell.xhp
msgctxt ""
@@ -2438,7 +2438,7 @@ msgctxt ""
"N0118\n"
"help.text"
msgid "<variable id=\"pythonshell1\"><link href=\"text/sbasic/python/python_shell.xhp\" name=\"python shell\">Running Python Interactive Console</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonshell1\"><link href=\"text/sbasic/python/python_shell.xhp\" name=\"shell python\">Avvio della console interattiva Python</link></variable>"
#: python_shell.xhp
msgctxt ""
@@ -2446,7 +2446,7 @@ msgctxt ""
"N0119\n"
"help.text"
msgid "The Python interactive console, also known as Python interpreter or Python shell, provides programmers with a quick way to execute commands and try out and test code without creating a file. UNO objects introspection as well as %PRODUCTNAME Python modules documentation can be obtained from the terminal."
-msgstr ""
+msgstr "La console interattiva Python, conosciuta anche come interprete Python o shell Python, offre ai programmatori un modo rapido per eseguire comandi e provare e analizzare il codice senza dover creare un file. L'introspezione degli oggetti UNO, così come la documentazione dei moduli Python di %PRODUCTNAME, si può ottenere da terminale."
#: python_shell.xhp
msgctxt ""
@@ -2454,7 +2454,7 @@ msgctxt ""
"N0121\n"
"help.text"
msgid "Using a Basic macro:"
-msgstr ""
+msgstr "Uso di una macro Basic:"
#: python_shell.xhp
msgctxt ""
@@ -2462,7 +2462,7 @@ msgctxt ""
"N0127\n"
"help.text"
msgid "Using a Python macro:"
-msgstr ""
+msgstr "Uso di una macro Python:"
#: python_shell.xhp
msgctxt ""
@@ -2470,7 +2470,7 @@ msgctxt ""
"N0141\n"
"help.text"
msgid "Usage:"
-msgstr ""
+msgstr "Uso:"
#: python_shell.xhp
msgctxt ""
@@ -2478,4 +2478,4 @@ msgctxt ""
"N0142\n"
"help.text"
msgid "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0143\"><alt id=\"N0144\">Python Interactive Console</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0143\"><alt id=\"N0144\">Console interattiva Python</alt></image>"
diff --git a/source/it/helpcontent2/source/text/sbasic/shared.po b/source/it/helpcontent2/source/text/sbasic/shared.po
index b0e3836843f..05489fa7f7c 100644
--- a/source/it/helpcontent2/source/text/sbasic/shared.po
+++ b/source/it/helpcontent2/source/text/sbasic/shared.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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2018-12-09 17:36+0000\n"
+"PO-Revision-Date: 2019-07-26 11:24+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.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: 1544376963.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564140282.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"par_id051920171018124524\n"
"help.text"
msgid "This function or constant is enabled with the statement <link href=\"text/sbasic/shared/03103350.xhp\" name=\"optionvbasupport\"><literal>Option VBASupport 1</literal></link> placed before the executable program code in a module."
-msgstr ""
+msgstr "Questa funzione o costante viene abilitata con l'istruzione <link href=\"text/sbasic/shared/03103350.xhp\" name=\"optionvbasupport\"><literal>Option VBASupport 1</literal></link> posizionata prima del codice eseguibile del programma all'interno del modulo."
#: 00000003.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"par_id3145172\n"
"help.text"
msgid "This statement must be added before the executable program code in a module."
-msgstr ""
+msgstr "Questa istruzione deve essere inserita prima del codice eseguibile del programma all'interno del modulo."
#: 00000003.xhp
msgctxt ""
@@ -2166,7 +2166,7 @@ msgctxt ""
"par_id3145632\n"
"help.text"
msgid "Boolean variables store only one of two values: TRUE or FALSE. A number 0 evaluates to FALSE, every other value evaluates to TRUE."
-msgstr "Le variabili Boolean (booleane) possono memorizzare solo due valori: TRUE (VERO) o FALSE (FALSO). Il valore 0 equivale a FALSE, qualsiasi altro valore equivale a TRUE."
+msgstr "Le variabili Boolean (logiche) possono memorizzare solo due valori: TRUE (VERO) o FALSE (FALSO). Il valore 0 equivale a FALSE, qualsiasi altro valore equivale a TRUE."
#: 01020100.xhp
msgctxt ""
@@ -2358,7 +2358,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using Procedures and Functions"
-msgstr "Usare procedure e funzioni"
+msgstr "Uso di procedure e funzioni"
#: 01020300.xhp
msgctxt ""
@@ -2678,7 +2678,7 @@ msgctxt ""
"par_id7906125\n"
"help.text"
msgid "' (or raises error for Option Explicit)"
-msgstr ""
+msgstr "' (o eleva errore per Option Explicit)"
#: 01020300.xhp
msgctxt ""
@@ -6542,7 +6542,7 @@ msgctxt ""
"hd_id3156280\n"
"help.text"
msgid "<variable id=\"BasicScreenIO\"><link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"BasicScreenIO\"><link href=\"text/sbasic/shared/03010000.xhp\" name=\"Funzioni di I/O dello schermo\">Funzioni di I/O dello schermo</link></variable>"
#: 03010000.xhp
msgctxt ""
@@ -7190,7 +7190,7 @@ msgctxt ""
"bm_id3147230\n"
"help.text"
msgid "<bookmark_value>Print statement</bookmark_value> <bookmark_value>Print statement; Tab function</bookmark_value> <bookmark_value>Print statement; Spc function</bookmark_value> <bookmark_value>Spc function; in Print statement</bookmark_value> <bookmark_value>Tab function; in Print statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Print, istruzione</bookmark_value> <bookmark_value>Print, istruzione; funzione Tab</bookmark_value> <bookmark_value>Print, istruzione; funzione Spc</bookmark_value> <bookmark_value>Spc, funzione; nell'istruzione Print</bookmark_value> <bookmark_value>Tab, funzione; nell'istruzione Print</bookmark_value>"
#: 03010103.xhp
msgctxt ""
@@ -7294,7 +7294,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "You can insert the <emph>Tab</emph> 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 ""
+msgstr "Potete inserire tra gli argomenti la funzione <emph>Tab</emph>, racchiusa tra punti e virgola, per rientrare l'output in una posizione specifica, oppure potete usare la funzione <emph>Spc</emph> per inserire un determinato numero di spazi."
#: 03010103.xhp
msgctxt ""
@@ -7878,7 +7878,7 @@ msgctxt ""
"bm_id201546205404067\n"
"help.text"
msgid "<bookmark_value>QBColor function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>QBColor, funzione</bookmark_value>"
#: 03010304.xhp
msgctxt ""
@@ -15110,7 +15110,7 @@ msgctxt ""
"bm_id051720170831387233\n"
"help.text"
msgid "<bookmark_value>Basic constants</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Basic, costanti</bookmark_value>"
#: 03040000.xhp
msgctxt ""
@@ -15134,7 +15134,7 @@ msgctxt ""
"bm_id871554200620243\n"
"help.text"
msgid "<bookmark_value>Boolean Basic constants</bookmark_value><bookmark_value>Basic constant;False</bookmark_value><bookmark_value>Basic constant;True</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Logiche, costanti Basic</bookmark_value><bookmark_value>Basic, costante;Falso</bookmark_value><bookmark_value>Basic, costante;Vero</bookmark_value>"
#: 03040000.xhp
msgctxt ""
@@ -15174,7 +15174,7 @@ msgctxt ""
"bm_id131554200364170\n"
"help.text"
msgid "<bookmark_value>Basic Mathematical constants</bookmark_value><bookmark_value>Pi;Basic constant</bookmark_value><bookmark_value>Basic constant;Pi</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Basic, costanti matematiche</bookmark_value><bookmark_value>Pi;costante Basic</bookmark_value><bookmark_value>Basic, costante;Pi</bookmark_value>"
#: 03040000.xhp
msgctxt ""
@@ -15214,7 +15214,7 @@ msgctxt ""
"bm_id261554201061695\n"
"help.text"
msgid "<bookmark_value>Basic Object constants</bookmark_value><bookmark_value>Empty;Basic constant</bookmark_value><bookmark_value>Null;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>"
-msgstr ""
+msgstr "<bookmark_value>Basic, costanti oggetto</bookmark_value><bookmark_value>Empty;costante Basic</bookmark_value><bookmark_value>Null;costante Basic</bookmark_value><bookmark_value>Nothing;costante Basic</bookmark_value><bookmark_value>Basic, costante;Nothing</bookmark_value><bookmark_value>Basic, costante;Null</bookmark_value><bookmark_value>Basic, costante;Empty</bookmark_value>"
#: 03040000.xhp
msgctxt ""
@@ -15278,7 +15278,7 @@ msgctxt ""
"bm_id101554201127393\n"
"help.text"
msgid "<bookmark_value>Visual Basic constants</bookmark_value><bookmark_value>VBA Exclusive constants</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Visual Basic, costanti</bookmark_value><bookmark_value>VBA, costanti exclusive</bookmark_value>"
#: 03040000.xhp
msgctxt ""
@@ -15326,7 +15326,7 @@ msgctxt ""
"par_id671542197262160\n"
"help.text"
msgid "Part of vbTriState enumeration."
-msgstr ""
+msgstr "Parte della enumerazione vbTriState."
#: 03040000.xhp
msgctxt ""
@@ -15334,7 +15334,7 @@ msgctxt ""
"par_id351542197255532\n"
"help.text"
msgid "Part of vbTriState enumeration."
-msgstr ""
+msgstr "Parte della enumerazione vbTriState."
#: 03040000.xhp
msgctxt ""
@@ -15342,7 +15342,7 @@ msgctxt ""
"par_id251542197274514\n"
"help.text"
msgid "Part of vbTriState enumeration."
-msgstr ""
+msgstr "Parte della enumerazione vbTriState."
#: 03040000.xhp
msgctxt ""
@@ -16718,7 +16718,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "\"-\" Operator"
-msgstr ""
+msgstr "Operatore \"-\""
#: 03070100.xhp
msgctxt ""
@@ -16798,7 +16798,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "\"*\" Operator"
-msgstr ""
+msgstr "Operatore \"*\""
#: 03070200.xhp
msgctxt ""
@@ -16878,7 +16878,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "\"+\" Operator"
-msgstr ""
+msgstr "Operatore \"+\""
#: 03070300.xhp
msgctxt ""
@@ -16958,7 +16958,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "\"/\" Operator"
-msgstr ""
+msgstr "Operatore \"/\""
#: 03070400.xhp
msgctxt ""
@@ -17038,7 +17038,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "\"^\" Operator"
-msgstr ""
+msgstr "Operatore \"^\""
#: 03070500.xhp
msgctxt ""
@@ -17422,7 +17422,7 @@ msgctxt ""
"par_id3159252\n"
"help.text"
msgid "Pi is here the fixed circle constant with the rounded value 3.14159. Pi is a <link href=\"text/sbasic/shared/03040000.xhp#mathconstants\" name=\"pi\">Basic mathematical constant</link>."
-msgstr ""
+msgstr "Pi è la costante fissa per il cerchio, con il valore arrotondato di 3,14159. Pi è una <link href=\"text/sbasic/shared/03040000.xhp#mathconstants\" name=\"pi\">costante matematica di Basic</link>."
#: 03080101.xhp
msgctxt ""
@@ -18654,7 +18654,7 @@ msgctxt ""
"hd_id3153345\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers and Fractional</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Interi\">Interi e frazionali</link>"
#: 03080500.xhp
msgctxt ""
@@ -18662,7 +18662,7 @@ msgctxt ""
"par_id3156152\n"
"help.text"
msgid "Functions to round values to integers, and to take the fractional part of a value."
-msgstr ""
+msgstr "Funzioni per arrotondare i valori agli interi ed estrarre la parte frazionale di un valore."
#: 03080501.xhp
msgctxt ""
@@ -18750,7 +18750,7 @@ msgctxt ""
"par_id391546195157714\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function\">Int Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Funzione Int\">Funzione Int</link>"
#: 03080501.xhp
msgctxt ""
@@ -18758,7 +18758,7 @@ msgctxt ""
"par_id51546195168056\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Frac Function\">Frac Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Funzione Frac\">Funzione Frac</link>"
#: 03080502.xhp
msgctxt ""
@@ -18846,7 +18846,7 @@ msgctxt ""
"par_id461546195246946\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function\">Fix Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Funzione Fix\">Funzione Fix</link>"
#: 03080502.xhp
msgctxt ""
@@ -18854,7 +18854,7 @@ msgctxt ""
"par_id51546195168056\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Frac Function\">Frac Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Funzione Frac\">Funzione Frac</link>"
#: 03080503.xhp
msgctxt ""
@@ -18862,7 +18862,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Frac Function"
-msgstr ""
+msgstr "Funzione Frac"
#: 03080503.xhp
msgctxt ""
@@ -18870,7 +18870,7 @@ msgctxt ""
"bm_id3153345\n"
"help.text"
msgid "<bookmark_value>Frac function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Frac, funzione</bookmark_value>"
#: 03080503.xhp
msgctxt ""
@@ -18878,7 +18878,7 @@ msgctxt ""
"hd_id3153345\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Frac Function\">Frac Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Funzione Frac\">Funzione Frac</link>"
#: 03080503.xhp
msgctxt ""
@@ -18886,7 +18886,7 @@ msgctxt ""
"par_id3155420\n"
"help.text"
msgid "Returns the fractional portion of a number."
-msgstr ""
+msgstr "Restituisce la parte frazionaria di un numero."
#: 03080503.xhp
msgctxt ""
@@ -18894,7 +18894,7 @@ msgctxt ""
"par_id3146795\n"
"help.text"
msgid "Frac (Number)"
-msgstr ""
+msgstr "Frac (numero)"
#: 03080503.xhp
msgctxt ""
@@ -18902,7 +18902,7 @@ msgctxt ""
"par_id3150400\n"
"help.text"
msgid "Double"
-msgstr ""
+msgstr "Double"
#: 03080503.xhp
msgctxt ""
@@ -18910,7 +18910,7 @@ msgctxt ""
"par_id3148797\n"
"help.text"
msgid "<emph>Number:</emph> Any valid numeric expression."
-msgstr ""
+msgstr "<emph>Numero:</emph> una qualunque espressione numerica valida."
#: 03080503.xhp
msgctxt ""
@@ -18918,7 +18918,7 @@ msgctxt ""
"par_id3125864\n"
"help.text"
msgid "Print Frac(3.99) ' returns the value 0.99"
-msgstr ""
+msgstr "Print Frac(3,99) ' restituisce il valore 0,99"
#: 03080503.xhp
msgctxt ""
@@ -18926,7 +18926,7 @@ msgctxt ""
"par_id3145787\n"
"help.text"
msgid "Print Frac(0) ' returns the value 0"
-msgstr ""
+msgstr "Print Frac(0) ' restituisce il valore 0"
#: 03080503.xhp
msgctxt ""
@@ -18934,7 +18934,7 @@ msgctxt ""
"par_id3153143\n"
"help.text"
msgid "Print Frac(-3.14159) ' returns the value -0.14159"
-msgstr ""
+msgstr "Print Frac(-3,14159) ' restituisce il valore -0,14159"
#: 03080503.xhp
msgctxt ""
@@ -18942,7 +18942,7 @@ msgctxt ""
"par_id461546195246946\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function\">Fix Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Funzione Fix\">Funzione Fix</link>"
#: 03080503.xhp
msgctxt ""
@@ -18950,7 +18950,7 @@ msgctxt ""
"par_id391546195157714\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function\">Int Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Funzione Int\">Funzione Int</link>"
#: 03080600.xhp
msgctxt ""
@@ -19718,7 +19718,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Select...Case Statement"
-msgstr ""
+msgstr "Istruzione Select...Case"
#: 03090102.xhp
msgctxt ""
@@ -20278,7 +20278,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "For...Next Statement"
-msgstr ""
+msgstr "Istruzione For...Next"
#: 03090202.xhp
msgctxt ""
@@ -21662,7 +21662,7 @@ msgctxt ""
"par_id371543799561260\n"
"help.text"
msgid "End Enum: Ends an Enum VBA statement"
-msgstr ""
+msgstr "End Enum: termina un'istruzione Enum VBA"
#: 03090404.xhp
msgctxt ""
@@ -21702,7 +21702,7 @@ msgctxt ""
"par_id811543799601628\n"
"help.text"
msgid "End With: Ends a With statement"
-msgstr ""
+msgstr "End With: termina u'istruzione With"
#: 03090404.xhp
msgctxt ""
@@ -22022,7 +22022,7 @@ msgctxt ""
"hd_id3154347\n"
"help.text"
msgid "<variable id=\"remstatement\"><link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement\">Rem Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"remstatement\"><link href=\"text/sbasic/shared/03090407.xhp\" name=\"Istruzione Rem\">Istruzione Rem</link></variable>"
#: 03090407.xhp
msgctxt ""
@@ -22126,7 +22126,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Sub Statement"
-msgstr ""
+msgstr "Istruzione Sub"
#: 03090409.xhp
msgctxt ""
@@ -23190,7 +23190,7 @@ msgctxt ""
"par_id3125864\n"
"help.text"
msgid "When you convert a string expression, the date and time must be entered either in one of the date acceptance patterns defined for your locale setting (see <item type=\"menuitem\">Tools - Options - Language Settings - Languages</item>) or in ISO date format (momentarily, only the ISO format with hyphens, e.g. \"2012-12-31\" is accepted). In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time."
-msgstr ""
+msgstr "Quando convertite un'espressione di stringa, la data e l'ora devono essere digitate in uno dei modelli di data accettati definiti nelle vostre impostazioni locali (si veda <item type=\"menuitem\">Strumenti - Opzioni - Impostazioni della lingua - Lingue</item>), oppure nel formato di data ISO (attualmente è accettato solo il formato ISO con trattini, per es. \"31-12-2012\"). Nelle espressioni numeriche, i valori alla sinistra del separatore decimale rappresentano la data, che parte dal 31 dicembre 1899. I valori alla destra del separatore decimale rappresentano l'ora."
#: 03100300.xhp
msgctxt ""
@@ -26038,7 +26038,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Option Base Statement"
-msgstr ""
+msgstr "Istruzione Option Base"
#: 03103200.xhp
msgctxt ""
@@ -26054,7 +26054,7 @@ msgctxt ""
"hd_id3155805\n"
"help.text"
msgid "<variable id=\"optionbasestatement\"><link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement\">Option Base Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"optionbasestatement\"><link href=\"text/sbasic/shared/03103200.xhp\" name=\"Istruzione Option Base\">Istruzione Option Base</link></variable>"
#: 03103200.xhp
msgctxt ""
@@ -26094,7 +26094,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "<variable id=\"explicitstatement\"><link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement\">Option Explicit Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"explicitstatement\"><link href=\"text/sbasic/shared/03103300.xhp\" name=\"Istruzione Option Explicit\">Istruzione Option Explicit</link></variable>"
#: 03103300.xhp
msgctxt ""
@@ -26134,7 +26134,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "<variable id=\"vbasupportstatement\"><link href=\"text/sbasic/shared/03103350.xhp\" name=\"Option VBASupport Statement\">Option VBASupport Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"vbasupportstatement\"><link href=\"text/sbasic/shared/03103350.xhp\" name=\"Istruzione Option VBASupport\">Istruzione Option VBASupport</link></variable>"
#: 03103350.xhp
msgctxt ""
@@ -26158,7 +26158,7 @@ msgctxt ""
"par_id941552915528262\n"
"help.text"
msgid "When VBA support is enabled, %PRODUCTNAME Basic function arguments and return values are the same as their VBA functions counterparts. When the support is disabled, %PRODUCTNAME Basic functions may accept arguments and return values different of their VBA counterparts."
-msgstr ""
+msgstr "Quando è abilitato il supporto VBA, gli argomenti funzione di %PRODUCTNAME Basic, e i valori restituiti, sono gli stessi dei corrispettivi VBA. Quando il supporto è disabilitato, le funzioni di %PRODUCTNAME Basic possono accettare argomenti e valori restituiti diversi dai corrispettivi VBA."
#: 03103350.xhp
msgctxt ""
@@ -28022,7 +28022,7 @@ msgctxt ""
"par_id3149295\n"
"help.text"
msgid "<emph>Expression:</emph> a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value."
-msgstr ""
+msgstr "<emph>Espressione:</emph> un'espressione numerica che rappresenta un valore ASCII valido a 8 bit (0-255) o un valore Unicode a 16 bit."
#: 03120102.xhp
msgctxt ""
@@ -28030,7 +28030,7 @@ msgctxt ""
"par_id991552913928635\n"
"help.text"
msgid "When VBA compatibility mode is enabled (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>OPTION VBASUPPORT 1</literal></link>), <emph>Expression</emph> is a numeric expression that represents a valid 8-bit ASCII value (0-255) only."
-msgstr ""
+msgstr "Quando è abilitato il modo VBA (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>OPTION VBASUPPORT 1</literal></link>), <emph>Espressione</emph> è un'espressione numerica che rappresenta solo un valore ASCII a 8-bit valido (0-255)."
#: 03120102.xhp
msgctxt ""
@@ -28046,7 +28046,7 @@ msgctxt ""
"par_id111552916434071\n"
"help.text"
msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#err6\"/>, when VBA compatibility mode is enabled and expression is greater than 255."
-msgstr ""
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#err6\"/>, quando il modo compatibilità VBA è abilitato e l'espressione è maggiore di 255."
#: 03120102.xhp
msgctxt ""
@@ -28462,7 +28462,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ChrW Function [VBA]"
-msgstr ""
+msgstr "Funzione ChrW [VBA]"
#: 03120112.xhp
msgctxt ""
@@ -28590,7 +28590,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Space and Spc Function"
-msgstr ""
+msgstr "Funzione Space e Spc"
#: 03120201.xhp
msgctxt ""
@@ -28598,7 +28598,7 @@ msgctxt ""
"bm_id3150499\n"
"help.text"
msgid "<bookmark_value>Space function</bookmark_value> <bookmark_value>Spc function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Space, funzione</bookmark_value> <bookmark_value>Spc, funzione</bookmark_value>"
#: 03120201.xhp
msgctxt ""
@@ -28606,7 +28606,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function\">Space and Spc Functions</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Funzione Space\">Funzioni Space e Spc</link>"
#: 03120201.xhp
msgctxt ""
@@ -28622,7 +28622,7 @@ msgctxt ""
"par_id681546202842979\n"
"help.text"
msgid "The Spc function works the same as the Space function."
-msgstr ""
+msgstr "La funzione Spc funziona nello stesso modo della funzione Space."
#: 03120201.xhp
msgctxt ""
@@ -28638,7 +28638,7 @@ msgctxt ""
"par_id3143228\n"
"help.text"
msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of <emph>n</emph> is 65535."
-msgstr ""
+msgstr "<emph>n:</emph> espressione numerica che definisce il numero di spazi nella stringa. Il valore massimo consentito di <emph>n</emph> è 65535."
#: 03120201.xhp
msgctxt ""
@@ -30998,7 +30998,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "InStrRev Function [VBA]"
-msgstr ""
+msgstr "Funzione InStrRev [VBA]"
#: 03120411.xhp
msgctxt ""
@@ -31510,7 +31510,7 @@ msgctxt ""
"par_id251546102545124\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"WaitUntil statement\">WaitUntil statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"Istruzione WaitUntil\">Istruzione WaitUntil</link>"
#: 03130610.xhp
msgctxt ""
@@ -31518,7 +31518,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "WaitUntil Statement"
-msgstr ""
+msgstr "Istruzione WaitUntil"
#: 03130610.xhp
msgctxt ""
@@ -31526,7 +31526,7 @@ msgctxt ""
"bm_id3154136\n"
"help.text"
msgid "<bookmark_value>WaitUntil statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>WaitUntil, istruzione</bookmark_value>"
#: 03130610.xhp
msgctxt ""
@@ -31534,7 +31534,7 @@ msgctxt ""
"hd_id3154136\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"WaitUntil Statement\">WaitUntil Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"Istruzione WaitUntil\">Istruzione WaitUntil</link>"
#: 03130610.xhp
msgctxt ""
@@ -31542,7 +31542,7 @@ msgctxt ""
"par_id3149236\n"
"help.text"
msgid "Interrupts the program execution until the time specified."
-msgstr ""
+msgstr "Interrompe l'esecuzione del programma fino all'ora specificata."
#: 03130610.xhp
msgctxt ""
@@ -31550,7 +31550,7 @@ msgctxt ""
"par_id3150669\n"
"help.text"
msgid "WaitUntil Time"
-msgstr ""
+msgstr "Ora WaitUntil"
#: 03130610.xhp
msgctxt ""
@@ -31558,7 +31558,7 @@ msgctxt ""
"par_id3154924\n"
"help.text"
msgid "<emph>Time</emph>: A Date and Time expression that contains the date and time to wait before the program is executed."
-msgstr ""
+msgstr "<emph>Ora</emph>: un'espressione di data e ora che contiene la data e l'ora di attesa prima che il programma sia eseguito."
#: 03130610.xhp
msgctxt ""
@@ -31566,7 +31566,7 @@ msgctxt ""
"par_id161546104675066\n"
"help.text"
msgid "REM Wait until 6:00 PM then call MyMacro."
-msgstr ""
+msgstr "REM Wait until 6:00 PM then call MyMacro."
#: 03130610.xhp
msgctxt ""
@@ -31574,7 +31574,7 @@ msgctxt ""
"par_id1001546104650052\n"
"help.text"
msgid "REM If after 6:00 PM, exit."
-msgstr ""
+msgstr "REM If after 6:00 PM, exit."
#: 03130610.xhp
msgctxt ""
@@ -31582,7 +31582,7 @@ msgctxt ""
"par_id251546102545124\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait statement\">Wait statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Istruzione Wait\">Istruzione Wait</link>"
#: 03130700.xhp
msgctxt ""
@@ -32742,7 +32742,7 @@ msgctxt ""
"hd_id3155310\n"
"help.text"
msgid "<variable id=\"getguitype2\"><link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function\">GetGuiType Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"getguitype2\"><link href=\"text/sbasic/shared/03132100.xhp\" name=\"Funzione GetGuiType\">Funzione GetGuiType</link></variable>"
#: 03132100.xhp
msgctxt ""
@@ -33094,7 +33094,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "DDB Function [VBA]"
-msgstr ""
+msgstr "Funzione DDB [VBA]"
#: 03140000.xhp
msgctxt ""
@@ -33190,7 +33190,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "FV Function [VBA]"
-msgstr ""
+msgstr "Funzione FV [VBA]"
#: 03140001.xhp
msgctxt ""
@@ -33294,7 +33294,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "IPmt Function [VBA]"
-msgstr ""
+msgstr "Funzione IPmt [VBA]"
#: 03140002.xhp
msgctxt ""
@@ -33406,7 +33406,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "IRR Function [VBA]"
-msgstr ""
+msgstr "Funzione IRR [VBA]"
#: 03140003.xhp
msgctxt ""
@@ -33470,7 +33470,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "MIRR Function [VBA]"
-msgstr ""
+msgstr "Funzione MIRR [VBA]"
#: 03140004.xhp
msgctxt ""
@@ -33542,7 +33542,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "NPer Function [VBA]"
-msgstr ""
+msgstr "Funzione NPer [VBA]"
#: 03140005.xhp
msgctxt ""
@@ -33646,7 +33646,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "NPV Function [VBA]"
-msgstr ""
+msgstr "Funzione NPV [VBA]"
#: 03140006.xhp
msgctxt ""
@@ -33710,7 +33710,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Pmt Function [VBA]"
-msgstr ""
+msgstr "Funzione Pmt [VBA]"
#: 03140007.xhp
msgctxt ""
@@ -33830,7 +33830,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "PPmt Function [VBA]"
-msgstr ""
+msgstr "Funzione PPmt [VBA]"
#: 03140008.xhp
msgctxt ""
@@ -33982,7 +33982,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "PV Function [VBA]"
-msgstr ""
+msgstr "Funzione PV [VBA]"
#: 03140009.xhp
msgctxt ""
@@ -34102,7 +34102,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Rate Function [VBA]"
-msgstr ""
+msgstr "Funzione Rate [VBA]"
#: 03140010.xhp
msgctxt ""
@@ -34126,7 +34126,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "Returns the interest rate of a loan or an investment."
-msgstr ""
+msgstr "Restituisce il tasso d'interesse di un prestito o un investimento."
#: 03140010.xhp
msgctxt ""
@@ -34230,7 +34230,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "SLN Function [VBA]"
-msgstr ""
+msgstr "Funzione SLN [VBA]"
#: 03140011.xhp
msgctxt ""
@@ -34790,7 +34790,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Input Function [VBA]"
-msgstr ""
+msgstr "Funzione Input [VBA]"
#: 03160000.xhp
msgctxt ""
@@ -34910,7 +34910,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "FormatNumber Function [VBA]"
-msgstr ""
+msgstr "Funzione FormatNumber [VBA]"
#: 03170010.xhp
msgctxt ""
@@ -34918,7 +34918,7 @@ msgctxt ""
"bm_id661542193659245\n"
"help.text"
msgid "<bookmark_value>FormatNumber function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>FormatNumber, funzione</bookmark_value>"
#: 03170010.xhp
msgctxt ""
@@ -34926,7 +34926,7 @@ msgctxt ""
"hd_id871542193473857\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03170010.xhp\" name=\"FormatNumber Function [VBA]\">FormatNumber [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03170010.xhp\" name=\"Funzione FormatNumber [VBA]\">FormatNumber [VBA]</link>"
#: 03170010.xhp
msgctxt ""
@@ -34934,7 +34934,7 @@ msgctxt ""
"par_id351542193473858\n"
"help.text"
msgid "Returns a string with a number formatting applied to a numeric expression."
-msgstr ""
+msgstr "Restituisce una stringa con la formattazione di un numero applicata a un'espressione numerica."
#: 03170010.xhp
msgctxt ""
@@ -34942,7 +34942,7 @@ msgctxt ""
"par_id761542194361212\n"
"help.text"
msgid "String"
-msgstr ""
+msgstr "String"
#: 03170010.xhp
msgctxt ""
@@ -34950,7 +34950,7 @@ msgctxt ""
"par_id240720170117391741\n"
"help.text"
msgid "<emph>expression</emph>: Required. The numeric expression to be formatted."
-msgstr ""
+msgstr "<emph>expression</emph>: obbligatoria. L'espressione numerica da formattare."
#: 03170010.xhp
msgctxt ""
@@ -34958,7 +34958,7 @@ msgctxt ""
"par_id631542195798758\n"
"help.text"
msgid "<emph>numDigitsAfterDecimal</emph>: Optional. A numeric value specifying the number of digits that should be displayed after the decimal. If omitted, it defaults to the value -1, meaning that the default settings for user interface locale should be used."
-msgstr ""
+msgstr "<emph>numDigitsAfterDecimal</emph>: facoltativo. Valore numerico che specifica il numero di cifre da visualizzare dopo la virgola decimale. Se omesso, il valore predefinito è -1, indicante che devono essere utilizzate le impostazioni locali predefinite dell'interfaccia utente."
#: 03170010.xhp
msgctxt ""
@@ -34966,7 +34966,7 @@ msgctxt ""
"par_id961542200034362\n"
"help.text"
msgid "<emph>includeLeadingDigit</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> enumeration value, specifying whether a leading zero should be displayed for fractional values."
-msgstr ""
+msgstr "<emph>includeLeadingDigit</emph>: facoltativo. Valore di enumerazione <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link>, che specifica se, per i valori frazionali, deve comparire uno zero iniziale."
#: 03170010.xhp
msgctxt ""
@@ -34974,7 +34974,7 @@ msgctxt ""
"par_id561542198440051\n"
"help.text"
msgid "<emph>vbTrue or -1</emph>: Display a leading zero."
-msgstr ""
+msgstr "<emph>vbTrue o -1</emph>: mostra uno zero iniziale."
#: 03170010.xhp
msgctxt ""
@@ -34982,7 +34982,7 @@ msgctxt ""
"par_id21542198550868\n"
"help.text"
msgid "<emph>vbFalse or 0</emph>: Do not display leading zeros."
-msgstr ""
+msgstr "<emph>vbFalse o 0</emph>: non mostra zero iniziali."
#: 03170010.xhp
msgctxt ""
@@ -34990,7 +34990,7 @@ msgctxt ""
"par_id241542199046808\n"
"help.text"
msgid "<emph>vbUseDefaults or -2</emph>: Use the user interface locale settings. This is the default when omitted."
-msgstr ""
+msgstr "<emph>vbUseDefaults o -2</emph>: usa le impostazioni locali dell'interfaccia utente. Quando omesso, è il valore predefinito."
#: 03170010.xhp
msgctxt ""
@@ -34998,7 +34998,7 @@ msgctxt ""
"par_id311542201637647\n"
"help.text"
msgid "<emph>useParensForNegativeNumbers</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> enumeration value specifying whether negative numbers should be encased in parenthesis."
-msgstr ""
+msgstr "<emph>useParensForNegativeNumbers</emph>: facoltativo. Valore di enumerazione <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> che specifica se i numeri negativi debbano essere racchiusi tra parentesi."
#: 03170010.xhp
msgctxt ""
@@ -35006,7 +35006,7 @@ msgctxt ""
"par_id561543198440051\n"
"help.text"
msgid "<emph>vbTrue or -1</emph>: Use parenthesis for negative numbers."
-msgstr ""
+msgstr "<emph>vbTrue o -1</emph>: usa le parentesi per i numeri negativi."
#: 03170010.xhp
msgctxt ""
@@ -35014,7 +35014,7 @@ msgctxt ""
"par_id21542398550868\n"
"help.text"
msgid "<emph>vbFalse or 0</emph>: Do not display parenthesis."
-msgstr ""
+msgstr "<emph>vbFalse o 0</emph>: non mostra le parentesi."
#: 03170010.xhp
msgctxt ""
@@ -35022,7 +35022,7 @@ msgctxt ""
"par_id241542191246808\n"
"help.text"
msgid "<emph>vbUseDefaults or -2</emph>: Same as vbFalse. This is the default when omitted."
-msgstr ""
+msgstr "<emph>vbUseDefaults o -2</emph>: uguale a usa vbFalse. Quando omesso, è il valore predefinito."
#: 03170010.xhp
msgctxt ""
@@ -35030,7 +35030,7 @@ msgctxt ""
"par_id531542201968815\n"
"help.text"
msgid "<emph>groupDigits</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> enumeration value specifying the number should be grouped (into thousands, etc.), using the group delimiter that is specified on the system's regional settings."
-msgstr ""
+msgstr "<emph>groupDigits</emph>: facoltativo. Valore di enumerazione <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> che specifica che il numero deve essere raggruppato (in migliaia, ecc.), utilizzando il delimitatore di gruppo specificato nelle impostazioni regionali del sistema."
#: 03170010.xhp
msgctxt ""
@@ -35038,7 +35038,7 @@ msgctxt ""
"par_id561543198560051\n"
"help.text"
msgid "<emph>vbTrue or -1</emph>: Group digits."
-msgstr ""
+msgstr "<emph>vbTrue o -1</emph>: raggruppa le cifre."
#: 03170010.xhp
msgctxt ""
@@ -35046,7 +35046,7 @@ msgctxt ""
"par_id215423985506768\n"
"help.text"
msgid "<emph>vbFalse or 0</emph>: Do not group digits."
-msgstr ""
+msgstr "<emph>vbFalse o 0</emph>: non raggruppa le cifre."
#: 03170010.xhp
msgctxt ""
@@ -35054,7 +35054,7 @@ msgctxt ""
"par_id241542191267808\n"
"help.text"
msgid "<emph>vbUseDefaults or -2</emph>: Same as vbFalse. This is the default when omitted."
-msgstr ""
+msgstr "<emph>vbUseDefaults o -2</emph>: uguale a usa vbFalse. Quando omesso, è il valore predefinito."
#: 05060700.xhp
msgctxt ""
@@ -35494,7 +35494,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "GetPathSeparator function"
-msgstr ""
+msgstr "Funzione GetPathSeparator"
#: GetPathSeparator.xhp
msgctxt ""
@@ -35502,7 +35502,7 @@ msgctxt ""
"N0001\n"
"help.text"
msgid "<bookmark_value>GetPathSeparator function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>GetPathSeparator, funzione</bookmark_value>"
#: GetPathSeparator.xhp
msgctxt ""
@@ -35510,7 +35510,7 @@ msgctxt ""
"N0002\n"
"help.text"
msgid "<variable id=\"getpathseparator01\"><link href=\"text/sbasic/shared/GetPathSeparator.xhp\" name=\"GetPathSeparator\">GetPathSeparator Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"getpathseparator01\"><link href=\"text/sbasic/shared/GetPathSeparator.xhp\" name=\"GetPathSeparator\">Funzione GetPathSeparator</link></variable>"
#: GetPathSeparator.xhp
msgctxt ""
@@ -35518,7 +35518,7 @@ msgctxt ""
"N0003\n"
"help.text"
msgid "Returns the operating system-dependent directory separator used to specify file paths."
-msgstr ""
+msgstr "Restituisce il separatore di directory dipendente dal sistema operativo utilizzato per specificare i percorsi dei file."
#: GetPathSeparator.xhp
msgctxt ""
@@ -35526,7 +35526,7 @@ msgctxt ""
"N0008\n"
"help.text"
msgid "\"/\" UNIX, including MacOS"
-msgstr ""
+msgstr "\"/\" UNIX, incluso MacOS"
#: GetPathSeparator.xhp
msgctxt ""
@@ -35534,7 +35534,7 @@ msgctxt ""
"N0010\n"
"help.text"
msgid "None."
-msgstr ""
+msgstr "Nessuno."
#: GetPathSeparator.xhp
msgctxt ""
@@ -35542,7 +35542,7 @@ msgctxt ""
"N0017\n"
"help.text"
msgid "It is recommended to use:"
-msgstr ""
+msgstr "Si consiglia di usare:"
#: GetPathSeparator.xhp
msgctxt ""
@@ -35550,7 +35550,7 @@ msgctxt ""
"N0018\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"external\">ConvertFromURL</link> function to convert a file URL to a system file name."
-msgstr ""
+msgstr "La funzione <link href=\"text/sbasic/shared/03120313.xhp\" name=\"external\">ConvertFromURL</link> converte l'URL di un file nel nome file di sistema."
#: GetPathSeparator.xhp
msgctxt ""
@@ -35558,7 +35558,7 @@ msgctxt ""
"N0019\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"external\">ConvertToURL</link> function to convert a system file name to a file URL."
-msgstr ""
+msgstr "La funzione <link href=\"text/sbasic/shared/03120312.xhp\" name=\"external\">ConvertToURL</link> converte il nome di un file di sistema in un URL del file."
#: GetPathSeparator.xhp
msgctxt ""
@@ -35566,7 +35566,7 @@ msgctxt ""
"N0020\n"
"help.text"
msgid "See also <link href=\"text/sbasic/shared/00000002.xhp\" name=\"external\">URL Notation</link>"
-msgstr ""
+msgstr "Vedere anche <link href=\"text/sbasic/shared/00000002.xhp\" name=\"external\">Notazione URL</link>"
#: classmodule.xhp
msgctxt ""
@@ -35574,7 +35574,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Option ClassModule"
-msgstr ""
+msgstr "Opzione ClassModule"
#: classmodule.xhp
msgctxt ""
@@ -35582,7 +35582,7 @@ msgctxt ""
"N0082\n"
"help.text"
msgid "<bookmark_value>Option ClassModule</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Opzione ClassModule</bookmark_value>"
#: classmodule.xhp
msgctxt ""
@@ -35590,7 +35590,7 @@ msgctxt ""
"N0083\n"
"help.text"
msgid "<variable id=\"classmodulestatement\"><link href=\"text/sbasic/shared/classmodule.xhp\" name=\"option classmodule\">Option ClassModule Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"classmodulestatement\"><link href=\"text/sbasic/shared/classmodule.xhp\" name=\"Opzione ClassModule\">Opzione ClassModule</link></variable>"
#: classmodule.xhp
msgctxt ""
@@ -35598,7 +35598,7 @@ msgctxt ""
"N0084\n"
"help.text"
msgid "Specifies that the module is a class module that contains members, properties, procedures and functions."
-msgstr ""
+msgstr "Specifica che il modulo è un modulo di classe che contiene numeri, membri, proprietà, procedure e funzioni."
#: classmodule.xhp
msgctxt ""
@@ -35606,7 +35606,7 @@ msgctxt ""
"N0089\n"
"help.text"
msgid "This statement must be used jointly with <literal>Option Compatible</literal> statement or <literal>Option VBASupport 1</literal>, the former is enabling VBA compatibility mode, while the latter is enforcing VBA support on top of compatibility."
-msgstr ""
+msgstr "Questa istruzione deve essere utilizzata insieme con l'istruzione <literal>Option Compatible</literal> oppure la <literal>Option VBASupport 1</literal>, la prima serve per abilitare il modo compatibilità VBA, la seconda per rafforzare il supporto VBA sulla compatibilità."
#: classmodule.xhp
msgctxt ""
@@ -35614,7 +35614,7 @@ msgctxt ""
"N0086\n"
"help.text"
msgid "Option ClassModule"
-msgstr ""
+msgstr "Opzione ClassModule"
#: classmodule.xhp
msgctxt ""
@@ -35622,7 +35622,7 @@ msgctxt ""
"N0095\n"
"help.text"
msgid "' Optional members go here"
-msgstr ""
+msgstr "' i membri opzionali vanno qui"
#: classmodule.xhp
msgctxt ""
@@ -35630,7 +35630,7 @@ msgctxt ""
"N0098\n"
"help.text"
msgid "' Optional construction code goes here"
-msgstr ""
+msgstr "' il codice construction opzionale va qui"
#: classmodule.xhp
msgctxt ""
@@ -35638,7 +35638,7 @@ msgctxt ""
"N0099\n"
"help.text"
msgid "End Sub ' Constructor"
-msgstr ""
+msgstr "End Sub ' Constructor"
#: classmodule.xhp
msgctxt ""
@@ -35646,7 +35646,7 @@ msgctxt ""
"N0101\n"
"help.text"
msgid "' Optional destruction code goes here"
-msgstr ""
+msgstr "' il codice destruction opzionale va qui"
#: classmodule.xhp
msgctxt ""
@@ -35654,7 +35654,7 @@ msgctxt ""
"N0102\n"
"help.text"
msgid "End Sub ' Destructor"
-msgstr ""
+msgstr "End Sub ' Destructor"
#: classmodule.xhp
msgctxt ""
@@ -35662,7 +35662,7 @@ msgctxt ""
"N0104\n"
"help.text"
msgid "' Properties go here."
-msgstr ""
+msgstr "' le proprietà vanno qui."
#: classmodule.xhp
msgctxt ""
@@ -35670,7 +35670,7 @@ msgctxt ""
"N0106\n"
"help.text"
msgid "' Procedures & functions go here."
-msgstr ""
+msgstr "' le procedure e le funzioni vanno qui."
#: classmodule.xhp
msgctxt ""
@@ -35678,7 +35678,7 @@ msgctxt ""
"N0108\n"
"help.text"
msgid "Refer to <link href=\"text/sbasic/python/python_platform.xhp\">Identifying the Operating System</link> and <link href=\"text/sbasic/python/python_session.xhp\">Getting Session Information</link> for class module simple examples."
-msgstr ""
+msgstr "Per semplici esempi di moduli di classe fate riferimento ai capitoli <link href=\"text/sbasic/python/python_platform.xhp\">Identificazione del sistema operativo</link> e <link href=\"text/sbasic/python/python_session.xhp\">Ottenere informazioni sulla sessione</link>."
#: classmodule.xhp
msgctxt ""
@@ -35686,7 +35686,7 @@ msgctxt ""
"N0109\n"
"help.text"
msgid "Multiple thorough class examples are available from <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link>."
-msgstr ""
+msgstr "Sono disponibili altri esempi accurati di classi nella <link href=\"text/sbasic/guide/access2base.xhp\">libreria Basic condivisa Access2Base</link>."
#: code-stubs.xhp
msgctxt ""
@@ -35702,7 +35702,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Option Compatible"
-msgstr ""
+msgstr "Option Compatible"
#: compatible.xhp
msgctxt ""
@@ -35710,7 +35710,7 @@ msgctxt ""
"N0103\n"
"help.text"
msgid "<bookmark_value>Option Compatible</bookmark_value> <bookmark_value>CompatibilityMode</bookmark_value> <bookmark_value>VBA compatibility</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Option Compatible</bookmark_value><bookmark_value>CompatibilityMode</bookmark_value> <bookmark_value>VBA, compatibilità</bookmark_value>"
#: compatible.xhp
msgctxt ""
@@ -35718,7 +35718,7 @@ msgctxt ""
"N0104\n"
"help.text"
msgid "<variable id=\"compatiblestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"compatible\">Option Compatible Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"compatiblestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"compatible\">Istruzione Option Compatible</link></variable>"
#: compatible.xhp
msgctxt ""
@@ -35726,7 +35726,7 @@ msgctxt ""
"N0106\n"
"help.text"
msgid "<literal>Option Compatible</literal> turns on the VBA-compatible Basic compiler mode at the module level. The function <literal>CompatibilityMode()</literal> controls runtime mode and affects all code executed after setting or resetting the mode."
-msgstr ""
+msgstr "<literal>Option Compatible</literal> attiva il modo compilatore Basic compatibile con VBA a livello di modulo. La funzione <literal>CompatibilityMode()</literal> controlla il modo del tempo di esecuzione (runtime) e riguarda tutto il codice eseguito dopo aver (re)impostato il modo."
#: compatible.xhp
msgctxt ""
@@ -35734,7 +35734,7 @@ msgctxt ""
"N0107\n"
"help.text"
msgid "This option may affect or assist in the following situations:"
-msgstr ""
+msgstr "Questa opzione può interessare o aiutare nelle situazioni sotto specificate:"
#: compatible.xhp
msgctxt ""
@@ -35742,7 +35742,7 @@ msgctxt ""
"N0108\n"
"help.text"
msgid "Allow special characters as identifiers."
-msgstr ""
+msgstr "Consente caratteri speciali come identificatori."
#: compatible.xhp
msgctxt ""
@@ -35750,7 +35750,7 @@ msgctxt ""
"N0109\n"
"help.text"
msgid "Create constants including non-printable characters."
-msgstr ""
+msgstr "Crea costanti inclusi i caratteri non stampabili."
#: compatible.xhp
msgctxt ""
@@ -35758,7 +35758,7 @@ msgctxt ""
"N0110\n"
"help.text"
msgid "Support <literal>Private</literal>/<literal>Public</literal> keywords for procedures."
-msgstr ""
+msgstr "Supporta le parole chiave <literal>Private</literal>/<literal>Public</literal> per le procedure."
#: compatible.xhp
msgctxt ""
@@ -35766,7 +35766,7 @@ msgctxt ""
"N0111\n"
"help.text"
msgid "Compulsory <literal>Set</literal> statement for objects."
-msgstr ""
+msgstr "Istruzione <literal>Set</literal> obbligatoria per gli oggetti."
#: compatible.xhp
msgctxt ""
@@ -35774,7 +35774,7 @@ msgctxt ""
"N0112\n"
"help.text"
msgid "Default values for optional parameters in procedures."
-msgstr ""
+msgstr "Valori predefiniti per i parametri opzionali nelle procedure."
#: compatible.xhp
msgctxt ""
@@ -35782,7 +35782,7 @@ msgctxt ""
"N0113\n"
"help.text"
msgid "Named arguments when multiple optional parameters exist."
-msgstr ""
+msgstr "Argomenti denominati quando esistono più parametri opzionali."
#: compatible.xhp
msgctxt ""
@@ -35790,7 +35790,7 @@ msgctxt ""
"N0114\n"
"help.text"
msgid "Preload of %PRODUCTNAME Basic libraries"
-msgstr ""
+msgstr "Precaricamento delle librerie %PRODUCTNAME Basic"
#: compatible.xhp
msgctxt ""
@@ -35798,7 +35798,7 @@ msgctxt ""
"N0115\n"
"help.text"
msgid "<literal>Option Compatible</literal> is required when coding class modules."
-msgstr ""
+msgstr "<literal>Option Compatible</literal> è obbligatorio quando si programmano moduli di classe."
#: compatible.xhp
msgctxt ""
@@ -35806,7 +35806,7 @@ msgctxt ""
"N0118\n"
"help.text"
msgid "<variable id=\"compatibilitymodestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"CompatibilityMode\">CompatibilityMode() Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"compatibilitymodestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"CompatibilityMode\">Funzione CompatibilityMode()</link></variable>"
#: compatible.xhp
msgctxt ""
@@ -35814,7 +35814,7 @@ msgctxt ""
"N0120\n"
"help.text"
msgid "<literal>CompatibilityMode()</literal> function is controlling runtime mode and affects all code executed after setting or resetting the mode. <literal>Option Compatible</literal> turns on VBA compatibility at module level for the %PRODUCTNAME Basic compiler."
-msgstr ""
+msgstr "La funzione <literal>CompatibilityMode()</literal> controlla il modo del tempo di esecuzione (runtime) e riguarda tutto il codice eseguito dopo aver (re)impostato il modo. <literal>Option Compatible</literal> attiva la compatibilità VBA a livello di modulo per il compilatore di %PRODUCTNAME Basic."
#: compatible.xhp
msgctxt ""
@@ -35822,7 +35822,7 @@ msgctxt ""
"N0119\n"
"help.text"
msgid "Use this feature with caution, limit it to document conversion situations for example."
-msgstr ""
+msgstr "Utilizzate questa funzione con cautela, limitatela, per esempio, a situazioni relative alla conversione di documenti."
#: compatible.xhp
msgctxt ""
@@ -35830,7 +35830,7 @@ msgctxt ""
"N0121\n"
"help.text"
msgid "This function may affect or help in the following situations:"
-msgstr ""
+msgstr "Questa funzione può interessare o aiutare nelle situazioni sotto specificate:"
#: compatible.xhp
msgctxt ""
@@ -35838,7 +35838,7 @@ msgctxt ""
"N0122\n"
"help.text"
msgid "Creating enumerations with Enum statement"
-msgstr ""
+msgstr "Creazione di enumerazioni con l'istruzione Enum"
#: compatible.xhp
msgctxt ""
@@ -35846,7 +35846,7 @@ msgctxt ""
"N0123\n"
"help.text"
msgid "Updating Dir execution conditions"
-msgstr ""
+msgstr "Aggiornamento delle condizioni delle esecuzioni Dir"
#: compatible.xhp
msgctxt ""
@@ -35854,7 +35854,7 @@ msgctxt ""
"N0124\n"
"help.text"
msgid "Running RmDir command in VBA mode"
-msgstr ""
+msgstr "Avvio del comando RmDir nel modo VBA"
#: compatible.xhp
msgctxt ""
@@ -35862,7 +35862,7 @@ msgctxt ""
"N0125\n"
"help.text"
msgid "Changing behaviour of Basic Dir command"
-msgstr ""
+msgstr "Modifica di comportamento del comando Basic Dir"
#: compatible.xhp
msgctxt ""
@@ -35870,7 +35870,7 @@ msgctxt ""
"N0126\n"
"help.text"
msgid "<literal>CompatibilityMode()</literal> function may be necessary when resorting to <literal>Option Compatible</literal> or <literal>Option VBASupport</literal> compiler modes."
-msgstr ""
+msgstr "La funzione <literal>CompatibilityMode()</literal> si potrebbe rendere necessaria durante il riordinamento delle modalità di compilazione in <literal>Option Compatible</literal> o <literal>Option VBASupport</literal>."
#: compatible.xhp
msgctxt ""
@@ -35878,7 +35878,7 @@ msgctxt ""
"N0129\n"
"help.text"
msgid "Refer to <link href=\"text/sbasic/python/python_platform.xhp\">Identifying the Operating System</link> and <link href=\"text/sbasic/python/python_session.xhp\">Getting Session Information</link> for <literal>Option Compatible</literal> simple examples, or <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link> for other class examples making use of <literal>Option Compatible</literal> compiler mode."
-msgstr ""
+msgstr "Fate riferimento ai capitoli <link href=\"text/sbasic/python/python_platform.xhp\">Identificazione del sistema operativo</link> e <link href=\"text/sbasic/python/python_session.xhp\">Ottenere informazioni sulla sessione</link> per semplici esempi di <literal>Option Compatible</literal>, oppure alla <link href=\"text/sbasic/guide/access2base.xhp\">libreria Basic condivisa Access2Base</link> per altri esempi di classe che fanno uso della modalità di compilazione <literal>Option Compatible</literal>."
#: compatible.xhp
msgctxt ""
@@ -35886,7 +35886,7 @@ msgctxt ""
"N0131\n"
"help.text"
msgid "Variables scope modification in <link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link> with <literal>CompatibilityMode()</literal> function."
-msgstr ""
+msgstr "Modifica di ambito delle variabili in <link href=\"text/sbasic/shared/01020300.xhp\">Uso di procedure e funzioni</link> con la funzione <literal>CompatibilityMode()</literal>."
#: enum.xhp
msgctxt ""
@@ -35894,7 +35894,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Enum Statement"
-msgstr ""
+msgstr "Istruzione Enum"
#: enum.xhp
msgctxt ""
@@ -35902,7 +35902,7 @@ msgctxt ""
"N0001\n"
"help.text"
msgid "<bookmark_value>Enum statement</bookmark_value> <bookmark_value>constant groups</bookmark_value> <bookmark_value>enumerations</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Enum, istruzione</bookmark_value><bookmark_value>Costanti, gruppi di</bookmark_value><bookmark_value>Enumerazione</bookmark_value>"
#: enum.xhp
msgctxt ""
@@ -35910,7 +35910,7 @@ msgctxt ""
"hd_id221543446540070\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/enum.xhp\" name=\"command_name\">Enum Statement [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/enum.xhp\" name=\"command_name\">Istruzione Enum [VBA]</link>"
#: enum.xhp
msgctxt ""
@@ -35918,7 +35918,7 @@ msgctxt ""
"N0003\n"
"help.text"
msgid "Define enumerations or non UNO constant groups. An enumeration is a value list that facilitates programming and eases code logic review."
-msgstr ""
+msgstr "Definisce le enumerazioni o i gruppi di costanti non UNO. Un'enumerazione è un elenco di valori che facilita la programmazione e rende semplice la revisione logica del codice."
#: enum.xhp
msgctxt ""
@@ -35926,7 +35926,7 @@ msgctxt ""
"N0006\n"
"help.text"
msgid "Parameters:"
-msgstr ""
+msgstr "Parametri:"
#: enum.xhp
msgctxt ""
@@ -35934,7 +35934,7 @@ msgctxt ""
"N0007\n"
"help.text"
msgid "Within a given enumeration, fit together values that logically relate to one another."
-msgstr ""
+msgstr "All'interno di un'enumerazione specificata, sistema insieme i valori che si relazionano logicamente uno all'altro."
#: enum.xhp
msgctxt ""
@@ -35942,7 +35942,7 @@ msgctxt ""
"N0030\n"
"help.text"
msgid "Enumerated values are rendered to <emph>Long</emph> datatype. Basic functions are public accessors to enumerations. Enumeration names and value names must be unique within a library and across modules."
-msgstr ""
+msgstr "I valori enumerati sono resi col tipo <emph>Long</emph>. Le funzioni Basic sono metodi di accesso pubblici alle enumerazioni. I nomi delle enumerazioni e i nomi dei valori devono essere univoci all'interno di una libreria e tra i moduli."
#: enum.xhp
msgctxt ""
@@ -35950,7 +35950,7 @@ msgctxt ""
"N0036\n"
"help.text"
msgid "Usage:"
-msgstr ""
+msgstr "Uso:"
#: enum.xhp
msgctxt ""
@@ -35958,7 +35958,7 @@ msgctxt ""
"N0037\n"
"help.text"
msgid "Display WindowManager grouped constant values:"
-msgstr ""
+msgstr "Mostra i valori raggruppati delle costanti WindowManager:"
#: enum.xhp
msgctxt ""
@@ -35966,7 +35966,7 @@ msgctxt ""
"N0051\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"const\">Const</link> statement, <link href=\"text/sbasic/shared/01020100.xhp\" name=\"external\">constants</link>"
-msgstr ""
+msgstr "Istruzione <link href=\"text/sbasic/shared/03100700.xhp\" name=\"const\">Const</link>, <link href=\"text/sbasic/shared/01020100.xhp\" name=\"external\">costanti</link>"
#: enum.xhp
msgctxt ""
@@ -35974,7 +35974,7 @@ msgctxt ""
"N0053\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103350.xhp\" name=\"Option VBASupport\">Option VBASupport</link> statement"
-msgstr ""
+msgstr "Istruzione <link href=\"text/sbasic/shared/03103350.xhp\" name=\"Option VBASupport\">Option VBASupport</link>"
#: enum.xhp
msgctxt ""
@@ -35982,7 +35982,7 @@ msgctxt ""
"N0061\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With\">With</link> statement"
-msgstr ""
+msgstr "Istruzione <link href=\"text/sbasic/shared/03090411.xhp\" name=\"With\">With</link>"
#: keys.xhp
msgctxt ""
@@ -36198,7 +36198,7 @@ msgctxt ""
"hd_id3154232\n"
"help.text"
msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
-msgstr ""
+msgstr "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"Guida di $[officename] Basic\">Guida di %PRODUCTNAME Basic</link></variable>"
#: main0601.xhp
msgctxt ""
@@ -36238,7 +36238,7 @@ msgctxt ""
"hd_id191548155077269\n"
"help.text"
msgid "Working with Macros in Python"
-msgstr ""
+msgstr "Lavorare con le macro in Python"
#: main0601.xhp
msgctxt ""
@@ -36262,7 +36262,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Partition Function"
-msgstr ""
+msgstr "Funzione Partition"
#: partition.xhp
msgctxt ""
@@ -36270,7 +36270,7 @@ msgctxt ""
"bm_id31548421805896\n"
"help.text"
msgid "<bookmark_value>Partition Function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Partition, funzione</bookmark_value>"
#: partition.xhp
msgctxt ""
@@ -36278,7 +36278,7 @@ msgctxt ""
"hd_id171548419512929\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/partition.xhp\" name=\"Partition function\">Partition Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/partition.xhp\" name=\"Partition function\">Funzione Partition [VBA]</link>"
#: partition.xhp
msgctxt ""
@@ -36286,7 +36286,7 @@ msgctxt ""
"par_id461548419700445\n"
"help.text"
msgid "Returns a string indicating where a number occurs within a calculated series of ranges."
-msgstr ""
+msgstr "Restituisce una stringa che indica dove si presenta un numero all'interno di una serie calcolata di intervalli."
#: partition.xhp
msgctxt ""
@@ -36294,7 +36294,7 @@ msgctxt ""
"par_id111548419647867\n"
"help.text"
msgid "Partition( Number, Start, End, Interval)"
-msgstr ""
+msgstr "Partition(Numero, Inizio, Fine, Intervallo)"
#: partition.xhp
msgctxt ""
@@ -36302,7 +36302,7 @@ msgctxt ""
"par_id481548420000538\n"
"help.text"
msgid "<emph>Number</emph>: Required. The number to determine the partition."
-msgstr ""
+msgstr "<emph>Numero</emph>: obbligatorio. Il numero per determinare la partizione."
#: partition.xhp
msgctxt ""
@@ -36310,7 +36310,7 @@ msgctxt ""
"par_id841548420006137\n"
"help.text"
msgid "<emph>Start</emph>: Required. An integer number defining the lower value of the range of numbers."
-msgstr ""
+msgstr "<emph>Inizio</emph>: obbligatorio. Numero intero che definisce il valore più basso dell'intervallo di numeri."
#: partition.xhp
msgctxt ""
@@ -36318,7 +36318,7 @@ msgctxt ""
"par_id781548420012105\n"
"help.text"
msgid "<emph>End</emph>: Required. An integer number defining the highest value of the range."
-msgstr ""
+msgstr "<emph>Fine</emph>: obbligatorio. Numero intero che definisce il valore più alto dell'intervallo."
#: partition.xhp
msgctxt ""
@@ -36326,7 +36326,7 @@ msgctxt ""
"par_id371548420017250\n"
"help.text"
msgid "<emph>Interval</emph>: Required. An integer number that specifies the size of the partitions within the range of numbers (between Start and End)."
-msgstr ""
+msgstr "<emph>Intervallo</emph>: obbligatorio. Numero intero che specifica la dimensione delle partizioni all'interno dell'intervallo di numeri (compresi tra Inizio e Fine)."
#: partition.xhp
msgctxt ""
@@ -36334,7 +36334,7 @@ msgctxt ""
"par_id561548420541509\n"
"help.text"
msgid "print \"20:24 the number 20 occurs in the range: \" & retStr"
-msgstr ""
+msgstr "print \"20:24 il numero 20 si trova nell'intervallo: \" & retStr"
#: partition.xhp
msgctxt ""
@@ -36342,7 +36342,7 @@ msgctxt ""
"par_id161548420558523\n"
"help.text"
msgid "print \" 20: 20 the number 20 occurs in the range: \" & retStr"
-msgstr ""
+msgstr "print \" 20: 20 il numero 20 si trova nell'intervallo: \" & retStr"
#: partition.xhp
msgctxt ""
@@ -36350,7 +36350,7 @@ msgctxt ""
"par_id561548420579525\n"
"help.text"
msgid "print \"100: the number 120 occurs in the range: \" & retStr"
-msgstr ""
+msgstr "print \"100: il numero 120 si trova nell'intervallo: \" & retStr"
#: partition.xhp
msgctxt ""
@@ -36358,7 +36358,7 @@ msgctxt ""
"par_id921548420596118\n"
"help.text"
msgid "print \" : -1 the number -5 occurs in the range: \" & retStr"
-msgstr ""
+msgstr "print \" : -1 il numero -5 si trova nell'intervallo: \" & retStr"
#: partition.xhp
msgctxt ""
@@ -36366,7 +36366,7 @@ msgctxt ""
"par_id861548420616153\n"
"help.text"
msgid "print \" 2: 3 the number 2 occurs in the range: \" & retStr"
-msgstr ""
+msgstr "print \" 2: 3 il numero 2 si trova nell'intervallo: \" & retStr"
#: replace.xhp
msgctxt ""
@@ -36374,7 +36374,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Replace Function"
-msgstr ""
+msgstr "Funzione Replace"
#: replace.xhp
msgctxt ""
@@ -36382,7 +36382,7 @@ msgctxt ""
"bm_id721552551162491\n"
"help.text"
msgid "<bookmark_value>Replace function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Replace, funzione</bookmark_value>"
#: replace.xhp
msgctxt ""
@@ -36390,7 +36390,7 @@ msgctxt ""
"hd_id781552551013521\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/replace.xhp\" name=\"Replace Function\">Replace Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/replace.xhp\" name=\"Funzione Replace\">Funzione Replace</link>"
#: replace.xhp
msgctxt ""
@@ -36398,7 +36398,7 @@ msgctxt ""
"par_id291552551013522\n"
"help.text"
msgid "Replaces some string by another."
-msgstr ""
+msgstr "Sostituisce una stringa con un'altra."
#: replace.xhp
msgctxt ""
@@ -36406,7 +36406,7 @@ msgctxt ""
"par_id931552552227310\n"
"help.text"
msgid "Replace (Text As String, SearchStr As String, ReplStr As String [, Start As Long [, Count as long [, Compare As Boolean]]]"
-msgstr ""
+msgstr "Replace (Testo As String, SearchStr As String, ReplStr As String [, Start As Long [, Count as long [, Compare As Boolean]]]"
#: replace.xhp
msgctxt ""
@@ -36414,7 +36414,7 @@ msgctxt ""
"par_id911552552252024\n"
"help.text"
msgid "String"
-msgstr ""
+msgstr "String"
#: replace.xhp
msgctxt ""
@@ -36422,7 +36422,7 @@ msgctxt ""
"par_id721552552263062\n"
"help.text"
msgid "<emph>Text:</emph> Any string expression that you want to modify."
-msgstr ""
+msgstr "<emph>Testo:</emph> stringa da modificare."
#: replace.xhp
msgctxt ""
@@ -36430,7 +36430,7 @@ msgctxt ""
"par_id901552552269836\n"
"help.text"
msgid "<emph>SearchStr:</emph> Any string expression that shall be searched for."
-msgstr ""
+msgstr "<emph>SearchStr:</emph> stringa da ricercare."
#: replace.xhp
msgctxt ""
@@ -36438,7 +36438,7 @@ msgctxt ""
"par_id791552552275383\n"
"help.text"
msgid "<emph>ReplStr:</emph> Any string expression that shall replace the found search string."
-msgstr ""
+msgstr "<emph>ReplStr:</emph> stringa che sostituisce la stringa ricercata."
#: replace.xhp
msgctxt ""
@@ -36446,7 +36446,7 @@ msgctxt ""
"par_id111552552283060\n"
"help.text"
msgid "<emph>Start:</emph> Numeric expression that indicates the character position within the string where the search shall begin. The maximum allowed value is 65535."
-msgstr ""
+msgstr "<emph>Start:</emph> espressione numerica che indica la posizione del carattere all'interno della stringa dove deve iniziare la ricerca. Il valore massimo consentito è 65535."
#: replace.xhp
msgctxt ""
@@ -36454,7 +36454,7 @@ msgctxt ""
"par_id921552552289833\n"
"help.text"
msgid "<emph>Count:</emph> The maximal number of times the replace shall be performed."
-msgstr ""
+msgstr "<emph>Count:</emph> numero massimo di volte di esecuzione della sostituzione."
#: replace.xhp
msgctxt ""
@@ -36462,7 +36462,7 @@ msgctxt ""
"par_id891552552302894\n"
"help.text"
msgid "<emph>Compare:</emph> Optional boolean expression that defines the type of comparison. The value of this parameter can be TRUE or FALSE. The default value of TRUE specifies a text comparison that is not case-sensitive. The value of FALSE specifies a binary comparison that is case-sensitive. You can as well use 0 instead of FALSE or 1 instead of TRUE."
-msgstr ""
+msgstr "<emph>Compare:</emph> espressione logica facoltativa che definisce il tipo di confronto. Il valore di questo parametro può essere TRUE (vero) o FALSE (falso). Il valore predefinito TRUE specifica un confronto non sensibile alle maiuscole; il valore FALSE specifica un confronto di tipo binario sensibile alle maiuscole. Potete usare anche 0 al posto di FALSE o o 1 al posto di TRUE."
#: replace.xhp
msgctxt ""
@@ -36470,7 +36470,7 @@ msgctxt ""
"par_id991552552420717\n"
"help.text"
msgid "msgbox replace (\"aBbcnnbnn\", \"b\", \"$\", 1, 1, FALSE)'returns \"aB$cnnbnn\""
-msgstr ""
+msgstr "msgbox replace (\"aBbcnnbnn\", \"b\", \"$\", 1, 1, FALSE)'restituisce \"aB$cnnbnn\""
#: replace.xhp
msgctxt ""
@@ -36478,7 +36478,7 @@ msgctxt ""
"par_id321552552440672\n"
"help.text"
msgid "REM meaning: \"b\" should be replaced, but"
-msgstr ""
+msgstr "REM significato: \"b\" deve essere sostituito, ma"
#: replace.xhp
msgctxt ""
@@ -36486,7 +36486,7 @@ msgctxt ""
"par_id571552552467647\n"
"help.text"
msgid "REM * only when lowercase (parameter 6), hence second occurrence of \"b\""
-msgstr ""
+msgstr "REM * solo quando miniscolo (parametro 6), perciò la seconda occorrenza di \"b\""
#: replace.xhp
msgctxt ""
@@ -36494,7 +36494,7 @@ msgctxt ""
"par_id71552552474769\n"
"help.text"
msgid "REM * only first (respecting case) occurrence (parameter 5)"
-msgstr ""
+msgstr "REM * solo la prima (che rispetta le minuscole e le maiuscole) occorrenza (parametro 5)"
#: special_vba_func.xhp
msgctxt ""
@@ -36510,7 +36510,7 @@ msgctxt ""
"bm_id051920170350145208\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Introduction</bookmark_value>"
-msgstr "<bookmark_value>VBA, Funzioni;Introduzione</bookmark_value>"
+msgstr "<bookmark_value>VBA, funzioni;Introduzione</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -36518,7 +36518,7 @@ msgctxt ""
"hd_id051820170313205718\n"
"help.text"
msgid "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Exclusive VBA Functions and Statements</link></variable>"
-msgstr ""
+msgstr "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Funzioni e istruzioni VBA esclusive</link></variable>"
#: special_vba_func.xhp
msgctxt ""
@@ -36526,7 +36526,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=\".\">Quando il supporto per VBA è abilitato, %PRODUCTNAME Basic aggiunge questo gruppo di funzioni.</ahelp>"
#: special_vba_func.xhp
msgctxt ""
@@ -36542,7 +36542,7 @@ msgctxt ""
"bm_id71543455697570\n"
"help.text"
msgid "<bookmark_value>VBA Statements</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA, Istruzioni</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -36550,7 +36550,7 @@ msgctxt ""
"hd_id31543446449360\n"
"help.text"
msgid "VBA Statements"
-msgstr ""
+msgstr "Istruzioni VBA"
#: special_vba_func.xhp
msgctxt ""
@@ -36558,7 +36558,7 @@ msgctxt ""
"bm_id05192017035621676\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Text Functions</bookmark_value>"
-msgstr "<bookmark_value>VBA, Funzioni;Funzioni di testo</bookmark_value>"
+msgstr "<bookmark_value>VBA, funzioni;Funzioni di testo</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -36574,7 +36574,7 @@ msgctxt ""
"bm_id051920170357078705\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Financial Functions</bookmark_value>"
-msgstr "<bookmark_value>VBA, Funzioni;Funzioni finanziarie</bookmark_value>"
+msgstr "<bookmark_value>VBA, funzioni;Funzioni finanziarie</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -36590,7 +36590,7 @@ msgctxt ""
"bm_id051920170358102074\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Date and Time Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA, funzioni;Funzioni per data e ora</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -36606,7 +36606,7 @@ msgctxt ""
"bm_id051920170358002074\n"
"help.text"
msgid "<bookmark_value>VBA Functions;I/O Functions</bookmark_value>"
-msgstr "<bookmark_value>VBA, Funzioni;Funzioni di I/O</bookmark_value>"
+msgstr "<bookmark_value>VBA, funzioni;Funzioni di I/O</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -36622,7 +36622,7 @@ msgctxt ""
"bm_id051920170358346963\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Mathematical Functions</bookmark_value> <bookmark_value>VBA Functions;formatting numbers</bookmark_value> <bookmark_value>VBA Functions;partitioning numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA, funzioni;funzioni matematiche</bookmark_value><bookmark_value>VBA, funzioni;formattare i numeri</bookmark_value><bookmark_value>VBA, funzioni;partizionare i numeri</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -36638,7 +36638,7 @@ msgctxt ""
"bm_id051920170359045662\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Object Functions</bookmark_value>"
-msgstr "<bookmark_value>VBA, Funzioni;Funzioni di oggetti</bookmark_value>"
+msgstr "<bookmark_value>VBA, funzioni;Funzioni di oggetti</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -36654,7 +36654,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "StarDesktop"
-msgstr ""
+msgstr "StarDesktop"
#: stardesktop.xhp
msgctxt ""
@@ -36662,7 +36662,7 @@ msgctxt ""
"N0089\n"
"help.text"
msgid "<bookmark_value>StarDesktop</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>StarDesktop</bookmark_value>"
#: stardesktop.xhp
msgctxt ""
@@ -36670,7 +36670,7 @@ msgctxt ""
"hd_id401544551916353\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/stardesktop.xhp\" name=\"StarDesktop\">StarDesktop</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/stardesktop.xhp\" name=\"StarDesktop\">StarDesktop</link>"
#: stardesktop.xhp
msgctxt ""
@@ -36678,7 +36678,7 @@ msgctxt ""
"N0091\n"
"help.text"
msgid "The StarDesktop object represents %PRODUCTNAME application. Some routines or user interface objects such as current window can be used via StarDesktop."
-msgstr ""
+msgstr "L'oggetto StarDesktop rappresenta l'applicazione %PRODUCTNAME. Alcune routine od oggetti dell'interfaccia utente, come la finestra attiva, si possono utilizzare tramite StarDesktop."
#: stardesktop.xhp
msgctxt ""
@@ -36686,7 +36686,7 @@ msgctxt ""
"N0092\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Esempio:"
#: uno_objects.xhp
msgctxt ""
@@ -36694,7 +36694,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "UNO Objects"
-msgstr ""
+msgstr "Oggetti UNO"
#: uno_objects.xhp
msgctxt ""
@@ -36702,7 +36702,7 @@ msgctxt ""
"bm_id171544787218331\n"
"help.text"
msgid "<bookmark_value>programming;UNO objects</bookmark_value> <bookmark_value>UNO objects</bookmark_value> <bookmark_value>UNO functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Programmare;oggetti UNO</bookmark_value><bookmark_value>UNO, oggetti</bookmark_value><bookmark_value>UNO, funzioni</bookmark_value>"
#: uno_objects.xhp
msgctxt ""
@@ -36710,7 +36710,7 @@ msgctxt ""
"hd_id3156027\n"
"help.text"
msgid "UNO Objects, Functions and Services"
-msgstr ""
+msgstr "Oggetti UNO, funzioni e servizi"
#: uno_objects.xhp
msgctxt ""
@@ -36718,7 +36718,7 @@ msgctxt ""
"par_id3153312\n"
"help.text"
msgid "Functions, objects and services of Unified Network Objects (UNO)."
-msgstr ""
+msgstr "Funzioni, oggetti e servizi di Unified Network Objects (UNO)."
#: vbasupport.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/sbasic/shared/02.po b/source/it/helpcontent2/source/text/sbasic/shared/02.po
index 96964654830..ab10d7a2371 100644
--- a/source/it/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/it/helpcontent2/source/text/sbasic/shared/02.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2018-01-24 15:45+0000\n"
+"PO-Revision-Date: 2019-07-22 16:12+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.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: 1516808729.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563811923.000000\n"
#: 11010000.xhp
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"hd_id11904\n"
"help.text"
msgid "Table Control"
-msgstr ""
+msgstr "Campo di controllo tabella"
#: 20000000.xhp
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"par_id7511524\n"
"help.text"
msgid "<image id=\"Graphic3\" src=\"cmd/sc_insertgridcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Table control icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic3\" src=\"cmd/sc_insertgridcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Icona Campo di controllo tabella</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1622,7 +1622,7 @@ msgctxt ""
"par_id9961854\n"
"help.text"
msgid "<ahelp hid=\".\">Adds a table control that can show a table data. You can populate the data by your program, using API calls.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Aggiunge un campo di controllo tabella che è utile per mostrare dati di tabella. Si possono popolare i dati in maniera programmatica, con chiamate alle API.</ahelp>"
#: 20000000.xhp
msgctxt ""
@@ -1630,7 +1630,7 @@ msgctxt ""
"hd_id11905\n"
"help.text"
msgid "Hyperlink Control"
-msgstr ""
+msgstr "Controllo collegamento ipertestuale"
#: 20000000.xhp
msgctxt ""
@@ -1638,7 +1638,7 @@ msgctxt ""
"par_id7511525\n"
"help.text"
msgid "<image id=\"Graphic3\" src=\"cmd/sc_inserthyperlinkcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Insert hyperlink control icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic3\" src=\"cmd/sc_inserthyperlinkcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Icona Inserisci controllo collegamento ipertestuale</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1646,4 +1646,4 @@ msgctxt ""
"par_id9961856\n"
"help.text"
msgid "<ahelp hid=\".\">Adds a hyperlink control that can open an address in web browser.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Aggiunge un controllo di collegamento ipertestuale in grado di aprire un indirizzo in un browser web.</ahelp>"
diff --git a/source/it/helpcontent2/source/text/sbasic/shared/03.po b/source/it/helpcontent2/source/text/sbasic/shared/03.po
index 638b8010205..9fc0ad336f0 100644
--- a/source/it/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/it/helpcontent2/source/text/sbasic/shared/03.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2018-12-09 11:04+0000\n"
+"PO-Revision-Date: 2019-07-22 16:15+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: 1544353471.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563812143.000000\n"
#: lib_depot.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"hd_id371529000826947\n"
"help.text"
msgid "<item type=\"literal\">Debug</item> Module"
-msgstr ""
+msgstr "Modulo <item type=\"literal\">Debug</item>"
#: lib_tools.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id441529064369519\n"
"help.text"
msgid "Functions and subroutines for debugging Basic macros."
-msgstr ""
+msgstr "Funzioni e subroutine per il debug delle macro Basic."
#: lib_tools.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"hd_id11529005753099\n"
"help.text"
msgid "<item type=\"literal\">ListBox</item> Module"
-msgstr ""
+msgstr "Modulo <item type=\"literal\">ListBox</item>"
#: lib_tools.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"hd_id341529005758494\n"
"help.text"
msgid "<item type=\"literal\">Misc</item> Module"
-msgstr ""
+msgstr "Modulo <item type=\"literal\">Misc</item>"
#: lib_tools.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"hd_id451529005764422\n"
"help.text"
msgid "<item type=\"literal\">ModuleControls</item> Module"
-msgstr ""
+msgstr "Modulo <item type=\"literal\">ModuleControls</item>"
#: lib_tools.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id261558858921700\n"
"help.text"
msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
-msgstr ""
+msgstr "Per un esempio di funzione LoadDialog, consultate il capitolo <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Visualizzare una finestra di dialogo usando Basic\">Visualizzare una finestra di dialogo usando Basic</link>."
#: lib_tools.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/scalc/00.po b/source/it/helpcontent2/source/text/scalc/00.po
index 5e21828669d..b5cec42a065 100644
--- a/source/it/helpcontent2/source/text/scalc/00.po
+++ b/source/it/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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-01-09 12:09+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2019-07-24 12:17+0000\n"
+"Last-Translator: Elisabetta Manuele <calembour@hotmail.it>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\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: 1547035789.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563970631.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id3154514\n"
"help.text"
msgid "Choose <emph>View - Toolbars</emph> and select <emph>Insert Cells</emph> toolbar:"
-msgstr ""
+msgstr "Scegliete il menu <emph>Visualizza - Barre degli strumenti</emph> e selezionate la barra degli strumenti <emph>Inserisci cella</emph>:"
#: 00000404.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"par_id3146919a\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 Calc - Formula</emph>."
-msgstr ""
+msgstr "Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Formula</emph>."
#: 00000406.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Available since release"
-msgstr ""
+msgstr "Disponibile dalla versione"
#: avail_release.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"par_id631551701603518\n"
"help.text"
msgid "<variable id=\"release\">This function is available since %PRODUCTNAME </variable>"
-msgstr ""
+msgstr "<variable id=\"release\">La funzione è disponibile da %PRODUCTNAME </variable>"
#: sheet_menu.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/scalc/01.po b/source/it/helpcontent2/source/text/scalc/01.po
index f4bf79e3521..191a063aab8 100644
--- a/source/it/helpcontent2/source/text/scalc/01.po
+++ b/source/it/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: 2019-06-03 17:45+0200\n"
-"PO-Revision-Date: 2019-01-09 12:53+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2019-07-26 16:11+0000\n"
+"Last-Translator: Elisabetta Manuele <calembour@hotmail.it>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\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: 1547038404.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564157491.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"par_id3155959\n"
"help.text"
msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+Shift+Enter</emph> command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces: <emph>{ }</emph>."
-msgstr ""
+msgstr "L'opzione <emph>Matrice</emph> è identica al comando <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Comando</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+Maiusc+Invio</emph>, utilizzato per l'inserimento e la conferma di una formula nel foglio. La formula viene inserita come formula matriciale, indicata da due parentesi graffe: <emph>{ }</emph>."
#: 04060000.xhp
msgctxt ""
@@ -5094,7 +5094,7 @@ msgctxt ""
"par_id651547654187646\n"
"help.text"
msgid "Time zone information is not used in Date and Time functions and cells."
-msgstr ""
+msgstr "Le informazioni sul fuso orario non vengono utilizzate nelle funzioni e nelle celle di data e ora."
#: 04060102.xhp
msgctxt ""
@@ -6358,7 +6358,7 @@ msgctxt ""
"bm_id3159147\n"
"help.text"
msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECT function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Annuo, tasso di interesse netto</bookmark_value><bookmark_value>Calcolare; tassi di interesse netti annui</bookmark_value><bookmark_value>Netto, tasso di interesse annuo</bookmark_value><bookmark_value>EFFETTIVO, funzione</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -6366,7 +6366,7 @@ msgctxt ""
"hd_id3159147\n"
"help.text"
msgid "EFFECT"
-msgstr ""
+msgstr "INT.EFFETTIVO"
#: 04060103.xhp
msgctxt ""
@@ -6390,7 +6390,7 @@ msgctxt ""
"par_id3148805\n"
"help.text"
msgid "EFFECT(Nom; P)"
-msgstr ""
+msgstr "INT.EFFETTIVO(Interesse nominale; P)"
#: 04060103.xhp
msgctxt ""
@@ -6422,7 +6422,7 @@ msgctxt ""
"par_id3150772\n"
"help.text"
msgid "<item type=\"input\">=EFFECT(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
-msgstr ""
+msgstr "<item type=\"input\">=INT.EFFETTIVO(9,75%;4)</item> = 10,11% Il tasso di interesse effettivo annuo è pari al 10,11%."
#: 04060103.xhp
msgctxt ""
@@ -9894,7 +9894,7 @@ msgctxt ""
"par_id3154297\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the angle (in radians) between the x-axis and a line from the origin to the point (NumberX|NumberY).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_ARCTAN2\">Restituisce l'angolo (in radianti) tra l'asse x e una linea che collega l'origine al punto (NumeroX|NumeroY).</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -9910,7 +9910,7 @@ msgctxt ""
"par_id3001800\n"
"help.text"
msgid "<emph>NumberX</emph> is the value of the x coordinate."
-msgstr ""
+msgstr "<emph>NumeroX</emph> è il valore della coordinata x."
#: 04060106.xhp
msgctxt ""
@@ -9926,7 +9926,7 @@ msgctxt ""
"par_id5036168\n"
"help.text"
msgid "Programming languages have usually the opposite order of arguments for their atan2() function."
-msgstr ""
+msgstr "I linguaggi di programmazione presentano solitamente l'ordine opposto degli argomenti per la funzione ARCTAN.2()."
#: 04060106.xhp
msgctxt ""
@@ -9934,7 +9934,7 @@ msgctxt ""
"par_id5036165\n"
"help.text"
msgid "ATAN2 returns the angle (in radians) between the x-axis and a line from the origin to the point (NumberX|NumberY)"
-msgstr ""
+msgstr "ARCTAN.2 restituisce l'angolo (in radianti) tra l'asse x e una linea che va dall'origine al punto (NumeroX|NumeroY)."
#: 04060106.xhp
msgctxt ""
@@ -9942,7 +9942,7 @@ msgctxt ""
"par_id3154692\n"
"help.text"
msgid "<item type=\"input\">=ATAN2(-5;9)</item> returns 2.07789 radians."
-msgstr ""
+msgstr "<item type=\"input\">=ARCTAN.2(-5;9)</item> restituisce 2,07789 radianti."
#: 04060106.xhp
msgctxt ""
@@ -9950,7 +9950,7 @@ msgctxt ""
"par_id5036166\n"
"help.text"
msgid "To get the angle in degrees apply the DEGREES function to the result."
-msgstr ""
+msgstr "Per ottenere l'angolo in gradi applicare la funzione GRADI al risultato."
#: 04060106.xhp
msgctxt ""
@@ -9958,7 +9958,7 @@ msgctxt ""
"par_id1477095\n"
"help.text"
msgid "<input>=DEGREES(ATAN2(12.3;12.3))</input> returns 45. The tangent of 45 degrees is 1."
-msgstr ""
+msgstr "<input>=GRADI(ARCTAN.2(12,3;12,3))</input> restituisce 45. La tangente di 45 gradi è 1."
#: 04060106.xhp
msgctxt ""
@@ -9966,7 +9966,7 @@ msgctxt ""
"par_id5036167\n"
"help.text"
msgid "%PRODUCTNAME results 0 for ATAN2(0;0)."
-msgstr ""
+msgstr "%PRODUCTNAME restituisce 0 per ARCTAN.2(0;0)."
#: 04060106.xhp
msgctxt ""
@@ -9974,7 +9974,7 @@ msgctxt ""
"par_id5036169\n"
"help.text"
msgid "The function can be used in converting cartesian coordinates to polar coordinates."
-msgstr ""
+msgstr "Potete utilizzare questa funzione per convertire le coordinate cartesiane in coordinate polari."
#: 04060106.xhp
msgctxt ""
@@ -9982,7 +9982,7 @@ msgctxt ""
"par_id5036170\n"
"help.text"
msgid "=DEGREES(ATAN2(-8;5)) returns φ = 147.9 degrees"
-msgstr ""
+msgstr "=GRADI(ACTAN.2(-8;5)) restituisce φ = 147,9 gradi"
#: 04060106.xhp
msgctxt ""
@@ -9990,7 +9990,7 @@ msgctxt ""
"par_id5036171\n"
"help.text"
msgid "<image id=\"img_id3150758\" src=\"media/helpimg/scalc/coordinates-to-polar-01.svg\" width=\"2.5inch\" height=\"1.5inch\"><alt id=\"alt_id3150758\">Cartesian coordinates to polar coordinates example</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150758\" src=\"media/helpimg/scalc/coordinates-to-polar-01.svg\" width=\"2.5inch\" height=\"1.5inch\"><alt id=\"alt_id3150758\">Esempio di coordinate cartesiane convertite in coordinate polari</alt></image>"
#: 04060106.xhp
msgctxt ""
@@ -17966,7 +17966,7 @@ msgctxt ""
"par_id3153884\n"
"help.text"
msgid "<emph>Array</emph> is the reference, which is to comprise at least as many columns as the number passed in Index argument."
-msgstr ""
+msgstr "<emph>Matrice</emph> è il riferimento che deve comprendere almeno un numero di colonne pari a quello passato all'argomento Indice."
#: 04060109.xhp
msgctxt ""
@@ -27246,7 +27246,7 @@ msgctxt ""
"par_id3150525\n"
"help.text"
msgid "Calculation of the net present value for the above-mentioned five payments for a national internal rate of return of 6%."
-msgstr ""
+msgstr "Calcolo del valore netto attuale per i cinque pagamenti sopra menzionati con un tasso di rendimento interno del 6%."
#: 04060118.xhp
msgctxt ""
@@ -39417,13 +39417,12 @@ msgid "<emph>Start</emph> is the start value of the interval whose probabilities
msgstr "<emph>Inizio</emph> è l'inizio dell'intervallo dei valori per il quale si desidera calcolare la probabilità."
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3153694\n"
"help.text"
msgid "<emph>End</emph> (optional) is the end value of the interval whose probabilities are to be summed. If this parameter is missing, the probability for the <emph>Start</emph> value is calculated."
-msgstr "<emph>Limite superiore</emph> (opzionale) è il limite superiore per il quale si desidera calcolare la probabilità. Se manca questo parametro, si calcola la probabilità che esiste proprio il valore <emph>Limite inferiore</emph>."
+msgstr "<emph>Fine</emph> (opzionale) è il valore finale dell'intervallo per il quale si desidera sommare le probabilità. Se manca questo parametro, si calcola la probabilità del valore <emph>Inizio</emph>."
#: 04060185.xhp
msgctxt ""
@@ -40951,7 +40950,7 @@ msgctxt ""
"par_id3153192\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Apri una finestra di dialogo per individuare il file contenente i dati da inserire.</ahelp>"
#: 04090000.xhp
msgctxt ""
@@ -40983,7 +40982,7 @@ msgctxt ""
"par_id3145366\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Digitare l'URL o il nome del file contenente i dati da inserire, quindi premere il tasto Invio.</ahelp> In alternativa, fate clic sul pulsante <emph>Sfoglia</emph> per selezionare il nome del file dalla finestra di dialogo che compare. Solo allora verrà richiesto l'URL dalla rete o dal filesystem."
#: 04090000.xhp
msgctxt ""
@@ -41007,7 +41006,7 @@ msgctxt ""
"par_id3147397\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Selezionare la tabella o l'intervallo di dati da inserire.</ahelp> Se il documento Calc o Excel selezionato non contiene un intervallo denominato, i dati del foglio elettronico non possono essere inseriti e il pulsante <emph>OK</emph> resterà inattivo."
#: 04090000.xhp
msgctxt ""
@@ -41335,7 +41334,7 @@ msgctxt ""
"par_id3148645\n"
"help.text"
msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Rows - Hide </emph>or<emph> Format - Columns - Hide</emph>."
-msgstr ""
+msgstr "Selezionate le righe o le colonne da nascondere e scegliete poi il menu <emph>Formato - Righe - Nascondi</emph> oppure <emph>Formato - Colonne - Nascondi</emph>."
#: 05030300.xhp
msgctxt ""
@@ -41375,7 +41374,7 @@ msgctxt ""
"par_id5532090\n"
"help.text"
msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Rows/Columns - Show\">Format - Rows/Columns - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
-msgstr ""
+msgstr "Scegliete <link href=\"text/scalc/01/05030400.xhp\" name=\"Formato - Righe/Colonne - Mostra\">Formato - Righe/Colonne - Mostra</link> oppure <link href=\"text/scalc/01/05050300.xhp\" name=\"Formato - Foglio - Mostra\">Formato - Foglio - Mostra</link>."
#: 05030400.xhp
msgctxt ""
@@ -41415,7 +41414,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 - Rows - Show</emph> or <emph>Format - Columns - Show</emph>."
-msgstr ""
+msgstr "Per visualizzare le righe o le colonne, selezionate l'area delle righe o colonne che include gli elementi nascosti, e poi selezionate il menu <emph>Formato - Righe - Mostra </emph>o <emph>Formato - Colonne - Mostra</emph>."
#: 05030400.xhp
msgctxt ""
@@ -41423,7 +41422,7 @@ msgctxt ""
"par_id3155132\n"
"help.text"
msgid "For example, to show the column B, click on the header of the column A, expand the selection to the column C, then chose <emph>Format - Columns - Show</emph>. To show the column A previously hidden, click on the header of the column B, keep the mouse button pressed and drag on the left. The selected range displayed in the name area changes from B1:B1048576 to A1:B1048576. Choose <emph>Format - Columns - Show</emph>. Proceed the same way with rows."
-msgstr ""
+msgstr "Per esempio, per visualizzare la colonna B, fate clic sull'intestazione della colonna A, espandete la selezione alla colonna C, poi scegliete <emph>Formato - Colonne - Mostra</emph>. Per mostrare la colonna A precedentemente nascosta, fate clic sull'intestazione della colonna B e, mantenendo premuto il pulsante del mouse, trascinate a sinistra. L'intervallo selezionato visualizzato nell'area del nome cambia da B1:B1048576 a A1:B1048576. Scegliete <emph>Formato - Colonne - Mostra</emph>. Procedete allo stesso modo con le righe."
#: 05030400.xhp
msgctxt ""
@@ -41535,7 +41534,7 @@ msgctxt ""
"par_id3146120\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/default\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 2 mm."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/default\">Specifica la larghezza di colonna ottimale per la visualizzazione dell'intero contenuto della colonna.</ahelp> L'impostazione predefinita della distanza aggiuntiva per la larghezza di colonna ottimale è di 2 mm."
#: 05050000.xhp
msgctxt ""
@@ -43135,7 +43134,7 @@ msgctxt ""
"par_id31494133\n"
"help.text"
msgid "If you select <emph>All cells</emph>, see Color Scale, Data Bar or Icon Set explanations below, depending on which visual representation the conditional formatting should be represented."
-msgstr ""
+msgstr "Se selezionate <emph>Tutte le celle</emph>, consultate le spiegazioni sottostanti per Gradiente, Barra dati o Gruppo di icone, in base al tipo di rappresentazione visiva da utilizzare per la formattazione condizionata."
#: 05120000.xhp
msgctxt ""
@@ -43183,7 +43182,7 @@ msgctxt ""
"par_id31494139\n"
"help.text"
msgid "If you select <emph>Formula is</emph> as a reference, enter a cell reference. If the cell reference is a value other than zero, the condition matches."
-msgstr ""
+msgstr "Nel caso in cui selezioniate <emph>La formula è</emph> come riferimento, inserite un riferimento di cella. Se è costituito da un valore diverso da zero, la condizione corrisponde."
#: 05120000.xhp
msgctxt ""
@@ -43391,7 +43390,7 @@ msgctxt ""
"par_id31546818\n"
"help.text"
msgid "Choose <emph>Format - Conditional Formatting - Manage</emph>."
-msgstr ""
+msgstr "Scegliete il menu <emph>Formato - Condizionale - Gestisci</emph>"
#: 05120000.xhp
msgctxt ""
@@ -44463,7 +44462,7 @@ msgctxt ""
"bm_id3145673\n"
"help.text"
msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculate;auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Calcolare; fogli con calcolo automatico</bookmark_value><bookmark_value>Ripetere il calcolo; fogli con calcolo automatico</bookmark_value><bookmark_value>Ricalcolare; fogli con calcolo automatico</bookmark_value><bookmark_value>Calcolo automatico, funzione; nei fogli elettronici</bookmark_value><bookmark_value>Correzione automatica dei fogli elettronici</bookmark_value><bookmark_value>Formula; funzione di calcolo automatico</bookmark_value><bookmark_value>Contenuto cella; funzione di calcolo automatico</bookmark_value>"
#: 06070000.xhp
msgctxt ""
@@ -44503,7 +44502,7 @@ msgctxt ""
"bm_id3157909\n"
"help.text"
msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>recalculate;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Ripetere il calcolo;tutte le formule nei fogli</bookmark_value><bookmark_value>Ricalcolare;tutte le formule nei fogli</bookmark_value><bookmark_value>Formula;ricalcolare manualmente</bookmark_value><bookmark_value>Contenuto cella;ricalcolare</bookmark_value>"
#: 06080000.xhp
msgctxt ""
@@ -44519,7 +44518,7 @@ msgctxt ""
"par_id3154758\n"
"help.text"
msgid "<ahelp hid=\".uno:Calculate\">If AutoCalculate is disabled, the Recalculate command recalculates all (so-called dirty) formula cells that depend on changed cell content and their dependents, and formula cells containing volatile functions such as RAND() or NOW() and formula cells that depend on them.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Calculate\">Se la voce Calcolo automatico è disabilitata, il comando Ricalcola effettuerà un ricalcolo di tutte le celle formula (le cosiddette celle modificate) dipendenti dalle celle con contenuto modificato e dalle loro dipendenti; inoltre avrà effetto sulle celle formula contenenti funzioni volatili come CASUALE() o ADESSO() e sulle celle formula che da esse dipendono.</ahelp>"
#: 06080000.xhp
msgctxt ""
@@ -44527,7 +44526,7 @@ msgctxt ""
"par_id3154759\n"
"help.text"
msgid "<ahelp hid=\".uno:Calculate\">If AutoCalculate is enabled, the Recalculate command applies only to formula cells containing volatile functions like RAND() or NOW() and formula cells that depend on them.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Calculate\">Se la voce Calcolo automatico è abilitata, il comando Ricalcola avrà effetto solo sulle celle formula contenenti funzioni volatili come CASUALE() o ADESSO() e sulle loro dipendenti.</ahelp>"
#: 06080000.xhp
msgctxt ""
@@ -44535,7 +44534,7 @@ msgctxt ""
"par_id3154753\n"
"help.text"
msgid "<ahelp hid=\".uno:Calculate\">In either mode, with formula cell(s) selected pressing F9 recalculates the currently selected cells and formula cells that depend on them. This can be useful after reading documents with recalculation disabled and individual cells need recalculation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Calculate\">In entrambe le modalità, la pressione di F9 consente di ricalcolare le celle attualmente selezionate e le celle formula che dipendono da esse. Ciò può risultare utile dopo aver letto documenti impostati con il ricalcolo disabilitato le cui singole celle devono essere ricalcolate.</ahelp>"
#: 06080000.xhp
msgctxt ""
@@ -44551,7 +44550,7 @@ msgctxt ""
"par_id3150793\n"
"help.text"
msgid "Recalculation options are, Recalculation on File Load, with values:"
-msgstr ""
+msgstr "Le opzioni di ricalcolo includono: Ricalcolo al caricamento del file, con valori:"
#: 06080000.xhp
msgctxt ""
@@ -44559,7 +44558,7 @@ msgctxt ""
"par_id3150795\n"
"help.text"
msgid "Always recalculate, Never recalculate (default option), Prompt user."
-msgstr ""
+msgstr "Ricalcola sempre, Non ricalcolare mai (opzione predefinita), Chiedi."
#: 06080000.xhp
msgctxt ""
@@ -44567,7 +44566,7 @@ msgctxt ""
"par_id315475855\n"
"help.text"
msgid "Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document, including Add-In functions. The hard recalculation correctly recalculates all formula cells."
-msgstr ""
+msgstr "Per forzare il ricalcolo di tutte le formule del documento, incluse le funzioni aggiuntive, premete Maiusc+<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9, ciò consentirà di calcolare nuovamente e correttamente tutte le celle formula."
#: 06080000.xhp
msgctxt ""
@@ -44575,7 +44574,7 @@ msgctxt ""
"par_id3150799\n"
"help.text"
msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
-msgstr ""
+msgstr "Il ricalcolo del documento ne determina l'aggiornamento insieme con tutti i grafici al suo interno."
#: 06130000.xhp
msgctxt ""
@@ -44871,7 +44870,7 @@ msgctxt ""
"par_id3154684\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCells\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh Range</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCells\" visibility=\"visible\">Inserisce automaticamente nuove righe e colonne nell'area database del documento all'aggiunta di nuovi record al database.</ahelp> Per aggiornare manualmente l'area database, selezionate il menu <emph>Dati - Aggiorna area</emph>."
#: 12010100.xhp
msgctxt ""
@@ -46295,7 +46294,7 @@ msgctxt ""
"par_id3153836\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Consente di specificare l'area di celle da consolidare con le aree di celle elencate nella casella <emph>Aree di consolidamento</emph>. Selezionare un'area di celle in un foglio, quindi fare clic su <emph>Aggiungi</emph>. È possibile inoltre selezionare il nome di una cella predefinita dall'elenco <emph>Area dati sorgente</emph>.</ahelp>"
#: 12070000.xhp
msgctxt ""
@@ -49415,7 +49414,7 @@ msgctxt ""
"hd_id881545240342781\n"
"help.text"
msgid "Sample macro:"
-msgstr ""
+msgstr "Macro di esempio:"
#: ODFF.xhp
msgctxt ""
@@ -51559,7 +51558,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "CONCAT function"
-msgstr ""
+msgstr "Funzione CONCAT"
#: func_concat.xhp
msgctxt ""
@@ -51567,7 +51566,7 @@ msgctxt ""
"bm_id741556228031712\n"
"help.text"
msgid "<bookmark_value>CONCAT function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>CONCAT, funzione</bookmark_value>"
#: func_concat.xhp
msgctxt ""
@@ -51575,7 +51574,7 @@ msgctxt ""
"hd_id471556226436779\n"
"help.text"
msgid "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
-msgstr ""
+msgstr "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
#: func_concat.xhp
msgctxt ""
@@ -51583,7 +51582,7 @@ msgctxt ""
"par_id891556226436781\n"
"help.text"
msgid "<variable id=\"concatfunction\"><ahelp hid=\".\">Concatenates one or more strings</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"concatfunction\"><ahelp hid=\".\">Consente di concatenare una o più stringhe</ahelp></variable>"
#: func_concat.xhp
msgctxt ""
@@ -51591,7 +51590,7 @@ msgctxt ""
"par_id701556226865876\n"
"help.text"
msgid "CONCAT is an enhancement of CONCATENATE, as CONCAT also accepts ranges as arguments, like B2:E5, K:K or K:M."
-msgstr ""
+msgstr "CONCAT è un rafforzamento di CONCATENA, in quanto CONCAT accetta come argomenti anche le aree, come per esempio B2:E5, K:K o K:M."
#: func_concat.xhp
msgctxt ""
@@ -51599,7 +51598,7 @@ msgctxt ""
"par_id461556226873963\n"
"help.text"
msgid "When ranges are used, the cells are traversed row by row (from top to bottom) to concatenate."
-msgstr ""
+msgstr "Nel caso di aree, le celle vengono concatenate riga per riga (dall'alto verso il basso)."
#: func_concat.xhp
msgctxt ""
@@ -51607,7 +51606,7 @@ msgctxt ""
"par_id911556226813411\n"
"help.text"
msgid "CONCAT( string1[, string2][, …] )"
-msgstr ""
+msgstr "CONCAT( stringa1[, stringa2][, …] )"
#: func_concat.xhp
msgctxt ""
@@ -51615,7 +51614,7 @@ msgctxt ""
"par_id581556227044166\n"
"help.text"
msgid "<emph>string1[, string2][, …]</emph> are strings or references to cells or ranges that contains strings to concatenate."
-msgstr ""
+msgstr "<emph>stringa1[, stringa2][, …]</emph> rappresentano stringhe o riferimenti a celle o aree contenenti stringhe da concatenare."
#: func_concat.xhp
msgctxt ""
@@ -51623,7 +51622,7 @@ msgctxt ""
"par_id531556227248228\n"
"help.text"
msgid "<input>=CONCAT(\"Hello \", A1:C3)</input> concatenates the string \"Hello\" with all strings in range <literal>A1:C3</literal>."
-msgstr ""
+msgstr "<input>=CONCAT(\"Ciao\", A1:C3)</input> concatena la stringa \"Ciao\" con tutte le stringhe comprese nell'area <literal>A1:C3</literal>."
#: func_concat.xhp
msgctxt ""
@@ -51631,7 +51630,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatena\">CONCATENA</link>"
#: func_countifs.xhp
msgctxt ""
@@ -52295,7 +52294,7 @@ msgctxt ""
"par_id3159101\n"
"help.text"
msgid "<item type=\"input\">=DAYS(NOW();\"2010-01-01\"))</item> returns the number of days from January 1, 2010 until today."
-msgstr ""
+msgstr "<item type=\"input\">=GIORNI(ADESSO();\"1/1/2010\")</item> restituisce il numero dei giorni dal primo gennaio 2010 fino a oggi."
#: func_days.xhp
msgctxt ""
@@ -53575,7 +53574,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "IFS function"
-msgstr ""
+msgstr "Funzione PIÙ.SE"
#: func_ifs.xhp
msgctxt ""
@@ -53583,7 +53582,7 @@ msgctxt ""
"bm_id901556242230198\n"
"help.text"
msgid "<bookmark_value>IFS function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>PIÙ.SE, funzione</bookmark_value>"
#: func_ifs.xhp
msgctxt ""
@@ -53591,7 +53590,7 @@ msgctxt ""
"hd_id271556234923654\n"
"help.text"
msgid "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\" name=\"function ifs\">IFS</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\" name=\"funzione più.se\">PIÙ.SE</link></variable>"
#: func_ifs.xhp
msgctxt ""
@@ -53599,7 +53598,7 @@ msgctxt ""
"par_id171556234923655\n"
"help.text"
msgid "<variable id=\"variable name\"><ahelp hid=\".\">IFS is a multiple IF-function.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"variable name\"><ahelp hid=\".\">PIÙ.SE è una funzione SE multipla.</ahelp></variable>"
#: func_ifs.xhp
msgctxt ""
@@ -53607,7 +53606,7 @@ msgctxt ""
"par_id271556235333493\n"
"help.text"
msgid "IFS( expression1, result1[, expression2, result2][, …] )"
-msgstr ""
+msgstr "PIÙ.SE( espressione1, risultato1[, espressione2, risultato2][, …] )"
#: func_ifs.xhp
msgctxt ""
@@ -53615,7 +53614,7 @@ msgctxt ""
"par_id31556235655212\n"
"help.text"
msgid "<emph>expression1, expression2, ...</emph> are any boolean values or expressions that can be TRUE or FALSE"
-msgstr ""
+msgstr "<emph>espressione1, espressione2, ...</emph> rappresentano valori logici o espressioni che possono avere carattere VERO o FALSO."
#: func_ifs.xhp
msgctxt ""
@@ -53623,7 +53622,7 @@ msgctxt ""
"par_id441556235649549\n"
"help.text"
msgid "<emph>result1, result2, ... </emph> are the values that are returned if the logical test is TRUE"
-msgstr ""
+msgstr "<emph>risultato1, risultato2, .... </emph> rappresentano i valori restituiti se il test logico corrisponde al criterio VERO."
#: func_ifs.xhp
msgctxt ""
@@ -53631,7 +53630,7 @@ msgctxt ""
"par_id641556235704257\n"
"help.text"
msgid "IFS( expression1, result1, expression2, result2, expression3, result3 ) is executed as"
-msgstr ""
+msgstr "PIÙ.SE( espressione1, risultato1, espressione2, risultato2, espressione3, risultato3 ) viene eseguita come"
#: func_ifs.xhp
msgctxt ""
@@ -53639,7 +53638,7 @@ msgctxt ""
"par_id551556235712759\n"
"help.text"
msgid "IF expression1 is TRUE"
-msgstr ""
+msgstr "SE espressione1 corrisponde a VERO"
#: func_ifs.xhp
msgctxt ""
@@ -53647,7 +53646,7 @@ msgctxt ""
"par_id1001556235718948\n"
"help.text"
msgid "THEN result1"
-msgstr ""
+msgstr "ALLORA risultato1"
#: func_ifs.xhp
msgctxt ""
@@ -53655,7 +53654,7 @@ msgctxt ""
"par_id571556235725969\n"
"help.text"
msgid "ELSE IF expression2 is TRUE"
-msgstr ""
+msgstr "ALTRIMENTI SE espressione2 è VERO"
#: func_ifs.xhp
msgctxt ""
@@ -53663,7 +53662,7 @@ msgctxt ""
"par_id581556235731982\n"
"help.text"
msgid "THEN result2"
-msgstr ""
+msgstr "ALLORA risultato2"
#: func_ifs.xhp
msgctxt ""
@@ -53671,7 +53670,7 @@ msgctxt ""
"par_id961556235738258\n"
"help.text"
msgid "ELSE IF expression3 is TRUE"
-msgstr ""
+msgstr "ALTRIMENTI SE espressione3 è VERO"
#: func_ifs.xhp
msgctxt ""
@@ -53679,7 +53678,7 @@ msgctxt ""
"par_id951556235743954\n"
"help.text"
msgid "THEN result3"
-msgstr ""
+msgstr "ALLORA risultato3"
#: func_ifs.xhp
msgctxt ""
@@ -53687,7 +53686,7 @@ msgctxt ""
"par_id671556235758504\n"
"help.text"
msgid "To get a default result should no expression be TRUE, add a last expression that is always TRUE, like TRUE or 1=1 followed by the default result."
-msgstr ""
+msgstr "Per ottenere un risultato predefinito, se nessuna espressione corrisponde alla condizione VERO, aggiungete un'ultima espressione che corrisponda sempre a VERO, come VERO o 1=1 seguita dal risultato predefinito."
#: func_ifs.xhp
msgctxt ""
@@ -53695,7 +53694,7 @@ msgctxt ""
"par_id541556235771022\n"
"help.text"
msgid "If there is a result missing for an expression or is no expression is TRUE, a #N/A error is returned."
-msgstr ""
+msgstr "Se manca il risultato di un'espressione o se nessuna espressione corrisponde a VERO, viene restituito un errore #N/D."
#: func_ifs.xhp
msgctxt ""
@@ -53703,7 +53702,7 @@ msgctxt ""
"par_id181556235788473\n"
"help.text"
msgid "If expression is neither TRUE or FALSE, a #VALUE error is returned."
-msgstr ""
+msgstr "Se l'espressione non corrisponde a VERO o FALSO, viene restituito un errore #VALORE."
#: func_ifs.xhp
msgctxt ""
@@ -53711,7 +53710,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"se\">SE</link>"
#: func_imcos.xhp
msgctxt ""
@@ -55991,7 +55990,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "SWITCH function"
-msgstr ""
+msgstr "Funzione SWITCH"
#: func_switch.xhp
msgctxt ""
@@ -55999,7 +55998,7 @@ msgctxt ""
"bm_id571556244875552\n"
"help.text"
msgid "<bookmark_value>SWITCH function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>SWITCH, funzione</bookmark_value>"
#: func_switch.xhp
msgctxt ""
@@ -56007,7 +56006,7 @@ msgctxt ""
"hd_id21556242313791\n"
"help.text"
msgid "<variable id=\"switchfunct\"><link href=\"text/scalc/01/func_switch.xhp\" name=\"switch\">SWITCH</link></variable>"
-msgstr ""
+msgstr "<variable id=\"switchfunct\"><link href=\"text/scalc/01/func_switch.xhp\" name=\"switch\">SWITCH</link></variable>"
#: func_switch.xhp
msgctxt ""
@@ -56015,7 +56014,7 @@ msgctxt ""
"par_id361556242313793\n"
"help.text"
msgid "<variable id=\"functionswitch\"><ahelp hid=\".\">SWITCH compares <emph>expression</emph> with <emph>value1</emph> to <emph>valuen</emph> and returns the result belonging to the first value that equals expression. If there is no match and default_result is given, that will be returned.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"functionswitch\"><ahelp hid=\".\">SWITCH esegue un confronto valutativo di <emph>espressioni</emph> seguite da valori, da <emph>valore 1</emph> a <emph>valore n</emph>, e restituisce il risultato appartenente al primo valore corrispondente. Se non viene riscontrata alcuna corrispondenza verrà restituito un risultato predefinito.</ahelp></variable>"
#: func_switch.xhp
msgctxt ""
@@ -56023,7 +56022,7 @@ msgctxt ""
"par_id521556242803283\n"
"help.text"
msgid "SWITCH( expression, value1, result1[, value2, result2][, … ][, default_result] )"
-msgstr ""
+msgstr "SWITCH( espressione, valore1, risultato1[, valore2, risultato2][, … ][, risultato_predefinito] )"
#: func_switch.xhp
msgctxt ""
@@ -56031,7 +56030,7 @@ msgctxt ""
"par_id341556242996378\n"
"help.text"
msgid "<emph>expression</emph> is a text, numeric, logical or date input or reference to a cell."
-msgstr ""
+msgstr "Una <emph>espressione</emph> è una stringa testuale, numerica, logica, oppure è costituita da una data o da un riferimento a una cella."
#: func_switch.xhp
msgctxt ""
@@ -56039,7 +56038,7 @@ msgctxt ""
"par_id321556243790332\n"
"help.text"
msgid "<emph>value1, value2, ...</emph> is any value or reference to a cell. Each value must have a result given."
-msgstr ""
+msgstr "<emph>valore1, valore2, ...</emph> corrisponde a un valore qualsiasi o a un riferimento a una cella. A ogni valore deve essere assegnato un risultato."
#: func_switch.xhp
msgctxt ""
@@ -56047,7 +56046,7 @@ msgctxt ""
"par_id171556243796068\n"
"help.text"
msgid "<emph>result1, result2, ...</emph> is any value or reference to a cell."
-msgstr ""
+msgstr "<emph>risultato1, risultato2, ...</emph> corrisponde a un valore o al riferimento a una cella. "
#: func_switch.xhp
msgctxt ""
@@ -56055,7 +56054,7 @@ msgctxt ""
"par_id331556245422283\n"
"help.text"
msgid "<emph>default_result</emph>: any value or reference to a cell that is returned when there is no match."
-msgstr ""
+msgstr "<emph>risultato_predefinito</emph>: ogni valore o riferimento a una cella restituito in assenza di corrispondenze."
#: func_switch.xhp
msgctxt ""
@@ -56063,7 +56062,7 @@ msgctxt ""
"par_id871556243022881\n"
"help.text"
msgid "If no <emph>value</emph> equals <emph>expression</emph> and no default result is given, a #N/A error is returned."
-msgstr ""
+msgstr "Se non vengono trovati <emph>valori</emph> corrispondenti all'<emph>espressione</emph> e non viene fornito alcun risultato predefinito, viene restituito un errore #N/D."
#: func_switch.xhp
msgctxt ""
@@ -56071,7 +56070,7 @@ msgctxt ""
"par_id851556243961783\n"
"help.text"
msgid "<input>=SWITCH(MONTH(A3),1,\"January\",2,\"February\",3,\"March\",\"No match\")</input> returns \"January\" when A3=1, February when A3=2 , etc..."
-msgstr ""
+msgstr "<input>=SWITCH(MESE(A3),1,\"Gennaio\",2,\"Febbraio\",3,\"Marzo\",\"Nessuna corrispondenza\")</input>restituisce \"Gennaio\" poiché A3=1, Febbraio poiché A3=2, ecc..."
#: func_switch.xhp
msgctxt ""
@@ -56079,7 +56078,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"se\">SE</link>"
#: func_textjoin.xhp
msgctxt ""
@@ -56087,7 +56086,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "TEXTJOIN function"
-msgstr ""
+msgstr "Funzione TESTO.UNISCI"
#: func_textjoin.xhp
msgctxt ""
@@ -56095,7 +56094,7 @@ msgctxt ""
"bm_id581556228060864\n"
"help.text"
msgid "<bookmark_value>TEXTJOIN function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>TESTO.UNISCI, funzione</bookmark_value>"
#: func_textjoin.xhp
msgctxt ""
@@ -56103,7 +56102,7 @@ msgctxt ""
"hd_id551556227727946\n"
"help.text"
msgid "<variable id=\"textjoinfunct\"><link href=\"text/scalc/01/func_textjoin.xhp\" name=\"textjoinfunction\">TEXTJOIN</link></variable>"
-msgstr ""
+msgstr "<variable id=\"textjoinfunct\"><link href=\"text/scalc/01/func_textjoin.xhp\" name=\"funzionetestounisci\">TESTO.UNISCI</link></variable>"
#: func_textjoin.xhp
msgctxt ""
@@ -56111,7 +56110,7 @@ msgctxt ""
"par_id121556227727948\n"
"help.text"
msgid "<variable id=\"textjoinfunction\"><ahelp hid=\".\">Concatenates one or more strings, and uses delimiters between them.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"textjoinfunction\"><ahelp hid=\".\">Combina una o più stringhe e le separa con delimitatori.</ahelp></variable>"
#: func_textjoin.xhp
msgctxt ""
@@ -56119,7 +56118,7 @@ msgctxt ""
"par_id541556228253979\n"
"help.text"
msgid "TEXTJOIN( delimiter, skip_empty, string1[, string2][, …] )"
-msgstr ""
+msgstr "TESTO.UNISCI(delimitatore, ignora_vuote, stringa1[, stringa2][, …])"
#: func_textjoin.xhp
msgctxt ""
@@ -56127,7 +56126,7 @@ msgctxt ""
"par_id741556228390897\n"
"help.text"
msgid "<emph>delimiter</emph> is a text string and can be a range."
-msgstr ""
+msgstr "<emph>delimitatore</emph> è una stringa di testo e può essere un'area."
#: func_textjoin.xhp
msgctxt ""
@@ -56135,7 +56134,7 @@ msgctxt ""
"par_id621556228397269\n"
"help.text"
msgid "<emph>skip_empty</emph> is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE, empty strings will be ignored."
-msgstr ""
+msgstr "<emph>ignora_vuote</emph> è un argomento logico (VERO o FALSO, 1 o 0). Se VERO ignora le stringhe vuote."
#: func_textjoin.xhp
msgctxt ""
@@ -56143,7 +56142,7 @@ msgctxt ""
"par_id631556228516997\n"
"help.text"
msgid "<emph>string1[, string2][, …]</emph> are strings or references to cells or ranges that contains text to join."
-msgstr ""
+msgstr "<emph>stringa1[, stringa2][, …]</emph> sono stringhe o riferimenti a celle o intervalli di celle contenenti testo da unire."
#: func_textjoin.xhp
msgctxt ""
@@ -56151,7 +56150,7 @@ msgctxt ""
"par_id1001556228523394\n"
"help.text"
msgid "Ranges are traversed row by row (from top to bottom)."
-msgstr ""
+msgstr "Gli intervalli di celle vengono percorsi riga per riga (dall'alto in basso)."
#: func_textjoin.xhp
msgctxt ""
@@ -56159,7 +56158,7 @@ msgctxt ""
"par_id81556228530082\n"
"help.text"
msgid "If <emph>delimiter</emph> is a range, the range need not be of the same size as the number of strings to be joined."
-msgstr ""
+msgstr "Se il <emph>delimitatore</emph> è costituito da un intervallo di celle non deve necessariamente avere le stesse dimensioni del numero di stringhe da unire."
#: func_textjoin.xhp
msgctxt ""
@@ -56167,7 +56166,7 @@ msgctxt ""
"par_id831556228543099\n"
"help.text"
msgid "If there are more delimiters than strings to be joined, not all delimiters will be used."
-msgstr ""
+msgstr "Se i delimitatori sono più numerosi delle stringhe da unire, non verranno utilizzati tutti."
#: func_textjoin.xhp
msgctxt ""
@@ -56175,7 +56174,7 @@ msgctxt ""
"par_id321556228557611\n"
"help.text"
msgid "If there are less delimiters than strings to be joined, the delimiters will be used again from the start."
-msgstr ""
+msgstr "Se i delimitatori sono meno numerosi delle stringhe da unire verranno riutilizzati dall'inizio."
#: func_textjoin.xhp
msgctxt ""
@@ -56183,7 +56182,7 @@ msgctxt ""
"par_id441556229012536\n"
"help.text"
msgid "<input>=TEXTJOIN(\" \",TRUE, \"Here\", \"comes\", \"the\", \"sun\")</input> returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored."
-msgstr ""
+msgstr "<input>=TESTO.UNISCI(\" \",VERO, \"Ecco\", \"che torna\", \"il\", \"sole\")</input> restituisce \"Ecco che torna il sole\" con il carattere spazio in qualità di delimitatore e le stringhe vuote vengono ignorate."
#: func_textjoin.xhp
msgctxt ""
@@ -56191,7 +56190,7 @@ msgctxt ""
"par_id441556239012536\n"
"help.text"
msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, <input>=TEXTJOIN(\"-\",TRUE,A1:B2)</input> returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored."
-msgstr ""
+msgstr "Se l'intervallo A1:B2 contiene rispettivamente \"Ecco\", \"che torna\", \"il\", \"sole\", <input>=TESTO.UNISCI(\"-\",VERO,A1:B2)</input> restituisce \"Ecco-che-torna-il-sole\" con il carattere trattino in qualità di delimitatore e le stringhe vuote vengono ignorate."
#: func_textjoin.xhp
msgctxt ""
@@ -56199,7 +56198,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatena\">CONCATENA</link>"
#: func_time.xhp
msgctxt ""
@@ -57063,7 +57062,7 @@ msgctxt ""
"par_id3150704\n"
"help.text"
msgid "<item type=\"input\">=WEEKNUM(DATE(1995;1;1);1)</item> returns 1"
-msgstr ""
+msgstr "<item type=\"input\">=NUM.SETTIMANA(DATA(1995;1;1);1)</item> restituisce 1"
#: func_weeknum.xhp
msgctxt ""
@@ -57079,7 +57078,7 @@ msgctxt ""
"par_id3149793\n"
"help.text"
msgid "<item type=\"input\">=WEEKNUM(DATE(1995;1;1);21)</item> returns 52. Week 1 starts on Monday, 1995-01-02."
-msgstr ""
+msgstr "<item type=\"input\">=NUM.SETTIMANA(DATA(1995;1;1);21)</item> restituisce 52. La settimana 1 inizia lunedì 02/01/1995."
#: func_weeknum.xhp
msgctxt ""
@@ -57087,7 +57086,7 @@ msgctxt ""
"par_id3149794\n"
"help.text"
msgid "<item type=\"input\">=WEEKNUM(DATE(1999;1;1);21)</item> returns 53. Week 1 starts on Monday, 1999-01-04."
-msgstr ""
+msgstr "<item type=\"input\">=NUM.SETTIMANA(DATA(1999;1;1);21)</item> restituisce 53. La settimana 1 inizia lunedì 04/01/1999."
#: func_weeknum_ooo.xhp
msgctxt ""
@@ -57183,7 +57182,7 @@ msgctxt ""
"par_id3150704\n"
"help.text"
msgid "<item type=\"input\">=WEEKNUM_OOO(DATE(1995;1;1);1)</item> returns 1"
-msgstr ""
+msgstr "<item type=\"input\">=NUM.SETTIMANA_OOO(DATA(1995;1;1);1)</item> restituisce 1"
#: func_weeknum_ooo.xhp
msgctxt ""
@@ -57191,7 +57190,7 @@ msgctxt ""
"par_id3149792\n"
"help.text"
msgid "<item type=\"input\">=WEEKNUM_OOO(DATE(1995;1;1);2)</item> returns 52. Week 1 starts on Monday, 1995-01-02."
-msgstr ""
+msgstr "<item type=\"input\">=NUM.SETTIMANA_OOO(DATA(1995;1;1);2)</item> restituisce 52. La settimana 1 inizia lunedì 02/01/1995."
#: func_weeknumadd.xhp
msgctxt ""
@@ -57311,7 +57310,7 @@ msgctxt ""
"par_id241020160008306838\n"
"help.text"
msgid "WORKDAY.INTL(StartDate; Days; Weekend; Holidays)"
-msgstr ""
+msgstr "GIORNO.LAVORATIVO.INTL(Data iniziale; Giorni; Fine settimana; Vacanze)"
#: func_workday.intl.xhp
msgctxt ""
@@ -57535,7 +57534,7 @@ msgctxt ""
"par_id3146142\n"
"help.text"
msgid "<item type=\"input\">=WORKDAY(C3;D3;F3:J3)</item> returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
-msgstr ""
+msgstr "<item type=\"input\">=GIORNO.LAVORATIVO(C3;D3;F3:J3)</item> restituisce il 28/12/2001. Formattate il risultato, in forma di numero seriale, come data, ad esempio nel formato GG/MM/AAAA."
#: func_workday.xhp
msgctxt ""
@@ -57767,7 +57766,7 @@ msgctxt ""
"par_id3154632\n"
"help.text"
msgid "<item type=\"input\">=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0)</item> returns 0.50."
-msgstr ""
+msgstr "<item type=\"input\">=FRAZIONE.ANNO(\"1/1/2008\"; \"01/07/2008\";0)</item> restituisce 0,50."
#: live_data_stream.xhp
msgctxt ""
@@ -58743,7 +58742,7 @@ msgctxt ""
"par_id841554943563747\n"
"help.text"
msgid "F-critical"
-msgstr ""
+msgstr "Valore critico di F"
#: statistics.xhp
msgctxt ""
@@ -58759,7 +58758,7 @@ msgctxt ""
"par_id411554944014360\n"
"help.text"
msgid "3.340385558"
-msgstr ""
+msgstr "3,340385558"
#: statistics.xhp
msgctxt ""
@@ -60367,7 +60366,7 @@ msgctxt ""
"par_id861521496523518\n"
"help.text"
msgid "This option is only available if <emph>Enable experimental features</emph> is selected 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 "L'opzione è disponibile solo se la casella <emph>Abilita le funzionalità sperimentali</emph> è stata selezionata in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Avanzate</emph>."
#: xml_source.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/scalc/02.po b/source/it/helpcontent2/source/text/scalc/02.po
index ab4da34b9bb..962f8233e4b 100644
--- a/source/it/helpcontent2/source/text/scalc/02.po
+++ b/source/it/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-01-08 12:14+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2019-07-26 11:04+0000\n"
+"Last-Translator: Elisabetta Manuele <calembour@hotmail.it>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\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: 1546949689.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564139095.000000\n"
#: 02130000.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id3154908\n"
"help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>."
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Formato - Celle - Numeri\">Formato - Celle - Numeri</link>."
#: 02160000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/scalc/04.po b/source/it/helpcontent2/source/text/scalc/04.po
index 834a61f349c..a6ef591cd7c 100644
--- a/source/it/helpcontent2/source/text/scalc/04.po
+++ b/source/it/helpcontent2/source/text/scalc/04.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2018-01-24 15:52+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2019-07-26 11:06+0000\n"
+"Last-Translator: Elisabetta Manuele <calembour@hotmail.it>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\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: 1516809163.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564139209.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"hd_id451550311052582\n"
"help.text"
msgid "Shift+Space"
-msgstr ""
+msgstr "Maiusc+Spazio"
#: 01020000.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id971550311052582\n"
"help.text"
msgid "Selects the current row or extends the existing selection to all respective rows."
-msgstr ""
+msgstr "Seleziona la riga in uso o estende la selezione esistente a tutte le rispettive righe."
#: 01020000.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"hd_id281550311052582\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Space"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Spazio"
#: 01020000.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_id261550311052582\n"
"help.text"
msgid "Selects the current column or extends the existing selection to all respective columns."
-msgstr ""
+msgstr "Seleziona la colonna in uso o estende la selezione esistente a tutte le rispettive colonne."
#: 01020000.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"hd_id311550311052582\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Space"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Maiusc+Spazio"
#: 01020000.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_id851550311052582\n"
"help.text"
msgid "Selects all cells in the sheet."
-msgstr ""
+msgstr "Seleziona tutte le celle del foglio."
#: 01020000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/scalc/05.po b/source/it/helpcontent2/source/text/scalc/05.po
index 278cb4711d9..660186f7cbf 100644
--- a/source/it/helpcontent2/source/text/scalc/05.po
+++ b/source/it/helpcontent2/source/text/scalc/05.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-01-08 19:13+0000\n"
-"Last-Translator: Alessia Mazzarini <alessiamazzarini@gmail.com>\n"
+"PO-Revision-Date: 2019-07-26 11:09+0000\n"
+"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\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: 1546974826.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564139387.000000\n"
#: 02140000.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id231549820000708\n"
"help.text"
msgid "533"
-msgstr ""
+msgstr "533"
#: 02140000.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"par_id951549820044260\n"
"help.text"
msgid "Nested arrays are not supported"
-msgstr ""
+msgstr "I vettori incapsulati non sono supportati"
#: 02140000.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id781549820065619\n"
"help.text"
msgid "For example, ={1;{2}}"
-msgstr ""
+msgstr "Per esempio, ={1;{2}}"
#: 02140000.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_id961549825716936\n"
"help.text"
msgid "538"
-msgstr ""
+msgstr "538"
#: 02140000.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"par_id521549825734781\n"
"help.text"
msgid "Error: Array or matrix size"
-msgstr ""
+msgstr "Errore: dimensione array o matrice"
#: 02140000.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"par_id601549825744677\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 02140000.xhp
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"par_id41549825806618\n"
"help.text"
msgid "539"
-msgstr ""
+msgstr "539"
#: 02140000.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"par_id931549825818729\n"
"help.text"
msgid "Unsupported inline array content"
-msgstr ""
+msgstr "Contenuto della matrice in linea non supportato"
#: 02140000.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"par_id551549825825905\n"
"help.text"
msgid "For example, ={1+2}"
-msgstr ""
+msgstr "Per esempio, ={1+2}"
#: 02140000.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"par_id441549825884434\n"
"help.text"
msgid "540"
-msgstr ""
+msgstr "540"
#: 02140000.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"par_id131549825893410\n"
"help.text"
msgid "External content disabled"
-msgstr ""
+msgstr "Contenuto esterno disabilitato"
#: 02140000.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"par_id881549825900965\n"
"help.text"
msgid "Happens if a function that requires (re)loading of external sources is encountered and the user hasn't confirmed reloading of external sources yet"
-msgstr ""
+msgstr "Si verifica in presenza di una funzione che richiede un nuovo caricamento di sorgenti esterne e l'utente non ha ancora confermato l'operazione."
#: empty_cells.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"par_id291535142746121\n"
"help.text"
msgid "Case"
-msgstr ""
+msgstr "Caso"
#: empty_cells.xhp
msgctxt ""
@@ -1070,7 +1070,7 @@ msgctxt ""
"par_id251535143557533\n"
"help.text"
msgid "Case"
-msgstr ""
+msgstr "Caso"
#: empty_cells.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/scalc/guide.po b/source/it/helpcontent2/source/text/scalc/guide.po
index 263331f1687..1b7c62360da 100644
--- a/source/it/helpcontent2/source/text/scalc/guide.po
+++ b/source/it/helpcontent2/source/text/scalc/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-01-08 19:16+0000\n"
-"Last-Translator: Alessia Mazzarini <alessiamazzarini@gmail.com>\n"
+"PO-Revision-Date: 2019-07-26 11:21+0000\n"
+"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\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: 1546974995.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564140096.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -3910,7 +3910,7 @@ msgctxt ""
"par_id1846980\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org: Defining a Data Range\">Wiki page about defining a data range</link>"
-msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range/it\" name=\"wiki.documentfoundation.org: Definire un intervallo di dati\">Pagina del wiki su come definire un intervallo di dati</link>"
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org: Defining a Data Range\">Pagina del wiki su come definire un intervallo di dati</link> (in inglese)"
#: datapilot.xhp
msgctxt ""
@@ -5230,7 +5230,7 @@ msgctxt ""
"par_id3154733\n"
"help.text"
msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when clicking), and then activating the <emph>Format Cells</emph> dialog in <item type=\"menuitem\">Format - Cells</item>. In this dialog, you can select attributes such as shadows and backgrounds."
-msgstr ""
+msgstr "Potete assegnare un formato a qualsiasi gruppo di celle, prima selezionandole (per la selezione di più celle tenete premuto il tasto <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline> mentre fate clic), poi attivando la finestra di dialogo <emph>Formato celle</emph> nel menu <item type=\"menuitem\">Formato - Celle</item>. Nella finestra selezionate gli attributi, quali l'ombreggiatura e gli sfondi."
#: format_table.xhp
msgctxt ""
@@ -10054,7 +10054,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "Then click OK, and you will see that only the rows from the original sheet whose contents have met the search criteria are still visible. All other rows are temporarily hidden and can be made to reappear with the <emph>Format - Rows - Show </emph>command."
-msgstr ""
+msgstr "Al termine, fate clic su OK per visualizzare solo le righe del foglio d'origine che soddisfano i criteri di ricerca. Tutte le altre righe vengono temporaneamente nascoste, ma possono essere nuovamente visualizzate tramite menu <emph>Formato - Righe - Mostra</emph>."
#: specialfilter.xhp
msgctxt ""
@@ -10926,7 +10926,7 @@ msgctxt ""
"par_id3145799\n"
"help.text"
msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Format - Cells</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Formato - Celle\">Formato - Celle</link>"
#: userdefined_function.xhp
msgctxt ""
@@ -11318,7 +11318,7 @@ msgctxt ""
"par_id3149011\n"
"help.text"
msgid "To display the error message, select <link href=\"text/scalc/01/12120300.xhp\" name=\"erroralert\">Show error message when invalid values are entered</link>."
-msgstr ""
+msgstr "Per visualizzare il messaggio di errore, selezionate <link href=\"text/scalc/01/12120300.xhp\" name=\"avvisoerrore\">Mostra messaggio di errore se si digitano valori non validi</link>."
#: validity.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/schart/00.po b/source/it/helpcontent2/source/text/schart/00.po
index a358961b61d..75c1027bf69 100644
--- a/source/it/helpcontent2/source/text/schart/00.po
+++ b/source/it/helpcontent2/source/text/schart/00.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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2018-06-07 14:44+0000\n"
+"PO-Revision-Date: 2019-07-18 21:18+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.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: 1528382657.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563484713.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id3149121\n"
"help.text"
msgid "Choose <emph>Insert - Legend</emph> (Charts)"
-msgstr ""
+msgstr "Scegliete <emph>Inserisci - Legenda</emph> (Grafici)"
#: 00000004.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id3156385\n"
"help.text"
msgid "Choose <emph>Insert - Data Labels</emph> (Charts)"
-msgstr ""
+msgstr "Scegliete <emph>Inserisci - Didascalia dati</emph> (Grafici)"
#: 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 ""
+msgstr "<variable id=\"efgaug\">Scegliete <emph>Inserisci - Assi</emph> (Grafici)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"par_id3150297\n"
"help.text"
msgid "Choose <emph>Insert - Grids</emph> (Charts)"
-msgstr ""
+msgstr "Scegliete <emph>Inserisci - Griglia</emph> (Grafici)"
#: 00000004.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"par_id3148869\n"
"help.text"
msgid "<variable id=\"efgsta\">Choose <emph>Insert - X Error Bars</emph>, or <emph>Insert - Y Error Bars</emph> (Charts)</variable>"
-msgstr ""
+msgstr "<variable id=\"efgsta\">Scegliete <emph>Inserisci - Barre errore X</emph> o <emph>Inserisci - Barre errore Y</emph> (Grafici)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id3154532\n"
"help.text"
msgid "<variable id=\"sonderz\">Choose <emph>Insert - Special Character</emph> (Charts)</variable>"
-msgstr ""
+msgstr "<variable id=\"sonderz\">Scegliete <emph>Inserisci - Carattere speciale</emph> (Grafici)</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 ""
+msgstr "<variable id=\"frtoes\">Scegliete <emph>Formato - Formato selezione</emph> (Grafici)</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 ""
+msgstr "<variable id=\"frtttl\">Scegliete <emph>Formato - Titolo</emph> (Grafici)</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 ""
+msgstr "<variable id=\"frttya\">Scegliete <emph>Formato - Titolo</emph> (Grafici)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id3147402\n"
"help.text"
msgid "<variable id=\"frttyab\">Choose <emph>Format - Axis</emph> (Charts)</variable>"
-msgstr ""
+msgstr "<variable id=\"frttyab\">Scegliete <emph>Formato - Asse</emph> (Grafici)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id3147297\n"
"help.text"
msgid "<variable id=\"frtlgd\">Choose <emph>Format - Legend</emph>, or <emph>Format - Format Selection - Legend</emph> (Charts)</variable>"
-msgstr ""
+msgstr "<variable id=\"frtlgd\">Scegliete <emph>Formato - Legenda</emph>, o <emph>Formato - Formato selezione - Legenda</emph> (Grafici)</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 ""
+msgstr "<variable id=\"frtaa\">Scegliete <emph>Formato - Asse - Asse X/Asse X secondario/Asse Z/Tutti gli assi</emph> (Grafici)</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 ""
+msgstr "<variable id=\"frtyas\">Scegliete <emph>Formato - Asse - Asse Y/Asse Y secondario</emph> (Grafici)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"par_id3150477\n"
"help.text"
msgid "<variable id=\"frtgt\">Choose <emph>Format - Grid</emph> (Charts)</variable>"
-msgstr ""
+msgstr "<variable id=\"frtgt\">Scegliete <emph>Formato - Griglia</emph> (Grafici)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"par_id3150746\n"
"help.text"
msgid "<variable id=\"frtgtr\">Choose <emph>Format - Grid - X, Y, Z Axis Major Grid/ X, Y, Z Minor Grid/ All Axis Grids</emph> (Charts)</variable>"
-msgstr ""
+msgstr "<variable id=\"frtgtr\">Scegliete <emph>Formato - Griglia - Griglia principale asse X, Y, Z/ Griglia ausiliaria X, Y, Z/ Tutte le griglie degli assi</emph> (Grafici)</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 ""
+msgstr "<variable id=\"frtdgb\">Scegliete <emph>Formato - Pavimento del grafico</emph> (Grafici)</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 ""
+msgstr "<variable id=\"frtdgf\">Scegliete <emph>Formato - Area del grafico</emph> (Grafici)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id3155830\n"
"help.text"
msgid "Choose <emph>Format - Chart Type</emph> (Charts)"
-msgstr ""
+msgstr "Scegliete <emph>Formato - Tipo di grafico</emph> (Grafici)"
#: 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 ""
+msgstr "<variable id=\"frtdda\">Scegliete <emph>Formato - Vista 3D</emph> (Grafici)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_id3150661\n"
"help.text"
msgid "Choose <emph>Format - Arrangement</emph> (Charts)"
-msgstr ""
+msgstr "Scegliete <emph>Formato - Disposizione</emph> (Grafici)"
#: 00000004.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id3153046\n"
"help.text"
msgid "Open context menu - choose <emph>Arrangement</emph> (Charts)"
-msgstr ""
+msgstr "Aprite il menu di contesto e scegliete <emph>Disposizione</emph> (Grafici)"
#: 00000004.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_id733359\n"
"help.text"
msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
-msgstr ""
+msgstr "<variable id=\"smlp\">Nella finestra di dialogo Tipo di grafico di un grafico a linee o un grafico XY che visualizza linee, scegliete Smorza nel menu a tendina del tipo Linee, poi premete il pulsante Proprietà.</variable>"
#: 00000004.xhp
msgctxt ""
@@ -494,4 +494,4 @@ msgctxt ""
"par_id8513095\n"
"help.text"
msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
-msgstr ""
+msgstr "<variable id=\"stlp\">Nella finestra di dialogo Tipo di grafico di un grafico a linee o un grafico XY che visualizza linee, scegliete A gradini nel menu a tendina del tipo Linee, poi premete il pulsante Proprietà.</variable>"
diff --git a/source/it/helpcontent2/source/text/schart/01.po b/source/it/helpcontent2/source/text/schart/01.po
index 4be9fc74c1b..650bf634c19 100644
--- a/source/it/helpcontent2/source/text/schart/01.po
+++ b/source/it/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2018-06-07 14:45+0000\n"
+"PO-Revision-Date: 2019-07-18 21:34+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.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: 1528382703.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563485645.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -5718,7 +5718,7 @@ msgctxt ""
"par_id3516953\n"
"help.text"
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\"><emph>Chart Wizard</emph></link> you can choose a chart type."
-msgstr ""
+msgstr "Potete scegliere il tipo di grafico nella prima pagina della <link href=\"text/schart/01/wiz_chart_type.xhp\"><emph>Creazione guidata grafico</emph></link>."
#: type_stock.xhp
msgctxt ""
@@ -6150,7 +6150,7 @@ msgctxt ""
"par_id6138492\n"
"help.text"
msgid "Choose the <emph>Stock</emph> chart type on the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\"><emph>Chart Wizard</emph></link>. Then select one of the four variants."
-msgstr ""
+msgstr "Scegliete il tipo di grafico <emph>Titoli</emph> nella prima pagina della <link href=\"text/schart/01/wiz_chart_type.xhp\"><emph>Creazione guidata grafico</emph></link>. Poi selezionate una delle quattro varianti."
#: type_stock.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_id291451\n"
"help.text"
msgid "Based on <emph>low</emph> and <emph>high</emph> column the Type 1 shows the distance between bottom price (low) and top price (high) by a vertical line."
-msgstr ""
+msgstr "Basato sulle colonne <emph>bassi</emph> e <emph>alti</emph>, il Tipo 1 mostra la distanza tra i prezzi più bassi (basso) e quelli più alti (alto) per mezzo di una linea verticale."
#: 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 ""
+msgstr "Basata sulle colonne <emph>bassi, alti</emph> e <emph>vicini</emph>, il Tipo 1 mostra un segno orizzontale addizionale <emph>per</emph> i prezzi di chiusura."
#: 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\"><emph>Chart Data Table</emph></link> from the <emph>View</emph> menu or from the context menu of the chart in edit mode."
-msgstr ""
+msgstr "Per modificare la serie dei dati di un grafico che ha i propri dati, scegliete <link href=\"text/schart/01/03010000.xhp\"><emph>Tabella dati del grafico</emph></link> dal menu <emph>Visualizza</emph> o dal menu di contesto del grafico in modo modifica."
#: type_stock.xhp
msgctxt ""
@@ -6270,7 +6270,7 @@ msgctxt ""
"par_id95828\n"
"help.text"
msgid "For a new stock chart first use a column chart. Add the columns you need and enter your data in the order which is shown in the example, omitting any columns not required for the desired variant. Use <emph>Move Series Right</emph> to change the column order. Close the chart data table. Now use the <emph>Chart Type</emph> dialog to change to the stock chart variant."
-msgstr ""
+msgstr "Per un nuovo grafico titoli prima usate un grafico a colonne. Aggiungete le colonne che vi servono e digitate i dati nell'ordine mostrato nell'esempio, lasciate fuori le colonne che non vi servono per la variante desiderata. Usate <emph>Sposta la serie a destra</emph> per modificare la sequenza delle colonne. Chiudete la tabella dei dati del grafico. Ora usate la finestra di dialogo <emph>Tipo di grafico</emph> per passare alla variante del grafico titoli."
#: 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 <emph>Chart Wizard</emph> or in the <link href=\"text/schart/01/wiz_data_range.xhp\"><emph>Data Range</emph></link> dialog. For fine tuning use the <link href=\"text/schart/01/wiz_data_series.xhp\"><emph>Data Series</emph></link> dialog."
-msgstr ""
+msgstr "Potete scegliere o modificare un intervallo di dati nella seconda pagina della <emph>Creazione guidata grafico</emph> o nella finestra di dialogo <link href=\"text/schart/01/wiz_data_range.xhp\"><emph>Area dati</emph></link>. Per una regolazione più precisa usate la finestra di dialogo <link href=\"text/schart/01/wiz_data_series.xhp\"><emph>Serie di dati</emph></link>."
#: type_stock.xhp
msgctxt ""
@@ -6350,7 +6350,7 @@ msgctxt ""
"par_id1589098\n"
"help.text"
msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, then drag to select the data range. When you release the mouse, the data are entered. Click <emph>Select data range</emph> again to add a data range. In the input field of the minimized dialog, click after the entry and type a semicolon. Then drag to select the next range."
-msgstr ""
+msgstr "In Calc, fate clic su <emph>Seleziona area dati</emph> per ridurre la finestra di dialogo, poi trascinate per selezionare l'intervallo dati. Quando rilasciate il mouse, i dati vengono inseriti. Fate clic di nuovo su <emph>Seleziona area dati</emph> per aggiungere un intervallo di dati. Nel campo di digitazione della finestra di dialogo ridotta, fate clic dopo la voce e digitate un punto e virgola. Poi trascinate per selezionare l'intervallo successivo."
#: type_stock.xhp
msgctxt ""
@@ -6382,7 +6382,7 @@ msgctxt ""
"par_id3486434\n"
"help.text"
msgid "You can organize data series and edit the source for parts of single data series on the third page of the <emph>Chart Wizard</emph> or on the page <emph>Data Series</emph> in the <emph>Data Range</emph> dialog."
-msgstr ""
+msgstr "Potete organizzare le serie di dati e modificarne la sorgente per parti o singole serie di dati nella terza pagina della <emph>procedura guidata Grafico</emph> o nella pagina <emph>Serie di dati</emph> nella finestra di dialogo <emph>Area dati</emph>."
#: type_stock.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/sdraw.po b/source/it/helpcontent2/source/text/sdraw.po
index 2db8a11697d..3ca1e70e84b 100644
--- a/source/it/helpcontent2/source/text/sdraw.po
+++ b/source/it/helpcontent2/source/text/sdraw.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-06-30 16:41+0000\n"
+"PO-Revision-Date: 2019-07-22 16:32+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: 1561912919.000000\n"
+"X-POOTLE-MTIME: 1563813163.000000\n"
#: main0000.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"hd_id3150868\n"
"help.text"
msgid "<link href=\"text/sdraw/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_edit.xhp\" name=\"Modifica\">Modifica</link>"
#: main_edit.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"hd_id3147005\n"
"help.text"
msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplica\">Duplica</link>"
#: main_edit.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"hd_id3154650\n"
"help.text"
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Comando di campo\">Comando di campo</link>"
#: main_edit.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"hd_id3153770\n"
"help.text"
msgid "<link href=\"text/sdraw/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_format.xhp\" name=\"Formato\">Formato</link>"
#: main_format.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"par_id3152578\n"
"help.text"
msgid "Contains commands for formatting the layout and the contents of your document."
-msgstr ""
+msgstr "Contiene comandi con cui potete formattare il layout e il contenuto di un documento."
#: main_format.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"hd_id3148797\n"
"help.text"
msgid "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insert\">Insert</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_insert.xhp\" name=\"Inserisci\">Inserisci</link>"
#: main_insert.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"hd_id41556822227733\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Page</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Pagina</link>"
#: main_page.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"par_id771556822318420\n"
"help.text"
msgid "This menu provides page management and navigation commands."
-msgstr ""
+msgstr "Questo menu contiene i comandi per la gestione e la navigazione nella pagina."
#: main_page.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"hd_id131556822326832\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"Nuova pagina\">Nuova pagina</link>"
#: main_page.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"hd_id3155091\n"
"help.text"
msgid "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Proprietà\">Proprietà</link>"
#: main_tools.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/sdraw/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_tools.xhp\" name=\"Strumenti\">Strumenti</link>"
#: main_tools.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/sdraw/guide.po b/source/it/helpcontent2/source/text/sdraw/guide.po
index 950b58a9862..3b3c9e8d463 100644
--- a/source/it/helpcontent2/source/text/sdraw/guide.po
+++ b/source/it/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-07-16 12:07+0000\n"
-"Last-Translator: Paolo Pelloni <info@paolopelloni.it>\n"
+"PO-Revision-Date: 2019-07-18 13:11+0000\n"
+"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\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: 1563278851.000000\n"
+"X-POOTLE-MTIME: 1563455517.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"par_id3154253\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Shape - Arrange</item> to open the context menu and choose <emph>Behind Object</emph>. The mouse pointer changes to a hand."
-msgstr "Scegliete <item type=\"menuitem\">Forma - Disponi</item> per aprire il menu di contesto e scegliete <emph>Dietro all'oggetto</emph>. Il puntatore del mouse assume la forma di una mano."
+msgstr "Scegliete <item type=\"menuitem\">Forma - Disponi</item> per aprire il menu di contesto e scegliete <emph>Dietro l'oggetto</emph>. Il puntatore del mouse assume la forma di una mano."
#: align_arrange.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/00.po b/source/it/helpcontent2/source/text/shared/00.po
index 80c0fd4d8d5..093b97f5a6d 100644
--- a/source/it/helpcontent2/source/text/shared/00.po
+++ b/source/it/helpcontent2/source/text/shared/00.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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-07-01 13:31+0000\n"
+"PO-Revision-Date: 2019-07-29 19:54+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: 1561987883.000000\n"
+"X-POOTLE-MTIME: 1564430097.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -5702,7 +5702,7 @@ msgctxt ""
"par_id3152807\n"
"help.text"
msgid "<variable id=\"gruppen1\">In form design, click the <emph>Group Box</emph> icon on the toolbar<br/>and use the mouse to create a frame - Wizards page 1.</variable>"
-msgstr "<variable id=\"gruppen1.\">Nella struttura del formulario, fate clic sull'icona <emph>Casella di gruppo</emph> nella barra degli strumenti<br/>e usate il mouse per creare una cornice - Pagina 1 della procedura guidata.</variable>"
+msgstr "<variable id=\"gruppen1\">Nella struttura del formulario, fate clic sull'icona <emph>Casella di gruppo</emph> nella barra degli strumenti<br/>e usate il mouse per creare una cornice - Pagina 1 della procedura guidata.</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5710,7 +5710,7 @@ msgctxt ""
"par_id3150571\n"
"help.text"
msgid "<variable id=\"gruppen2\">In form design, click the <emph>Group Box</emph> icon on the toolbar<br/>and use the mouse to create a frame - Wizards page 2.</variable>"
-msgstr "<variable id=\"gruppen2.\">Nella struttura del formulario, fate clic sull'icona <emph>Casella di gruppo</emph> nella barra degli strumenti<br/>e usate il mouse per creare una cornice - Pagina 2 della procedura guidata.</variable>"
+msgstr "<variable id=\"gruppen2\">Nella struttura del formulario, fate clic sull'icona <emph>Casella di gruppo</emph> nella barra degli strumenti<br/>e usate il mouse per creare una cornice - Pagina 2 della procedura guidata.</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5718,7 +5718,7 @@ msgctxt ""
"par_id3145251\n"
"help.text"
msgid "<variable id=\"gruppen3\">In form design, click the <emph>Group Box</emph> icon on the toolbar<br/>and use the mouse to create a frame - Wizards page 3.</variable>"
-msgstr "<variable id=\"gruppen3.\">Nella struttura del formulario, fate clic sull'icona <emph>Casella di gruppo</emph> nella barra degli strumenti<br/>e usate il mouse per creare una cornice - Pagina 3 della procedura guidata.</variable>"
+msgstr "<variable id=\"gruppen3\">Nella struttura del formulario, fate clic sull'icona <emph>Casella di gruppo</emph> nella barra degli strumenti<br/>e usate il mouse per creare una cornice - Pagina 3 della procedura guidata.</variable>"
#: 00000401.xhp
msgctxt ""
@@ -7214,7 +7214,7 @@ msgctxt ""
"par_id511543350796749\n"
"help.text"
msgid "<variable id=\"beanshell\">Choose <emph>Tools - Macros - Organize Macros - BeanShell</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"beanshell\">Scegliete <emph>Strumenti - Macro - Organizza macro - BeanShell</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7222,7 +7222,7 @@ msgctxt ""
"par_id661543350803067\n"
"help.text"
msgid "<variable id=\"javascript\">Choose <emph>Tools - Macros - Organize Macros - JavaScript</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"javascript\">Scegliete <emph>Strumenti - Macro - Organizza macro - JavaScript</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7230,7 +7230,7 @@ msgctxt ""
"par_id441543350811395\n"
"help.text"
msgid "<variable id=\"python\">Choose <emph>Tools - Macros - Organize Macros - Python</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"python\">Scegliete <emph>Strumenti - Macro - Organizza macro - Python</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7622,7 +7622,7 @@ msgctxt ""
"par_id3153958\n"
"help.text"
msgid "<variable id=\"etsofi\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - VBA Properties</emph>.</variable>"
-msgstr "<variable id=\"etsofi\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</caseinline><defaultinline>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Carica/salva - Proprietà VBA</emph>.</variable>"
+msgstr "<variable id=\"etsofi\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Carica/salva - Proprietà VBA</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7630,7 +7630,7 @@ msgctxt ""
"par_id3153707\n"
"help.text"
msgid "<variable id=\"etsofi2\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - Microsoft Office</emph>.</variable>"
-msgstr "<variable id=\"etsofi2\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</caseinline><defaultinline>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Carica/salva - Microsoft Office</emph>.</variable>"
+msgstr "<variable id=\"etsofi2\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Carica/salva - Microsoft Office</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7638,7 +7638,7 @@ msgctxt ""
"par_id3145667\n"
"help.text"
msgid "<variable id=\"html\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph>.</variable>"
-msgstr "<variable id=\"html\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</caseinline><defaultinline>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Carica/Salva -Compatibilità HTML</emph>.</variable>"
+msgstr "<variable id=\"html\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Carica/Salva -Compatibilità HTML</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7766,7 +7766,7 @@ msgctxt ""
"par_id3155333\n"
"help.text"
msgid "<variable id=\"layout\">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/%PRODUCTNAME Writer/Web - View</emph>.</variable>"
-msgstr "<variable id=\"layout\">Aprite un documento di testo, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</caseinline><defaultinline>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Vista</emph>.</variable>"
+msgstr "<variable id=\"layout\">Aprite un documento di testo, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Vista</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7774,7 +7774,7 @@ msgctxt ""
"par_id3146316\n"
"help.text"
msgid "<variable id=\"registerschattencursor\">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/%PRODUCTNAME Writer/Web - Formatting Aids</emph>.</variable>"
-msgstr "<variable id=\"registerschattencursor\">Aprite un documento di testo, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</caseinline><defaultinline>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Formattazione</emph>.</variable>"
+msgstr "<variable id=\"registerschattencursor\">Aprite un documento di testo, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Formattazione</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7806,7 +7806,7 @@ msgctxt ""
"par_id3155607\n"
"help.text"
msgid "<variable id=\"drucken1\">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 - Print</emph>.</variable>"
-msgstr "<variable id=\"drucken1\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</caseinline><defaultinline>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Stampa</emph>.</variable>"
+msgstr "<variable id=\"drucken1\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Stampa</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8214,7 +8214,7 @@ msgctxt ""
"par_id3149119\n"
"help.text"
msgid "<variable id=\"Verzeichnis\"><emph>Path</emph> 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>Pulsante per la selezione del <emph>percorso</emph> in diverse procedure guidate / Pulsanti <emph>Modifica</emph> per alcune voci in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - Percorsi</emph>.</variable>"
+msgstr "<variable id=\"Verzeichnis\">Pulsante per la selezione del <emph>percorso</emph> in diverse procedure guidate / Pulsanti <emph>Modifica</emph> per alcune voci in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - Percorsi</emph>.</variable>"
#: 00000450.xhp
msgctxt ""
@@ -8230,7 +8230,7 @@ msgctxt ""
"par_id3149355\n"
"help.text"
msgid "<variable id=\"ldap\">In a database file window of type <emph>Address book - LDAP</emph>, choose <emph>Edit - Database - Properties</emph>.</variable>"
-msgstr "<variable id=\"ldap\">In una finestra di database di tipo <emph>Rubrica - LDAP</emph>, scegliete <emph>Modifica - Database - Proprietà<.emph>.</variable>"
+msgstr "<variable id=\"ldap\">In una finestra di database di tipo <emph>Rubrica - LDAP</emph>, scegliete <emph>Modifica - Database - Proprietà</emph>.</variable>"
#: 00000450.xhp
msgctxt ""
@@ -9014,7 +9014,7 @@ msgctxt ""
"par_id3148405\n"
"help.text"
msgid "Choose <emph>View - Styles</emph> - open context menu of a page style entry and choose <emph>Modify/New - Header</emph> tab."
-msgstr ""
+msgstr "Scegliete <emph>Visualizza - Stili</emph>, aprite il menu di contesto di uno stile di pagina e scegliete la scheda <emph>Modifica/Nuovo - Intestazione</emph>."
#: 00040500.xhp
msgctxt ""
@@ -9774,7 +9774,7 @@ msgctxt ""
"par_id3154023\n"
"help.text"
msgid "Choose <emph>Shape - Arrange</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Disponi</emph> ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -9806,7 +9806,7 @@ msgctxt ""
"par_id3148425\n"
"help.text"
msgid "Choose <emph>Shape - Arrange - Bring to Front</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Disponi - Porta in primo piano</emph> ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -9854,7 +9854,7 @@ msgctxt ""
"par_id3148396\n"
"help.text"
msgid "Choose <emph>Shape - Arrange - Bring Forward</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Disponi - Porta avanti</emph> ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -9902,7 +9902,7 @@ msgctxt ""
"par_id3150428\n"
"help.text"
msgid "Choose <emph>Shape - Arrange - Send Backward</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Disponi - Porta indietro</emph> ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -9950,7 +9950,7 @@ msgctxt ""
"par_id3148595\n"
"help.text"
msgid "Choose <emph>Shape - Arrange - Send to Back</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Disponi - Porta in fondo</emph> ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10038,7 +10038,7 @@ msgctxt ""
"par_id3146854\n"
"help.text"
msgid "Choose <emph>Format - Align</emph> ($[officename] Writer, $[officename] Calc)."
-msgstr ""
+msgstr "Scegliete <emph>Formato - Allinea</emph> ($[officename] Writer, $[officename] Calc)."
#: 00040501.xhp
msgctxt ""
@@ -10046,7 +10046,7 @@ msgctxt ""
"par_id3153914\n"
"help.text"
msgid "Choose <emph>Shape - Align</emph> (objects selected) ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Allinea</emph> (oggetti selezionati) ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10054,7 +10054,7 @@ msgctxt ""
"par_id3153185\n"
"help.text"
msgid "Open context menu - choose <emph>Align</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
-msgstr ""
+msgstr "Aprite il menu di contesto e scegliete <emph>Allinea</emph> (oggetti selezionati) ($[officename] Impress, $[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10062,7 +10062,7 @@ msgctxt ""
"par_id3168611\n"
"help.text"
msgid "Choose <emph>Format - Align - Left</emph> ($[officename] Writer, $[officename] Calc)."
-msgstr ""
+msgstr "Scegliete <emph>Formato - Allinea - A Sinistra</emph> ($[officename] Writer, $[officename] Calc)."
#: 00040501.xhp
msgctxt ""
@@ -10070,7 +10070,7 @@ msgctxt ""
"par_id3083450\n"
"help.text"
msgid "Choose <emph>Shape - Align - Left</emph> (selected objects) ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Allinea - A sinistra</emph> (oggetti selezionati) ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10078,7 +10078,7 @@ msgctxt ""
"par_id3150257\n"
"help.text"
msgid "Open context menu - choose <emph>Align - Left</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
-msgstr ""
+msgstr "Aprite il menu di contesto e scegliete <emph>Allinea - A sinistra</emph> (oggetti selezionati) ($[officename] Impress, $[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10110,7 +10110,7 @@ msgctxt ""
"par_id3150268\n"
"help.text"
msgid "Choose <emph>Format - Align - Centered</emph> ($[officename] Writer, $[officename] Calc)."
-msgstr ""
+msgstr "Scegliete <emph>Formato - Allinea - Centrato</emph> ($[officename] Writer, $[officename] Calc)."
#: 00040501.xhp
msgctxt ""
@@ -10118,7 +10118,7 @@ msgctxt ""
"par_id3157978\n"
"help.text"
msgid "Choose <emph>Shape - Align - Centered</emph> (objects selected) ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Allinea - Centrato</emph> (oggetti selezionati) ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10150,7 +10150,7 @@ msgctxt ""
"par_id3156546\n"
"help.text"
msgid "Choose <emph>Format - Align - Right</emph>."
-msgstr ""
+msgstr "Scegliete <emph>Formato - Allinea - A destra</emph>."
#: 00040501.xhp
msgctxt ""
@@ -10158,7 +10158,7 @@ msgctxt ""
"par_id3145073\n"
"help.text"
msgid "Choose <emph>Shape - Align - Right</emph> (objects selected) ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Allinea - A destra</emph> (oggetti selezionati) ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10190,7 +10190,7 @@ msgctxt ""
"par_id3153109\n"
"help.text"
msgid "Choose <emph>Format - Align - Top</emph> ($[officename] Writer, $[officename] Calc)."
-msgstr ""
+msgstr "Scegliete <emph>Formato - Allinea - In alto</emph> ($[officename] Writer, $[officename] Calc)."
#: 00040501.xhp
msgctxt ""
@@ -10198,7 +10198,7 @@ msgctxt ""
"par_id3150213\n"
"help.text"
msgid "Choose <emph>Shape - Align - Top</emph> (objects selected) ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Allinea - Sopra</emph> (oggetti selezionati) ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10206,7 +10206,7 @@ msgctxt ""
"par_id3155093\n"
"help.text"
msgid "Open context menu - choose <emph>Align - Top</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
-msgstr ""
+msgstr "Aprite il menu di contesto e scegliete <emph>Allinea - In alto</emph> (oggetti selezionati) ($[officename] Impress, $[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10238,7 +10238,7 @@ msgctxt ""
"par_id3153976\n"
"help.text"
msgid "Choose <emph>Format - Align - Centered</emph> ($[officename] Writer, $[officename] Calc)."
-msgstr ""
+msgstr "Scegliete <emph>Formato - Allinea - Centrato</emph> ($[officename] Writer, $[officename] Calc)."
#: 00040501.xhp
msgctxt ""
@@ -10246,7 +10246,7 @@ msgctxt ""
"par_id3153246\n"
"help.text"
msgid "Choose <emph>Shape - Align - Centered</emph> (objects selected) ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Allinea - Centrato</emph> (oggetti selezionati) ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10254,7 +10254,7 @@ msgctxt ""
"par_id3154614\n"
"help.text"
msgid "Open context menu - choose <emph>Align - Centered</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
-msgstr ""
+msgstr "Aprite il menu di contesto e scegliete <emph>Allinea - Al centro</emph> (oggetti selezionati) ($[officename] Impress, $[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10286,7 +10286,7 @@ msgctxt ""
"par_id3149896\n"
"help.text"
msgid "Choose <emph>Format - Align - Bottom</emph> ($[officename] Writer, $[officename] Calc)."
-msgstr ""
+msgstr "Scegliete <emph>Formato - Allinea - In basso</emph> ($[officename] Writer, $[officename] Calc)."
#: 00040501.xhp
msgctxt ""
@@ -10294,7 +10294,7 @@ msgctxt ""
"par_id3156049\n"
"help.text"
msgid "Choose <emph>Shape - Align - Bottom</emph> (objects selected) ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Allinea - In basso</emph> (oggetti selezionati) ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10542,7 +10542,7 @@ msgctxt ""
"par_id3151293\n"
"help.text"
msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"linienstile\">Scegliete la scheda <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - </emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - </emph></caseinline></switchinline><emph>Linea - Stili linee</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10550,7 +10550,7 @@ msgctxt ""
"par_id3149317\n"
"help.text"
msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"linienenden\">Scegliete la scheda <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - </emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - </emph></caseinline></switchinline><emph>Linea - Estremità linee</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10558,7 +10558,7 @@ msgctxt ""
"par_id3156082\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area</emph>."
-msgstr ""
+msgstr "Scegliete la scheda <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - </emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - </emph></caseinline></switchinline><emph>Area</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10590,7 +10590,7 @@ msgctxt ""
"par_id3154948\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
-msgstr ""
+msgstr "Scegliete la scheda <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - </emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - </emph></caseinline></switchinline><emph>Area - Area</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10774,7 +10774,7 @@ msgctxt ""
"par_id3150011\n"
"help.text"
msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"schatte\">Scegliete la scheda <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - </emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - </emph></caseinline></switchinline><emph>Area - Ombra</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10782,7 +10782,7 @@ msgctxt ""
"par_id3147441\n"
"help.text"
msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"verlauf\">Scegliete la scheda <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - </emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - </emph></caseinline></switchinline><emph>Area - Sfumatura</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10790,7 +10790,7 @@ msgctxt ""
"par_id3155308\n"
"help.text"
msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"schraffur\">Scegliete la scheda <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - </emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - </emph></caseinline></switchinline><emph>Area - Tratteggio</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10798,7 +10798,7 @@ msgctxt ""
"par_id3145800\n"
"help.text"
msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"bitmap\">Scegliete la scheda <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - </emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - </emph></caseinline></switchinline><emph>Area - Bitmap</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10806,7 +10806,7 @@ msgctxt ""
"par_id3145251\n"
"help.text"
msgid "<variable id=\"formattext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes</emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text - </emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline>.</variable>"
-msgstr ""
+msgstr "<variable id=\"formattext\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - Attributi di testo</emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - Testo - </emph></caseinline><defaultinline><emph>Testo</emph></defaultinline></switchinline>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10814,7 +10814,7 @@ msgctxt ""
"par_id3152810\n"
"help.text"
msgid "<variable id=\"text\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes</emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"text\">Scegliete la scheda <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - Attributi di testo</emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - Testo</emph></caseinline><defaultinline><emph>Testo</emph></defaultinline></switchinline><emph> - Testo</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10822,7 +10822,7 @@ msgctxt ""
"par_id3151060\n"
"help.text"
msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"laufext\">Scegliete la scheda <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - Attributi di testo</emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - Testo</emph></caseinline><defaultinline><emph>Testo</emph></defaultinline></switchinline><emph> - Animazione di testo</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10830,7 +10830,7 @@ msgctxt ""
"par_id3149911\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size</emph>."
-msgstr ""
+msgstr "Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - </emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - </emph></caseinline></switchinline><emph>Posizione e dimensione</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10878,7 +10878,7 @@ msgctxt ""
"par_id3153099\n"
"help.text"
msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"position2\">Scegliete la scheda <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - </emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - </emph></caseinline></switchinline><emph>Posizione e dimensione - Posizione e dimensione</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10886,7 +10886,7 @@ msgctxt ""
"par_id3152973\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Rotation</emph> tab."
-msgstr ""
+msgstr "Scegliete la scheda <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - </emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - </emph></caseinline></switchinline><emph>Posizione e dimensione - Rotazione</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10910,7 +10910,7 @@ msgctxt ""
"par_id3145666\n"
"help.text"
msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"ecke\">Scegliete la scheda <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - </emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - </emph></caseinline></switchinline><emph>Posizione e dimensione - Raggio d'inclinazione e rotazione</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10918,7 +10918,7 @@ msgctxt ""
"par_id3146081\n"
"help.text"
msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab. This is only available for textbox callouts, not for custom shapes callouts.</variable>"
-msgstr ""
+msgstr "<variable id=\"legende\">Scegliete la scheda <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Casella di testo e forma - </emph></caseinline><caseinline select=\"CALC\"><emph>Oggetto - </emph></caseinline></switchinline><emph>Posizione e dimensione - Legenda</emph>. Questa opzione è disponibile solo per le legende della casella di testo e non per quelle di forma personalizzata.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11142,7 +11142,7 @@ msgctxt ""
"par_id3146978\n"
"help.text"
msgid "Choose <emph>Format - Align - Left</emph> (drawing functions)."
-msgstr ""
+msgstr "Scegliete <emph>Formato - Allinea - A sinistra</emph> (nelle funzioni di disegno)."
#: 00040502.xhp
msgctxt ""
@@ -11150,7 +11150,7 @@ msgctxt ""
"par_id3153009\n"
"help.text"
msgid "Open context menu - choose <emph>Align - Left</emph>."
-msgstr ""
+msgstr "Aprite il menu di contesto e scegliete <emph>Allinea - A sinistra</emph>."
#: 00040502.xhp
msgctxt ""
@@ -11174,7 +11174,7 @@ msgctxt ""
"par_id3155823\n"
"help.text"
msgid "Choose <emph>Format - Align - Right</emph> (drawing functions)."
-msgstr ""
+msgstr "Scegliete <emph>Formato - Allinea - A destra</emph> (nelle funzioni di disegno)."
#: 00040502.xhp
msgctxt ""
@@ -11182,7 +11182,7 @@ msgctxt ""
"par_id3155762\n"
"help.text"
msgid "Open context menu - choose <emph>Align - Right</emph>."
-msgstr ""
+msgstr "Aprite il menu di contesto e scegliete <emph>Allinea - A destra</emph>."
#: 00040502.xhp
msgctxt ""
@@ -11206,7 +11206,7 @@ msgctxt ""
"par_id3149189\n"
"help.text"
msgid "Choose <emph>Format - Align - Centered</emph> (drawing functions)."
-msgstr ""
+msgstr "Scegliete <emph>Formato - Allinea - Centrato</emph> (nelle funzioni di disegno)."
#: 00040502.xhp
msgctxt ""
@@ -11214,7 +11214,7 @@ msgctxt ""
"par_id3154624\n"
"help.text"
msgid "Open context menu - choose <emph>Align - Center</emph>."
-msgstr ""
+msgstr "Aprite il menu di contesto e scegliete <emph>Allinea - Centrato</emph>."
#: 00040502.xhp
msgctxt ""
@@ -11238,7 +11238,7 @@ msgctxt ""
"par_id3146151\n"
"help.text"
msgid "Choose <emph>Format - Align - Justified</emph> (drawing functions)."
-msgstr ""
+msgstr "Scegliete <emph>Formato - Allinea - Giustificato</emph> (nelle funzioni di disegno)."
#: 00040502.xhp
msgctxt ""
@@ -11246,7 +11246,7 @@ msgctxt ""
"par_id3168612\n"
"help.text"
msgid "Open context menu - choose <emph>Align - Justified</emph>."
-msgstr ""
+msgstr "Aprite il menu di contesto e scegliete <emph>Allinea - Giustificato</emph>."
#: 00040502.xhp
msgctxt ""
@@ -11302,7 +11302,7 @@ msgctxt ""
"par_id3157980\n"
"help.text"
msgid "Choose <emph>Shape - Group - Group</emph> (drawing documents)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Raggruppa - Raggruppa</emph> (disegno)."
#: 00040502.xhp
msgctxt ""
@@ -11342,7 +11342,7 @@ msgctxt ""
"par_id3163378\n"
"help.text"
msgid "Choose <emph>Shape - Group - Ungroup</emph> (drawing documents)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Raggruppa - Separa</emph> (disegno)."
#: 00040502.xhp
msgctxt ""
@@ -11382,7 +11382,7 @@ msgctxt ""
"par_id3145678\n"
"help.text"
msgid "Choose <emph>Shape - Group - Exit Group</emph> (drawing documents)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Raggruppa - Esci dal gruppo</emph> (disegno)."
#: 00040502.xhp
msgctxt ""
@@ -11422,7 +11422,7 @@ msgctxt ""
"par_id3145354\n"
"help.text"
msgid "Choose <emph>Shape - Group - Enter Group</emph> (drawing documents)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Raggruppa - Modifica gruppo</emph> (disegno)."
#: 00040502.xhp
msgctxt ""
@@ -11534,7 +11534,7 @@ msgctxt ""
"par_id3150823\n"
"help.text"
msgid "Also as <emph>Number Format</emph> dialog for tables and fields in text documents: Choose <emph>Format - Number Format</emph>, or choose <emph>Insert - Field - More Fields - Variables</emph> tab and select <emph>Additional formats</emph> in the <emph>Format</emph> list."
-msgstr "Nella finestra di dialogo <emph>Formato numero</emph> per le tabelle e i comandi di campo nei documenti di testo: scegliete <emph>Formato - Formato numero</emph>, oppure scegliete la scheda <emph>Inserisci - Comando di campo - Altri campi - Variabili</emph> e selezionate <emph>Formati aggiuntivi<emph> nell'elenco </emph>Formato</emph>."
+msgstr "Nella finestra di dialogo <emph>Formato numero</emph> per le tabelle e i comandi di campo nei documenti di testo: scegliete <emph>Formato - Formato numero</emph>, oppure scegliete la scheda <emph>Inserisci - Comando di campo - Altri campi - Variabili</emph> e selezionate <emph>Formati aggiuntivi</emph> nell'elenco <emph>Formato</emph>."
#: 00040503.xhp
msgctxt ""
@@ -11582,7 +11582,7 @@ msgctxt ""
"par_id3150495\n"
"help.text"
msgid "Choose <emph>Shape - Flip</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Ribalta</emph> ($[officename] Draw)."
#: 00040503.xhp
msgctxt ""
@@ -11590,7 +11590,7 @@ msgctxt ""
"par_id3155742\n"
"help.text"
msgid "Choose <emph>Format - Image - Properties - Image</emph> tab."
-msgstr "Scegliete <emph>Formato - Immagine - Proprietà<emph>, scheda <emph>Immagine</emph>."
+msgstr "Scegliete <emph>Formato - Immagine - Proprietà</emph>, scheda <emph>Immagine</emph>."
#: 00040503.xhp
msgctxt ""
@@ -11606,7 +11606,7 @@ msgctxt ""
"par_id3150290\n"
"help.text"
msgid "Choose <emph>Shape - Flip - Vertically</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Ribalta - Verticalmente</emph> ($[officename] Draw)."
#: 00040503.xhp
msgctxt ""
@@ -11614,7 +11614,7 @@ msgctxt ""
"par_id3153179\n"
"help.text"
msgid "Choose <emph>Format - Image - Properties - Image</emph> tab."
-msgstr "Scegliete <emph>Formato - Immagine - Proprietà<emph>, scheda <emph>Immagine</emph>."
+msgstr "Scegliete <emph>Formato - Immagine - Proprietà</emph>, scheda <emph>Immagine</emph>."
#: 00040503.xhp
msgctxt ""
@@ -11630,7 +11630,7 @@ msgctxt ""
"par_id3153369\n"
"help.text"
msgid "Choose <emph>Shape - Flip - Horizontally</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Ribalta - Orizzontalmente</emph> ($[officename] Draw)."
#: 00040503.xhp
msgctxt ""
@@ -11662,7 +11662,7 @@ msgctxt ""
"par_id3147318\n"
"help.text"
msgid "Choose <emph>Shape - Distribution</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Scegliete <emph>Forma - Distribuzione</emph> ($[officename] Draw)."
#: 00040503.xhp
msgctxt ""
@@ -12470,7 +12470,7 @@ msgctxt ""
"par_id3156091\n"
"help.text"
msgid "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw.</variable>"
-msgstr ""
+msgstr "<variable id=\"imagemap\">Scegliete <emph>Modifica - Mappa immagine</emph> in Writer e Calc oppure <emph>Strumenti - Mappa imagine</emph> in Impress e Draw.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12478,7 +12478,7 @@ msgctxt ""
"par_id3155936\n"
"help.text"
msgid "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw,<br/>then select a section of the ImageMap and click <emph>Properties - Description</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"imapeigbea\">Scegliete <emph>Modifica - Mappa immagine</emph> in Writer e Calc oppure <emph>Strumenti - Mappa imagine</emph> in Impress e Draw,<br/>quindi selezionate una sezione della mappa immagine e fate clic su <emph>Proprietà - Descrizione</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/01.po b/source/it/helpcontent2/source/text/shared/01.po
index e74b989ebca..63ecec1391b 100644
--- a/source/it/helpcontent2/source/text/shared/01.po
+++ b/source/it/helpcontent2/source/text/shared/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-07-02 10:24+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2019-07-28 18:59+0000\n"
+"Last-Translator: Paolo Pelloni <info@paolopelloni.it>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\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: 1562063087.000000\n"
+"X-POOTLE-MTIME: 1564340344.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=\"\">Se si vuole creare un documento da un modello, scegliere <emph>Nuovo - Modelli</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Se si vuole creare un documento da un modello, scegliere <emph>Nuovo - Modelli</emph>.</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>Cartella; creare nuova</bookmark_value><bookmark_value>Cartelle, creazione di</bookmark_value><bookmark_value>Documenti, cartella; aprire</bookmark_value><bookmark_value>Multipli, documenti; aprire</bookmark_value><bookmark_value>Aprire; più file</bookmark_value><bookmark_value>Selezionare; più file</bookmark_value><bookmark_value>Aprire; file con segnaposto</bookmark_value><bookmark_value>Segnaposto; all'apertura dei file</bookmark_value><bookmark_value>Documento; apertura con modelli</bookmark_value><bookmark_value>Modello; apertura di documenti con</bookmark_value><bookmark_value>Documento; stili modificati</bookmark_value><bookmark_value>Stile; messaggio modificato</bookmark_value>"
#: 01020000.xhp
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"par_id931547247005236\n"
"help.text"
msgid "%PRODUCTNAME uses the native file picker dialog of the window manager of your operating system for the <menuitem>Open</menuitem> command."
-msgstr ""
+msgstr "%PRODUCTNAME usa la finestra di dialogo nativa del sistema operativo per scegliere i file a seguito del comando <menuitem>Apri</menuitem>."
#: 01020000.xhp
msgctxt ""
@@ -1766,7 +1766,7 @@ msgctxt ""
"par_id341547247820173\n"
"help.text"
msgid "Modern system file dialogs present many features for file handling. Most allows you to rename, delete, create files, sort list of files, display files and folders in icons, tree or list views, traverse the file system folder tree and much more. Use the mouse right button to get a list of commands on the selected files in the display area."
-msgstr ""
+msgstr "Le finestre di dialogo dei sistemi moderni offrono diverse possibilità per la gestione dei file. La maggior parte consente di rinominarli, cancellarli, crearli, ordinarli in elenchi, visualizzare file e cartelle come icone, alberi o elenchi, estendere la struttura ad albero delle cartelle del file system e molto altro ancora. Usate il pulsante destro del mouse per ottenere un elenco dei comandi disponibili per i file selezionati nell'area di visualizzazione."
#: 01020000.xhp
msgctxt ""
@@ -1806,7 +1806,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.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Inserite un nome o un percorso del file.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"par_id61547286521877\n"
"help.text"
msgid "The following features are available in the dialog:"
-msgstr ""
+msgstr "La finestra di dialogo possiede le seguenti funzionalità:"
#: 01020000.xhp
msgctxt ""
@@ -2222,7 +2222,7 @@ msgctxt ""
"par_id3155892\n"
"help.text"
msgid "Ensure that the file extension corresponds to the file type of the document. For example, a Microsoft Word document must have a <emph>*.doc</emph> or <emph>*.docx</emph> extension for $[officename] to use the appropriate filter."
-msgstr "Controllate che l'estensione del file corrisponda al tipo di file del documento. Ad esempio, un documento di Microsoft Word deve avere l'estensione <emph>*.doc</emph> o <emph>*.docx</emph> affinché $officename] utilizzi il filtro appropriato."
+msgstr "Controllate che l'estensione del file corrisponda al tipo di file del documento. Ad esempio, un documento di Microsoft Word deve avere l'estensione <emph>*.doc</emph> o <emph>*.docx</emph> affinché $[officename] utilizzi il filtro appropriato."
#: 01020103.xhp
msgctxt ""
@@ -2510,7 +2510,7 @@ msgctxt ""
"par_id251543697768103\n"
"help.text"
msgid "%PRODUCTNAME uses the native file picker dialog of the window manager of your operating system for the <menuitem>Save as</menuitem> command."
-msgstr ""
+msgstr "%PRODUCTNAME usa la finestra di dialogo nativa del sistema operativo per scegliere i file a seguito del comando <menuitem>Salva con nome</menuitem>."
#: 01070000.xhp
msgctxt ""
@@ -2614,7 +2614,7 @@ msgctxt ""
"par_id71543592343227\n"
"help.text"
msgid "Use OpenPGP public keys to encrypt documents."
-msgstr ""
+msgstr "Utilizzate le chiavi pubbliche OpenPGP per cifrare documenti."
#: 01070000.xhp
msgctxt ""
@@ -6254,7 +6254,7 @@ msgctxt ""
"bm_id891558923816062\n"
"help.text"
msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Cercare;numeri formattati</bookmark_value><bookmark_value>Cercare;visualizzazione formattata</bookmark_value><bookmark_value>Trovare;numeri formattati</bookmark_value><bookmark_value>Trovare;visualizzazione formattata</bookmark_value>"
#: 02100000.xhp
msgctxt ""
@@ -6270,7 +6270,7 @@ msgctxt ""
"par_id971558923550517\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Include i caratteri di formattazione dei numeri nella ricerca.</ahelp>"
#: 02100000.xhp
msgctxt ""
@@ -11238,7 +11238,7 @@ msgctxt ""
"par_id3159125\n"
"help.text"
msgid "<ahelp hid=\".uno:Bib/query\">Type the information that you want to search for, and then press <emph>Enter</emph>. To change the filter options for the search, long-click the <emph>AutoFilter</emph> icon, and then select a different data field. You can use wildcards such as <emph>%</emph> or <emph>*</emph> for any number of characters, and <emph>_</emph> or <emph>?</emph> for one character in your search. To display all of the records in the table, clear this box, and then press <emph>Enter</emph>. </ahelp>"
-msgstr "<ahelp hid=\".uno:Bib/query\">Digitare le informazioni da cercare, quindi premere <emph>Invio</emph>. Per cambiare le opzioni di filtro per la ricerca, fare un clic prolungato sull'icona <emph>Filtro automatico</emph>, quindi selezionare un diverso campo di dati. Nella ricerca si possono utilizzare caratteri jolly quali <emph>%</emph> o <emph>*</emph> per indicare qualsiasi numero di caratteri e <emph>_</emph> o <emph>?</emph> per indicare un singolo carattere</emph>. Per visualizzare tutti i record nella tabella, deselezionare questa casella e premere <emph>Invio</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:Bib/query\">Digitare le informazioni da cercare, quindi premere <emph>Invio</emph>. Per cambiare le opzioni di filtro per la ricerca, fare un clic prolungato sull'icona <emph>Filtro automatico</emph>, quindi selezionare un diverso campo di dati. Nella ricerca si possono utilizzare caratteri jolly quali <emph>%</emph> o <emph>*</emph> per indicare qualsiasi numero di caratteri e <emph>_</emph> o <emph>?</emph> per indicare un singolo carattere. Per visualizzare tutti i record nella tabella, deselezionare questa casella e premere <emph>Invio</emph>.</ahelp>"
#: 02250000.xhp
msgctxt ""
@@ -11726,7 +11726,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 <emph>Alt</emph>+<emph>V</emph>.</caseinline></switchinline>"
-msgstr "In modalità a <emph>schermo intero</emph> potete usare i tasti di scelta rapida, anche se i menu non sono disponibili</emph>. <switchinline select=\"sys\"><caseinline select=\"WIN\">Per aprire il menu <emph>Visualizza</emph>, premete <emph>Alt</emph>+<emph>V</emph>.</caseinline></switchinline>"
+msgstr "In modalità a <emph>schermo intero</emph> potete usare i tasti di scelta rapida, anche se i menu non sono disponibili. <switchinline select=\"sys\"><caseinline select=\"WIN\">Per aprire il menu <emph>Visualizza</emph>, premete <emph>Alt</emph>+<emph>V</emph>.</caseinline></switchinline>"
#: 03170000.xhp
msgctxt ""
@@ -14134,7 +14134,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 (<emph>_</emph>) 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 "Se volete usare un carattere per definire la larghezza di uno spazio in un formato numerico, digitate un trattino di sottolineatura (<emph>_<emph>) seguito dal carattere. La larghezza dello spazio varia in base alla larghezza del carattere selezionato. Ad esempio, <emph>_M</emph> crea uno spazio più largo di <emph>_i</emph>."
+msgstr "Se volete usare un carattere per definire la larghezza di uno spazio in un formato numerico, digitate un trattino di sottolineatura (<emph>_</emph>) seguito dal carattere. La larghezza dello spazio varia in base alla larghezza del carattere selezionato. Ad esempio, <emph>_M</emph> crea uno spazio più largo di <emph>_i</emph>."
#: 05020301.xhp
msgctxt ""
@@ -26614,7 +26614,7 @@ msgctxt ""
"par_id3157991\n"
"help.text"
msgid "To select an individual object in a group, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>, and then click the object."
-msgstr ""
+msgstr "Per selezionare un singolo oggetto in un gruppo, tenete premuto il tasto <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Comando</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>, quindi fate clic sull'oggetto."
#: 05290300.xhp
msgctxt ""
@@ -34054,7 +34054,7 @@ msgctxt ""
"par_idN134C2\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/scriptorganizer/ScriptOrganizerDialog\">Select a macro or script from \"user\", \"share\", or an open document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/scriptorganizer/ScriptOrganizerDialog\">Selezionate una macro o uno script da \"personali\", \"condivise\" o un documento aperto.</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -38630,7 +38630,7 @@ msgctxt ""
"par_id611534528851319\n"
"help.text"
msgid "Select the image, open the context menu and choose <item type=\"menuitem\">Compress...</item>"
-msgstr ""
+msgstr "Scegliete l'immagine, aprite il menu contestuale e scegliete <item type=\"menuitem\">Comprimi...</item>"
#: image_compression.xhp
msgctxt ""
@@ -38654,7 +38654,7 @@ msgctxt ""
"par_id81534716413899\n"
"help.text"
msgid "Use the slider to adjust the level of quality of the JPEG compression, from 0 to 100. A value of 100 means no quality loss and a value of 0 may result in a very poor image. The default value of 90 produces very good results and significant image data size reduction."
-msgstr ""
+msgstr "Usate il cursore per regolare il livello di qualità della compressione JPEG, da 0 a 100. Il valore 100 indica nessuna perdita di qualità, mentre il valore 0 può restituire un'immagine di bassissima qualità. Il valore predefinito di 90 produce risultati molto buoni e una riduzione significativa della dimensione dei dati."
#: image_compression.xhp
msgctxt ""
@@ -39334,7 +39334,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. To change the layout, choose <item type=\"menuitem\">View - User Interface</item> and from the submenu select the layout which you want."
-msgstr ""
+msgstr "La barra notebook è disponibile in Writer, Calc e Impress. Ora sono disponibili vari layout per l'interfaccia utente. Per cambiare il layout scegliete il menu <item type=\"menuitem\">Visualizza - Interfaccia utente</item> e selezionate quello che preferite."
#: notebook_bar.xhp
msgctxt ""
@@ -39342,7 +39342,7 @@ msgctxt ""
"par_id190920161744066306\n"
"help.text"
msgid "Choose menu <item type=\"menuitem\">View - User Interface</item>"
-msgstr ""
+msgstr "Scegliete il menu <item type=\"menuitem\">Visualizza - Interfaccia utente</item>"
#: notebook_bar.xhp
msgctxt ""
@@ -39358,7 +39358,7 @@ msgctxt ""
"par_id190920161744068946\n"
"help.text"
msgid "The <emph>User Interface</emph> entry defines which user interface elements are visible. The following three layouts are not of notebook bar type:"
-msgstr ""
+msgstr "La voce <emph>Interfaccia utente</emph> definisce quali elementi dell'interfaccia debbano essere visibili. I tre layout seguenti non appartengono alla tipologia di barra notebook:"
#: notebook_bar.xhp
msgctxt ""
@@ -39366,7 +39366,7 @@ msgctxt ""
"par_id190920161744068819\n"
"help.text"
msgid "<emph>Standard toolbar</emph> – classic mode with two visible toolbars – standard and formatting. The sidebar is partially collapsed and shows only tabs."
-msgstr ""
+msgstr "<emph>Barra degli strumenti standard</emph>: modo classico con due barre visibili, Standard e Formattazione. La barra laterale è compressa parzialmente e mostra solo schede."
#: notebook_bar.xhp
msgctxt ""
@@ -39390,7 +39390,7 @@ msgctxt ""
"par_id190920161744063797\n"
"help.text"
msgid "When user activates additional toolbars, they will be saved in the user profile. Therefore, on returning from the notebook bar mode, all toolbars set visible before will show again."
-msgstr ""
+msgstr "Quando l'utente attiva le barre degli strumenti aggiuntive, queste vengono salvate nel profilo utente. Al tornare, quindi, dal modo barra notebook, tutte le barre degli strumenti precedentemente impostate come visibili saranno mostrate di nuovo."
#: notebook_bar.xhp
msgctxt ""
@@ -39406,7 +39406,7 @@ msgctxt ""
"par_id190920161744063875\n"
"help.text"
msgid "In a notebook bar mode, all toolbar and sidebar are hidden and the notebook bar is placed on the top."
-msgstr ""
+msgstr "Nel modo barra notebook, tutte le barre degli strumenti e la barra laterale sono nascoste mentre la barra notebook è posizionata in alto."
#: notebook_bar.xhp
msgctxt ""
@@ -39422,7 +39422,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 <emph>Menubar</emph> icon at the top-left position of the window."
-msgstr ""
+msgstr "Nel modo barra a schede la barra dei menu è nascosta per impostazione predefinita. Per visualizzare la barra dei menu selezionate l'icona <emph>Barra dei menu</emph> in alto a sinistra nella finestra."
#: notebook_bar.xhp
msgctxt ""
@@ -39430,7 +39430,7 @@ msgctxt ""
"par_id190920161744067802\n"
"help.text"
msgid "<emph>Contextual groups</emph> – The notebook bar is divided into 4 groups. The File, Clipboard and Text 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>Gruppi contestuali</emph>: la barra notebook è divisa in quattro gruppi. I gruppi File, Appunti e Testo sono fissi. Il contenuto del gruppo Inserisci viene sostituito dai comandi in base al tipo di oggetto selezionato nel documento, ossia una tabella, un'immagine o un oggetto OLE."
#: notebook_bar.xhp
msgctxt ""
@@ -39438,7 +39438,7 @@ msgctxt ""
"par_id190920161744063712\n"
"help.text"
msgid "<emph>Contextual single</emph> – Displays a single centered toolbar with context-dependent contents."
-msgstr ""
+msgstr "<emph>Singola contestuale</emph>: mostra una barra degli strumenti singola centrata, con contenuto diverso in base al contesto."
#: notebook_bar.xhp
msgctxt ""
@@ -39446,7 +39446,7 @@ msgctxt ""
"par_id190920161744063446\n"
"help.text"
msgid "<emph>Groupedbar</emph> – The bar is divided into groups that contain commands organized as icon sets and menus."
-msgstr ""
+msgstr "<emph>Barra raggruppata</emph>: la barra è divisa in gruppi che contengono comandi organizzati in insiemi di icone e menu."
#: notebook_bar.xhp
msgctxt ""
@@ -39454,7 +39454,7 @@ msgctxt ""
"par_id190920161744074224\n"
"help.text"
msgid "The Tabbed and Groupedbar modes are also available as compact variants."
-msgstr ""
+msgstr "I modi A scheda e Barra raggruppata sono disponibili anche come varianti compatte."
#: notebook_bar.xhp
msgctxt ""
@@ -39462,7 +39462,7 @@ msgctxt ""
"par_id190920161744076273\n"
"help.text"
msgid "The notebook bar icon size is adjustable 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 - View - Notebookbar icon size</item> listbox."
-msgstr ""
+msgstr "La dimensione delle icone della barra notebook possono essere regolate in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferenze</item></caseinline><defaultinline><item type=\"menuitem\">Strumenti - Opzioni</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - Vista - Dimensione icone barra notebook</item>."
#: notebook_bar.xhp
msgctxt ""
@@ -40598,7 +40598,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>Incorporare caratteri in un documento</bookmark_value><bookmark_value>Documento; incorporare caratteri</bookmark_value><bookmark_value>Carattere, incorporazione; nei documenti</bookmark_value><bookmark_value>Carattere; incorporare</bookmark_value><bookmark_value>Incorporare; caratteri</bookmark_value>"
#: prop_font_embed.xhp
msgctxt ""
@@ -40614,7 +40614,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\">Incorpora i caratteri del documento nel file aperto.</ahelp>"
#: prop_font_embed.xhp
msgctxt ""
@@ -40782,7 +40782,7 @@ msgctxt ""
"par_id3154233\n"
"help.text"
msgid "Enter the full path of the custom cover image file. If the entry is empty, the exporter takes the cover image in the media directory (see below) when the name is one of the following: <item type=\"literal\">cover.gif</item>, <item type=\"literal\">cover.jpg</item>, <item type=\"literal\">cover.png</item> or <item type=\"literal\">cover.svg</item>."
-msgstr ""
+msgstr "Digitate il percorso completo del file immagine della copertina personalizzata. Se la voce è vuota, il programma di esportazione recupera l'immagine di copertina nella cartella dei file multimediali (vedere sotto) quando il nome è uno dei seguenti: <item type=\"literal\">cover.gif</item>, <item type=\"literal\">cover.jpg</item>, <item type=\"literal\">cover.png</item> o <item type=\"literal\">cover.svg</item>."
#: ref_epub_export.xhp
msgctxt ""
@@ -41230,7 +41230,7 @@ msgctxt ""
"par_idN107BE\n"
"help.text"
msgid "Comments as PDF annotations"
-msgstr ""
+msgstr "Commenti come annotazioni PDF"
#: ref_pdf_export.xhp
msgctxt ""
@@ -41238,7 +41238,7 @@ msgctxt ""
"par_idN107C2\n"
"help.text"
msgid "<ahelp hid=\".\">Select to export comments of Writer and Calc documents as PDF annotations.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare per esportare come annotazioni PDF i commenti contenuti nei documenti di Writer e Calc.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/02.po b/source/it/helpcontent2/source/text/shared/02.po
index 8563b5dfc75..a65abf7cf01 100644
--- a/source/it/helpcontent2/source/text/shared/02.po
+++ b/source/it/helpcontent2/source/text/shared/02.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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-07-02 10:29+0000\n"
+"PO-Revision-Date: 2019-07-26 20:53+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: 1562063341.000000\n"
+"X-POOTLE-MTIME: 1564174414.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_id3155555\n"
"help.text"
msgid "<link href=\"text/shared/guide/insert_graphic_drawit.xhp\" name=\"Tips\">Tips for working with the <emph>Drawing</emph> bar</link>."
-msgstr "<link href=\"text/shared/guide/insert_graphic_drawitxhp\" name=\"Suggerimenti\">Suggerimenti per l'utilizzo della barra <emph>Disegno</emph>.</link>."
+msgstr "<link href=\"text/shared/guide/insert_graphic_drawit.xhp\" name=\"Suggerimenti\">Suggerimenti per l'utilizzo della barra <emph>Disegno</emph>.</link>."
#: 01170000.xhp
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"par_id3149416\n"
"help.text"
msgid "If you use the keyboard only to travel through controls in your document, you will find one difference to the other types of controls: the <emph>Tab</emph> key does not move the cursor to the next control, but moves to the next column inside the table control. Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Tab</emph> to move to the next control, or press <emph>Shift</emph>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Tab</emph> to move to the previous control."
-msgstr "Se utilizzate solo la tastiera per spostarvi tra i controlli, troverete una differenza con gli altri tipi di controlli: il tasto <emph>Tab</emph> non sposta il cursore al controllo successivo, ma sposta alla colonna successiva all'interno della tabella dei controlli. Premete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Comando</emph></caseinline><defaultinline><emph><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Tab</emph> per spostarvi al controllo successivo, o premete <emph>Maiusc</emph>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Comando</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Tab</emph> per spostarvi al precedente."
+msgstr "Se utilizzate solo la tastiera per spostarvi tra i controlli, troverete una differenza con gli altri tipi di controlli: il tasto <emph>Tab</emph> non sposta il cursore al controllo successivo, ma sposta alla colonna successiva all'interno della tabella dei controlli. Premete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Comando</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Tab</emph> per spostarvi al controllo successivo, o premete <emph>Maiusc</emph>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Comando</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Tab</emph> per spostarvi al precedente."
#: 01170004.xhp
msgctxt ""
@@ -2358,7 +2358,7 @@ msgctxt ""
"par_id3157910\n"
"help.text"
msgid "<variable id=\"hinweis\">You can only call the <emph>Properties</emph> dialog when in the <emph>Design mode</emph> with a control selected.</variable>"
-msgstr "<variable id=\"hinweis\">La finestra di dialogo <emph>Proprietà</emph> può essere aperta solo in <emph>modo struttura<emph> con un campo di controllo selezionato.</variable>"
+msgstr "<variable id=\"hinweis\">La finestra di dialogo <emph>Proprietà</emph> può essere aperta solo in <emph>modo struttura</emph> con un campo di controllo selezionato.</variable>"
#: 01170100.xhp
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"par_id3153627\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Option</emph></caseinline><defaultinline><emph>Alt</emph></defaultinline></switchinline>+<emph>Up Arrow</emph>:"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Opzione</emph></caseinline><defaultinline><emph>Alt</emph></defaultinline></switchinline>+<emph>Freccia su</emph></emph>:"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Opzione</emph></caseinline><defaultinline><emph>Alt</emph></defaultinline></switchinline>+<emph>Freccia su</emph> :"
#: 01170100.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: <emph>TRUE</emph>, <emph>FALSE</emph> and <emph>ZERO</emph>."
-msgstr "<ahelp hid=\"HID_PROP_TRISTATE\">Specifica se una casella di controllo possa rappresentare, oltre ai valori VERO e FALSO, anche i valori ZERO dei database collegati</emph>.</ahelp> Questa funzione è disponibile solo se il database accetta tre stati: <emph>VERO</emph>, <emph>FALSO</emph> e <emph>ZERO</emph>."
+msgstr "<ahelp hid=\"HID_PROP_TRISTATE\">Specifica se una casella di controllo possa rappresentare, oltre ai valori VERO e FALSO, anche i valori ZERO dei database collegati.</ahelp> Questa funzione è disponibile solo se il database accetta tre stati: <emph>VERO</emph>, <emph>FALSO</emph> e <emph>ZERO</emph>."
#: 01170101.xhp
msgctxt ""
@@ -3806,7 +3806,7 @@ msgctxt ""
"par_idN1154E\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies if a Push button behaves as a Toggle Button. If you set <emph>Toggle</emph> to \"Yes\", you can switch between the \"selected\" and \"not selected\" control states when you click the button or press the <emph>Spacebar</emph> while the control has the focus. A button in the \"selected\" state appears \"pressed in\".</ahelp>"
-msgstr "<ahelp hid=\".\">Specifica se il pulsante si debba comportare come un pulsante di commutazione. Se l'opzione di <emph>commutazione<emph> è impostata su \"Sì\", facendo clic sul pulsante o premendo la <emph>barra spaziatrice</emph> con il punto focale sul controllo è possibile commutare tra gli stati \"selezionato\" e \"non selezionato\". Un pulsante nello stato \"selezionato\" appare \"premuto\".</ahelp>"
+msgstr "<ahelp hid=\".\">Specifica se il pulsante si debba comportare come un pulsante di commutazione. Se l'opzione di <emph>commutazione</emph> è impostata su \"Sì\", facendo clic sul pulsante o premendo la <emph>barra spaziatrice</emph> con il punto focale sul controllo è possibile commutare tra gli stati \"selezionato\" e \"non selezionato\". Un pulsante nello stato \"selezionato\" appare \"premuto\".</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -4494,7 +4494,7 @@ msgctxt ""
"par_id3154358\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_TARGET_URL\" visibility=\"hidden\">Specifies the URL address that opens when you click an <emph>Open document / web page</emph> button.</ahelp> Enter the URL address for a <emph>Open document or web page</emph> button type in the <emph>URL</emph> box. The address opens when you click the button."
-msgstr "<ahelp hid=\"HID_PROP_TARGET_URL\" visibility=\"hidden\">Specifica l'indirizzo URL da aprire quando fai clic sul pulsante \"Apri documento / pagina web\".</ahelp> Inserite l'indirizzo URL per un pulsante del tipo <emph>Apri documento o pagina web</emph> nella casella <emph>URL</emph>. Questo indirizzo si apre quando fate clic sul pulsante."
+msgstr "<ahelp hid=\"HID_PROP_TARGET_URL\" visibility=\"hidden\">Specifica l'indirizzo URL da aprire quando fai clic sul pulsante <emph>Apri documento / pagina web</emph>.</ahelp> Inserite l'indirizzo URL per un pulsante del tipo <emph>Apri documento o pagina web</emph> nella casella <emph>URL</emph>. Questo indirizzo si apre quando fate clic sul pulsante."
#: 01170101.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>Show preview of fonts</emph> field in <link href=\"text/shared/optionen/01010800.xhp\" name=\"$[officename] - View\"><emph>$[officename] - View</emph></link> in the <emph>Options</emph> dialog box.</variable>"
-msgstr ""
+msgstr "<variable id=\"vorschautext\">Se nella finestra di dialogo delle <emph>Opzioni</emph> - <link href=\"text/shared/optionen/01010800.xhp\" name=\"$[officename] - Vista\"><emph>$[officename] - Vista</emph></link> avete spuntato il campo <emph>Mostra anteprima dei caratteri</emph>, i nomi dei tipi di carattere sono rappresentati con l'aspetto del rispettivo tipo di carattere.</variable>"
#: 02020000.xhp
msgctxt ""
@@ -9870,7 +9870,7 @@ msgctxt ""
"par_id3149798\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Se sono selezionati più paragrafi, il rientro di tutti i paragrafi selezionati viene aumentato</caseinline><caseinline select=\"CALC\">Il contenuto della cella si riferisce al valore attivo in <link href=\"text/shared/01/05340300.xhp\" name=\"Formato - Celle - Allineamento\"><emph>Formato - Celle - Allineamento</emph></link.>.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Se sono selezionati più paragrafi, il rientro di tutti i paragrafi selezionati viene aumentato</caseinline><caseinline select=\"CALC\">Il contenuto della cella si riferisce al valore attivo in <link href=\"text/shared/01/05340300.xhp\" name=\"Formato - Celle - Allineamento\"><emph>Formato - Celle - Allineamento</emph></link>.</caseinline></switchinline>"
#: 02140000.xhp
msgctxt ""
@@ -11206,7 +11206,7 @@ msgctxt ""
"par_id3085157\n"
"help.text"
msgid "<ahelp hid=\".uno:ExportDirectToPDF\" visibility=\"visible\">Exports the current document directly as <emph>PDF</emph>. No settings dialog is shown.</ahelp>"
-msgstr "<ahelp hid=\"</emph>.uno:ExportDirectToPDF\" visibility=\"visible\">Esporta il documento direttamente in formato <emph>PDF</emph>. Non viene visualizzata alcuna finestra di dialogo per le impostazioni.</ahelp>"
+msgstr "<ahelp hid=\".uno:ExportDirectToPDF\" visibility=\"visible\">Esporta il documento direttamente in formato <emph>PDF</emph>. Non viene visualizzata alcuna finestra di dialogo per le impostazioni.</ahelp>"
#: 08010000.xhp
msgctxt ""
@@ -11422,7 +11422,7 @@ msgctxt ""
"par_id3154230\n"
"help.text"
msgid "<ahelp hid=\".\">Use the <emph>Internet</emph> page of the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\"><emph>Hyperlink</emph> dialog</link> to edit hyperlinks with <emph>WWW</emph> or <emph>FTP</emph> addresses.</ahelp>"
-msgstr "<ahelp hid=\".\">Utilizzare la scheda <emph>Internet</emph> della <link href=\"text/shared/02/09070000.xhp\" name=\"finestra di dialogo Collegamento ipertestuale\">finestra di dialogo <emph>Collegamento ipertestuale</emph></link> per modificare i collegamenti ipertestuali con indirizzi WWW o FTP.</ahelp>"
+msgstr "<ahelp hid=\".\">Utilizzare la scheda <emph>Internet</emph> della <link href=\"text/shared/02/09070000.xhp\" name=\"finestra di dialogo Collegamento ipertestuale\">finestra di dialogo <emph>Collegamento ipertestuale</emph></link> per modificare i collegamenti ipertestuali con indirizzi <emph>WWW</emph> o <emph>FTP</emph>.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -15406,7 +15406,7 @@ msgctxt ""
"par_id3154894\n"
"help.text"
msgid "<ahelp hid=\".uno:DBDistinctValues\">Expands the created select statement of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Query\"><emph>SQL Query</emph></link> in the current column by the parameter <emph>DISTINCT</emph>.</ahelp> The consequence is that identical values occurring multiple times are listed only once."
-msgstr "<ahelp hid=\"</emph>.uno:DBDistinctValues\">Se l'icona è selezionata, l'indicazione di selezione della <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"ricerca SQL\"><emph>ricerca SQL</emph></link> viene estesa alla colonna attiva col parametro <emph>DISTINCT</emph>.</ahelp> Di conseguenza, lo stesso valore che si presenta più volte viene elencato una sola volta."
+msgstr "<ahelp hid=\".uno:DBDistinctValues\">Se l'icona è selezionata, l'indicazione di selezione della <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"ricerca SQL\"><emph>ricerca SQL</emph></link> viene estesa alla colonna attiva col parametro <emph>DISTINCT</emph>.</ahelp> Di conseguenza, lo stesso valore che si presenta più volte viene elencato una sola volta."
#: 14070000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/04.po b/source/it/helpcontent2/source/text/shared/04.po
index 1375f512e31..ccfdd003d27 100644
--- a/source/it/helpcontent2/source/text/shared/04.po
+++ b/source/it/helpcontent2/source/text/shared/04.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: 2019-01-07 11:14+0100\n"
-"PO-Revision-Date: 2019-01-09 22:44+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2019-07-21 19:18+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\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: 1547073885.000000\n"
+"X-POOTLE-MTIME: 1563736717.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "$[officename] has an <emph>AutoComplete</emph> function which activates itself in some text and list boxes. For example, enter <switchinline select=\"sys\"><caseinline select=\"WIN\"><emph>c:\\a</emph></caseinline><defaultinline><emph>~/a</emph></defaultinline></switchinline> into the URL field and the <emph>AutoComplete</emph> 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] ha una funzione di <emph>completamento automatico</emph> che si attiva in alcune caselle di testo e di riepilogo. Per esempio, indicate <switchinline select=\"sys\"><caseinline select=\"WIN\"><emph>c:\\a</emph></caseinline><defaultinline><emph>~/a</emph></defaultinline></switchinline> nel campo URL e la funzione di <emph>completamento automatico</emph> mostra il primo file o la prima cartella trovata <switchinline select=\"sys\"><caseinline select=\"WIN\">nel disco C:</caseinline><defaultinline><emph>nella vostra cartella personale</defaultinline></switchinline> che inizia con la lettera \"a\"."
+msgstr "$[officename] ha una funzione di <emph>completamento automatico</emph> che si attiva in alcune caselle di testo e di riepilogo. Per esempio, indicate <switchinline select=\"sys\"><caseinline select=\"WIN\"><emph>c:\\a</emph></caseinline><defaultinline><emph>~/a</emph></defaultinline></switchinline> nel campo URL e la funzione di <emph>completamento automatico</emph> mostra il primo file o la prima cartella trovata <switchinline select=\"sys\"><caseinline select=\"WIN\">nel disco C:</caseinline><defaultinline>nella vostra cartella personale</defaultinline></switchinline> che inizia con la lettera \"a\"."
#: 01010000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/05.po b/source/it/helpcontent2/source/text/shared/05.po
index 9adec5089c1..5f288246403 100644
--- a/source/it/helpcontent2/source/text/shared/05.po
+++ b/source/it/helpcontent2/source/text/shared/05.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: 2018-10-21 20:57+0200\n"
-"PO-Revision-Date: 2019-01-05 10:33+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2019-07-21 19:16+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\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: 1546684414.000000\n"
+"X-POOTLE-MTIME: 1563736618.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"par_id3028143\n"
"help.text"
msgid "You can download the latest version of <item type=\"productname\">%PRODUCTNAME</item> at <link href=\"https://www.libreoffice.org/download/\"><emph>www.libreoffice.org/download/</emph></link>."
-msgstr "Potete scaricare l'ultima versione di <item type=\"productname\">%PRODUCTNAME</item> alla pagina <link href=\"https://it.libreoffice.org/download/libreoffice-fresh/\"><emph>it.libreoffice.org/download/libreoffice-fresh/<emph></link>."
+msgstr "Potete scaricare l'ultima versione di <item type=\"productname\">%PRODUCTNAME</item> alla pagina <link href=\"https://it.libreoffice.org/download/libreoffice-fresh/\"><emph>it.libreoffice.org/download/libreoffice-fresh/</emph></link>."
#: 00000001.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_idN10926\n"
"help.text"
msgid "You can copy from the <emph>Help Viewer</emph> to the clipboard on your operating system with standard copy commands. For example:"
-msgstr "Potete copiare dalla <emph>Guida<emph> negli appunti del vostro sistema operativo utilizzando i comandi di copia standard. Ad esempio:"
+msgstr "Potete copiare dalla <emph>Guida</emph> negli appunti del vostro sistema operativo utilizzando i comandi di copia standard. Ad esempio:"
#: 00000110.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_idN10A36\n"
"help.text"
msgid "You can also click in the <emph>Help</emph> page and press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+F</emph>."
-msgstr "Potete anche fare clic nella pagina della <emph>guida</emph> e premere <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Comando</emph></caseinline><defaultinline><emph><emph>Ctrl</emph></defaultinline></switchinline><emph>+F</emph>."
+msgstr "Potete anche fare clic nella pagina della <emph>guida</emph> e premere <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Comando</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+F</emph>."
#: 00000110.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"par_idN10A36\n"
"help.text"
msgid "You can also press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+F</emph>."
-msgstr "Per aprire la barra della ricerca, potete anche premere <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Comando</emph></caseinline><defaultinline><emph><emph>Ctrl</emph></defaultinline></switchinline><emph>+F</emph>."
+msgstr "Per aprire la barra della ricerca, potete anche premere <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Comando</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+F</emph>."
#: new_help.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/explorer/database.po b/source/it/helpcontent2/source/text/shared/explorer/database.po
index 8c7a4958ebe..970c6731f7d 100644
--- a/source/it/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/it/helpcontent2/source/text/shared/explorer/database.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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-07-02 10:30+0000\n"
+"PO-Revision-Date: 2019-07-26 20:16+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: 1562063435.000000\n"
+"X-POOTLE-MTIME: 1564172189.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"par_id3152889\n"
"help.text"
msgid "b) COUNT(column): Passing a field name as an argument counts only the records in which the specified field contains a value. Records in which the field has a Null value (i.e. contains no textual or numeric value) will not be counted."
-msgstr ""
+msgstr "b) CONTA.NUMERI(colonna): se un nome di campo viene indicato come argomento conta solo i record in cui il rispettivo campo specificato contiene un valore. I record con valore Null ('vuoto', ovvero privi di valore testuale o numerico) non vengono inclusi nel conteggio."
#: 02010100.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"par_id3146866\n"
"help.text"
msgid "Minimum"
-msgstr "Minimo."
+msgstr "Minimo"
#: 02010100.xhp
msgctxt ""
@@ -1142,7 +1142,7 @@ msgctxt ""
"par_id3155098\n"
"help.text"
msgid "You can also assign aliases to function calls. If you do not want to display the query string in the column header, enter a desired substitute name under <emph>Alias</emph>."
-msgstr "Potete anche assegnare nomi alias alle chiamate di funzione. Se preferite che la stringa della query non sia visibile nell'intestazione della colonna, inserite il nome sostitutivo desiderato in <emph>Alias</emph>."
+msgstr "Potete anche assegnare nomi alias alle chiamate di funzione. Per evitare di visualizzare la stringa della query nell'intestazione della colonna, inserite il nome sostitutivo desiderato in <emph>Alias</emph>."
#: 02010100.xhp
msgctxt ""
@@ -1182,7 +1182,7 @@ msgctxt ""
"par_id3154610\n"
"help.text"
msgid "If you run such a function, you cannot insert any additional columns for the query other than as an argument in a \"Group\" function."
-msgstr "Se eseguite una tale funzione, non potrete inserire più altre colonne per la ricerca, tranne un argomento in una funzione \"Gruppo\"."
+msgstr "Se eseguite una tale funzione, non potrete inserire altre colonne per la ricerca, se non come argomento in una funzione \"Gruppo\"."
#: 02010100.xhp
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"par_id3151120\n"
"help.text"
msgid "In the following example, a query is run through two tables: an \"Item\" table with the \"Item_No\" field and a \"Suppliers\" table with the \"Supplier_Name\" field. In addition, both tables have a common field name \"Supplier_No.\""
-msgstr "Nell'esempio seguente viene eseguita una ricerca attraverso due tabelle: una tabella \"Articoli\" con il campo \"Nr_Articolo\" e una tabella \"Fornitori\" con il campo \"Nome_fornitore\". Inoltre entrambe le tabelle hanno un campo di dati comune \"Nr_Fornitore\"."
+msgstr "Nell'esempio seguente viene eseguita una ricerca attraverso due tabelle: una tabella \"Articoli\" con il campo \"Nr_Articolo\" e una seconda \"Fornitori\" con il campo \"Nome_fornitore\". Inoltre entrambe le tabelle hanno un nome di campo comune, \"Nr_Fornitore\"."
#: 02010100.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"par_id3155144\n"
"help.text"
msgid "The following steps are required to create a query containing all suppliers who deliver more than three items."
-msgstr "Per creare una ricerca che contenga tutti i fornitori che forniscono più di tre articoli, sono necessari i seguenti passaggi."
+msgstr "Per creare una query che contenga tutti i fornitori in grado di consegnare più di tre articoli, sono necessari i seguenti passaggi."
#: 02010100.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"par_id3153240\n"
"help.text"
msgid "Insert the \"Item\" and \"Suppliers\" tables into the query design."
-msgstr "Inserite la tabella \"Articoli\" e \"Fornitori\" nella struttura ricerca."
+msgstr "Inserite le tabelle \"Articoli\" e \"Fornitori\" nella struttura ricerca."
#: 02010100.xhp
msgctxt ""
@@ -1230,7 +1230,7 @@ msgctxt ""
"par_id3161652\n"
"help.text"
msgid "Double-click on the \"Item_No\" field from the \"Item\" table. Display the <emph>Function</emph> line using the context menu and select the Count function."
-msgstr "Fate doppio clic sul campo \"Nr_Articolo\" della tabella \"Articoli\". Tramite il menu di contesto visualizzate la riga <emph>Funzione</emph> e selezionate la funzione Count."
+msgstr "Fate doppio clic sul campo \"Nr_Articolo\" della tabella \"Articoli\". Tramite il menu di contesto visualizzate la voce <emph>Funzione</emph> e selezionate la funzione Count."
#: 02010100.xhp
msgctxt ""
@@ -1318,7 +1318,7 @@ msgctxt ""
"par_id3147549\n"
"help.text"
msgid "The following context menu commands and symbols are available:"
-msgstr "Sono disponibili i seguenti menu di contesto e simboli:"
+msgstr "Sono disponibili i menu di contesto e i simboli seguenti:"
#: 02010100.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id3147500\n"
"help.text"
msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Retrieves only distinct values from the query.</ahelp> This applies to multiple records that might contain several repeating occurrences of data in the selected fields. If the <emph>Distinct Values</emph> command is active, you should only see one record in the query (DISTINCT). Otherwise, you will see all records corresponding to the query criteria (ALL)."
-msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Recupera dalla ricerca solo i valori distinti.</ahelp> Si applica a più record che potrebbero contenere varie occorrenze ripetute nei campi selezionati. Se il comando <emph>Valori distinti</emph> è attivo, osserverete solo un record nella ricerca (DISTINCT). In caso contrario, osserverete tutti i record che corrispondono ai criteri della ricerca (ALL)."
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Recupera dalla ricerca solo i valori distinti.</ahelp> Si applica a più record che potrebbero contenere varie occorrenze ripetute nei campi selezionati. Se il comando <emph>Valori distinti</emph> è attivo, sarà visibile solo un record nella ricerca (DISTINCT). In caso contrario, si visualizzeranno tutti i record che corrispondono ai criteri della ricerca (ALL)."
#: 02010100.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"par_id3153026\n"
"help.text"
msgid "equal to"
-msgstr "è uguale"
+msgstr "uguale a"
#: 02010100.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"par_id3145223\n"
"help.text"
msgid "not equal to"
-msgstr "è diverso"
+msgstr "è diverso da"
#: 02010100.xhp
msgctxt ""
@@ -1518,7 +1518,7 @@ msgctxt ""
"par_id3146815\n"
"help.text"
msgid "greater than"
-msgstr "è maggiore"
+msgstr "maggiore di"
#: 02010100.xhp
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"par_id3147379\n"
"help.text"
msgid "less than"
-msgstr "è minore"
+msgstr "minore di"
#: 02010100.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"par_id3150636\n"
"help.text"
msgid "greater than or equal to"
-msgstr "è maggiore uguale"
+msgstr "maggiore di o uguale a"
#: 02010100.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"par_id3154052\n"
"help.text"
msgid "less than or equal to"
-msgstr "è minore uguale"
+msgstr "minore di o uguale a"
#: 02010100.xhp
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"par_id3154630\n"
"help.text"
msgid "$[officename] command"
-msgstr "Comando di $[officename]"
+msgstr "Comando $[officename]"
#: 02010100.xhp
msgctxt ""
@@ -1718,7 +1718,7 @@ msgctxt ""
"par_id3161664\n"
"help.text"
msgid "... the field does not contain data having the specified expression."
-msgstr "... il campo non contiene dati possedendo l'espressione indicata."
+msgstr "... il campo non contiene dati con l'espressione indicata."
#: 02010100.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"par_id3149955\n"
"help.text"
msgid "has the value false"
-msgstr "ha il valore false"
+msgstr "ha il valore False"
#: 02010100.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"par_id3150948\n"
"help.text"
msgid "returns field names with the field content \"Ms.\""
-msgstr "restituisce campi di dati con il contenuto di campo \"Donna\"."
+msgstr "restituisce campi di dati con il contenuto \"Donna\"."
#: 02010100.xhp
msgctxt ""
@@ -1846,7 +1846,7 @@ msgctxt ""
"par_id315094A\n"
"help.text"
msgid "returns dates that occurred before January 10, 2001"
-msgstr "restituisce le date verificatesi prima del 10 gennaio 2001"
+msgstr "restituisce le date antecedenti il 10 gennaio 2001"
#: 02010100.xhp
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"par_id3157998\n"
"help.text"
msgid "<emph>Date fields</emph> are represented as #Date# to clearly identify them as dates. Date, time and date/time constants (literals) used in conditions can be of either the SQL Escape Syntax type, or default SQL2 syntax."
-msgstr "I <emph>campi data</emph> vengono rappresentati come #Data# per identificarli chiaramente come data. La data, l'ora, e le costanti (letterali) data/ora utilizzati nelle condizioni possono essere sia di tipo sintassi SQL Escape, sia di tipo sintassi SQL2 predefinita."
+msgstr "I <emph>campi data</emph> vengono rappresentati come #Date# per identificarli con precisione. La data, l'ora, e le costanti (letterali) data/ora utilizzati nelle condizioni possono essere di tipo sintassi SQL Escape o di sintassi SQL2 predefinita."
#: 02010100.xhp
msgctxt ""
@@ -2158,7 +2158,7 @@ msgctxt ""
"par_id3157888\n"
"help.text"
msgid "The syntax depends on the database system used. You should also note that Yes/No fields can be defined differently (only 2 states instead of 3)."
-msgstr "La sintassi dipende dal sistema di database utilizzato. Osservate anche che i campi Sì/No possono essere definiti in modo differente (con solo 2 stati invece di 3)."
+msgstr "La sintassi dipende dal sistema di database utilizzato. Tenete presente inoltre che i campi Sì/No possono essere definiti in modo differente (solo con 2 stati invece di 3)."
#: 02010100.xhp
msgctxt ""
@@ -2174,7 +2174,7 @@ msgctxt ""
"par_id191120151905346795\n"
"help.text"
msgid "Parameter queries allow the user to input values at run-time. These values are used within the criteria for selecting the records to be displayed. Each such value has a parameter name associated with it, which is used to prompt the user when the query is run."
-msgstr "Le ricerche di parametro consentono all'utente di immettere valori al tempo di avvio. Questo valori sono utilizzati all'interno dei criteri per selezionare i record da visualizzare. Ciascun valore dato è associato a un nome di parametro, il quale viene utilizzato per avvisare l'utente quando è avviata la ricerca."
+msgstr "Le ricerche di parametro consentono all'utente di immettere valori al tempo di esecuzione (runtime). Questo valori sono utilizzati all'interno dei criteri per selezionare i record da visualizzare. Ciascun valore dato è associato a un nome di parametro, il quale viene utilizzato per avvisare l'utente quando è avviata la ricerca."
#: 02010100.xhp
msgctxt ""
@@ -2182,7 +2182,7 @@ msgctxt ""
"par_id191120151905439551\n"
"help.text"
msgid "Parameter names are preceded by a colon in both the Design and SQL views of a query. This can be used wherever a value can appear. If the same value is to appear more than once in the query, the same parameter name is used."
-msgstr "I nomi di parametro sono preceduti da due punti sia nella vista struttura, sia nella vista SQL di una ricerca. Ciò può essere utilizzato ovunque possa apparire un valore. Se lo stesso valore deve apparire più di una volta nella ricerca, viene utilizzato lo stesso nome di parametro."
+msgstr "I nomi di parametro sono preceduti dai due punti sia nella vista struttura, sia nella vista SQL di una ricerca. Questo è applicabile ovunque possa apparire un valore. Se lo stesso valore deve apparire più di una volta nella ricerca, viene utilizzato lo stesso nome di parametro."
#: 02010100.xhp
msgctxt ""
@@ -2190,7 +2190,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 "Nel caso più semplice, laddove l'utente inserisca un valore che viene individuato per uguaglianza, il nome di parametro, assieme ai due punti che lo precedono, va semplicemente inserito nella riga Criterio. In <link href=\"text/shared/explorer/database/02010100.xhp#sqlmode\">modo SQL</link> questo deve essere digitato come <item type=\"input\">WHERE \"Campo\" = :Nome_parametro</item>"
+msgstr "Nel caso più semplice, laddove l'utente inserisca un valore individuato per uguaglianza, il nome di parametro va semplicemente inserito nella riga Criterio insieme ai due punti che lo precedono. In <link href=\"text/shared/explorer/database/02010100.xhp#sqlmode\">modo SQL</link> questo deve essere digitato come <item type=\"input\">WHERE \"Campo\" = :Nome_parametro</item>"
#: 02010100.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"par_id191120151905584287\n"
"help.text"
msgid "Parameter names may not contain any of the characters <item type=\"input\"><space>`!\"$%^*()+={}[]@'~#<>?/,</item>. They may not be the same as field names or SQL reserved words. They may be the same as aliases."
-msgstr "I nomi di parametro non possono contenere i caratteri <item type=\"input\"><space>`!\"$%^*()+={}[]@'~#<>?/,</item>. Non possono essere uguali ai nomi di campo o alle parole riservate da SQL. Possono essere uguali agli alias."
+msgstr "I nomi di parametro non possono contenere i caratteri <item type=\"input\"><space>`!\"$%^*()+={}[]@'~#<>?/,</item>. Non possono essere uguali ai nomi di campo o alle parole riservate SQL. Possono essere uguali agli alias."
#: 02010100.xhp
msgctxt ""
@@ -2630,7 +2630,7 @@ msgctxt ""
"par_id3154948\n"
"help.text"
msgid "If there is an error when assigning properties to the objects contained in the form (for example, when assigning a non-existent database table to an object), a corresponding error message appears. This error message may contain a <emph>More</emph> button. <ahelp hid=\"dummy\">If you click on <emph>More</emph>, a dialog displaying more information about the current problem appears.</ahelp>"
-msgstr "In caso di errore durante l'assegnazione delle proprietà agli oggetti contenuti nel formulario (ad esempio, quando si assegna una tabella di database inesistente a un oggetto), viene visualizzato il relativo messaggio di errore. Questo messaggio può contenere anche un pulsante Extra</emph>. <ahelp hid=\"dummy\">Facendo clic su <emph>Extra</emph> si apre una finestra di dialogo con ulteriori informazioni sul problema attualmente riscontrato.</ahelp>"
+msgstr "In caso di errore durante l'assegnazione delle proprietà agli oggetti contenuti nel formulario (ad esempio, quando si assegna una tabella di database inesistente a un oggetto), viene visualizzato il relativo messaggio di errore. Questo messaggio può contenere anche un pulsante <emph>Extra</emph>. <ahelp hid=\"dummy\">Facendo clic su <emph>Extra</emph> si apre una finestra di dialogo con ulteriori informazioni sul problema attualmente riscontrato.</ahelp>"
#: 05000000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/guide.po b/source/it/helpcontent2/source/text/shared/guide.po
index bd0f27b293d..0d54d3641b9 100644
--- a/source/it/helpcontent2/source/text/shared/guide.po
+++ b/source/it/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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-07-02 10:45+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2019-07-29 19:52+0000\n"
+"Last-Translator: Elisabetta Manuele <calembour@hotmail.it>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\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: 1562064323.000000\n"
+"X-POOTLE-MTIME: 1564429956.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -1910,7 +1910,7 @@ msgctxt ""
"par_id150820161816031470\n"
"help.text"
msgid "Select <item type=\"menuitem\">File - Open Remote</item>"
-msgstr ""
+msgstr "Selezionate <item type=\"menuitem\">File - Apri in remoto</item>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -1918,7 +1918,7 @@ msgctxt ""
"par_id150820161816037870\n"
"help.text"
msgid "Select <item type=\"menuitem\">File - Save Remote</item>"
-msgstr ""
+msgstr "Selezionate <item type=\"menuitem\">File - Salva in remoto</item>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -1926,7 +1926,7 @@ msgctxt ""
"par_id150820161816033600\n"
"help.text"
msgid "Then press <widget>Add Service</widget> button in the dialog to open the File Services dialog."
-msgstr ""
+msgstr "Per aprire la finestra Servizi di file, fate quindi clic sul pulsante <widget>Aggiungi servizio</widget> all'interno della finestra di dialogo."
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2294,7 +2294,7 @@ msgctxt ""
"par_id17082016160541995\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Open Remote</item> in any %PRODUCTNAME module"
-msgstr ""
+msgstr "Scegliete <item type=\"menuitem\">File - Apri in remoto</item> in qualsiasi modulo di %PRODUCTNAME"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2446,7 +2446,7 @@ msgctxt ""
"par_id190820161707166344\n"
"help.text"
msgid "If the file is not stored in a CMIS server, choose <item type=\"menuitem\">File - Save Remote</item> or long-click the <emph>Save</emph> icon and select <emph>Save Remote File</emph>."
-msgstr ""
+msgstr "Se il file non è memorizzato in un server CMIS, scegliete <item type=\"menuitem\">File - Salva in remoto</item> oppure premete a lungo l'icona <emph>Salva</emph> e selezionate <emph>Salva file remoto</emph>"
#: cmis-remote-files.xhp
msgctxt ""
@@ -3038,7 +3038,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "File Conversion Filters Tables"
-msgstr ""
+msgstr "Tabelle dei filtri di conversione file"
#: convertfilters.xhp
msgctxt ""
@@ -3046,7 +3046,7 @@ msgctxt ""
"bm_id541554406270299\n"
"help.text"
msgid "<bookmark_value>filters;document conversion</bookmark_value><bookmark_value>document conversion;filters</bookmark_value><bookmark_value>convert-to;filters</bookmark_value><bookmark_value>command line document conversion;filters</bookmark_value><bookmark_value>module file filters</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Filtro;conversione documenti</bookmark_value><bookmark_value>Documento, conversione;filtri</bookmark_value><bookmark_value>Convertire in;filtri</bookmark_value><bookmark_value>Comando, conversione documenti a riga di;filtri</bookmark_value><bookmark_value>Modulo, filtri file</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -3054,7 +3054,7 @@ msgctxt ""
"hd_id771554399002497\n"
"help.text"
msgid "<link href=\"text/shared/guide/convertfilters.xhp\" name=\"conversion filter names\">File Conversion Filter Names</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/convertfilters.xhp\" name=\"Nomi dei filtri di conversione file\">Nomi dei filtri di conversione file</link>"
#: convertfilters.xhp
msgctxt ""
@@ -3062,7 +3062,7 @@ msgctxt ""
"par_id581554399002498\n"
"help.text"
msgid "<variable id=\"variable name\"><ahelp hid=\".\">Tables with filter names for command line document conversion.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"variable name\"><ahelp hid=\".\">Tabelle con i nomi dei filtri per la conversione di documenti a riga di comando.</ahelp></variable>"
#: convertfilters.xhp
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"par_id00tablehead\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\"><variable visibility=\"hidden\" id=\"filtername\">Filter name</variable><variable visibility=\"hidden\" id=\"mediatype\">Media type</variable><variable visibility=\"hidden\" id=\"fileextensions\">File name extensions</variable></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\"><variable visibility=\"hidden\" id=\"filtername\">Nome del filtro</variable><variable visibility=\"hidden\" id=\"mediatype\">Tipo di supporto</variable><variable visibility=\"hidden\" id=\"fileextensions\">Estensioni del nome file</variable></ahelp>"
#: convertfilters.xhp
msgctxt ""
@@ -3078,7 +3078,7 @@ msgctxt ""
"bm_000writer\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for WRITER</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Comando, conversione documenti a riga di;filtri per Writer</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -3086,7 +3086,7 @@ msgctxt ""
"hd_000writer\n"
"help.text"
msgid "Filters for WRITER"
-msgstr ""
+msgstr "Filtri per Writer"
#: convertfilters.xhp
msgctxt ""
@@ -3214,7 +3214,7 @@ msgctxt ""
"par_writer36\n"
"help.text"
msgid "LotusWordPro Document"
-msgstr ""
+msgstr "Documento LotusWordPro"
#: convertfilters.xhp
msgctxt ""
@@ -3222,7 +3222,7 @@ msgctxt ""
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
-msgstr ""
+msgstr "Modello MS Word 95"
#: convertfilters.xhp
msgctxt ""
@@ -3246,7 +3246,7 @@ msgctxt ""
"par_writer48\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -3254,7 +3254,7 @@ msgctxt ""
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -3262,7 +3262,7 @@ msgctxt ""
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -3278,7 +3278,7 @@ msgctxt ""
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
-msgstr ""
+msgstr "Microsoft Word 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3342,7 +3342,7 @@ msgctxt ""
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
-msgstr ""
+msgstr "Documento di testo XML Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -3438,7 +3438,7 @@ msgctxt ""
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
+msgstr "Rich Text Format"
#: convertfilters.xhp
msgctxt ""
@@ -3462,7 +3462,7 @@ msgctxt ""
"par_writer124\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "testo semplice"
#: convertfilters.xhp
msgctxt ""
@@ -3478,7 +3478,7 @@ msgctxt ""
"par_writer127\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "testo semplice"
#: convertfilters.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"par_writer130\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "testo semplice"
#: convertfilters.xhp
msgctxt ""
@@ -3502,7 +3502,7 @@ msgctxt ""
"par_writer132\n"
"help.text"
msgid "Word 2007–2019"
-msgstr ""
+msgstr "Word 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
-msgstr ""
+msgstr "Modello Word 97–2000"
#: convertfilters.xhp
msgctxt ""
@@ -3534,7 +3534,7 @@ msgctxt ""
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
-msgstr ""
+msgstr "Word 97-2003"
#: convertfilters.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"par_writer153\n"
"help.text"
msgid "Writer 6.0 Master Document"
-msgstr ""
+msgstr "Documento master Writer 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3566,7 +3566,7 @@ msgctxt ""
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
-msgstr ""
+msgstr "Modello Writer 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3606,7 +3606,7 @@ msgctxt ""
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
-msgstr ""
+msgstr "Writer Layout Dump"
#: convertfilters.xhp
msgctxt ""
@@ -3622,7 +3622,7 @@ msgctxt ""
"par_writer174\n"
"help.text"
msgid "Writer/Web 6.0 Template"
-msgstr ""
+msgstr "Modello Writer/Web 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3638,7 +3638,7 @@ msgctxt ""
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Comando, conversione documenti a riga di; filtri per Calc</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -3646,7 +3646,7 @@ msgctxt ""
"hd_000calc\n"
"help.text"
msgid "Filters for CALC"
-msgstr ""
+msgstr "Filtri per Calc"
#: convertfilters.xhp
msgctxt ""
@@ -3662,7 +3662,7 @@ msgctxt ""
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
-msgstr ""
+msgstr "Calc 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3670,7 +3670,7 @@ msgctxt ""
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
-msgstr ""
+msgstr "Modello Calc 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3710,7 +3710,7 @@ msgctxt ""
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
-msgstr ""
+msgstr "Data Interchange Format"
#: convertfilters.xhp
msgctxt ""
@@ -3742,7 +3742,7 @@ msgctxt ""
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
-msgstr ""
+msgstr "Modello Excel 97–2000"
#: convertfilters.xhp
msgctxt ""
@@ -3750,7 +3750,7 @@ msgctxt ""
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
-msgstr ""
+msgstr "Excel 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -3774,7 +3774,7 @@ msgctxt ""
"par_calc40\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "testo/html"
#: convertfilters.xhp
msgctxt ""
@@ -3790,7 +3790,7 @@ msgctxt ""
"par_calc43\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "testo/html"
#: convertfilters.xhp
msgctxt ""
@@ -3870,7 +3870,7 @@ msgctxt ""
"par_calc60\n"
"help.text"
msgid "MS Excel 4.0 Template"
-msgstr ""
+msgstr "Modello MS Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
-msgstr ""
+msgstr "Modello MS Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -3886,7 +3886,7 @@ msgctxt ""
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
-msgstr ""
+msgstr "Modello MS Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -3918,7 +3918,7 @@ msgctxt ""
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -3926,7 +3926,7 @@ msgctxt ""
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -3934,7 +3934,7 @@ msgctxt ""
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -4046,7 +4046,7 @@ msgctxt ""
"par_calc111\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
+msgstr "Rich Text Format"
#: convertfilters.xhp
msgctxt ""
@@ -4062,7 +4062,7 @@ msgctxt ""
"par_calc115\n"
"help.text"
msgid "text/spreadsheet"
-msgstr ""
+msgstr "testo/foglio elettronico"
#: convertfilters.xhp
msgctxt ""
@@ -4078,7 +4078,7 @@ msgctxt ""
"par_calc118\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "testo semplice"
#: convertfilters.xhp
msgctxt ""
@@ -4102,7 +4102,7 @@ msgctxt ""
"bm_000impress\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for IMPRESS</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Comando, conversione documenti a riga di; filtri per Impress</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -4110,7 +4110,7 @@ msgctxt ""
"hd_000impress\n"
"help.text"
msgid "Filters for IMPRESS"
-msgstr ""
+msgstr "Filtri per Impress"
#: convertfilters.xhp
msgctxt ""
@@ -4142,7 +4142,7 @@ msgctxt ""
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
-msgstr ""
+msgstr "Modello Impress 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4166,7 +4166,7 @@ msgctxt ""
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
-msgstr ""
+msgstr "Presentazione Mac obsoleta"
#: convertfilters.xhp
msgctxt ""
@@ -4214,7 +4214,7 @@ msgctxt ""
"par_impress27\n"
"help.text"
msgid "Office Open XML Presentation"
-msgstr ""
+msgstr "Presentazione Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4230,7 +4230,7 @@ msgctxt ""
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
-msgstr ""
+msgstr "Modello di presentazione Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4246,7 +4246,7 @@ msgctxt ""
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
+msgstr "Disegno OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -4254,7 +4254,7 @@ msgctxt ""
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
-msgstr ""
+msgstr "Presentazione OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -4262,7 +4262,7 @@ msgctxt ""
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4270,7 +4270,7 @@ msgctxt ""
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4278,7 +4278,7 @@ msgctxt ""
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4286,7 +4286,7 @@ msgctxt ""
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
-msgstr ""
+msgstr "Modello di PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4294,7 +4294,7 @@ msgctxt ""
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
-msgstr ""
+msgstr "VBA di PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4302,7 +4302,7 @@ msgctxt ""
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
-msgstr ""
+msgstr "Modello PowerPoint 97–2000"
#: convertfilters.xhp
msgctxt ""
@@ -4310,7 +4310,7 @@ msgctxt ""
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -4318,7 +4318,7 @@ msgctxt ""
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -4326,7 +4326,7 @@ msgctxt ""
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Comando, conversione documenti a riga di; filtri per Draw</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -4334,7 +4334,7 @@ msgctxt ""
"hd_000draw\n"
"help.text"
msgid "Filters for DRAW"
-msgstr ""
+msgstr "Filtri per Draw"
#: convertfilters.xhp
msgctxt ""
@@ -4342,7 +4342,7 @@ msgctxt ""
"par_draw0\n"
"help.text"
msgid "Adobe PageMaker"
-msgstr ""
+msgstr "Adobe PageMaker"
#: convertfilters.xhp
msgctxt ""
@@ -4350,7 +4350,7 @@ msgctxt ""
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
-msgstr ""
+msgstr "Adobe/Macromedia Freehand"
#: convertfilters.xhp
msgctxt ""
@@ -4358,7 +4358,7 @@ msgctxt ""
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
+msgstr "Documento ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -4366,7 +4366,7 @@ msgctxt ""
"par_draw9\n"
"help.text"
msgid "Corel Draw"
-msgstr ""
+msgstr "Corel Draw"
#: convertfilters.xhp
msgctxt ""
@@ -4374,7 +4374,7 @@ msgctxt ""
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
-msgstr ""
+msgstr "Corel Presentation Exchange"
#: convertfilters.xhp
msgctxt ""
@@ -4382,7 +4382,7 @@ msgctxt ""
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
-msgstr ""
+msgstr "Modello Draw 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4390,7 +4390,7 @@ msgctxt ""
"par_draw18\n"
"help.text"
msgid "Draw 8"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -4398,7 +4398,7 @@ msgctxt ""
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
-msgstr ""
+msgstr "Modello Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -4406,7 +4406,7 @@ msgctxt ""
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
-msgstr ""
+msgstr "Bitmap Mac obsoleto"
#: convertfilters.xhp
msgctxt ""
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_draw25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nessuno"
#: convertfilters.xhp
msgctxt ""
@@ -4422,7 +4422,7 @@ msgctxt ""
"par_draw27\n"
"help.text"
msgid "Legacy Mac Drawing"
-msgstr ""
+msgstr "Disegno Mac obsoleto"
#: convertfilters.xhp
msgctxt ""
@@ -4430,7 +4430,7 @@ msgctxt ""
"par_draw28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nessuno"
#: convertfilters.xhp
msgctxt ""
@@ -4438,7 +4438,7 @@ msgctxt ""
"par_draw30\n"
"help.text"
msgid "Legacy StarOffice Drawing"
-msgstr ""
+msgstr "Disegno StarOffice obsoleto"
#: convertfilters.xhp
msgctxt ""
@@ -4446,7 +4446,7 @@ msgctxt ""
"par_draw31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nessuno"
#: convertfilters.xhp
msgctxt ""
@@ -4454,7 +4454,7 @@ msgctxt ""
"par_draw33\n"
"help.text"
msgid "Microsoft Publisher 2003"
-msgstr ""
+msgstr "Microsoft Publisher 2003"
#: convertfilters.xhp
msgctxt ""
@@ -4462,7 +4462,7 @@ msgctxt ""
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
-msgstr ""
+msgstr "Microsoft Visio"
#: convertfilters.xhp
msgctxt ""
@@ -4470,7 +4470,7 @@ msgctxt ""
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
-msgstr ""
+msgstr "OpenDocument - Disegno (XML semplice)"
#: convertfilters.xhp
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
+msgstr "Disegno OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -4486,7 +4486,7 @@ msgctxt ""
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4494,7 +4494,7 @@ msgctxt ""
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
-msgstr ""
+msgstr "QuarkXPress"
#: convertfilters.xhp
msgctxt ""
@@ -4502,7 +4502,7 @@ msgctxt ""
"par_draw49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nessuno"
#: convertfilters.xhp
msgctxt ""
@@ -4510,7 +4510,7 @@ msgctxt ""
"par_draw51\n"
"help.text"
msgid "WordPerfect Graphics"
-msgstr ""
+msgstr "Immagini WordPerfect"
#: convertfilters.xhp
msgctxt ""
@@ -4518,7 +4518,7 @@ msgctxt ""
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
-msgstr ""
+msgstr "Zoner Callisto/Disegno"
#: convertfilters.xhp
msgctxt ""
@@ -4526,7 +4526,7 @@ msgctxt ""
"par_draw55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nessuno"
#: convertfilters.xhp
msgctxt ""
@@ -4534,7 +4534,7 @@ msgctxt ""
"bm_000math\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for MATH</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Comando, conversione documenti a riga di; filtri per Math</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -4542,7 +4542,7 @@ msgctxt ""
"hd_000math\n"
"help.text"
msgid "Filters for MATH"
-msgstr ""
+msgstr "Filtri per Math"
#: convertfilters.xhp
msgctxt ""
@@ -4550,7 +4550,7 @@ msgctxt ""
"par_math0\n"
"help.text"
msgid "Math 8"
-msgstr ""
+msgstr "Math 8"
#: convertfilters.xhp
msgctxt ""
@@ -4558,7 +4558,7 @@ msgctxt ""
"par_math3\n"
"help.text"
msgid "MathML 2.0"
-msgstr ""
+msgstr "MathML 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -4566,7 +4566,7 @@ msgctxt ""
"par_math6\n"
"help.text"
msgid "MathType3.x"
-msgstr ""
+msgstr "MathType3.x"
#: convertfilters.xhp
msgctxt ""
@@ -4574,7 +4574,7 @@ msgctxt ""
"par_math7\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nessuno"
#: convertfilters.xhp
msgctxt ""
@@ -4582,7 +4582,7 @@ msgctxt ""
"par_math9\n"
"help.text"
msgid "OpenOffice.org 1.0 Formula"
-msgstr ""
+msgstr "Formula OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -4590,7 +4590,7 @@ msgctxt ""
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4598,7 +4598,7 @@ msgctxt ""
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Comando, conversione documenti a riga di; filtri per Base</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -4606,7 +4606,7 @@ msgctxt ""
"hd_000base\n"
"help.text"
msgid "Filters for BASE"
-msgstr ""
+msgstr "Filtri per Base"
#: convertfilters.xhp
msgctxt ""
@@ -4614,7 +4614,7 @@ msgctxt ""
"par_base0\n"
"help.text"
msgid "OpenDocument Database"
-msgstr ""
+msgstr "Database OpenDocument"
#: convertfilters.xhp
msgctxt ""
@@ -4622,7 +4622,7 @@ msgctxt ""
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Comando, conversione documenti a riga di; filtri per Graphicfilter</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -4630,7 +4630,7 @@ msgctxt ""
"hd_000graphicfilter\n"
"help.text"
msgid "Filters for GRAPHICFILTER"
-msgstr ""
+msgstr "Filtri per Graphicfilter"
#: convertfilters.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"par_graphicfilter0\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
+msgstr "BMP - Windows Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -4646,7 +4646,7 @@ msgctxt ""
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
+msgstr "BMP - Windows Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -4654,7 +4654,7 @@ msgctxt ""
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
-msgstr ""
+msgstr "CGM - Computer Graphics Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -4662,7 +4662,7 @@ msgctxt ""
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
-msgstr ""
+msgstr "DXF - AutoCAD Interchange Format"
#: convertfilters.xhp
msgctxt ""
@@ -4670,7 +4670,7 @@ msgctxt ""
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
+msgstr "EMF - Enhanced Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -4678,7 +4678,7 @@ msgctxt ""
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
+msgstr "EMF - Enhanced Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -4686,7 +4686,7 @@ msgctxt ""
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
+msgstr "EPS - Encapsulated PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -4694,7 +4694,7 @@ msgctxt ""
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
+msgstr "EPS - Encapsulated PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -4702,7 +4702,7 @@ msgctxt ""
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
+msgstr "GIF - Graphics Interchange"
#: convertfilters.xhp
msgctxt ""
@@ -4710,7 +4710,7 @@ msgctxt ""
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
+msgstr "GIF - Graphics Interchange"
#: convertfilters.xhp
msgctxt ""
@@ -4718,7 +4718,7 @@ msgctxt ""
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -4726,7 +4726,7 @@ msgctxt ""
"par_graphicfilter31\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "testo/html"
#: convertfilters.xhp
msgctxt ""
@@ -4734,7 +4734,7 @@ msgctxt ""
"par_graphicfilter33\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -4742,7 +4742,7 @@ msgctxt ""
"par_graphicfilter34\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "testo/html"
#: convertfilters.xhp
msgctxt ""
@@ -4750,7 +4750,7 @@ msgctxt ""
"par_graphicfilter36\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -4758,7 +4758,7 @@ msgctxt ""
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -4766,7 +4766,7 @@ msgctxt ""
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -4774,7 +4774,7 @@ msgctxt ""
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
+msgstr "MET - OS/2 Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -4782,7 +4782,7 @@ msgctxt ""
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
+msgstr "MET - OS/2 Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -4790,7 +4790,7 @@ msgctxt ""
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
-msgstr ""
+msgstr "MOV - Formato QuickTime"
#: convertfilters.xhp
msgctxt ""
@@ -4798,7 +4798,7 @@ msgctxt ""
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -4806,7 +4806,7 @@ msgctxt ""
"par_graphicfilter55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nessuno"
#: convertfilters.xhp
msgctxt ""
@@ -4814,7 +4814,7 @@ msgctxt ""
"par_graphicfilter57\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -4822,7 +4822,7 @@ msgctxt ""
"par_graphicfilter58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nessuno"
#: convertfilters.xhp
msgctxt ""
@@ -4830,7 +4830,7 @@ msgctxt ""
"par_graphicfilter60\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
+msgstr "PBM - Portable Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -4838,7 +4838,7 @@ msgctxt ""
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
+msgstr "PBM - Portable Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -4846,7 +4846,7 @@ msgctxt ""
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
-msgstr ""
+msgstr "PCD - Photo CD Base"
#: convertfilters.xhp
msgctxt ""
@@ -4854,7 +4854,7 @@ msgctxt ""
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
-msgstr ""
+msgstr "PCD - Photo CD Base16"
#: convertfilters.xhp
msgctxt ""
@@ -4862,7 +4862,7 @@ msgctxt ""
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
-msgstr ""
+msgstr "PCD - Photo CD Base4"
#: convertfilters.xhp
msgctxt ""
@@ -4870,7 +4870,7 @@ msgctxt ""
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
+msgstr "PCT - Mac Pict"
#: convertfilters.xhp
msgctxt ""
@@ -4878,7 +4878,7 @@ msgctxt ""
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
+msgstr "PCT - Mac Pict"
#: convertfilters.xhp
msgctxt ""
@@ -4886,7 +4886,7 @@ msgctxt ""
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
-msgstr ""
+msgstr "PCX - Zsoft Paintbrush"
#: convertfilters.xhp
msgctxt ""
@@ -4894,7 +4894,7 @@ msgctxt ""
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: convertfilters.xhp
msgctxt ""
@@ -4902,7 +4902,7 @@ msgctxt ""
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: convertfilters.xhp
msgctxt ""
@@ -4910,7 +4910,7 @@ msgctxt ""
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -4918,7 +4918,7 @@ msgctxt ""
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -4926,7 +4926,7 @@ msgctxt ""
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -4934,7 +4934,7 @@ msgctxt ""
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -4942,7 +4942,7 @@ msgctxt ""
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: convertfilters.xhp
msgctxt ""
@@ -4950,7 +4950,7 @@ msgctxt ""
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: convertfilters.xhp
msgctxt ""
@@ -4958,7 +4958,7 @@ msgctxt ""
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
-msgstr ""
+msgstr "PSD - Adobe Photoshop"
#: convertfilters.xhp
msgctxt ""
@@ -4966,7 +4966,7 @@ msgctxt ""
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
+msgstr "RAS - Sun Raster Image"
#: convertfilters.xhp
msgctxt ""
@@ -4974,7 +4974,7 @@ msgctxt ""
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
+msgstr "RAS - Sun Raster Image"
#: convertfilters.xhp
msgctxt ""
@@ -4982,7 +4982,7 @@ msgctxt ""
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -4990,7 +4990,7 @@ msgctxt ""
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -4998,7 +4998,7 @@ msgctxt ""
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -5006,7 +5006,7 @@ msgctxt ""
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -5014,7 +5014,7 @@ msgctxt ""
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr ""
+msgstr "SVG - Disegno Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -5022,7 +5022,7 @@ msgctxt ""
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr ""
+msgstr "SVG - Disegno Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -5030,7 +5030,7 @@ msgctxt ""
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
-msgstr ""
+msgstr "SVM - StarView Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -5038,7 +5038,7 @@ msgctxt ""
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
-msgstr ""
+msgstr "SVM - StarView Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -5046,7 +5046,7 @@ msgctxt ""
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
-msgstr ""
+msgstr "TGA - Truevision Targa"
#: convertfilters.xhp
msgctxt ""
@@ -5054,7 +5054,7 @@ msgctxt ""
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
-msgstr ""
+msgstr "TIFF - Tagged Image File Format"
#: convertfilters.xhp
msgctxt ""
@@ -5062,7 +5062,7 @@ msgctxt ""
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
-msgstr ""
+msgstr "TIFF - Tagged Image File Format"
#: convertfilters.xhp
msgctxt ""
@@ -5070,7 +5070,7 @@ msgctxt ""
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
+msgstr "WMF - Windows Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5078,7 +5078,7 @@ msgctxt ""
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
+msgstr "WMF - Windows Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5086,7 +5086,7 @@ msgctxt ""
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
-msgstr ""
+msgstr "XBM - X Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5094,7 +5094,7 @@ msgctxt ""
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
+msgstr "XPM - X PixMap"
#: convertfilters.xhp
msgctxt ""
@@ -5102,7 +5102,7 @@ msgctxt ""
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
+msgstr "XPM - X PixMap"
#: copy_drawfunctions.xhp
msgctxt ""
@@ -8078,7 +8078,7 @@ msgctxt ""
"par_idN10640\n"
"help.text"
msgid "You can get a certificate from a certification authority. No matter if you choose a governmental institution or a private company it is common to be charged for this service, for example when they certify your identity. Few other authorities issue certificates free of costs, like the Open Source Project <link href=\"https://www.CAcert.org/\"><emph>CAcert</emph></link> which is based on the well-known and reliable Web of Trust model and is of growing popularity."
-msgstr ""
+msgstr "È possibile ottenere un certificato da un'autorità di certificazione. Non importa se scegliete un'istituzione governativa o un'azienda privata, è normale che questo servizio sia a pagamento, ad esempio quando si tratta di certificazione della vostra identità. Poche altre autorità rilasciano certificati gratuiti, come il progetto open source <link href=\"https://www.CAcert.org/\"><emph>CAcert</emph></link>, che si basa sul noto e affidabile modello Web of Trust e sta crescendo in popolarità."
#: digitalsign_send.xhp
msgctxt ""
@@ -8198,7 +8198,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "After saving, you see the <link href=\"text/shared/01/digitalsignatures.xhp\"><emph>Digital Signatures</emph></link> dialog. Click <emph>Add</emph> to add a public key to the document."
-msgstr ""
+msgstr "Dopo il salvataggio, viene visualizzata la finestra di dialogo <link href=\"text/shared/01/digitalsignatures.xhp\"><emph>Firme digitali</emph></link>. Scegliete <emph>Aggiungi</emph> per aggiungere una chiave pubblica al documento."
#: digitalsign_send.xhp
msgctxt ""
@@ -8206,7 +8206,7 @@ msgctxt ""
"par_idN106AE\n"
"help.text"
msgid "In the <link href=\"text/shared/01/selectcertificate.xhp\"><emph>Select Certificate</emph></link> dialog, select your certificate and click <emph>OK</emph>."
-msgstr ""
+msgstr "Nella finestra di dialogo <link href=\"text/shared/01/selectcertificate.xhp\"><emph>Seleziona certificato</emph></link>, selezionate il certificato e fate clic su <emph>OK</emph>."
#: digitalsign_send.xhp
msgctxt ""
@@ -8222,7 +8222,7 @@ msgctxt ""
"par_idN106C3\n"
"help.text"
msgid "A signed document shows an icon<image id=\"img_id262764\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id262764\">Icon</alt></image> in the status bar. You can double-click the icon in the status bar to view the certificate."
-msgstr ""
+msgstr "Nella barra di stato viene visualizzata un'icona <image id=\"img_id262764\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id262764\">Icona</alt></image> per i documenti firmati. Potete fare doppio clic su questa icona nella barra di stato per visualizzare il certificato."
#: digitalsign_send.xhp
msgctxt ""
@@ -8230,7 +8230,7 @@ msgctxt ""
"par_id2008200911381426\n"
"help.text"
msgid "The result of the signature validation is displayed in the status bar and within the <emph>Digital Signature</emph> 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 <emph>invalid</emph>."
-msgstr ""
+msgstr "Il risultato della convalida della firma viene visualizzato nella barra di stato e all'interno della finestra di dialogo <emph>Firma digitale</emph>. Possono coesistere diverse firme di documenti e macro all'interno di un documento ODF. In caso di problemi con una firma il risultato di convalida per quella firma viene presupposto per tutte le firme. In altre parole, se vi sono dieci firme valide e una firma non valida, allora il flag all'interno della barra di stato e del campo di stato della finestra indicherà una firma <emph>non valida</emph>."
#: digitalsign_send.xhp
msgctxt ""
@@ -8270,7 +8270,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.<br/>You can double-click the icon in the status bar to view the certificate."
-msgstr ""
+msgstr "All'apertura dell'IDE Basic contenente le macro firmate, nella barra di stato è visibile un'icona<image id=\"img_id9252296\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id9252296\">Icona</alt></image><br/>. Potete fare doppio clic su questa icona per visualizzare il certificato."
#: digitalsign_send.xhp
msgctxt ""
@@ -8278,7 +8278,7 @@ msgctxt ""
"par_id5734733\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to open the <emph>View Certificate</emph> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per aprire la finestra di dialogo <emph>Visualizza certificato</emph>.</ahelp>"
#: digitalsign_send.xhp
msgctxt ""
@@ -8302,7 +8302,7 @@ msgctxt ""
"par_id3204443\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\">English Wiki page on digital signatures</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\">Pagina wiki in inglese sulle firme digitali</link>"
#: digitalsign_send.xhp
msgctxt ""
@@ -8454,7 +8454,7 @@ msgctxt ""
"bm_id3147834\n"
"help.text"
msgid "<bookmark_value>opening; documents</bookmark_value> <bookmark_value>documents; opening</bookmark_value> <bookmark_value>files; opening</bookmark_value> <bookmark_value>loading; documents</bookmark_value> <bookmark_value>spreadsheets;creating/opening</bookmark_value> <bookmark_value>presentations;creating/opening</bookmark_value> <bookmark_value>new documents</bookmark_value> <bookmark_value>empty documents</bookmark_value> <bookmark_value>text documents;creating/opening</bookmark_value> <bookmark_value>drawings; creating/opening</bookmark_value> <bookmark_value>HTML documents; new</bookmark_value> <bookmark_value>formulas; new</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Aprire; documenti</bookmark_value><bookmark_value>Documento;aprire</bookmark_value><bookmark_value>File; aprire</bookmark_value><bookmark_value>Caricare; documenti</bookmark_value><bookmark_value>Foglio elettronico; creare/aprire</bookmark_value><bookmark_value>Presentazione; creare/aprire</bookmark_value><bookmark_value>Documento; nuovo</bookmark_value><bookmark_value>Documento; vuoto</bookmark_value><bookmark_value>Documento di testo; creare/aprire</bookmark_value><bookmark_value>Disegno; creare/aprire</bookmark_value><bookmark_value>HTML, documento; nuovo</bookmark_value><bookmark_value>Formula;nuova</bookmark_value>"
#: doc_open.xhp
msgctxt ""
@@ -8486,7 +8486,7 @@ msgctxt ""
"par_idN107A9\n"
"help.text"
msgid "Choose <menuitem>File – Open</menuitem>"
-msgstr ""
+msgstr "Scegliete <menuitem>File – Apri</menuitem>"
#: doc_open.xhp
msgctxt ""
@@ -8494,7 +8494,7 @@ msgctxt ""
"par_id210820160859353525\n"
"help.text"
msgid "Choose<menuitem> File – Open Remote</menuitem>"
-msgstr ""
+msgstr "Scegliete <menuitem>File – Apri in remoto</menuitem>"
#: doc_open.xhp
msgctxt ""
@@ -8550,7 +8550,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\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - User Data</menuitem>."
-msgstr ""
+msgstr "Si verifica un'eccezione quando l'autore di un documento di testo di Writer salva e riapre un documento: il cursore si troverà nel punto in cui si trovava al momento del salvataggio del documento. Ciò si verifica solo se l'autore ha inserito il suo nome in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferenze</menuitem></caseinline><defaultinline><menuitem>Strumenti - Opzioni</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Dati utente</menuitem>."
#: doc_open.xhp
msgctxt ""
@@ -8558,7 +8558,7 @@ msgctxt ""
"par_id3422650\n"
"help.text"
msgid "Press <keycode>Shift+F5</keycode> to set the cursor to the last saved position."
-msgstr ""
+msgstr "Premete <keycode>Maiusc+F5</keycode> per spostare il cursore nell'ultima posizione salvata."
#: doc_open.xhp
msgctxt ""
@@ -10830,7 +10830,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 choosing <emph>Insert - Media - Gallery</emph>."
-msgstr "Aprite la Galleria facendo clic sull'icona Galleria</emph> nella barra <emph>Standard</emph>, oppure scegliendo <emph>Inserisci - Media</emph>."
+msgstr "Aprite la Galleria facendo clic sull'icona <emph>Galleria</emph> nella barra <emph>Standard</emph>, oppure scegliendo <emph>Inserisci - Media</emph>."
#: gallery_insert.xhp
msgctxt ""
@@ -11542,7 +11542,7 @@ msgctxt ""
"par_idN1068A\n"
"help.text"
msgid "With the image selected, choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw. You see the <link href=\"text/shared/01/02220000.xhp\">ImageMap Editor</link>, which displays the image at the background."
-msgstr ""
+msgstr "Dopo aver selezionato l'immagine, scegliete <emph>Modifica - Mappa immagine</emph> in Writer e Calc o <emph>Strumenti - Mappa immagine</emph> in Impress e Draw. Viene visualizzato l'<link href=\"text/shared/01/02220000.xhp\">Editor della Mappa immagine</link> con l'immagine sullo sfondo."
#: imagemap.xhp
msgctxt ""
@@ -13966,7 +13966,7 @@ msgctxt ""
"par_id3150753\n"
"help.text"
msgid "Then open the context menu in the <emph>Styles</emph> window and select <emph>Modify</emph>. This opens the <emph>Character Style</emph> dialog."
-msgstr ""
+msgstr "Aprite quindi il menu di contesto nella finestra <emph>Stili</emph> e selezionate <emph>Modifica</emph>. Si apre la finestra di dialogo <emph>Stile di carattere</emph>."
#: language_select.xhp
msgctxt ""
@@ -14022,7 +14022,7 @@ msgctxt ""
"par_id2897427\n"
"help.text"
msgid "In the next page, click the <emph>Get It</emph> icon to download the dictionary extension. Note the folder name to which your browser downloads the file. Download additional dictionaries as you like."
-msgstr ""
+msgstr "Nella pagina successiva fate clic sull'icona <emph>Scarica</emph> per scaricare l'estensione del dizionario. Annotate il nome della cartella in cui il browser scarica il file. Potete scaricare dizionari aggiuntivi a vostro piacimento."
#: language_select.xhp
msgctxt ""
@@ -14030,7 +14030,7 @@ msgctxt ""
"par_id3906979\n"
"help.text"
msgid "In %PRODUCTNAME, choose <item type=\"menuitem\">Tools - Extension Manager</item> and click <emph>Add</emph> to install the downloaded extensions."
-msgstr ""
+msgstr "In %PRODUCTNAME, scegliete <item type=\"menuitem\">Strumenti - Gestione estensioni</item> e fate clic su <emph>Aggiungi</emph> per installare le estensioni scaricate."
#: language_select.xhp
msgctxt ""
@@ -14086,7 +14086,7 @@ msgctxt ""
"par_id3806878\n"
"help.text"
msgid "Click <emph>OK</emph> and restart the %PRODUCTNAME software."
-msgstr ""
+msgstr "Fate clic su <emph>OK</emph> e riavviate %PRODUCTNAME."
#: language_select.xhp
msgctxt ""
@@ -14118,7 +14118,7 @@ msgctxt ""
"par_id3791925\n"
"help.text"
msgid "Run %PRODUCTNAME installer, choose <emph>Modify</emph>, then select the language that you would like to install from the <emph>Additional user interface languages</emph> group."
-msgstr ""
+msgstr "Avviate l'installatore di %PRODUCTNAME, scegliete <emph>Modifica</emph>, poi selezionate la lingua che desiderate installare dal gruppo <emph>Lingue di interfaccia utente aggiuntive</emph>."
#: language_select.xhp
msgctxt ""
@@ -14158,7 +14158,7 @@ msgctxt ""
"par_id2216559\n"
"help.text"
msgid "Open your web browser and enter <link href=\"https://www.libreoffice.org/download/\"><emph>https://www.libreoffice.org/download/</emph></link>."
-msgstr ""
+msgstr "Aprite il browser web e digitate <link href=\"https://it.libreoffice.org/download/\">https://it.libreoffice.org/download/</link>"
#: language_select.xhp
msgctxt ""
@@ -14190,7 +14190,7 @@ msgctxt ""
"par_id221655a\n"
"help.text"
msgid "Open your web browser and enter <link href=\"https://www.libreoffice.org/download/\"><emph>https://www.libreoffice.org/download/</emph></link>."
-msgstr ""
+msgstr "Aprite il browser web e digitate <link href=\"https://it.libreoffice.org/download/\">https://it.libreoffice.org/download/</link>"
#: language_select.xhp
msgctxt ""
@@ -16526,7 +16526,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "OpenPGP"
-msgstr ""
+msgstr "OpenPGP"
#: openpgp.xhp
msgctxt ""
@@ -16534,7 +16534,7 @@ msgctxt ""
"bm_id361543701916002\n"
"help.text"
msgid "<bookmark_value>OpenPGP;document encryption</bookmark_value> <bookmark_value>file encryption;OpenPGP</bookmark_value> <bookmark_value>public key;file encryption</bookmark_value> <bookmark_value>private key;file encryption</bookmark_value> <bookmark_value>file encryption;symmetric keys</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>OpenPGP;cifratura dei documenti</bookmark_value><bookmark_value>File, cifratura dei;OpenPGP</bookmark_value><bookmark_value>Pubblica, chiave;cifratura dei file</bookmark_value><bookmark_value>Privata, chiave;cifratura dei file</bookmark_value><bookmark_value>File, cifratura dei;chiavi simmetriche</bookmark_value>"
#: openpgp.xhp
msgctxt ""
@@ -16542,7 +16542,7 @@ msgctxt ""
"hd_id131543693200115\n"
"help.text"
msgid "<link href=\"text/shared/guide/openpgp.xhp\" name=\"openpgp\">Encrypting Documents with OpenPGP</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/openpgp.xhp\" name=\"openpgp\">Cifratura dei documenti con OpenPGP</link>"
#: openpgp.xhp
msgctxt ""
@@ -16550,7 +16550,7 @@ msgctxt ""
"par_id531543693200117\n"
"help.text"
msgid "<ahelp hid=\".\">%PRODUCTNAME can encrypt documents using OpenPGP public key cryptography. The document is encrypted using a symmetric encryption algorithm.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">%PRODUCTNAME può cifrare i documenti tramite crittografia a chiave pubblica OpenPGP. Il documento viene cifrato con un algoritmo di cifratura simmetrico.</ahelp>"
#: openpgp.xhp
msgctxt ""
@@ -16558,7 +16558,7 @@ msgctxt ""
"par_id551543694091730\n"
"help.text"
msgid "Choose menu <menuitem>File - Save as</menuitem>, select <widget>Encrypt with GPG key</widget>, Click <widget>Save</widget>."
-msgstr ""
+msgstr "Scegliete il menu <menuitem>File - Salva con nome</menuitem>, selezionate <widget>Cifra con chiave GPG</widget>, quindi <widget>Salva</widget>."
#: openpgp.xhp
msgctxt ""
@@ -16566,7 +16566,7 @@ msgctxt ""
"par_id421543694016897\n"
"help.text"
msgid "%PRODUCTNAME can encrypt documents confidentially using OpenPGP. The document is encrypted using a symmetric encryption algorithm, which requires a symmetric key. Each symmetric key is used only once and is also called a session key. The document and its session key are sent to the recipient. The session key must be sent to the recipients so they know how to decrypt the document, but to protect it during transmission it is encrypted with the recipient's public key. Only the private key belonging to the recipient can decrypt the session key."
-msgstr ""
+msgstr "%PRODUCTNAME può cifrare i documenti in modo riservato tramite OpenPGP. Il documento viene cifrato con un algoritmo di cifratura simmetrico che richiede una chiave simmetrica. Ogni chiave simmetrica viene utilizzata una sola volta ed è definita anche chiave di sessione. Il documento e la sua chiave di sessione vengono inviati al destinatario. La chiave di sessione deve essere inviata ai destinatari per consentire loro di decifrare il documento, ma per proteggerlo durante la trasmissione viene cifrato con la chiave pubblica del destinatario. Solo la chiave privata del destinatario può decifrare la chiave di sessione."
#: openpgp.xhp
msgctxt ""
@@ -16574,7 +16574,7 @@ msgctxt ""
"par_id931543694032072\n"
"help.text"
msgid "%PRODUCTNAME uses the OpenPGP software installed in your computer. If no OpenPGP software is available you must download and install one suitable for your operating system, likely from your application store or software distribution channel."
-msgstr ""
+msgstr "%PRODUCTNAME utilizza il software OpenPGP installato nel computer. Se non è disponibile alcun software OpenPGP è necessario scaricarne e installarne uno adatto al proprio sistema operativo, probabilmente dal proprio store di applicazioni o dal proprio canale di distribuzione di software."
#: openpgp.xhp
msgctxt ""
@@ -16582,7 +16582,7 @@ msgctxt ""
"par_id131543846940809\n"
"help.text"
msgid "Here are some external GPG applications known to work with %PRODUCTNAME:"
-msgstr ""
+msgstr "Di seguito sono riportate alcune applicazioni GPG esterne note per essere compatibili con %PRODUCTNAME:"
#: openpgp.xhp
msgctxt ""
@@ -16590,7 +16590,7 @@ msgctxt ""
"par_id831543846877587\n"
"help.text"
msgid "<emph>gpg4win</emph> on Windows"
-msgstr ""
+msgstr "<emph>gpg4win</emph> su Windows"
#: openpgp.xhp
msgctxt ""
@@ -16598,7 +16598,7 @@ msgctxt ""
"par_id191543846891252\n"
"help.text"
msgid "<emph>GPGTools</emph> on MacOS"
-msgstr ""
+msgstr "<emph>GPGTools</emph> su MacOS"
#: openpgp.xhp
msgctxt ""
@@ -16606,7 +16606,7 @@ msgctxt ""
"par_id791543846905735\n"
"help.text"
msgid "On Linux, usually already installed:"
-msgstr ""
+msgstr "Su Linux generalmente sono già installate:"
#: openpgp.xhp
msgctxt ""
@@ -16614,7 +16614,7 @@ msgctxt ""
"par_id411544099245722\n"
"help.text"
msgid "<emph>gnupg</emph> - a command line utility for signing, encrypting and key management."
-msgstr ""
+msgstr "<emph>gnupg</emph>: un'utilità a riga di comando per la firma, la cifratura e la gestione delle chiavi."
#: openpgp.xhp
msgctxt ""
@@ -16622,7 +16622,7 @@ msgctxt ""
"par_id811544099299847\n"
"help.text"
msgid "Graphical applications for gnupg such as <emph>Seahorse</emph> (gnome), <emph>Kleopatra</emph> and <emph>KGpg</emph> (KDE)."
-msgstr ""
+msgstr "Applicazioni grafiche per gnupg come <emph>Seahorse</emph> (gnome), <emph>Kleopatra</emph> e <emph>KGpg</emph> (KDE)."
#: openpgp.xhp
msgctxt ""
@@ -16630,7 +16630,7 @@ msgctxt ""
"par_id631544099446081\n"
"help.text"
msgid "<emph>gpgme</emph> - an application program interface (API) to develop applications with GPG."
-msgstr ""
+msgstr "<emph>gpgme</emph>: un'interfaccia di programma applicativo (API) per sviluppare applicazioni con GPG."
#: openpgp.xhp
msgctxt ""
@@ -16638,7 +16638,7 @@ msgctxt ""
"par_id461543694043196\n"
"help.text"
msgid "You must define a personal pair of cryptography keys with the OpenPGP application. Refer to the OpenPGP software installed on how to create a pair of keys, it is usually the first step to execute after the software installation."
-msgstr ""
+msgstr "È necessario definire una coppia personale di chiavi di cifratura con l'applicazione OpenPGP. Fate riferimento al software OpenPGP installato per la procedura di creazione di una coppia di chiavi, di solito è il primo passo da compiere dopo l'installazione del software."
#: openpgp.xhp
msgctxt ""
@@ -16646,7 +16646,7 @@ msgctxt ""
"hd_id881543694319935\n"
"help.text"
msgid "%PRODUCTNAME Encryption Setup"
-msgstr ""
+msgstr "Impostazioni della cifratura di %PRODUCTNAME"
#: openpgp.xhp
msgctxt ""
@@ -16654,7 +16654,7 @@ msgctxt ""
"par_id611543699681558\n"
"help.text"
msgid "Choose menu <menuitem>Tools – Options – User Data</menuitem>. In the <emph>Cryptography</emph> area:"
-msgstr ""
+msgstr "Scegliete il menu <menuitem>Strumenti – Opzioni – Dati utente</menuitem>. Nell'area <emph>Cifratura</emph>:"
#: openpgp.xhp
msgctxt ""
@@ -16662,7 +16662,7 @@ msgctxt ""
"hd_id251543694437685\n"
"help.text"
msgid "Encrypting documents"
-msgstr ""
+msgstr "Cifrare documenti"
#: openpgp.xhp
msgctxt ""
@@ -16670,7 +16670,7 @@ msgctxt ""
"par_id121543694447798\n"
"help.text"
msgid "OpenPGP encryption requires the use of the public key of the recipient and this key must be available in the OpenPGP key chain stored in your computer. To encrypt a document:"
-msgstr ""
+msgstr "La cifratura OpenPGP richiede l'uso della chiave pubblica del destinatario che deve essere disponibile nel portachiavi OpenPGP memorizzato nel vostro computer. Per cifrare un documento:"
#: openpgp.xhp
msgctxt ""
@@ -16678,7 +16678,7 @@ msgctxt ""
"par_id501543694474227\n"
"help.text"
msgid "Choose <menuitem>File – Save As</menuitem>,"
-msgstr ""
+msgstr "Scegliete <menuitem>File – Salva con nome</menuitem>,"
#: openpgp.xhp
msgctxt ""
@@ -16686,7 +16686,7 @@ msgctxt ""
"par_id641543694535615\n"
"help.text"
msgid "Enter a name for the file."
-msgstr ""
+msgstr "Inserite un nome per il file."
#: openpgp.xhp
msgctxt ""
@@ -16694,7 +16694,7 @@ msgctxt ""
"par_id621543694550648\n"
"help.text"
msgid "Mark the <widget>Encrypt with GPG key</widget> checkbox."
-msgstr ""
+msgstr "Selezionate la casella <widget>Cifra con chiave GPG</widget>."
#: openpgp.xhp
msgctxt ""
@@ -16702,7 +16702,7 @@ msgctxt ""
"par_id91543694595310\n"
"help.text"
msgid "Click <widget>Save</widget>. %PRODUCTNAME opens the OpenPGP public key selection dialog."
-msgstr ""
+msgstr "Fate clic su <widget>Salva</widget>. %PRODUCTNAME apre la finestra di dialogo per la selezione della chiave pubblica OpenPGP."
#: openpgp.xhp
msgctxt ""
@@ -16710,7 +16710,7 @@ msgctxt ""
"par_id31543694619204\n"
"help.text"
msgid "Choose the public key of the recipient. You can select multiple keys at the time."
-msgstr ""
+msgstr "Selezionate la chiave pubblica del destinatario. È possibile selezionare più chiavi contemporaneamente."
#: openpgp.xhp
msgctxt ""
@@ -16718,7 +16718,7 @@ msgctxt ""
"par_id811543694660297\n"
"help.text"
msgid "Click <widget>OK</widget> to close the dialog and save the file."
-msgstr ""
+msgstr "Fate clic su <widget>OK</widget> per chiudere la finestra di dialogo e salvare il file."
#: openpgp.xhp
msgctxt ""
@@ -16726,7 +16726,7 @@ msgctxt ""
"par_id981543694776604\n"
"help.text"
msgid "The file is saved encrypted with the selected public keys."
-msgstr ""
+msgstr "Il file viene salvato in forma cifrata con le chiavi pubbliche selezionate."
#: openpgp.xhp
msgctxt ""
@@ -16734,7 +16734,7 @@ msgctxt ""
"par_id851543694185733\n"
"help.text"
msgid "Only the private key belonging to the recipient can decrypt the document, unless you also encrypt for yourself."
-msgstr ""
+msgstr "Solo la chiave privata appartenente al destinatario può decifrare il documento, a meno che non desideriate cifrarlo anche per voi."
#: openpgp.xhp
msgctxt ""
@@ -16742,7 +16742,7 @@ msgctxt ""
"hd_id81543694812238\n"
"help.text"
msgid "Decrypting documents"
-msgstr ""
+msgstr "Decifrare documenti"
#: openpgp.xhp
msgctxt ""
@@ -16750,7 +16750,7 @@ msgctxt ""
"par_id731543694835151\n"
"help.text"
msgid "You can only decrypt documents that have been encrypted with your public key. To decrypt a document:"
-msgstr ""
+msgstr "È possibile decifrare solo i documenti cifrati con chiave pubblica. Per decifrare un documento:"
#: openpgp.xhp
msgctxt ""
@@ -16758,7 +16758,7 @@ msgctxt ""
"par_id801543694880414\n"
"help.text"
msgid "Open the document. An Enter password prompt shows."
-msgstr ""
+msgstr "Aprite il documento. Comparirà una richiesta di inserimento della password."
#: openpgp.xhp
msgctxt ""
@@ -16766,7 +16766,7 @@ msgctxt ""
"par_id891543694892170\n"
"help.text"
msgid "Enter the password of the OpenPGP private key. The document is decrypted and the contents is available."
-msgstr ""
+msgstr "Inserite la password della chiave privata OpenPGP. Il documento viene decifrato e il contenuto reso disponibile."
#: openpgp.xhp
msgctxt ""
@@ -16774,7 +16774,7 @@ msgctxt ""
"hd_id811543694928568\n"
"help.text"
msgid "Difference between document encryption with OpenPGP and Save with password"
-msgstr ""
+msgstr "Differenza tra cifratura dei documenti con OpenPGP e salvataggio con password"
#: openpgp.xhp
msgctxt ""
@@ -16782,7 +16782,7 @@ msgctxt ""
"par_id391543694940352\n"
"help.text"
msgid "Both commands address confidentiality, but in different ways."
-msgstr ""
+msgstr "Entrambi i comandi sono orientati alla riservatezza, ma in modi diversi."
#: openpgp.xhp
msgctxt ""
@@ -16790,7 +16790,7 @@ msgctxt ""
"par_id331543694947279\n"
"help.text"
msgid "When you save a document with a password, you must remember the password inserted to open the document later. Anyone else that needs to open the document must also know the password used at save time. Therefore, the Save password must be transmitted to be known by other users."
-msgstr ""
+msgstr "Quando salvate un documento con una password, dovete ricordare la password inserita per aprire il documento in un secondo momento. Chiunque abbia bisogno di aprire il documento deve conoscere anche la password utilizzata per risparmiare tempo. Pertanto la password di salvataggio deve essere trasmessa e resa nota ad altri utenti."
#: openpgp.xhp
msgctxt ""
@@ -16798,7 +16798,7 @@ msgctxt ""
"par_id351543694955038\n"
"help.text"
msgid "Files encrypted with the save password cannot be decrypted unless the save password is supplied."
-msgstr ""
+msgstr "I file cifrati con la password di salvataggio non possono essere decifrati a meno che non venga fornita la password di salvataggio."
#: openpgp.xhp
msgctxt ""
@@ -16806,7 +16806,7 @@ msgctxt ""
"par_id681543694965846\n"
"help.text"
msgid "With document OpenPGP encryption, you define the set of users that can decrypt the document and you don’t need to send passwords through channels which security is unknown. Besides, the OpenPGP application manages the key chain of public keys more efficiently."
-msgstr ""
+msgstr "Con il sistema OpenPGP di cifratura del documento è possibile determinare l'insieme di utenti in grado di decifrare il documento e non è necessario inviare password attraverso canali il cui livello di sicurezza è poco noto. Inoltre l'applicazione OpenPGP gestisce il portachiavi delle chiavi pubbliche in modo più efficiente."
#: openpgp.xhp
msgctxt ""
@@ -16814,7 +16814,7 @@ msgctxt ""
"par_id51543697316590\n"
"help.text"
msgid "<link href=\"https://en.wikipedia.org/wiki/Pretty_Good_Privacy#OpenPGP\" name=\"Wikipedia on OpenPGP\">Wikipedia on OpenPGP</link>"
-msgstr ""
+msgstr "<link href=\"https://it.wikipedia.org/wiki/Pretty_Good_Privacy\" name=\"OpenPGP in Wikipedia\">OpenPGP in Wikipedia</link>"
#: pageformat_max.xhp
msgctxt ""
@@ -19734,7 +19734,7 @@ msgctxt ""
"par_id315053o\n"
"help.text"
msgid "Forces an input filter type, if possible. For example:"
-msgstr ""
+msgstr "Forza un tipo di filtro di immissione, se possibile. Ad esempio:"
#: start_parameters.xhp
msgctxt ""
@@ -20110,7 +20110,7 @@ msgctxt ""
"par_id781554408625219\n"
"help.text"
msgid "See the <link href=\"text/shared/guide/convertfilters.xhp\" name=\"list of document filters\">list of document filters</link> for file conversion."
-msgstr ""
+msgstr "Consultate l'<link href=\"text/shared/guide/convertfilters.xhp\" name=\"list of document filters\">elenco filtri dei documenti</link> per la conversione dei file."
#: start_parameters.xhp
msgctxt ""
@@ -20134,7 +20134,7 @@ msgctxt ""
"par_id2016120401348732\n"
"help.text"
msgid "Applies filter \"txt:Text\" to the following text documents and dump text content to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
-msgstr ""
+msgstr "Applica il filtro \"txt:Text\" ai seguenti documenti di testo e trasferisce il contenuto testuale nella console (implica <emph>--headless</emph>). Non può essere utilizzato con <emph>--convert-to</emph>."
#: start_parameters.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/help.po b/source/it/helpcontent2/source/text/shared/help.po
index b5aad4e5c49..f48da6811c0 100644
--- a/source/it/helpcontent2/source/text/shared/help.po
+++ b/source/it/helpcontent2/source/text/shared/help.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-01-02 22:01+0000\n"
+"PO-Revision-Date: 2019-07-26 20:50+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: 1546466485.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564174239.000000\n"
#: browserhelp.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id191525734190260\n"
"help.text"
msgid "<variable id=\"donate\">Please support us!</variable>"
-msgstr ""
+msgstr "<variable id=\"donate\">Sosteneteci!</variable>"
#: browserhelp.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/optionen.po b/source/it/helpcontent2/source/text/shared/optionen.po
index 345db0ee759..b9d16f1123f 100644
--- a/source/it/helpcontent2/source/text/shared/optionen.po
+++ b/source/it/helpcontent2/source/text/shared/optionen.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: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-01-02 21:55+0000\n"
+"PO-Revision-Date: 2019-07-28 18:15+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.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: 1546466111.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564337715.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"hd_id61543592770503\n"
"help.text"
msgid "Cryptography"
-msgstr ""
+msgstr "Cifratura"
#: 01010100.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id311543858573650\n"
"help.text"
msgid "Set the preferred public key for OpenPGP encryption and digital signature. These preferred keys will be pre-selected in key selection dialog every time you sign or encrypt a document, so you don't have to select it yourself when signing with one specific key frequently."
-msgstr ""
+msgstr "Impostate la chiave pubblica preferita per la cifratura e la firma digitale OpenPGP. Tali chiavi vengono pre-selezionate nella finestra di dialogo di selezione delle chiavi ogni volta che firmate o cifrate un documento, e non è necessario selezionarle ogni volta, se le utilizzate spesso."
#: 01010100.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"hd_id231543592828796\n"
"help.text"
msgid "OpenPGP signing key"
-msgstr ""
+msgstr "Chiave per la firma OpenPGP"
#: 01010100.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id641543592980979\n"
"help.text"
msgid "Select your OpenPGP key from the drop-down list for signing ODF documents."
-msgstr ""
+msgstr "Per firmare documenti ODF, selezionate la chiave OpenPGP dall'elenco a tendina."
#: 01010100.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"hd_id241543592833855\n"
"help.text"
msgid "OpenPGP encryption key"
-msgstr ""
+msgstr "Chiave di cifratura OpenPGP"
#: 01010100.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_id41543592987773\n"
"help.text"
msgid "Select your OpenPGP key from the drop-down list for encrypting ODF documents."
-msgstr ""
+msgstr "Per cifrare documenti ODF, selezionate la chiave OpenPGP dall'elenco a tendina."
#: 01010100.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"hd_id191543593080405\n"
"help.text"
msgid "When encrypting documents, always encrypt to self"
-msgstr ""
+msgstr "Quando si cifrano documenti, cifra sempre sé stesso"
#: 01010100.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"par_id721543594922942\n"
"help.text"
msgid "Mark this checkbox to also encrypt the file with your public key, so you can open the document with your private key."
-msgstr ""
+msgstr "Spuntate questa casella per cifrare il file anche con la vostra chiave pubblica, in modo da poter aprire il documento con la vostra chiave privata."
#: 01010100.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_id851543858754421\n"
"help.text"
msgid "<emph>Keep this option selected</emph>, if you ever want to be able to decrypt documents you've encrypted for other people."
-msgstr ""
+msgstr "<emph>Mantenete selezionata questa opzione</emph> per riuscire a decifrare i documenti che avete cifrato per altri utenti."
#: 01010200.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"bm_id3143284\n"
"help.text"
msgid "<bookmark_value>saving; options</bookmark_value><bookmark_value>defaults;of saving</bookmark_value><bookmark_value>URL; saving absolute/relative paths</bookmark_value><bookmark_value>relative saving of URLs</bookmark_value><bookmark_value>absolute saving of URLs</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Salvare; opzioni</bookmark_value><bookmark_value>Predefinito, salvataggio</bookmark_value><bookmark_value>URL; salvare percorsi assoluti e relativi</bookmark_value><bookmark_value>Relativo, salvataggio di URL</bookmark_value><bookmark_value>Assoluto, salvataggio di URL</bookmark_value>"
#: 01010200.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"par_id3145669\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optsavepage/OptSavePage\">In the <emph>General</emph> section, you can select default settings for saving documents, and can select default file formats.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/optsavepage/OptSavePage\">Nella sezione <emph>Generale</emph> si possono selezionare le impostazioni predefinite per il salvataggio dei documenti e selezionare i formati predefiniti per i file.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -646,7 +646,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 ""
+msgstr "Se l'opzione <emph>Carica le impostazioni personalizzate assieme al documento</emph> non è selezionata, vengono comunque applicate le seguenti impostazioni personalizzate:"
#: 01010200.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id5684987\n"
"help.text"
msgid "<ahelp hid=\".\">If enabled, the printer settings will be loaded with the document. This can cause a document to be printed on a distant printer, if you do not change the printer manually in the <emph>Print</emph> dialog. If disabled, your standard printer will be used to print this document. The current printer settings will be stored with the document whether or not this option is checked.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Le impostazioni della stampante, se attivate, saranno caricate col documento. Ciò permette di stampare un documento con una stampante diversa, se essa non viene cambiata manualmente nella finestra <emph>Stampa</emph>. Se le impostazioni sono disattivate, sarà utilizzata la stampante predefinita. Le impostazioni correnti di attivazione o disattivazione della stampante saranno memorizzate assieme al documento.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"par_id3154123\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optsavepage/backup\">Saves the previous version of a document as a backup copy whenever you save a document. Every time <item type=\"productname\">%PRODUCTNAME</item> creates a backup copy, the previous backup copy is replaced. The backup copy gets the extension <emph>.BAK</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/optsavepage/backup\">Salva la versione precedente del documento come copia di sicurezza (backup) a ogni salvataggio. Ogni volta che <item type=\"productname\">%PRODUCTNAME</item> crea una copia di sicurezza, questa sostituisce quella precedente. Alla copia di sicurezza viene assegnata l'estensione <emph>.BAK</emph>.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"par_id3149484\n"
"help.text"
msgid "This option allows you to select the default for <link href=\"text/shared/00/00000005.xhp#speichern\" name=\"relative\"><emph>relative</emph></link> addressing of URLs in the file system and on the Internet. Relative addressing is only possible if the source document and the referenced document are both on the same drive."
-msgstr ""
+msgstr "Questa opzione vi permette di selezionare le impostazioni predefinite per l'uso degli URL <link href=\"text/shared/00/00000005.xhp#speichern\" name=\"relativi\"><emph>relativi</emph></link> nel file system e su Internet. Gli indirizzi relativi possono essere usati solo se il documento di origine e quello di destinazione si trovano sullo stesso disco."
#: 01010200.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"par_id3154361\n"
"help.text"
msgid "file:///C:/work/images/img.jpg"
-msgstr ""
+msgstr "file:///C:/lavoro/immagini/immagine.jpg"
#: 01010200.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"par_id3148408\n"
"help.text"
msgid "https://myserver.com/work/images/img.jpg"
-msgstr ""
+msgstr "https://mioserver.com/lavoro/immagini/immagine.jpg"
#: 01010200.xhp
msgctxt ""
@@ -926,7 +926,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\"><emph>relative saving</emph></link> of URLs in the file system.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/optsavepage/relative_fsys\">Selezionare questa casella per <link href=\"text/shared/00/00000005.xhp#speichern\" name=\"salvare in modo relativo\"><emph>salvare in modo relativo</emph></link> gli URL nel file system.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"par_id3155608\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optsavepage/relative_inet\">Select this box for <link href=\"text/shared/00/00000005.xhp#speichern\" name=\"relative saving\"><emph>relative saving</emph></link> of URLs to the Internet.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/optsavepage/relative_inet\">Selezionare questa casella per <link href=\"text/shared/00/00000005.xhp#speichern\" name=\"salvare in modo relativo\"><emph>salvare in modo relativo</emph></link> a Internet gli URL.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"par_id6944181\n"
"help.text"
msgid "OpenOffice.org 3 and StarOffice 9 introduced new features which have to be saved using the <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\"><emph>OpenDocument></emph></link> format (ODF) version 1.2. The prior versions of OpenOffice.org 2 and StarOffice 8 support the file formats ODF 1.0/1.1. Those prior file formats cannot store all new features of the new software."
-msgstr ""
+msgstr "OpenOffice.org 3 e StarOffice 9 introducono nuove funzionalità che devono essere salvate utilizzando la versione 1.2 del formato <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"Wikipedia in inglese: OpenDocument\"><emph>OpenDocument</emph></link> (ODF). Le precedenti versioni di OpenOffice.org 2 e StarOffice 8 supportano i formati di file ODF 1.0/1.1. Questi ultimi non possono immagazzinare tutte le funzionalità aggiuntive del nuovo software."
#: 01010200.xhp
msgctxt ""
@@ -8590,7 +8590,7 @@ msgctxt ""
"par_id31508727\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/scgeneralpage/legacy_cell_selection_cb\">With the option set, expanding a selection (with <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command </item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline> +<item type=\"keycode\">Shift</item>+<item type=\"keycode\">Down/Up</item>) jumps to the end of the range in the column that was added as last to the initial selection. When the option is not set, expanding a selection (with <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline>+<item type=\"keycode\">Shift </item>+<item type=\"keycode\">Down/Up</item>) jumps to the end of the range in the column where selecting the cell range was started. The same of course applies when extending a selection on rows, with <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline>+<item type=\"keycode\"> Shift</item>+<item type=\"keycode\">Left/Right</item>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/scgeneralpage/legacy_cell_selection_cb\">Con l'opzione impostata, l'espansione di una selezione (con la combinazione <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Comando</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline>+<item type=\"keycode\">Maiusc</item>+<item type=\"keycode\">Giù/Su</item>) passa alla fine dell'area nella colonna aggiunta per ultima alla selezione iniziale. Quando l'opzione non è impostata, l'espanzione di una selezione (con la combinazione <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Comando</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline>+<item type=\"keycode\">Maiusc</item>+<item type=\"keycode\">Giù/Su</item>) passa alla fine dell'area nella colonna in cui è iniziata la selezione dell'area di celle. Lo stesso vale quando si estende una selezione sulle righe utilizzando la combinazione <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Comando</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline>+<item type=\"keycode\">Maiusc</item>+<item type=\"keycode\">Sinistra/Destra</item>.</ahelp>"
#: 01060400.xhp
msgctxt ""
@@ -9822,7 +9822,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>recalculate;formula options</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 ""
+msgstr "<bookmark_value>Formula, opzioni;sintassi delle formule</bookmark_value><bookmark_value>Formula, opzioni;separatori</bookmark_value><bookmark_value>Formula, opzioni;sintassi di riferimento nei parametri di stringa</bookmark_value><bookmark_value>Formula, opzioni;ricalcolo dei fogli elettronici</bookmark_value><bookmark_value>Formula, opzioni;fogli elettronici di grandi dimensioni</bookmark_value><bookmark_value>Formula, opzioni;caricamento di fogli elettronici</bookmark_value><bookmark_value>Separatore;funzione</bookmark_value><bookmark_value>Separatore;colonna matrice</bookmark_value><bookmark_value>Separatore;riga matrice</bookmark_value><bookmark_value>Ricalcolare;opzioni delle formule</bookmark_value><bookmark_value>Ricalcolo;opzioni delle formule</bookmark_value><bookmark_value>Ricalcolare;fogli elettronici di grandi dimensioni</bookmark_value><bookmark_value>Caricare;fogli elettronici di grandi dimensioni</bookmark_value>"
#: 01060900.xhp
msgctxt ""
@@ -11894,7 +11894,7 @@ msgctxt ""
"par_id0125201009445950\n"
"help.text"
msgid "The \"Default\" entry selects the locale which name is reported by the operating system."
-msgstr ""
+msgstr "La voce \"Predefinita\" seleziona lo schema locale il cui nome è riportato dal sistema operativo."
#: 01140000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/simpress.po b/source/it/helpcontent2/source/text/simpress.po
index 3f6d84893b9..9cb7e11ae7b 100644
--- a/source/it/helpcontent2/source/text/simpress.po
+++ b/source/it/helpcontent2/source/text/simpress.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-06-30 16:52+0000\n"
+"PO-Revision-Date: 2019-07-22 16:24+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: 1561913546.000000\n"
+"X-POOTLE-MTIME: 1563812652.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_edit.xhp\" name=\"Modifica\">Modifica</link>"
#: main_edit.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"hd_id3152596\n"
"help.text"
msgid "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_format.xhp\" name=\"Formato\">Formato</link>"
#: main_format.xhp
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"hd_id0908201507475698\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Diapositiva</link>"
#: main_slide.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"hd_id3145801\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Nuova diapositiva\">Nuova diapositiva</link>"
#: main_slide.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"hd_id551556824896520\n"
"help.text"
msgid "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Proprietà\">Proprietà</link>"
#: main_tools.xhp
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"hd_id3154017\n"
"help.text"
msgid "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_tools.xhp\" name=\"Strumenti\">Strumenti</link>"
#: main_tools.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/simpress/00.po b/source/it/helpcontent2/source/text/simpress/00.po
index 618372d655a..1d0f190288e 100644
--- a/source/it/helpcontent2/source/text/simpress/00.po
+++ b/source/it/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2018-06-14 12:51+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2019-07-18 21:00+0000\n"
+"Last-Translator: Paolo Pelloni <info@paolopelloni.it>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\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: 1528980680.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563483614.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id3148768\n"
"help.text"
msgid "<image id=\"img_id3148774\" src=\"cmd/sc_presentation.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148774\">Slide Show Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148774\" src=\"cmd/sc_presentation.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148774\">Icona Presentazione</alt></image>"
#: 00000403.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Shape Menu"
-msgstr ""
+msgstr "Menu Forma"
#: 00000413.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"hd_id3152578\n"
"help.text"
msgid "Shape Menu"
-msgstr ""
+msgstr "Menu Forma"
#: 00000413.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "Choose <emph>Shape - Convert </emph>(<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Converti</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"par_id3149124\n"
"help.text"
msgid "Choose <emph>Shape - Convert - To Curve</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Converti - In curva</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"par_id3156384\n"
"help.text"
msgid "Choose <emph>Shape - Convert - To Polygon</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Converti - In poligono</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"par_id3147001\n"
"help.text"
msgid "Choose <emph>Shape - Convert - To 3D</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Converti - In 3D</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"par_id3150205\n"
"help.text"
msgid "Choose <emph>Shape - Convert - To 3D Rotation Object</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Converti - In solido di rotazione 3D</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"par_id3152986\n"
"help.text"
msgid "Choose <emph>Shape - Convert - To Bitmap</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Converti - In bitmap</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"par_id3148870\n"
"help.text"
msgid "Choose <emph>Shape - Convert - To Metafile</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Converti - In metafile</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"par_id3153246\n"
"help.text"
msgid "Choose <emph>Shape - Convert - To Contour</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Converti - In contorno</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"par_id3153008\n"
"help.text"
msgid "Choose <emph>Shape - Arrange - In Front of Object</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Disponi - Davanti all'oggetto</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -1030,7 +1030,7 @@ msgctxt ""
"par_id3150654\n"
"help.text"
msgid "Choose <emph>Shape - Arrange - Behind Object</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Disponi - Dietro l'oggetto</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -1070,7 +1070,7 @@ msgctxt ""
"par_id3150002\n"
"help.text"
msgid "Choose <emph>Shape - Arrange - Reverse</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Disponi - Scambia</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"par_id3145298\n"
"help.text"
msgid "Choose <emph>Shape - Combine</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Combina</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -1126,7 +1126,7 @@ msgctxt ""
"par_id3150930\n"
"help.text"
msgid "Choose <emph>Shape - Split</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Dividi</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -1142,7 +1142,7 @@ msgctxt ""
"par_id3154872\n"
"help.text"
msgid "Choose <emph>Shape - Connect</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Collega</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id3153920\n"
"help.text"
msgid "Choose <emph>Shape - Break</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Suddividi</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"par_id3155408\n"
"help.text"
msgid "Choose <emph>Shape</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"par_id3163822\n"
"help.text"
msgid "Choose <emph>Shape - Merge</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Unisci</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"par_id3150874\n"
"help.text"
msgid "Choose <emph>Shape - Subtract</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Sottrai</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"par_id3145204\n"
"help.text"
msgid "Choose <emph>Shape - Intersect</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Scegliete <emph>Forma - Interseca</emph> (solo <item type=\"productname\">%PRODUCTNAME</item> Draw)"
#: 00000413.xhp
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"par_id3155530\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <emph>Slide - Properties</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Scegliete <emph>Diapositiva - Proprietà</emph></variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id3145386\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <emph>Slide - Properties</emph> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Scegliete <emph>Diapositiva - Proprietà</emph> e fate clic sulla scheda <emph>Pagina</emph></variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <emph>Slide - Properties</emph> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Scegliete <emph>Diapositiva - Proprietà</emph> e fate clic sulla scheda <emph>Sfondo</emph></variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"par_id3155266\n"
"help.text"
msgid "<variable id=\"adnsei\">Choose <emph>Slide - Layout</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"adnsei\">Scegliete <emph>Diapositiva - Layout</emph></variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"par_id3153012\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Slide - Change Slide Master</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Scegliete <emph>Diapositiva - Cambia schema diapositiva</emph></variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_id3134264\n"
"help.text"
msgid "Choose <emph>Slide - New Slide</emph>"
-msgstr ""
+msgstr "Scegliete <emph>Diapositiva - Nuova diapositiva</emph>"
#: slide_menu.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3685251\n"
"help.text"
msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Icona</alt></image>"
#: slide_menu.xhp
msgctxt ""
@@ -1310,4 +1310,4 @@ msgctxt ""
"par_id7354512\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Nuova diapositiva"
diff --git a/source/it/helpcontent2/source/text/simpress/01.po b/source/it/helpcontent2/source/text/simpress/01.po
index 9c9daaf2862..d1d999b7dc6 100644
--- a/source/it/helpcontent2/source/text/simpress/01.po
+++ b/source/it/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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-01-14 22:13+0000\n"
+"PO-Revision-Date: 2019-07-18 21:03+0000\n"
"Last-Translator: Paolo Pelloni <info@paolopelloni.it>\n"
"Language-Team: Italian <l10n@it.libreoffice.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: 1547504013.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563483793.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"bm_id3154011\n"
"help.text"
msgid "<bookmark_value>slides; formatting</bookmark_value> <bookmark_value>formatting;slides</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Diapositiva;formattare</bookmark_value><bookmark_value>Formattazione;diapositive</bookmark_value>"
#: 01180001.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Diapositiva\">Diapositiva</link>"
#: 03070000.xhp
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"bm_id3154754\n"
"help.text"
msgid "<bookmark_value>changing; slide layouts</bookmark_value> <bookmark_value>slide layouts</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Modifica; layout diapositiva</bookmark_value><bookmark_value>Diapositiva; layout</bookmark_value>"
#: 05130000.xhp
msgctxt ""
@@ -3894,7 +3894,7 @@ msgctxt ""
"par_id3149126\n"
"help.text"
msgid "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Opens a submenu with slide layouts.</ahelp> </variable>"
-msgstr ""
+msgstr "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Apre un sotto-menu che contiene le impaginazioni per le diapositive.</ahelp></variable>"
#: 05130000.xhp
msgctxt ""
@@ -3902,7 +3902,7 @@ msgctxt ""
"par_id31469757\n"
"help.text"
msgid "<switchinline select=\"appl\"> <caseinline select=\"IMPRESS\">The icon in the Presentation toolbar opens a submenu. Select the slide layout for the slide.</caseinline> </switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">L'icona nella barra degli strumenti di presentazione apre un sotto-menu. Selezionate il layout per la diapositiva.</caseinline></switchinline>"
#: 05140000.xhp
msgctxt ""
@@ -4614,7 +4614,7 @@ msgctxt ""
"hd_id3149664\n"
"help.text"
msgid "<link href=\"text/simpress/01/05250600.xhp\" name=\"Behind Object\">Behind Object</link>"
-msgstr "<link href=\"text/simpress/01/05250600.xhp\" name=\"Dietro all'oggetto\">Dietro all'oggetto</link>"
+msgstr "<link href=\"text/simpress/01/05250600.xhp\" name=\"Dietro l'oggetto\">Dietro l'oggetto</link>"
#: 05250600.xhp
msgctxt ""
@@ -7070,7 +7070,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>Shape - Group - Enter Group</emph></caseinline><defaultinline><emph>Format - Group - Enter Group</emph></defaultinline></switchinline>. Choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Shape - Group - Exit Group</emph></caseinline><defaultinline><emph>Format - Group - Exit Group</emph></defaultinline></switchinline> when you are finished."
-msgstr ""
+msgstr "Se selezionate due o più oggetti e li convertite in 3D, il risultato è un gruppo 3D che si comporta come un oggetto singolo. Per modificare i singoli oggetti del gruppo, scegliete <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Forma - Gruppo - Modifica gruppo</emph></caseinline><defaultinline><emph>Formato - Raggruppa - Modifica gruppo</emph></defaultinline></switchinline>. Al termine, scegliete <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Forma - Gruppo - Esci dal gruppo</emph></caseinline><defaultinline><emph>Formato - Raggruppa - Esci dal gruppo</emph></defaultinline></switchinline>."
#: 13050300.xhp
msgctxt ""
@@ -8158,7 +8158,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Nuova diapositiva"
#: new_slide.xhp
msgctxt ""
@@ -8166,7 +8166,7 @@ msgctxt ""
"bm_id3159155\n"
"help.text"
msgid "<bookmark_value>inserting; slides</bookmark_value><bookmark_value>slides; inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Inserimento;diapositive</bookmark_value><bookmark_value>Diapositiva;inserire</bookmark_value>"
#: new_slide.xhp
msgctxt ""
@@ -8174,7 +8174,7 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Nuova diapositiva\">Nuova diapositiva</link>"
#: new_slide.xhp
msgctxt ""
@@ -8182,7 +8182,7 @@ msgctxt ""
"par_id3146119\n"
"help.text"
msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserisce una diapositiva dopo quella correntemente selezionata.</ahelp></variable>"
#: remoteconnections.xhp
msgctxt ""
@@ -8326,7 +8326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Diapositiva"
#: slide_properties.xhp
msgctxt ""
@@ -8334,7 +8334,7 @@ msgctxt ""
"hd_id3149379\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Diapositiva"
#: slide_properties.xhp
msgctxt ""
@@ -8342,7 +8342,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Sets slide orientation, slide margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Permette d'impostare l'orientazione, i margini, lo sfondo e altri aspetti del layout della diapositiva.</ahelp></variable>"
#: slide_properties.xhp
msgctxt ""
@@ -8350,7 +8350,7 @@ msgctxt ""
"par_id3145587\n"
"help.text"
msgid "To change the background of all of the slides in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "Per modificare lo sfondo di tutte le diapositive del file attivo, selezionate uno sfondo, fate clic su <emph>OK </emph> e quindi su <emph>Sì </emph> nella finestra di dialogo <emph>Impostazioni pagina</emph>."
#: slidesorter.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/simpress/02.po b/source/it/helpcontent2/source/text/simpress/02.po
index 76d2bca5f7e..0b90529089c 100644
--- a/source/it/helpcontent2/source/text/simpress/02.po
+++ b/source/it/helpcontent2/source/text/simpress/02.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2018-04-04 15:00+0000\n"
+"PO-Revision-Date: 2019-07-18 21:03+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.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: 1522854012.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563483805.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"hd_id3149028\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Diapositiva\">Diapositiva</link>"
#: 10110000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/simpress/04.po b/source/it/helpcontent2/source/text/simpress/04.po
index d0ee417e8bb..6be4bd11bc4 100644
--- a/source/it/helpcontent2/source/text/simpress/04.po
+++ b/source/it/helpcontent2/source/text/simpress/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: libreoffice\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2018-09-04 13:19+0000\n"
+"PO-Revision-Date: 2019-07-18 21:03+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.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: 1536067171.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563483822.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"hd_id3149485\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+K"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline> Ctrl</defaultinline></switchinline>+Maiusc+K"
#: 01020000.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"hd_id3149104\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Shift+K"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comando+Opzione</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Maiusc+K"
#: 01020000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/simpress/guide.po b/source/it/helpcontent2/source/text/simpress/guide.po
index 169636c3c8f..d4d6d5c510d 100644
--- a/source/it/helpcontent2/source/text/simpress/guide.po
+++ b/source/it/helpcontent2/source/text/simpress/guide.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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-01-14 22:15+0000\n"
+"PO-Revision-Date: 2019-07-18 21:05+0000\n"
"Last-Translator: Paolo Pelloni <info@paolopelloni.it>\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: 1547504151.000000\n"
+"X-POOTLE-MTIME: 1563483927.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -3022,7 +3022,7 @@ msgctxt ""
"par_id1614734\n"
"help.text"
msgid "The stacking order of objects on your page is determined by the sequence in which you add the objects. You can rearrange the stacking order by <item type=\"menuitem\">Shape - Arrange</item>."
-msgstr ""
+msgstr "L'ordine di sovrapposizione degli oggetti nella pagina è determinato dalla sequenza in cui gli oggetti vengono aggiunti. Potete disporre diversamente l'ordine di sovrapposizione scegliendo <item type=\"menuitem\">Forma - Disponi</item>."
#: layers.xhp
msgctxt ""
@@ -6046,7 +6046,7 @@ msgctxt ""
"par_id3149053\n"
"help.text"
msgid "In $[officename] Draw, choose <emph>Shape - Convert - To Curve</emph>."
-msgstr ""
+msgstr "In $[officename] Draw, scegliete <emph>Forma - Converti - In curva</emph>."
#: text2curve.xhp
msgctxt ""
@@ -6126,7 +6126,7 @@ msgctxt ""
"par_id3145118\n"
"help.text"
msgid "In $[officename] Draw, choose <emph>Shape - Convert - To Polygon</emph>."
-msgstr ""
+msgstr "In $[officename] Draw, scegliete <emph>Forma - Converti - In poligono</emph>."
#: vectorize.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/smath/00.po b/source/it/helpcontent2/source/text/smath/00.po
index a1953f926c9..2fa2cf5c306 100644
--- a/source/it/helpcontent2/source/text/smath/00.po
+++ b/source/it/helpcontent2/source/text/smath/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2017-05-10 02:20+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-26 11:22+0000\n"
+"Last-Translator: Paolo Pelloni <info@paolopelloni.it>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\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: 1494382800.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564140167.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3147628\n"
"help.text"
msgid "<variable id=\"fmtarg\">Choose <emph>Format - Align</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"fmtarg\">Scegliete <emph>Formato - Allinea</emph></variable>"
#: 00000004.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/smath/01.po b/source/it/helpcontent2/source/text/smath/01.po
index d2e2adbd214..6461c5bd596 100644
--- a/source/it/helpcontent2/source/text/smath/01.po
+++ b/source/it/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-06-30 18:54+0000\n"
+"PO-Revision-Date: 2019-07-22 22:19+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: 1561920868.000000\n"
+"X-POOTLE-MTIME: 1563833961.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_idN10085\n"
"help.text"
msgid "<image id=\"img_id3156399\" src=\"media/helpimg/starmath/un21201.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156399\">Plus Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156399\" src=\"media/helpimg/starmath/un21201.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3156399\">Icona più</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148776\">Minus Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148776\" src=\"media/helpimg/starmath/un21202.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148776\">Icona meno</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150757\">Plus/Minus Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150757\" src=\"media/helpimg/starmath/un21203.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150757\">Icona più/meno</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145410\">Minus/Plus Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145410\" src=\"media/helpimg/starmath/un21204.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145410\">Icona meno/più</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151098\">Addition (plus) Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151098\" src=\"media/helpimg/starmath/un21205.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151098\">Icona addizione (più)</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155898\">Multiplication (dot) Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155898\" src=\"media/helpimg/starmath/un21206.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155898\">Icona moltiplicazione (punto)</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149308\">Multiplication (x) Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149308\" src=\"media/helpimg/starmath/un21207.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149308\">Icona moltiplicazione (x)</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148982\">Multiplication (*) Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148982\" src=\"media/helpimg/starmath/un21208.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148982\">Icona moltiplicazione (*)</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155140\">Subtraction Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155140\" src=\"media/helpimg/starmath/un21209.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155140\">Icona sottrazione</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149168\">Division (Fraction) Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149168\" src=\"media/helpimg/starmath/un21210.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149168\">Icona divisione (frazione)</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148765\">Division Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148765\" src=\"media/helpimg/starmath/un21211.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148765\">Icona divisione</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147418\">Division (Slash) Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147418\" src=\"media/helpimg/starmath/un21212.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147418\">Icona divisione (barra)</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.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149566\">Boolean NOT Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149566\" src=\"media/helpimg/starmath/un21213.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149566\">Icona NON booleano</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147116\">Boolean AND Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147116\" src=\"media/helpimg/starmath/un21214.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147116\">Icona E booleano</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148440\">Boolean OR Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148440\" src=\"media/helpimg/starmath/un21215.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148440\">Icona O booleano</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150173\">Concatenate Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150173\" src=\"media/helpimg/starmath/un21221.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150173\">Icona concatenazione</alt></image>"
#: 03090100.xhp
msgctxt ""
@@ -1750,7 +1750,7 @@ msgctxt ""
"par_idN10088\n"
"help.text"
msgid "<image id=\"img_id3152944\" src=\"media/helpimg/starmath/fo21601.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152944\">Limit Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152944\" src=\"media/helpimg/starmath/fo21601.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152944\">Icona limite</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"par_idN100C4\n"
"help.text"
msgid "<image id=\"img_id3150970\" src=\"media/helpimg/starmath/fo21602.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150970\">Summation Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150970\" src=\"media/helpimg/starmath/fo21602.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150970\">Icona somma</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -1798,7 +1798,7 @@ msgctxt ""
"par_idN10102\n"
"help.text"
msgid "<image id=\"img_id3146932\" src=\"media/helpimg/starmath/fo21603.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3146932\">Product Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146932\" src=\"media/helpimg/starmath/fo21603.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3146932\">Icona prodotto</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -1822,7 +1822,7 @@ msgctxt ""
"par_idN1013E\n"
"help.text"
msgid "<image id=\"img_id3149814\" src=\"media/helpimg/starmath/fo21604.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149814\">Coproduct Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149814\" src=\"media/helpimg/starmath/fo21604.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149814\">Icona coprodotto</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -1846,7 +1846,7 @@ msgctxt ""
"par_idN1017A\n"
"help.text"
msgid "<image id=\"img_id3152766\" src=\"media/helpimg/starmath/fo21613.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152766\">Upper and Lower Limit Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152766\" src=\"media/helpimg/starmath/fo21613.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152766\">Icona limite inferiore e superiore</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"par_idN101B8\n"
"help.text"
msgid "<image id=\"img_id3151023\" src=\"media/helpimg/starmath/fo21605.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3151023\">Integral Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151023\" src=\"media/helpimg/starmath/fo21605.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3151023\">Icona integrale</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"par_idN101F4\n"
"help.text"
msgid "<image id=\"img_id3145772\" src=\"media/helpimg/starmath/fo21606.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3145772\">Double Integral Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145772\" src=\"media/helpimg/starmath/fo21606.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3145772\">Icona integrale doppio</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -1918,7 +1918,7 @@ msgctxt ""
"par_idN10230\n"
"help.text"
msgid "<image id=\"img_id3147409\" src=\"media/helpimg/starmath/fo21607.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3147409\">Triple Integral Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147409\" src=\"media/helpimg/starmath/fo21607.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3147409\">Icona integrale triplo</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -1942,7 +1942,7 @@ msgctxt ""
"par_idN1026C\n"
"help.text"
msgid "<image id=\"img_id3149562\" src=\"media/helpimg/starmath/fo21614.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149562\">Lower Limit Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149562\" src=\"media/helpimg/starmath/fo21614.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149562\">Icona limite inferiore</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -1966,7 +1966,7 @@ msgctxt ""
"par_idN102AA\n"
"help.text"
msgid "<image id=\"img_id3147109\" src=\"media/helpimg/starmath/fo21609.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3147109\">Curve Integral Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147109\" src=\"media/helpimg/starmath/fo21609.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3147109\">Icona integrale curvilineo</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -1990,7 +1990,7 @@ msgctxt ""
"par_idN102E6\n"
"help.text"
msgid "<image id=\"img_id3147055\" src=\"media/helpimg/starmath/fo21610.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3147055\">Double Curve Integral Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147055\" src=\"media/helpimg/starmath/fo21610.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3147055\">Icona integrale curvilineo doppio</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"par_idN10322\n"
"help.text"
msgid "<image id=\"img_id3154578\" src=\"media/helpimg/starmath/fo21611.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3154578\">Triple Curve Integral Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154578\" src=\"media/helpimg/starmath/fo21611.svg\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3154578\">Icona integrale curvilineo triplo</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -2038,7 +2038,7 @@ msgctxt ""
"par_idN1035E\n"
"help.text"
msgid "<image id=\"img_id3149332\" src=\"media/helpimg/starmath/fo21615.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149332\">Upper Limit Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149332\" src=\"media/helpimg/starmath/fo21615.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149332\">Icona limite superiore</alt></image>"
#: 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 "Digitando <emph>oper</emph> nella finestra Comandi potete inserire alcuni <emph>operatori personalizzati</emph> in $[officename] Math, una funzione utile per inserire caratteri speciali nelle formule. Un esempio può essere <emph>oper %theta x</emph>. Usando il comando <emph>oper</emph> potete anche inserire caratteri non inclusi nel gruppo di caratteri predefiniti di $[officename]. <emph>oper</emph> può anche essere utilizzato con i limiti; ad esempio, <emph>oper %unione from {i=1} to n x_{i}</emph>. In questo esempio, il simbolo di unione è indicato dalla parola <emph>unione</emph>, che non fa parte dei simboli predefiniti. Per definire questo simbolo, scegliete <emph>Strumenti - Simboli</emph>, selezionate <emph>Speciale</emph> come gruppo di simboli nella finestra di dialogo e fate clic sul pulsante <emph>Modifica</emph>. Nella finestra di dialogo successiva, selezionate nuovamente il gruppo di simboli <emph>Speciale</emph>. Indicate un nome significativo nel campo di testo <emph>Simbolo</emph>, ad esempio \"unione\", quindi fate clic sul simbolo di unione all'interno del gruppo di simboli. Fate clic su <emph>Aggiungi</emph> e quindi su <emph>OK</emph>. Fate clic su <emph>Chiudi</emph> per chiudere la finestra di dialogo <emph>Simboli</emph>. A questo punto, potete inserire il nuovo simbolo di unione nella finestra Comandi digitando <emph>oper %unione</emph>."
+msgstr "Digitando <emph>oper</emph> nella finestra Comandi potete inserire alcuni <emph>operatori personalizzati</emph> in $[officename] Math, una funzione utile per inserire caratteri speciali nelle formule. Un esempio può essere <emph>oper %theta x</emph>. Usando il comando <emph>oper</emph> potete anche inserire caratteri non inclusi nel gruppo di caratteri predefiniti di $[officename]. <emph>oper</emph> può anche essere utilizzato con i limiti; ad esempio, <emph>oper %union from {i=1} to n x_{i}</emph>. In questo esempio, il simbolo di unione è indicato dalla parola <emph>unione</emph>, che non fa parte dei simboli predefiniti. Per definire questo simbolo, scegliete <emph>Strumenti - Simboli</emph>, selezionate <emph>Speciale</emph> come gruppo di simboli nella finestra di dialogo e fate clic sul pulsante <emph>Modifica</emph>. Nella finestra di dialogo successiva, selezionate nuovamente il gruppo di simboli <emph>Speciale</emph>. Indicate un nome significativo nel campo di testo <emph>Simbolo</emph>, ad esempio \"unione\", quindi fate clic sul simbolo di unione all'interno del gruppo di simboli. Fate clic su <emph>Aggiungi</emph> e quindi su <emph>OK</emph>. Fate clic su <emph>Chiudi</emph> per chiudere la finestra di dialogo <emph>Simboli</emph>. A questo punto, potete inserire il nuovo simbolo di unione nella finestra Comandi digitando <emph>oper %unione</emph>."
#: 03090300.xhp
msgctxt ""
@@ -2158,7 +2158,7 @@ msgctxt ""
"par_idN10081\n"
"help.text"
msgid "<image id=\"img_id3153154\" src=\"media/helpimg/starmath/fu21505.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153154\">Natural Exponential Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153154\" src=\"media/helpimg/starmath/fu21505.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153154\">Icona esponenziale naturale</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147507\">Natural Logarithm Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147507\" src=\"media/helpimg/starmath/fu21506.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147507\">Icona logaritmo naturale</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154574\">Exponential Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154574\" src=\"media/helpimg/starmath/fu21507.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154574\">Icona esponenziale</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149687\">Logarithm Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149687\" src=\"media/helpimg/starmath/fu21508.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149687\">Icona logaritmo</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149490\">Power Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149490\" src=\"media/helpimg/starmath/fu21908.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149490\">Icona potenza</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149043\">Sine Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149043\" src=\"media/helpimg/starmath/fu21509.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149043\">Icona seno</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147139\">Cosine Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147139\" src=\"media/helpimg/starmath/fu21510.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147139\">Icona coseno</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148759\">Tangent Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148759\" src=\"media/helpimg/starmath/fu21511.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148759\">Icona tangente</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149536\">Cotangent Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149536\" src=\"media/helpimg/starmath/fu21512.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149536\">Icona cotangente</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147499\">Hyperbolic Sine Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147499\" src=\"media/helpimg/starmath/fu21513.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147499\">Icona seno iperbolico</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3168610\">Square Root Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3168610\" src=\"media/helpimg/starmath/fu21503.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3168610\">Icona radice quadrata</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147608\">Hyperbolic Cosine Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147608\" src=\"media/helpimg/starmath/fu21514.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3147608\">Icona coseno iperbolico</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151087\">Hyperbolic Tangent Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151087\" src=\"media/helpimg/starmath/fu21515.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151087\">Icona tangente iperbolica</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151112\">Hyperbolic Cotangent Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151112\" src=\"media/helpimg/starmath/fu21516.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151112\">Icona cotangente iperbolica</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154714\">nth Root Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154714\" src=\"media/helpimg/starmath/fu21504.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154714\">Icona radice n</alt></image>"
#: 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\">Inserisce una funzione radice n di x con due segnaposti.</ahelp> Per inserire manualmente la funzione, digitate <emph>nroot n x </emph> nella finestra <emph>Comandi</emph>."
+msgstr "<ahelp hid=\"HID_SMA_NROOTXY\">Inserisce una funzione radice n di x con due segnaposti.</ahelp> Per inserire manualmente la funzione, digitate <emph>nroot n x</emph> nella finestra <emph>Comandi</emph>."
#: 03090400.xhp
msgctxt ""
@@ -2518,7 +2518,7 @@ msgctxt ""
"par_idN103EE\n"
"help.text"
msgid "<image id=\"img_id3145633\" src=\"media/helpimg/starmath/fu21517.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145633\">Arc Sine Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145633\" src=\"media/helpimg/starmath/fu21517.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145633\">Icona arcoseno</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146951\">Arc Cosine Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146951\" src=\"media/helpimg/starmath/fu21518.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146951\">Icona arcocoseno</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149369\">Arc Tangent Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149369\" src=\"media/helpimg/starmath/fu21519.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149369\">Icona arcotangente</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153141\">Arc Cotangent Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153141\" src=\"media/helpimg/starmath/fu21520.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3153141\">Icona arcocotangente</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2598,7 +2598,7 @@ msgctxt ""
"par_id3148819\n"
"help.text"
msgid "Arc Cotangent"
-msgstr "Arcotangente"
+msgstr "Arcocotangente"
#: 03090400.xhp
msgctxt ""
@@ -2614,7 +2614,7 @@ msgctxt ""
"par_idN104CC\n"
"help.text"
msgid "<image id=\"img_id3154624\" src=\"media/helpimg/starmath/fu21501.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154624\">Absolute Value Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154624\" src=\"media/helpimg/starmath/fu21501.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154624\">Icona valore assoluto</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2622,7 +2622,7 @@ msgctxt ""
"par_id3147383\n"
"help.text"
msgid "Absolute Value"
-msgstr "Importo assoluto"
+msgstr "Valore assoluto"
#: 03090400.xhp
msgctxt ""
@@ -2638,7 +2638,7 @@ msgctxt ""
"par_idN10507\n"
"help.text"
msgid "<image id=\"img_id3154023\" src=\"media/helpimg/starmath/fu21521.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154023\">Area Hyperbolic Sine Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154023\" src=\"media/helpimg/starmath/fu21521.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154023\">Icona inversa del seno iperbolico</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149602\">Area Hyperbolic Cosine Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149602\" src=\"media/helpimg/starmath/fu21522.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149602\">Icona inversa del coseno iperbolico</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155342\">Area Hyperbolic Tangent Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155342\" src=\"media/helpimg/starmath/fu21523.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155342\">Icona inversa della tangente iperbolica</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150842\">Area Hyperbolic Cotangent Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150842\" src=\"media/helpimg/starmath/fu21524.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150842\">Icona inversa della cotangente iperbolica</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.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145301\">Factorial Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145301\" src=\"media/helpimg/starmath/fu21502.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3145301\">Icona fattoriale</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2742,7 +2742,7 @@ msgctxt ""
"par_id3156006\n"
"help.text"
msgid "Factorial"
-msgstr "Coseno iperbolico"
+msgstr "Fattoriale"
#: 03090400.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 "Qui di seguito viene visualizzato un elenco di tutte le parentesi, anche se solo quelle provviste di icona possono essere inserite tramite il riquadro Elementi (menu Visualizza - Elementi) o il menu contestuale della finestra <emph>Comandi</emph>."
+msgstr "Qui di seguito viene visualizzato un elenco di tutte le parentesi, anche se solo quelle provviste d'icona possono essere inserite tramite il riquadro Elementi (menu Visualizza - Elementi) o il menu contestuale della finestra <emph>Comandi</emph>."
#: 03090500.xhp
msgctxt ""
@@ -2902,7 +2902,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "Braces (curly brackets)"
-msgstr "Parentesi operatore"
+msgstr "Parentesi graffe"
#: 03090500.xhp
msgctxt ""
@@ -2926,7 +2926,7 @@ msgctxt ""
"par_id3147336\n"
"help.text"
msgid "Single vertical bars"
-msgstr "Linee semplici"
+msgstr "Barre verticali singole"
#: 03090500.xhp
msgctxt ""
@@ -2950,7 +2950,7 @@ msgctxt ""
"par_id3151039\n"
"help.text"
msgid "Double vertical bars"
-msgstr "Linee doppie"
+msgstr "Barre verticali doppie"
#: 03090500.xhp
msgctxt ""
@@ -3046,7 +3046,7 @@ msgctxt ""
"par_id3146333\n"
"help.text"
msgid "Round brackets (scalable)"
-msgstr "Parentesi tonde (in scala)"
+msgstr "Parentesi tonde (scalabili)"
#: 03090500.xhp
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"par_id3155570\n"
"help.text"
msgid "Square brackets (scalable)"
-msgstr "Parentesi quadre"
+msgstr "Parentesi quadre (scalabili)"
#: 03090500.xhp
msgctxt ""
@@ -3094,7 +3094,7 @@ msgctxt ""
"par_id3154589\n"
"help.text"
msgid "Double square brackets (scalable)"
-msgstr "Parentesi quadre doppie (in scala)"
+msgstr "Parentesi quadre doppie (scalabili)"
#: 03090500.xhp
msgctxt ""
@@ -3118,7 +3118,7 @@ msgctxt ""
"par_id3154712\n"
"help.text"
msgid "Braces (scalable)"
-msgstr "Parentesi graffe sinistre e destre"
+msgstr "Parentesi graffe (scalabili)"
#: 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\">Inserisce parentesi scalabili con un segnaposto.</ahelp> Per inserire manualmente le parentesi, digitate <emph>left lbrace <?> right rbrace</emph> nella finestra <emph>Comandi</emph>. La dimensione delle parentesi viene adattata automaticamente."
+msgstr "<ahelp hid=\"HID_SMA_SLRBRACEX\">Inserisce parentesi graffe scalabili con un segnaposto.</ahelp> Per inserire manualmente le parentesi, digitate <emph>left lbrace <?> right rbrace</emph> nella finestra <emph>Comandi</emph>. La dimensione delle parentesi viene adattata automaticamente."
#: 03090500.xhp
msgctxt ""
@@ -3142,7 +3142,7 @@ msgctxt ""
"par_id3150924\n"
"help.text"
msgid "Single vertical bars (scalable)"
-msgstr "Linee semplici (in scala)"
+msgstr "Barre verticali singole (scalabili)"
#: 03090500.xhp
msgctxt ""
@@ -3166,7 +3166,7 @@ msgctxt ""
"par_id3146938\n"
"help.text"
msgid "Double vertical bars (scalable)"
-msgstr "Linee doppie (in scala)"
+msgstr "Barre verticali doppie (scalabili)"
#: 03090500.xhp
msgctxt ""
@@ -3190,7 +3190,7 @@ msgctxt ""
"par_id3149359\n"
"help.text"
msgid "Angle brackets (scalable)"
-msgstr "Parentesi uncinate (in scala)"
+msgstr "Parentesi uncinate (scalabili)"
#: 03090500.xhp
msgctxt ""
@@ -3214,7 +3214,7 @@ msgctxt ""
"par_id3153139\n"
"help.text"
msgid "Operator brackets (scalable)"
-msgstr "Parentesi operatore (in scala)"
+msgstr "Parentesi operatore (scalabili)"
#: 03090500.xhp
msgctxt ""
@@ -3238,7 +3238,7 @@ msgctxt ""
"par_id3155954\n"
"help.text"
msgid "Brace top (scalable)"
-msgstr "Parentesi graffe in alto (in scala)"
+msgstr "Parentesi graffe in alto (scalabili)"
#: 03090500.xhp
msgctxt ""
@@ -3262,7 +3262,7 @@ msgctxt ""
"par_id3150674\n"
"help.text"
msgid "Brace bottom (scalable)"
-msgstr "Parentesi graffe in basso (in scala)"
+msgstr "Parentesi graffe in basso (scalabili)"
#: 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 "Informazioni utili su <link href=\"text/smath/01/03091200.xhp\" name=\"indici ed esponenti\">indici ed esponenti</link> e sulle <link href=\"text/smath/01/03091400.xhp\" name=\"funzioni di scala\">funzioni di scala</link> che consentono di strutturare le formule efficacemente. Per maggiori informazioni sulle parentesi, vedete <link href=\"text/smath/01/03091100.xhp\" name=\"Parentesi e gruppi\">Parentesi e gruppi</link>."
+msgstr "Informazioni utili su <link href=\"text/smath/01/03091200.xhp\" name=\"indici ed esponenti\">indici ed esponenti</link> e sulle <link href=\"text/smath/01/03091400.xhp\" name=\"funzioni di scala\">funzioni di scala</link> che consentono di strutturare efficacemente le formule. Per maggiori informazioni sulle parentesi, vedere <link href=\"text/smath/01/03091100.xhp\" name=\"Parentesi e gruppi\">Parentesi e gruppi</link>."
#: 03090600.xhp
msgctxt ""
@@ -5558,7 +5558,7 @@ msgctxt ""
"bm_id3147341\n"
"help.text"
msgid "<bookmark_value>brackets and grouping in Math</bookmark_value> <bookmark_value>grouping and brackets in Math</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Parentesi e gruppi in Math</bookmark_value><bookmark_value>Gruppi e parentesi in Math</bookmark_value>"
#: 03091100.xhp
msgctxt ""
@@ -5742,7 +5742,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:"
-msgstr ""
+msgstr "Le operazioni di gruppo in sequenza sono considerate come se ogni singola operazione fosse racchiusa fra parentesi. Esse sono annidate e in ciascun livello non vi può essere più di un'operazione. Ecco un esempio di formula con molte operazioni di gruppo:"
#: 03091100.xhp
msgctxt ""
@@ -5806,7 +5806,7 @@ msgctxt ""
"par_id3148734\n"
"help.text"
msgid "Exactly identical proportions with <input>size 18 a_n</input> and <input>size *1.5 a_n</input>."
-msgstr ""
+msgstr "Proporzioni esattamente identiche con <input>size 18 a_n</input> e <input>size *1,5 a_n</input>."
#: 03091100.xhp
msgctxt ""
@@ -7686,7 +7686,7 @@ msgctxt ""
"par_id3166138\n"
"help.text"
msgid "Absolute amount"
-msgstr "Valore assoluto"
+msgstr "Importo assoluto"
#: 03091504.xhp
msgctxt ""
@@ -7918,7 +7918,7 @@ msgctxt ""
"par_id3143698\n"
"help.text"
msgid "Factorial"
-msgstr "Coseno iperbolico"
+msgstr "Fattoriale"
#: 03091504.xhp
msgctxt ""
@@ -8390,7 +8390,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=\"attributes\"><link href=\"text/smath/01/03091506.xhp\" name=\"Attributes\">Attributi</link></variable>"
+msgstr "<variable id=\"attributes\"><link href=\"text/smath/01/03091506.xhp\" name=\"Attributi\">Attributi</link></variable>"
#: 03091506.xhp
msgctxt ""
@@ -9022,7 +9022,7 @@ msgctxt ""
"par_id3179020\n"
"help.text"
msgid "Imaginary part of a complex number"
-msgstr "Parte immaginaria di un numero complesso"
+msgstr "Coefficiente immaginario di un numero complesso"
#: 03091507.xhp
msgctxt ""
@@ -9198,7 +9198,7 @@ msgctxt ""
"hd_id4631488\n"
"help.text"
msgid "<variable id=\"brackets\"><link href=\"text/smath/01/03091508.xhp\" name=\"Brackets\">Brackets</link></variable>"
-msgstr "<variable id=\"brackets\"><link href=\"text/smath/01/03091508.xhp\" name=\"Brackets\">Parentesi</link></variable>"
+msgstr "<variable id=\"brackets\"><link href=\"text/smath/01/03091508.xhp\" name=\"Parentesi\">Parentesi</link></variable>"
#: 03091508.xhp
msgctxt ""
@@ -9286,7 +9286,7 @@ msgctxt ""
"par_id3181350\n"
"help.text"
msgid "Left and right vertical line"
-msgstr "Linea semplice sinistra e destra"
+msgstr "Linea verticale sinistra e destra"
#: 03091508.xhp
msgctxt ""
@@ -9302,7 +9302,7 @@ msgctxt ""
"par_id3181498\n"
"help.text"
msgid "Left and right double vertical lines"
-msgstr "Linee doppie verticali a destra e a sinistra"
+msgstr "Linee verticali doppie a destra e a sinistra"
#: 03091508.xhp
msgctxt ""
@@ -9398,7 +9398,7 @@ msgctxt ""
"par_id3182305\n"
"help.text"
msgid "Square brackets, scalable"
-msgstr "Parentesi; quadre scalabili"
+msgstr "Parentesi quadre, scalabili"
#: 03091508.xhp
msgctxt ""
@@ -9590,7 +9590,7 @@ msgctxt ""
"par_id3183985\n"
"help.text"
msgid "Left and right vertical line"
-msgstr "Linea semplice sinistra e destra"
+msgstr "Linea verticale sinistra e destra"
#: 03091508.xhp
msgctxt ""
@@ -9638,7 +9638,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Formatting"
-msgstr "Formattazioni"
+msgstr "Formattazione"
#: 03091509.xhp
msgctxt ""
@@ -9710,7 +9710,7 @@ msgctxt ""
"par_id3184690\n"
"help.text"
msgid "Exponent directly above a character"
-msgstr "Esponente sopra il carattere"
+msgstr "Esponente direttamente sopra il carattere"
#: 03091509.xhp
msgctxt ""
@@ -9870,7 +9870,7 @@ msgctxt ""
"par_id3185904\n"
"help.text"
msgid "Align left"
-msgstr "Allineato a sinistra"
+msgstr "Allinea a sinistra"
#: 03091509.xhp
msgctxt ""
@@ -9902,7 +9902,7 @@ msgctxt ""
"par_id3186120\n"
"help.text"
msgid "Align right"
-msgstr "Allineato a destra"
+msgstr "Allinea a destra"
#: 03091509.xhp
msgctxt ""
@@ -10614,7 +10614,7 @@ msgctxt ""
"hd_id3152963\n"
"help.text"
msgid "Custom Fonts"
-msgstr "Caratteri dell'utente"
+msgstr "Caratteri personalizzati"
#: 05010000.xhp
msgctxt ""
@@ -10630,7 +10630,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 "I caratteri dell'utente vengono utilizzati se nella finestra Comandi impostate un altro tipo di carattere con il comando FONT. Come dimostrazione copiate il seguente testo nella finestra <emph>Comandi</emph>:"
+msgstr "I caratteri personalizzati vengono utilizzati se nella finestra <emph>Comandi</emph> impostate un altro tipo di carattere con il comando FONT."
#: 05010000.xhp
msgctxt ""
@@ -10670,7 +10670,7 @@ msgctxt ""
"hd_id3149340\n"
"help.text"
msgid "Fixed"
-msgstr "Fixed"
+msgstr "Larghezza fissa"
#: 05010000.xhp
msgctxt ""
@@ -10678,7 +10678,7 @@ msgctxt ""
"par_id3154198\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/fonttypedialog/fixedCB\">You can specify the font to be used for <emph>fixed</emph> font formatting.</ahelp>"
-msgstr "<ahelp hid=\"modules/smath/ui/fonttypedialog/fixedCB\">È possibile specificare il tipo di carattere da utilizzare per la formattazione del tipo di carattere <emph>fixed</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/fonttypedialog/fixedCB\">È possibile specificare il tipo di carattere da utilizzare per la formattazione del tipo di carattere con <emph>larghezza fissa</emph>.</ahelp>"
#: 05010000.xhp
msgctxt ""
@@ -10686,7 +10686,7 @@ msgctxt ""
"hd_id3159194\n"
"help.text"
msgid "Modify"
-msgstr "Modifica"
+msgstr "Cambia"
#: 05010000.xhp
msgctxt ""
@@ -10846,7 +10846,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\">Utilizzare questa finestra di dialogo per specificare le dimensioni dei caratteri nelle formule. Selezionare una dimensione base e tutti gli elementi della formula saranno adattati ad essa.</ahelp></variable>"
+msgstr "<variable id=\"schriftgroessentext\"><ahelp hid=\"modules/smath/ui/fontsizedialog/FontSizeDialog\">Utilizzare questa finestra di dialogo per specificare le dimensioni dei caratteri nelle formule. Selezionare una dimensione base e tutti gli elementi della formula saranno adattati a essa.</ahelp></variable>"
#: 05020000.xhp
msgctxt ""
@@ -10870,7 +10870,7 @@ msgctxt ""
"par_id3153005\n"
"help.text"
msgid "To permanently change the default size (12 pt) used in $[officename] Math, you must first set the size (for example, 11 pt) and then click the <emph>Default</emph> button."
-msgstr "Per modificare in modo permanente la dimensione predefinita (12 pt) usata in $[officename] Math, dovete prima selezionare la dimensione (ad esempio, 11 pt) e poi fare clic sul pulsante <emph>Default</emph>."
+msgstr "Per modificare in modo permanente la dimensione predefinita (12 pt) usata in $[officename] Math, dovete prima selezionare la dimensione (ad esempio, 11 pt) e poi fare clic sul pulsante <emph>Predefinito</emph>."
#: 05020000.xhp
msgctxt ""
@@ -10902,7 +10902,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\">Selezionare la dimensione del testo in una formula in relazione alla dimensione base.</ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_text\">Selezionare la dimensione del testo in una formula in relazione alla dimensione di base.</ahelp>"
#: 05020000.xhp
msgctxt ""
@@ -10918,7 +10918,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\">Selezionare la dimensione relativa degli indici in una formula in relazione alla dimensione base.</ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_index\">Selezionare la dimensione relativa degli indici in una formula in relazione alla dimensione di base.</ahelp>"
#: 05020000.xhp
msgctxt ""
@@ -10934,7 +10934,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\">Selezionare la dimensione relativa per i nomi e altri elementi funzione in una formula in proporzione alla dimensione base.</ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_function\">Selezionare la dimensione relativa per i nomi e altri elementi funzione in una formula in proporzione alla dimensione di base.</ahelp>"
#: 05020000.xhp
msgctxt ""
@@ -10950,7 +10950,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\">Selezionare la dimensione relativa degli operatori matematici in una formula in proporzione alla dimensione base.</ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_operator\">Selezionare la dimensione relativa degli operatori matematici in una formula in proporzione alla dimensione di base.</ahelp>"
#: 05020000.xhp
msgctxt ""
@@ -10966,7 +10966,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\">Selezionare la dimensione relativa dei limiti in una formula in proporzione alla dimensione base.</ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_limit\">Selezionare la dimensione relativa dei limiti in una formula in proporzione alla dimensione di base.</ahelp>"
#: 05020000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/swriter/00.po b/source/it/helpcontent2/source/text/swriter/00.po
index b810a19453e..ed52017f6e6 100644
--- a/source/it/helpcontent2/source/text/swriter/00.po
+++ b/source/it/helpcontent2/source/text/swriter/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-06-30 18:11+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2019-07-22 16:57+0000\n"
+"Last-Translator: Elisabetta Manuele <calembour@hotmail.it>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\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: 1561918265.000000\n"
+"X-POOTLE-MTIME: 1563814655.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_id3150928\n"
"help.text"
msgid "Open context menu - choose <emph>Index Entry</emph>"
-msgstr "Menu di contesto <emph>Voce di indice...</emph>"
+msgstr "Aprite il menu contestuale e scegliete <emph>Voce di indice...</emph>"
#: 00000402.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id3146966\n"
"help.text"
msgid "Open context menu - choose <emph>Fields</emph> (inserted fields)"
-msgstr "Menu di contesto<emph> Comando di campo...</emph> (con comando di campo inserito)"
+msgstr "Aprite il menu contestuale e scegliete <emph>Comando di campo...</emph> (con comando di campo inserito)"
#: 00000404.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"par_id3149810\n"
"help.text"
msgid "Choose <emph>Insert - Section</emph>"
-msgstr "Menu <emph>Inserisci - Sezione...</emph>"
+msgstr "Scegliete <emph>Inserisci - Sezione</emph>"
#: 00000404.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"par_id3154385\n"
"help.text"
msgid "Choose <emph>Insert - Caption</emph>"
-msgstr "Menu <emph>Inserisci - Didascalia...</emph>"
+msgstr "Scegliete <emph>Inserisci - Didascalia</emph>"
#: 00000404.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"par_id3153358\n"
"help.text"
msgid "Open context menu - choose <emph>Caption</emph>"
-msgstr "Aprite il menu di contesto <emph>Didascalia...</emph>"
+msgstr "Aprite il menu contestuale <emph>Didascalia</emph>"
#: 00000404.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"par_id3156269\n"
"help.text"
msgid "Choose <emph>Insert - Caption - Options</emph>"
-msgstr "Menu <emph>Inserisci - Didascalia - Opzioni</emph>"
+msgstr "Scegliete <emph>Inserisci - Didascalia - Opzioni</emph>"
#: 00000404.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"par_id3149169\n"
"help.text"
msgid "Open context menu - choose <emph>Caption - Options</emph>"
-msgstr "Aprite il menu di contesto <emph>Didascalia - Opzioni</emph>"
+msgstr "Aprite il menu contestuale <emph>Didascalia - Opzioni</emph>"
#: 00000404.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"par_id3150587\n"
"help.text"
msgid "Choose <emph>Insert - Bookmark</emph>"
-msgstr "Menu <emph>Inserisci - Segnalibro...</emph>"
+msgstr "Scegliete <emph>Inserisci - Segnalibro</emph>"
#: 00000404.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"par_id3148781\n"
"help.text"
msgid "Choose <emph>Insert - Frame</emph>"
-msgstr "Menu<emph> Inserisci - Cornice...</emph>"
+msgstr "Scegliete <emph> Inserisci - Cornice</emph>"
#: 00000404.xhp
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"par_id3149627\n"
"help.text"
msgid "<variable id=\"einfhorizlinie\">Choose <emph>Insert - Horizontal Rule</emph></variable>"
-msgstr "<variable id=\"einfhorizlinie\">Menu <emph>Inserisci - Linea orizzontale</emph></variable>"
+msgstr "<variable id=\"einfhorizlinie\">Scegliete <emph>Inserisci - Linea orizzontale</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"par_id3150661\n"
"help.text"
msgid "Choose <emph>Insert - File</emph>"
-msgstr "Menu <emph>Inserisci - File...</emph>"
+msgstr "Scegliete <emph>Inserisci - File</emph>"
#: 00000404.xhp
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"par_id3153618\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Drop Caps</emph> tab."
-msgstr ""
+msgstr "Scegliete <emph>Formato - Paragrafo...</emph>, scheda <emph>Capolettere</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1630,7 +1630,7 @@ msgctxt ""
"par_id3150454\n"
"help.text"
msgid "<variable id=\"kontureditor\">Choose <emph>Format - Wrap - Edit Contour</emph>.</variable>"
-msgstr "<variable id=\"kontureditor\">Menu <emph>Formato - Scorrimento - Modifica contorno</emph>.</variable>"
+msgstr "<variable id=\"kontureditor\">Scegliete <emph>Formato - Scorrimento - Modifica contorno</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"par_id3149617\n"
"help.text"
msgid "<variable id=\"schtzenze\">In the context menu of a cell, choose <emph>Cell - Protect</emph>.</variable>"
-msgstr "<variable id=\"schtzenze\">Nel menu di contesto di una cella, scegliete <emph>Cella - Proteggi</emph>.</variable>"
+msgstr "<variable id=\"schtzenze\">Nel menu contestuale di una cella, scegliete <emph>Cella - Proteggi</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1878,7 +1878,7 @@ msgctxt ""
"par_id3145656\n"
"help.text"
msgid "Open context menu in <emph>Navigator</emph> for tables."
-msgstr ""
+msgstr "Aprite il menu contestuale nel <emph>Navigatore</emph> per tabelle."
#: 00000405.xhp
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"par_id3148716\n"
"help.text"
msgid "<variable id=\"zeile\">In the context menu of a cell, choose <emph>Row</emph>.</variable>"
-msgstr "<variable id=\"zeile\">Nel menu di contesto di una cella, scegliete <emph>Riga</emph>.</variable>"
+msgstr "<variable id=\"zeile\">Nel menu contestuale di una cella, scegliete <emph>Riga</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"par_id3155345\n"
"help.text"
msgid "<variable id=\"hoehez\">In the context menu of a cell, choose <emph>Row - Height</emph>.</variable>"
-msgstr "<variable id=\"hoehez\">Nel menu di contesto di una cella, scegliete <emph>Riga - Altezza</emph>.</variable>"
+msgstr "<variable id=\"hoehez\">Nel menu contestuale di una cella, scegliete <emph>Riga - Altezza</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -2006,7 +2006,7 @@ msgctxt ""
"par_id3149383\n"
"help.text"
msgid "<variable id=\"spalte\">In the context menu of a cell, choose <emph>Column</emph>.</variable>"
-msgstr "<variable id=\"spalte\">Nel menu di contesto di una cella, scegliete <emph>Colonna</emph>.</variable>"
+msgstr "<variable id=\"spalte\">Nel menu contestuale di una cella, scegliete <emph>Colonna</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -2318,7 +2318,7 @@ msgctxt ""
"par_id3150833\n"
"help.text"
msgid "<variable id=\"sortieren\">Choose <emph>Tools - Sort</emph></variable>"
-msgstr "<variable id=\"sortieren\">Menu <emph>Strumenti - Ordina...</emph></variable>"
+msgstr "<variable id=\"sortieren\">Scegliete <emph>Strumenti - Ordina</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -2326,7 +2326,7 @@ msgctxt ""
"par_id3149692\n"
"help.text"
msgid "Choose <emph>Tools - Calculate</emph>"
-msgstr "Menu <emph>Strumenti - Calcola</emph>"
+msgstr "Scegliete <emph>Strumenti - Calcola</emph>"
#: 00000406.xhp
msgctxt ""
@@ -2342,7 +2342,7 @@ msgctxt ""
"par_id3155174\n"
"help.text"
msgid "<variable id=\"aktualisieren\">Choose <emph>Tools - Update</emph></variable>"
-msgstr "<variable id=\"aktualisieren\">Menu <emph>Strumenti - Aggiorna</emph></variable>"
+msgstr "<variable id=\"aktualisieren\">Scegliete <emph>Strumenti - Aggiorna</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -2350,7 +2350,7 @@ msgctxt ""
"par_id3151330\n"
"help.text"
msgid "<variable id=\"seitenformatierung\">Choose <emph>Tools - Update - Reformat Pages</emph></variable>"
-msgstr "<variable id=\"seitenformatierung\">Menu <emph>Strumenti - Aggiorna - Reimpagina</emph></variable>"
+msgstr "<variable id=\"seitenformatierung\">Scegliete <emph>Strumenti - Aggiorna - Formattazione della pagina</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -2358,7 +2358,7 @@ msgctxt ""
"par_id3149482\n"
"help.text"
msgid "<variable id=\"aktuellesverz\">Choose <emph>Tools - Update - Current Index</emph></variable>"
-msgstr "<variable id=\"aktuellesverz\">Menu<emph> Strumenti - Aggiorna - Indice corrente</emph></variable>"
+msgstr "<variable id=\"aktuellesverz\">Scegliete <emph> Strumenti - Aggiorna - Indice corrente</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"par_id3149821\n"
"help.text"
msgid "<variable id=\"alleverz\">Choose <emph>Tools - Update - All Indexes and Tables</emph></variable>"
-msgstr "<variable id=\"alleverz\">Menu <emph>Strumenti - Aggiorna - Tutti gli indici e le tabelle</emph></variable>"
+msgstr "<variable id=\"alleverz\">Scegliete <emph>Strumenti - Aggiorna - Indici e tabelle</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -2374,7 +2374,7 @@ msgctxt ""
"par_id3151249\n"
"help.text"
msgid "<variable id=\"alles\">Choose <emph>Tools - Update - Update All </emph></variable>"
-msgstr "<variable id=\"alles\">Menu <emph>Strumenti - Aggiorna - Aggiorna tutto</emph></variable>"
+msgstr "<variable id=\"alles\">Scegliete <emph>Strumenti - Aggiorna - Aggiorna tutto</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"par_id3154839\n"
"help.text"
msgid "Choose <emph>Tools - Update - Fields </emph>"
-msgstr "Menu <emph>Strumenti - Aggiorna - Campi</emph>"
+msgstr "Scegliete <emph>Strumenti - Aggiorna - Campi</emph>"
#: 00000406.xhp
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"par_id3148970\n"
"help.text"
msgid "<variable id=\"aktverknuepf\">Choose <emph>Tools - Update - Links</emph></variable>"
-msgstr "<variable id=\"aktverknuepf\">Menu <emph>Strumenti - Aggiorna - Collegamenti</emph></variable>"
+msgstr "<variable id=\"aktverknuepf\">Scegliete <emph>Strumenti - Aggiorna - Collegamenti</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"par_id3147220\n"
"help.text"
msgid "<variable id=\"adiagr\">Choose <emph>Tools - Update - All Charts</emph></variable>"
-msgstr "<variable id=\"adiagr\">Menu <emph>Strumenti - Aggiorna - Tutti i grafici</emph></variable>"
+msgstr "<variable id=\"adiagr\">Scegliete <emph>Strumenti - Aggiorna - Grafici</emph></variable>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/swriter/01.po b/source/it/helpcontent2/source/text/swriter/01.po
index a79cf811c1c..21ada5dae20 100644
--- a/source/it/helpcontent2/source/text/swriter/01.po
+++ b/source/it/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-06-30 18:23+0000\n"
+"PO-Revision-Date: 2019-07-22 17:19+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1561919026.000000\n"
+"X-POOTLE-MTIME: 1563815982.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -9479,7 +9479,7 @@ msgctxt ""
"bm_id991519648545589\n"
"help.text"
msgid "<bookmark_value>fields;editing</bookmark_value> <bookmark_value>edit;fields</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Campo, comando di;modificare</bookmark_value> <bookmark_value>Modificare;comandi di campo</bookmark_value>"
#: 04090300.xhp
msgctxt ""
@@ -9519,7 +9519,7 @@ msgctxt ""
"par_id761519649446212\n"
"help.text"
msgid "Shows the type of the selected field. The middle and right pane of the dialog contents depends on the field type. For a complete description of the fields see <link href=\"text/swriter/01/04090000.xhp\" name=\"fields\">Fields</link> page."
-msgstr ""
+msgstr "Mostra il tipo di campo selezionato. Il riquadro centrale e quello a destra della finestra di dialogo dipendono dal tipo di campo. Per una descrizione completa dei comandi di campo consultate la pagina <link href=\"text/swriter/01/04090000.xhp\" name=\"comandi di campo\">Comandi di campo</link>."
#: 04090300.xhp
msgctxt ""
@@ -10343,7 +10343,7 @@ msgctxt ""
"par_id41550528154857\n"
"help.text"
msgid "You can include the Figure Index Heading or Bibliography Heading styles, as well as any other relevant heading style, to the Table of Contents."
-msgstr ""
+msgstr "Potete includere all'Indice generale gli stili Intestazione indice figure o Titolo bibliografia, così come qualsiasi altro stile di intestazione pertinente."
#: 04120211.xhp
msgctxt ""
@@ -10359,7 +10359,7 @@ msgctxt ""
"par_id3145776\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/styles\">Opens the <emph>Assign Styles</emph> dialog, where you can select the paragraph styles to include in the index. Choose the proper heading level on which the style will be included in the index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/styles\">Apre la finestra di dialogo <emph>Assegna stile</emph>, in cui si possono selezionare gli stili di paragrafo da includere nell'indice. Scegliete il livello di intestazione appropriato con cui lo stile sarà incluso nell'indice.</ahelp>"
#: 04120211.xhp
msgctxt ""
@@ -12783,7 +12783,7 @@ msgctxt ""
"par_id3149036\n"
"help.text"
msgid "<ahelp hid=\".\">Select a predefined style for the new table.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionare un stile predefinito per la nuova tabella.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare uno stile predefinito per la nuova tabella.</ahelp>"
#: 04150000.xhp
msgctxt ""
@@ -15535,7 +15535,7 @@ msgctxt ""
"par_idN10A8E\n"
"help.text"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Mantieni all'interno dei margini del testo"
#: 05060100.xhp
msgctxt ""
@@ -15551,7 +15551,7 @@ msgctxt ""
"par_idN10AA6\n"
"help.text"
msgid "By default, the <emph>Keep inside text boundaries</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 "L'opzione <emph>Mantieni all'interno dei margini del testo</emph> è selezionata automaticamente quando il documento aperto è stato creato in una versione di Writer anteriore a OpenOffice.org 2.0. Non viene tuttavia selezionata se create un nuovo documento o se aprite un documento in formato Microsoft Word (*.doc)."
#: 05060100.xhp
msgctxt ""
@@ -15575,7 +15575,7 @@ msgctxt ""
"par_id3153231\n"
"help.text"
msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Format - Align\"><emph>Format - Align</emph></link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05070000.xhp\" name=\"Formato - Allinea\"><emph>Formato - Allinea</emph></link>"
#: 05060200.xhp
msgctxt ""
@@ -18359,7 +18359,7 @@ msgctxt ""
"par_idN10944\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/textorientation\">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 ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/textorientation\">Selezionare l'orientazione del testo nelle celle.</ahelp> Per specificare l'orientazione del testo nelle celle di una tabella potete usare le seguenti opzioni di formattazione:"
#: 05090300.xhp
msgctxt ""
@@ -18375,7 +18375,7 @@ msgctxt ""
"par_idN10968\n"
"help.text"
msgid "Vertical (top to bottom)"
-msgstr ""
+msgstr "Verticale (dall'alto verso il basso)"
#: 05090300.xhp
msgctxt ""
@@ -18391,7 +18391,7 @@ msgctxt ""
"par_idN10969\n"
"help.text"
msgid "Vertical (bottom to top)"
-msgstr ""
+msgstr "Verticale (dal basso verso l'alto)"
#: 05090300.xhp
msgctxt ""
@@ -26703,7 +26703,7 @@ msgctxt ""
"hd_id171516900315575\n"
"help.text"
msgid "Font"
-msgstr ""
+msgstr "Tipo di carattere"
#: watermark.xhp
msgctxt ""
@@ -26783,7 +26783,7 @@ msgctxt ""
"par_id831516906589936\n"
"help.text"
msgid "If the watermark in use is a text inserted by the <item type=\"menuitem\">Format - Watermark</item> menu command or by the <link href=\"text/swriter/classificationbar.xhp\" name=\"classification bar\">document classification settings</link>, you can edit the contents and settings on opening the watermark dialog."
-msgstr ""
+msgstr "Se la filigrana in uso è un testo inserito col comando di menu <item type=\"menuitem\">Formato - Filigrana</item> o mediante le <link href=\"text/swriter/classificationbar.xhp\" name=\"barra di classificazione\">impostazioni di classificazione del documento</link>, potete modificarne il contenuto e le opzioni aprendo la finestra di dialogo Filigrana."
#: watermark.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/swriter/guide.po b/source/it/helpcontent2/source/text/swriter/guide.po
index 794a9eb9712..7099e207f63 100644
--- a/source/it/helpcontent2/source/text/swriter/guide.po
+++ b/source/it/helpcontent2/source/text/swriter/guide.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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-06-30 18:25+0000\n"
+"PO-Revision-Date: 2019-07-22 17:54+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\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: 1561919154.000000\n"
+"X-POOTLE-MTIME: 1563818055.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -231,7 +231,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\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
-msgstr ""
+msgstr "Nella <emph>barra standard</emph>, fate clic sull'icona <emph>Navigatore</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icona Navigatore</alt></image> per aprire il <emph>Navigatore</emph>."
#: arrange_chapters.xhp
msgctxt ""
@@ -239,7 +239,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\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
-msgstr ""
+msgstr "Nel <emph>Navigatore</emph>, fate clic sull'icona <emph>Vista contenuto</emph> <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon Vista contenuto</alt></image>."
#: arrange_chapters.xhp
msgctxt ""
@@ -263,7 +263,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\" width=\"0.566cm\" height=\"0.566cm\"><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 "Fate clic su un titolo presente nell'elenco del <emph>Navigatore</emph>, poi clic sull'icona <emph>Alza il capitolo</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icona</alt></image> o <emph>Abbassa il capitolo</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icona</alt></image>."
#: arrange_chapters.xhp
msgctxt ""
@@ -295,7 +295,7 @@ msgctxt ""
"par_idN1081C\n"
"help.text"
msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</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 "Fate clic sull'icona <emph>Alza il livello</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icona Alza livello</alt></image> o <emph>Abbassa il livello</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icona Abbassa livello</alt></image>."
#: arrange_chapters.xhp
msgctxt ""
@@ -311,7 +311,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\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
-msgstr ""
+msgstr "Fate clic sull'icona <emph>Livelli di intestazione visualizzati</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icona Livelli di intestazione</alt></image> e selezionate un numero dall'elenco."
#: auto_numbering.xhp
msgctxt ""
@@ -8383,7 +8383,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Changing the Chapter Level of Numbered and Bulleted Lists"
-msgstr ""
+msgstr "Modificare il livello dei capitoli degli elenchi puntati e numerati"
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8391,7 +8391,7 @@ msgctxt ""
"bm_id3145078\n"
"help.text"
msgid "<bookmark_value>tab stops; inserting in lists</bookmark_value><bookmark_value>numbering; changing the level of</bookmark_value><bookmark_value>lists;changing levels</bookmark_value><bookmark_value>levels;changing chapter levels</bookmark_value><bookmark_value>levels;changing outline levels</bookmark_value><bookmark_value>bullet lists;changing levels</bookmark_value><bookmark_value>lowering chapter levels</bookmark_value><bookmark_value>rising chapter levels</bookmark_value><bookmark_value>changing;chapter levels</bookmark_value><bookmark_value>lowering outline levels</bookmark_value><bookmark_value>rising outline levels</bookmark_value><bookmark_value>changing;outline levels</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Tabulazione; inserire negli elenchi</bookmark_value><bookmark_value>Numerazione; cambiare il livello di</bookmark_value><bookmark_value>Elenco;cambiare i livelli</bookmark_value><bookmark_value>Livello;cambiare i livelli dei capitoli</bookmark_value><bookmark_value>Livello;cambiare i livelli della struttura</bookmark_value><bookmark_value>Elenco puntato;cambiare i livelli</bookmark_value><bookmark_value>Abbassare i livelli dei capitoli</bookmark_value><bookmark_value>Alzare i livelli dei capitoli</bookmark_value><bookmark_value>Cambiare;livelli dei capitoli</bookmark_value><bookmark_value>Abbassare i livelli della struttura</bookmark_value><bookmark_value>Alzare i livelli della struttura</bookmark_value><bookmark_value>Cambiare;livelli della struttura</bookmark_value>"
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8399,7 +8399,7 @@ msgctxt ""
"hd_id3145078\n"
"help.text"
msgid "<variable id=\"insert_tab_innumbering\"><link href=\"text/swriter/guide/insert_tab_innumbering.xhp\" name=\"Changing the Outline Level of Numbered and Bulleted Lists\">Changing the Chapter Level of Numbered and Bulleted Lists</link></variable>"
-msgstr ""
+msgstr "<variable id=\"insert_tab_innumbering\"><link href=\"text/swriter/guide/insert_tab_innumbering.xhp\" name=\"Modificare il livello della struttura degli elenchi puntati e numerati\">Modificare il livello dei capitoli degli elenchi puntati e numerati</link></variable>"
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8407,7 +8407,7 @@ msgctxt ""
"par_id3155909\n"
"help.text"
msgid "To move a numbered or bulleted paragraph down one chapter level, click at the beginning of the paragraph, and then press Tab."
-msgstr ""
+msgstr "Per spostare un paragrafo puntato o numerato di un livello più in basso nel capitolo, fate clic all'inizio del paragrafo e premete Tab."
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8415,7 +8415,7 @@ msgctxt ""
"par_id3155859\n"
"help.text"
msgid "To move a numbered or bulleted paragraph up one chapter level, click at the beginning of the paragraph, and then press Shift+Tab."
-msgstr ""
+msgstr "Per spostare un paragrafo puntato o numerato di un livello più in alto nel capitolo, fate clic all'inizio del paragrafo e premete Maiusc+Tab."
#: insert_tab_innumbering.xhp
msgctxt ""
@@ -8423,7 +8423,7 @@ msgctxt ""
"par_id3153403\n"
"help.text"
msgid "To insert a tab between the number or bullet and the paragraph text, click at the beginning of the paragraph, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab."
-msgstr ""
+msgstr "Per inserire una tabulazione tra il punto (o il numero) e il testo del paragrafo, fate clic all'inizio del paragrafo e premete <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab."
#: join_numbered_lists.xhp
msgctxt ""
@@ -12231,7 +12231,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using Regular Expressions in Text Searches"
-msgstr ""
+msgstr "Uso delle espressioni regolari nelle ricerche di testo"
#: search_regexp.xhp
msgctxt ""
@@ -12239,7 +12239,7 @@ msgctxt ""
"bm_id3150099\n"
"help.text"
msgid "<bookmark_value>wildcards, see regular expressions</bookmark_value><bookmark_value>searching; with regular expressions</bookmark_value><bookmark_value>regular expressions;searching</bookmark_value><bookmark_value>examples for regular expressions</bookmark_value><bookmark_value>characters;finding all</bookmark_value><bookmark_value>invisible characters;finding</bookmark_value><bookmark_value>paragraph marks;searching</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Carattere jolly, vedere espressione regolare</bookmark_value><bookmark_value>Ricercare; con espressioni regolari</bookmark_value><bookmark_value>Regolare, espressione;ricercare</bookmark_value><bookmark_value>Esempi di espressioni regolari</bookmark_value><bookmark_value>Carattere;trovare tutto</bookmark_value><bookmark_value>Invisibile, carattere;trovare</bookmark_value><bookmark_value>Paragrafo, segni di;cercare</bookmark_value>"
#: search_regexp.xhp
msgctxt ""
@@ -12247,7 +12247,7 @@ msgctxt ""
"hd_id3150099\n"
"help.text"
msgid "<variable id=\"search_regexp\"><link href=\"text/swriter/guide/search_regexp.xhp\">Using Regular Expressions in Text Searches</link></variable>"
-msgstr ""
+msgstr "<variable id=\"search_regexp\"><link href=\"text/swriter/guide/search_regexp.xhp\">Uso delle espressioni regolari nelle ricerche di testo</link></variable>"
#: search_regexp.xhp
msgctxt ""
@@ -12255,7 +12255,7 @@ msgctxt ""
"par_id0509200916345516\n"
"help.text"
msgid "Regular expressions can be used to search for some unspecified or even invisible characters."
-msgstr ""
+msgstr "Le espressioni regolare possono essere utilizzate per ricercare caratteri non specificati o anche invisibili."
#: search_regexp.xhp
msgctxt ""
@@ -12263,7 +12263,7 @@ msgctxt ""
"par_id421554926388821\n"
"help.text"
msgid "Searching with regular expressions is different from searching with wildcards. %PRODUCTNAME Writer only supports searching with regular expressions."
-msgstr ""
+msgstr "La ricerca tramite espressioni regolari si differenzia dalla ricerca tramite caratteri jolly. %PRODUCTNAME Writer supporta solo la ricerca tramite espressioni regolari."
#: search_regexp.xhp
msgctxt ""
@@ -12271,7 +12271,7 @@ msgctxt ""
"par_id3155182\n"
"help.text"
msgid "You can use regular expressions when you find and replace text in a document. For example, \"s.n\" finds \"sun\" and \"son\"."
-msgstr ""
+msgstr "Per cercare e sostituire un testo in un documento potete servirvi delle espressioni regolari. Ad esempio, potete usare \"stell.\" per cercare sia \"stella\", sia \"stelle\"."
#: search_regexp.xhp
msgctxt ""
@@ -12303,7 +12303,7 @@ msgctxt ""
"par_id3149843\n"
"help.text"
msgid "In the <item type=\"menuitem\">Find</item> box, type the search term and the regular expression(s) that you want to use in your search."
-msgstr ""
+msgstr "Nella casella <item type=\"menuitem\">Trova</item>, digitate il termine da ricercare e l'espressione regolare (o le espressioni) da utilizzare nella vostra ricerca."
#: search_regexp.xhp
msgctxt ""
@@ -12327,7 +12327,7 @@ msgctxt ""
"par_id3149641\n"
"help.text"
msgid "The regular expression for a single character is a period (.)."
-msgstr ""
+msgstr "L'espressione regolare che equivale a un singolo carattere è il punto (.)."
#: search_regexp.xhp
msgctxt ""
@@ -12335,7 +12335,7 @@ msgctxt ""
"par_id3153136\n"
"help.text"
msgid "The regular expression for zero or more occurrences of the previous character is an asterisk. For example: \"123*\" finds \"12\" \"123\", and \"1233\"."
-msgstr ""
+msgstr "L'espressione regolare che identifica nessuna o più occorrenze del carattere precedente è un asterisco. Ad esempio: \"123*\" identifica \"12\", \"123\" e \"1233\"."
#: search_regexp.xhp
msgctxt ""
@@ -12343,7 +12343,7 @@ msgctxt ""
"par_id3149609\n"
"help.text"
msgid "The regular expression combination to search for zero or more occurrences of any character is a period and asterisk (.*)."
-msgstr ""
+msgstr "La combinazione di espressioni regolari che corrisponde a nessuna o più occorrenze di un carattere è un punto seguito da un asterisco (.*)."
#: search_regexp.xhp
msgctxt ""
@@ -12351,7 +12351,7 @@ msgctxt ""
"par_id3149854\n"
"help.text"
msgid "The regular expression for the end of a paragraph is a dollar sign ($). The regular expression character combination for the start of a paragraph is a caret and a period (^.)."
-msgstr ""
+msgstr "L'espressione regolare per la ricerca della fine di un paragrafo è il simbolo del dollaro ($), mentre la combinazione di espressioni regolari che corrisponde all'inizio di un paragrafo è un accento circonflesso seguito da un punto (^.)."
#: search_regexp.xhp
msgctxt ""
@@ -12359,7 +12359,7 @@ msgctxt ""
"par_id0509200916345545\n"
"help.text"
msgid "The regular expression for a tab character is \\t."
-msgstr ""
+msgstr "L'espressione regolare che equivale a un carattere di tabulazione è \\t."
#: search_regexp.xhp
msgctxt ""
@@ -12375,7 +12375,7 @@ msgctxt ""
"par_id3149875\n"
"help.text"
msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of regular expressions\">List of regular expressions</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02100001.xhp\" name=\"Elenco delle espressioni regolari\">Elenco delle espressioni regolari</link>"
#: section_edit.xhp
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 9a5e2318be0..f36ea206c1f 100644
--- a/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-15 21:29+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-29 18:39+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563226152.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1564425588.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -410,7 +410,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Vertically"
-msgstr "Rispecchia in verticale"
+msgstr "Ribalta verticalmente"
#: CalcCommands.xcu
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Horizontally"
-msgstr "Rispecchia in orizzontale"
+msgstr "Ribalta orizzontalmente"
#: CalcCommands.xcu
msgctxt ""
@@ -6233,7 +6233,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Align"
-msgstr "Allineamento"
+msgstr "Allinea"
#: DbReportWindowState.xcu
msgctxt ""
@@ -8600,7 +8600,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Reverse"
-msgstr "~Inverti"
+msgstr "~Scambia"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9176,7 +9176,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Flip"
-msgstr "Ri~specchia"
+msgstr "Ri~balta"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -17105,7 +17105,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open ~Remote..."
-msgstr "Apri ~remoto..."
+msgstr "Apri in ~remoto..."
#: GenericCommands.xcu
msgctxt ""
@@ -17132,7 +17132,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sa~ve Remote..."
-msgstr "Sal~va remoto..."
+msgstr "Sal~va in remoto..."
#: GenericCommands.xcu
msgctxt ""
@@ -18232,7 +18232,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tree Control"
-msgstr "Campo di controllo albero"
+msgstr "Campo di controllo ad albero"
#: GenericCommands.xcu
msgctxt ""
@@ -20257,7 +20257,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Horizontally"
-msgstr "Rispecchia in orizzontale"
+msgstr "Ribalta orizzontalmente"
#: GenericCommands.xcu
msgctxt ""
@@ -20266,7 +20266,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Vertically"
-msgstr "Rispecchia in verticale"
+msgstr "Ribalta verticalmente"
#: GenericCommands.xcu
msgctxt ""
@@ -21054,6 +21054,24 @@ msgstr "Donazione a LibreOffice"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
@@ -22399,7 +22417,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Top"
-msgstr "Sopra"
+msgstr "In alto"
#: GenericCommands.xcu
msgctxt ""
@@ -22507,7 +22525,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Top"
-msgstr "Sopra"
+msgstr "Alto"
#: GenericCommands.xcu
msgctxt ""
@@ -24784,7 +24802,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Centered on Section"
-msgstr "Al centro sulla sezione"
+msgstr "Centrato sulla sezione"
#: ReportCommands.xcu
msgctxt ""
@@ -25513,7 +25531,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr "A schede compatta"
+msgstr "A schede, compatta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25594,7 +25612,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr "A schede compatta"
+msgstr "A schede, compatta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25657,7 +25675,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr "A schede compatta"
+msgstr "A schede, compatta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25711,7 +25729,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr "A schede compatta"
+msgstr "A schede, compatta"
#: ToolbarMode.xcu
msgctxt ""
@@ -29203,7 +29221,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Images on Even Pages"
-msgstr "Rispecchia le immagini sulle pagine pari"
+msgstr "Ribalta le immagini sulle pagine pari"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/it/reportdesign/messages.po b/source/it/reportdesign/messages.po
index e553a87bb35..445b692848f 100644
--- a/source/it/reportdesign/messages.po
+++ b/source/it/reportdesign/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-11-05 17:38+0100\n"
-"PO-Revision-Date: 2019-01-14 21:30+0000\n"
+"PO-Revision-Date: 2019-07-26 20:39+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.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: 1547501400.000000\n"
+"X-POOTLE-MTIME: 1564173596.000000\n"
#: reportdesign/inc/stringarray.hrc:17
msgctxt "RID_STR_FORCENEWPAGE_CONST"
@@ -119,7 +119,7 @@ msgstr "In alto"
#: reportdesign/inc/stringarray.hrc:67
msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
msgid "Middle"
-msgstr "Al centro"
+msgstr "In mezzo"
#: reportdesign/inc/stringarray.hrc:68
msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
@@ -956,12 +956,12 @@ msgstr "minore di"
#: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:77
msgctxt "conditionwin|opCombobox"
msgid "greater than or equal to"
-msgstr "maggiore o uguale a"
+msgstr "maggiore di o uguale a"
#: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:78
msgctxt "conditionwin|opCombobox"
msgid "less than or equal to"
-msgstr "minore o uguale a"
+msgstr "minore di o uguale a"
#: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:107
msgctxt "conditionwin|lhsButton"
diff --git a/source/it/sc/messages.po b/source/it/sc/messages.po
index e9dde8fc280..720ecf3e022 100644
--- a/source/it/sc/messages.po
+++ b/source/it/sc/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-17 11:37+0000\n"
+"PO-Revision-Date: 2019-07-29 18:34+0000\n"
"Last-Translator: Elisabetta Manuele <calembour@hotmail.it>\n"
"Language-Team: LANGUAGE <LL@li.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: 1563363434.000000\n"
+"X-POOTLE-MTIME: 1564425284.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1353,7 +1353,7 @@ msgstr "Nascondi fogli"
#: sc/inc/globstr.hrc:294
msgctxt "STR_UNDO_TAB_RTL"
msgid "Flip sheet"
-msgstr "Rispecchia foglio"
+msgstr "Ribalta foglio"
#: sc/inc/globstr.hrc:295
msgctxt "STR_ABSREFLOST"
@@ -13542,47 +13542,47 @@ msgstr "Matrice"
#: sc/inc/scfuncs.hrc:4126
msgctxt "SC_OPCODE_FOURIER"
msgid "The array whose DFT needs to be computed. The dimensions of this array can be Nx1 or Nx2 or 1xN or 2xN."
-msgstr ""
+msgstr "La matrice di cui occorre calcolare il DFT. Le dimensioni di questa matrice possono essere Nx1 o Nx2 o 1xN o 2xN."
#: sc/inc/scfuncs.hrc:4127
msgctxt "SC_OPCODE_FOURIER"
msgid "GroupedByColumns"
-msgstr ""
+msgstr "RaggruppataPerColonne"
#: sc/inc/scfuncs.hrc:4128
msgctxt "SC_OPCODE_FOURIER"
msgid "Flag to indicate whether the array is grouped by columns or not (default TRUE)."
-msgstr ""
+msgstr "Contrassegno che indica se la matrice è raggruppata per colonne oppure no (valore predefinito VERO)."
#: sc/inc/scfuncs.hrc:4129
msgctxt "SC_OPCODE_FOURIER"
msgid "Inverse"
-msgstr ""
+msgstr "Inversa"
#: sc/inc/scfuncs.hrc:4130
msgctxt "SC_OPCODE_FOURIER"
msgid "Flag to indicate whether an inverse DFT is to be computed (default FALSE)."
-msgstr ""
+msgstr "Contrassegno che indica se deve essere calcolata una DFT inversa (valore predefinito FALSO)."
#: sc/inc/scfuncs.hrc:4131
msgctxt "SC_OPCODE_FOURIER"
msgid "Polar"
-msgstr ""
+msgstr "Polare"
#: sc/inc/scfuncs.hrc:4132
msgctxt "SC_OPCODE_FOURIER"
msgid "Flag to indicate whether to return the results in polar form (default FALSE)."
-msgstr ""
+msgstr "Contrassegno che indica se restituire i risultati in forma polare (valore predefinito FALSO)."
#: sc/inc/scfuncs.hrc:4133
msgctxt "SC_OPCODE_FOURIER"
msgid "MinimumMagnitude"
-msgstr ""
+msgstr "GrandezzaMinima"
#: sc/inc/scfuncs.hrc:4134
msgctxt "SC_OPCODE_FOURIER"
msgid "In case of Polar=TRUE, the frequency components below this magnitude are clipped out (default 0.0)."
-msgstr ""
+msgstr "Se Polare=VERO le componenti di frequenza inferiori a questa grandezza vengono eliminate (valore predefinito 0.0)."
#: sc/inc/scstyles.hrc:29
msgctxt "RID_CELLSTYLEFAMILY"
@@ -14002,22 +14002,22 @@ msgstr "~Elimina stampa di pagine vuote"
#: sc/inc/strings.hrc:107
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
-msgstr ""
+msgstr "Stampa tutti i fogli"
#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
-msgstr ""
+msgstr "Stampa fogli selezionati"
#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
-msgstr ""
+msgstr "Stampa celle selezionate"
#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
-msgstr ""
+msgstr "Di cui stampare:"
#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
@@ -14027,7 +14027,7 @@ msgstr "Tutte le ~pagine"
#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
-msgstr ""
+msgstr "Pa~gine:"
#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
@@ -14928,12 +14928,12 @@ msgstr "Superiore"
#: sc/inc/strings.hrc:308
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
-msgstr ""
+msgstr "Intervallo di immissione non valido."
#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
-msgstr ""
+msgstr "Indirizzo di output non valido."
#. RegressionDialog
#: sc/inc/strings.hrc:311
@@ -15133,57 +15133,57 @@ msgstr "Valore critico di z a due code"
#: sc/inc/strings.hrc:353
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
-msgstr ""
+msgstr "Trasformata di Fourier"
#: sc/inc/strings.hrc:354
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
-msgstr ""
+msgstr "Trasformata inversa di Fourier"
#: sc/inc/strings.hrc:355
msgctxt "STR_REAL_PART"
msgid "Real"
-msgstr ""
+msgstr "Reale"
#: sc/inc/strings.hrc:356
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
-msgstr ""
+msgstr "Immaginaria"
#: sc/inc/strings.hrc:357
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
-msgstr ""
+msgstr "Grandezza"
#: sc/inc/strings.hrc:358
msgctxt "STR_PHASE_PART"
msgid "Phase"
-msgstr ""
+msgstr "Fase"
#: sc/inc/strings.hrc:359
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
-msgstr ""
+msgstr "Sono state selezionate più di due colonne raggruppate per il modo colonna."
#: sc/inc/strings.hrc:360
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
-msgstr ""
+msgstr "Sono state selezionate più di due righe raggruppate per il modo riga."
#: sc/inc/strings.hrc:361
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
-msgstr ""
+msgstr "Dati mancanti nell'area di immissione."
#: sc/inc/strings.hrc:362
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
-msgstr ""
+msgstr "Risultato troppo esteso per essere inserito nel foglio."
#: sc/inc/strings.hrc:363
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
-msgstr ""
+msgstr "Area di immissione dati"
#. infobar for allowing links to update or not
#: sc/inc/strings.hrc:365
@@ -15220,7 +15220,7 @@ msgstr "(accesso esclusivo)"
#: sc/inc/strings.hrc:373
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
-msgstr ""
+msgstr "Nessun intervallo con nome disponibile nel documento selezionato"
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
@@ -15540,7 +15540,7 @@ msgstr "Formato"
#: sc/uiconfig/scalc/ui/autoformattable.ui:270
msgctxt "autoformattable|numformatcb"
msgid "Number format"
-msgstr ""
+msgstr "Formato numero"
#: sc/uiconfig/scalc/ui/autoformattable.ui:285
msgctxt "autoformattable|bordercb"
@@ -15550,12 +15550,12 @@ msgstr "Bordi"
#: sc/uiconfig/scalc/ui/autoformattable.ui:300
msgctxt "autoformattable|fontcb"
msgid "Font"
-msgstr ""
+msgstr "Tipo di carattere"
#: sc/uiconfig/scalc/ui/autoformattable.ui:315
msgctxt "autoformattable|patterncb"
msgid "Pattern"
-msgstr ""
+msgstr "Motivo"
#: sc/uiconfig/scalc/ui/autoformattable.ui:330
msgctxt "autoformattable|alignmentcb"
@@ -15776,7 +15776,7 @@ msgstr "Gestisci formattazione condizionale"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
msgid "Range"
-msgstr ""
+msgstr "Intervallo"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
@@ -16756,7 +16756,7 @@ msgstr "Automatica"
#: sc/uiconfig/scalc/ui/databaroptions.ui:381
msgctxt "databaroptions|axis_pos"
msgid "Middle"
-msgstr "Al centro"
+msgstr "In mezzo"
#: sc/uiconfig/scalc/ui/databaroptions.ui:382
msgctxt "databaroptions|axis_pos"
@@ -17951,7 +17951,7 @@ msgstr "Risultato in:"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:187
msgctxt "fourieranalysisdialog|withlabels-check"
msgid "Input range has label"
-msgstr ""
+msgstr "L'area di immissione possiede un'etichetta"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:211
msgctxt "fourieranalysisdialog|label1"
@@ -17976,17 +17976,17 @@ msgstr "Raggruppamento per"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:315
msgctxt "fourieranalysisdialog|inverse-check"
msgid "Inverse"
-msgstr ""
+msgstr "Inverso"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:331
msgctxt "fourieranalysisdialog|polar-check"
msgid "Output in polar form"
-msgstr ""
+msgstr "Risultato in forma polare"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:352
msgctxt "fourieranalysisdialog|label4"
msgid "Minimum magnitude for polar form output (in dB)"
-msgstr ""
+msgstr "Grandezza minima per il risultato in forma polare (espresso in dB)"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:386
msgctxt "fourieranalysisdialog|label3"
@@ -18751,7 +18751,7 @@ msgstr "Risultato in:"
#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
msgctxt "movingaveragedialog|trimrange-check"
msgid "Trim input range to actual data content"
-msgstr ""
+msgstr "Riduci l'area di immissione al contenuto effettivo dei dati"
#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
@@ -18973,7 +18973,7 @@ msgstr "_Layout"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7071
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
-msgstr ""
+msgstr "Allineamento degli oggetti"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7289
msgctxt "CalcNotebookbar|PageLayoutLabel"
@@ -19033,12 +19033,12 @@ msgstr "_Disegno"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12963
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Disegno"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13435
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Converti"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13735
msgctxt "CalcNotebookbar|frame:MenuDraw"
@@ -19098,7 +19098,7 @@ msgstr "_File"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:2897
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~File"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:2969
msgctxt "notebookbar_compact|HomeMenuButton"
@@ -19114,7 +19114,7 @@ msgstr "Specifica i bordi delle celle selezionate."
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4513
msgctxt "notebookbar_compact|CalcLabel"
msgid "~Home"
-msgstr ""
+msgstr "Ini~zio"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4565
msgctxt "notebookbar_compact|InsertMenuButton"
@@ -19129,7 +19129,7 @@ msgstr "Cam_po"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5590
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inserisci"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6225
msgctxt "notebookbar_compact|PageMenuButton"
@@ -19139,7 +19139,7 @@ msgstr "Pag_ina"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6277
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Layout"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6323
msgctxt "notebookbar_compact|DataMenuButton"
@@ -19154,7 +19154,7 @@ msgstr "_Statistiche"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7253
msgctxt "notebookbar_compact|DataLabel"
msgid "~Data"
-msgstr ""
+msgstr "~Dati"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7970
msgctxt "notebookbar_compact|ReviewMenuButton"
@@ -19164,7 +19164,7 @@ msgstr "_Revisione"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8003
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Revisione"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8685
msgctxt "notebookbar_compact|ViewMenuButton"
@@ -19174,17 +19174,17 @@ msgstr "_Visualizza"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8737
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Visualizza"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10146
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
-msgstr ""
+msgstr "Imm_agine"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10179
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Imma~gine"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11592
msgctxt "notebookbar_compact|DrawMenuButton"
@@ -19194,7 +19194,7 @@ msgstr "D_isegna"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11644
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Disegna"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12622
msgctxt "notebookbar_compact|ObjectMenuButton"
@@ -19204,37 +19204,37 @@ msgstr "Oggetto"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12674
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Oggetto"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13394
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "_Media"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13447
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Media"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:14021
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
-msgstr ""
+msgstr "Stampa"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:14073
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "~Stampa"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15428
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Formu_lario"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15480
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Formu~lario"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15530
msgctxt "notebookbar_compact|ToolsMenuButton"
@@ -19244,7 +19244,7 @@ msgstr "S_trumenti"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16568
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Strumenti"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3282
msgctxt "notebookbar_groupedbar_compact|MenuButton"
@@ -19356,7 +19356,7 @@ msgstr "3_D"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7229
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "_Fontwork"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7343
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8419
@@ -19370,7 +19370,7 @@ msgstr "_Griglia"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7476
msgctxt "notebookbar_groupedbar_compact|ImageButton"
msgid "Im_age"
-msgstr ""
+msgstr "Imm_agine"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8148
msgctxt "notebookbar_groupedbar_compact|ColorButton"
@@ -19535,7 +19535,7 @@ msgstr "_Visualizza"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5762
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "Im_age"
-msgstr ""
+msgstr "Imm_agine"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6114
msgctxt "notebookbar_groupedbar_full|arrange"
@@ -21385,12 +21385,12 @@ msgstr "Periodo:"
#: sc/uiconfig/scalc/ui/samplingdialog.ui:334
msgctxt "samplingdialog|with-replacement"
msgid "With replacement"
-msgstr ""
+msgstr "Con sostituzione"
#: sc/uiconfig/scalc/ui/samplingdialog.ui:350
msgctxt "samplingdialog|keep-order"
msgid "Keep order"
-msgstr ""
+msgstr "Mantieni l'ordine"
#: sc/uiconfig/scalc/ui/samplingdialog.ui:372
msgctxt "samplingdialog|label2"
@@ -21580,12 +21580,12 @@ msgstr "Risultati di una ricerca"
#: sc/uiconfig/scalc/ui/searchresults.ui:36
msgctxt "searchresults|ShowBox"
msgid "_Show this dialog"
-msgstr ""
+msgstr "_Mostra finestra di dialogo"
#: sc/uiconfig/scalc/ui/searchresults.ui:40
msgctxt "searchresults|ShowBox"
msgid "Enable the dialog again at Tools > Options > Calc > View"
-msgstr ""
+msgstr "Riattiva la finestra di dialogo in Strumenti > Opzioni > Calc > Vista"
#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
@@ -23470,7 +23470,7 @@ msgstr "_Punti"
#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
msgctxt "tpviewpage|summary"
msgid "Summary o_n search"
-msgstr ""
+msgstr "Riepilogo de_lla ricerca"
#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
@@ -23710,7 +23710,7 @@ msgstr "minore o uguale"
#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:71
msgctxt "validationcriteriapage|liststore2"
msgid "greater than or equal to"
-msgstr "maggiore o uguale"
+msgstr "maggiore di o uguale a"
#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:72
msgctxt "validationcriteriapage|liststore2"
diff --git a/source/it/sd/messages.po b/source/it/sd/messages.po
index 0d257aed213..254c2fd8455 100644
--- a/source/it/sd/messages.po
+++ b/source/it/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-12 19:42+0000\n"
"Last-Translator: Valter Mura <valtermura@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: 1562960555.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "_Revisione"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Disponi"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "_Modifica"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Griglia"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Imma_gine"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "C_olore"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Pre_sentazione"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Co_rnice"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Visualizza"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Pagina sche_ma"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Inserisci"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "D_isegna"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Visualizza"
diff --git a/source/it/svx/messages.po b/source/it/svx/messages.po
index 535173948fc..d5a982b6404 100644
--- a/source/it/svx/messages.po
+++ b/source/it/svx/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-07-13 11:54+0000\n"
+"PO-Revision-Date: 2019-07-28 18:19+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.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: 1563018872.000000\n"
+"X-POOTLE-MTIME: 1564337946.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -689,22 +689,22 @@ msgstr "Ruota %1"
#: include/svx/strings.hrc:159
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
-msgstr "Rispecchia %1 in orizzontale"
+msgstr "Ribalta %1 in orizzontale"
#: include/svx/strings.hrc:160
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
-msgstr "Rispecchia %1 in verticale"
+msgstr "Ribalta %1 in verticale"
#: include/svx/strings.hrc:161
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
-msgstr "Rispecchia %1 in diagonale"
+msgstr "Ribalta %1 in diagonale"
#: include/svx/strings.hrc:162
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
-msgstr "Rispecchia %1 liberamente"
+msgstr "Ribalta %1 liberamente"
#: include/svx/strings.hrc:163
msgctxt "STR_EditShear"
@@ -954,22 +954,22 @@ msgstr "Ruota %1"
#: include/svx/strings.hrc:212
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
-msgstr "Rispecchia %1 in orizzontale"
+msgstr "Ribalta %1 in orizzontale"
#: include/svx/strings.hrc:213
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
-msgstr "Rispecchia %1 in verticale"
+msgstr "Ribalta %1 in verticale"
#: include/svx/strings.hrc:214
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
-msgstr "Rispecchia %1 in diagonale"
+msgstr "Ribalta %1 in diagonale"
#: include/svx/strings.hrc:215
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
-msgstr "Rispecchia %1 liberamente"
+msgstr "Ribalta %1 liberamente"
#: include/svx/strings.hrc:216
msgctxt "STR_DragMethGradient"
@@ -12716,7 +12716,7 @@ msgstr "Porta in primo piano"
#: svx/uiconfig/ui/imapmenu.ui:60
msgctxt "imapmenu|forward"
msgid "Bring _Forward"
-msgstr "Porta più _avanti"
+msgstr "Porta _avanti"
#: svx/uiconfig/ui/imapmenu.ui:68
msgctxt "imapmenu|backward"
@@ -14219,17 +14219,17 @@ msgstr "Seleziona l'angolo per la rotazione."
#: svx/uiconfig/ui/sidebarpossize.ui:289
msgctxt "sidebarpossize|fliplabel"
msgid "_Flip:"
-msgstr "_Rifletti:"
+msgstr "Ri_balta:"
#: svx/uiconfig/ui/sidebarpossize.ui:312
msgctxt "sidebarpossize|flipvertical|tooltip_text"
msgid "Flip the selected object vertically."
-msgstr "Rifletti verticalmente l'oggetto selezionato."
+msgstr "Ribalta verticalmente l'oggetto selezionato."
#: svx/uiconfig/ui/sidebarpossize.ui:326
msgctxt "sidebarpossize|fliphorizontal|tooltip_text"
msgid "Flip the selected object horizontally."
-msgstr "Rifletti orizzontalmente l'oggetto selezionato."
+msgstr "Ribalta orizzontalmente l'oggetto selezionato."
#: svx/uiconfig/ui/sidebarshadow.ui:34
msgctxt "sidebarshadow|SHOW_SHADOW"
diff --git a/source/it/sw/messages.po b/source/it/sw/messages.po
index 70f657b1ffe..c1f92a793cf 100644
--- a/source/it/sw/messages.po
+++ b/source/it/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:57+0000\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-28 18:19+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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1562266627.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1564337991.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -5351,17 +5351,17 @@ msgstr "Non rispecchiare"
#: sw/inc/strings.hrc:1054
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
-msgstr "Rispecchia in verticale"
+msgstr "Ribalta verticalmente"
#: sw/inc/strings.hrc:1055
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
-msgstr "Rispecchia in orizzontale"
+msgstr "Ribalta orizzontalmente"
#: sw/inc/strings.hrc:1056
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
-msgstr "Rispecchia in orizzontale e verticale"
+msgstr "Ribalta in orizzontale e verticale"
#: sw/inc/strings.hrc:1057
msgctxt "STR_MIRROR_TOGGLE"
@@ -8366,7 +8366,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Scegli elemento: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Modifica"
@@ -14662,7 +14662,7 @@ msgstr "Sulle pagine a destra"
#: sw/uiconfig/swriter/ui/picturepage.ui:221
msgctxt "picturepage|label2"
msgid "Flip"
-msgstr "Rispecchia"
+msgstr "Ribalta"
#: sw/uiconfig/swriter/ui/picturepage.ui:261
msgctxt "picturepage|FT_ANGLE"
diff --git a/source/ja/cui/messages.po b/source/ja/cui/messages.po
index e279373dbad..607b0ea2edd 100644
--- a/source/ja/cui/messages.po
+++ b/source/ja/cui/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-15 05:54+0000\n"
-"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-24 13:30+0000\n"
+"Last-Translator: So <sou@e06.itscom.net>\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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563170060.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1563975021.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1792,7 +1792,7 @@ msgstr "ウェブサイト(~W)"
#: cui/inc/strings.hrc:405
msgctxt "aboutdialog|credits"
msgid "Cre~dits"
-msgstr ""
+msgstr "クレジット(~D)"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "ヘルプ"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ダイアログを使用する(_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "「開く」ダイアログと「保存」ダイアログ"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ダイアログを使用する(_D)"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "印刷ダイアログ"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "印刷を「ドキュメントの変更」とみなす(_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "ドキュメントの状態"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "次の年の間と解釈する(_I)"
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "から"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "年(2桁)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "利用状況データを収集し、The Document Foundationへ送信する"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "%PRODUCTNAME の改善を手伝う"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "システム起動時に %PRODUCTNAME を読み込む"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "システムトレイでのクイック起動を有効にする"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME クイック起動"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "次のヒント(_N)"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "知っていますか?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ja/helpcontent2/source/text/shared/help.po b/source/ja/helpcontent2/source/text/shared/help.po
index df10c89fc35..13d6f54add5 100644
--- a/source/ja/helpcontent2/source/text/shared/help.po
+++ b/source/ja/helpcontent2/source/text/shared/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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2018-11-12 13:47+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-20 08:53+0000\n"
+"Last-Translator: So <sou@e06.itscom.net>\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: 1542030459.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563612825.000000\n"
#: browserhelp.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"par_id491525733955136\n"
"help.text"
msgid "<variable id=\"module\">Module</variable>"
-msgstr ""
+msgstr "<variable id=\"module\">モジュール</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id531525734031068\n"
"help.text"
msgid "<variable id=\"language\">Language</variable>"
-msgstr ""
+msgstr "<variable id=\"language\">言語</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id991525734084608\n"
"help.text"
msgid "<variable id=\"contents\">Contents</variable>"
-msgstr ""
+msgstr "<variable id=\"contents\">目次</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id601525734140935\n"
"help.text"
msgid "<variable id=\"index\">Index</variable>"
-msgstr ""
+msgstr "<variable id=\"index\">索引</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id953832383493636\n"
"help.text"
msgid "<variable id=\"pholderall\">Search in all modules</variable>"
-msgstr ""
+msgstr "<variable id=\"pholderall\">全てのモジュール内を検索</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id335427459543352\n"
"help.text"
msgid "<variable id=\"pholderchosen\">Search in chosen module</variable>"
-msgstr ""
+msgstr "<variable id=\"pholderchosen\">選択したモジュール内を検索</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id191525734190260\n"
"help.text"
msgid "<variable id=\"donate\">Please support us!</variable>"
-msgstr ""
+msgstr "<variable id=\"donate\">ご支援をお願いします!</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id881525734289794\n"
"help.text"
msgid "<variable id=\"LibreOfficeHelp\">%PRODUCTNAME %PRODUCTVERSION Help</variable>"
-msgstr ""
+msgstr "<variable id=\"LibreOfficeHelp\">%PRODUCTNAME %PRODUCTVERSION ヘルプ</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id421525736799965\n"
"help.text"
msgid "<variable id=\"copyclip\">Click on text to copy to clipboard</variable>"
-msgstr ""
+msgstr "<variable id=\"copyclip\">クリックしてクリップボードにコピー</variable>"
#: browserhelp.xhp
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 c273626e718..367525a3e41 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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-15 07:59+0000\n"
-"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-24 12:40+0000\n"
+"Last-Translator: 日陰のコスモス <baffclan@yahoo.co.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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563177558.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1563972036.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -20455,7 +20455,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Increase Indent"
-msgstr "字下げを増やす"
+msgstr "インデントを増やす"
#: GenericCommands.xcu
msgctxt ""
@@ -20464,7 +20464,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Increase Indent"
-msgstr "字下げを増やす"
+msgstr "インデントを増やす"
#: GenericCommands.xcu
msgctxt ""
@@ -21054,6 +21054,24 @@ msgstr "LibreOfficeに寄付をする"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/ja/sc/messages.po b/source/ja/sc/messages.po
index 46a431c7b03..6986627ce78 100644
--- a/source/ja/sc/messages.po
+++ b/source/ja/sc/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-07 10:03+0000\n"
-"Last-Translator: So <sou@e06.itscom.net>\n"
+"PO-Revision-Date: 2019-07-23 13:26+0000\n"
+"Last-Translator: Jun NOGATA <nogajun@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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1562493796.000000\n"
+"X-POOTLE-MTIME: 1563888415.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -14341,7 +14341,7 @@ msgstr "キャンセル"
#: sc/inc/strings.hrc:180
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Autosum"
-msgstr ""
+msgstr "オートSUM"
#: sc/inc/strings.hrc:181
msgctxt "SCSTR_QHELP_BTNEQUAL"
@@ -15493,7 +15493,7 @@ msgstr "行"
#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:340
msgctxt "analysisofvariancedialog|label2"
msgid "Grouped by"
-msgstr "グループ化"
+msgstr "データ方向"
#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:377
msgctxt "analysisofvariancedialog|alpha-label"
@@ -15568,27 +15568,27 @@ msgstr "書式設定"
#: sc/uiconfig/scalc/ui/autosum.ui:12
msgctxt "autosum|sum"
msgid "Sum"
-msgstr ""
+msgstr "合計"
#: sc/uiconfig/scalc/ui/autosum.ui:20
msgctxt "autosum|average"
msgid "Average"
-msgstr ""
+msgstr "平均"
#: sc/uiconfig/scalc/ui/autosum.ui:28
msgctxt "autosum|min"
msgid "Min"
-msgstr ""
+msgstr "最小値"
#: sc/uiconfig/scalc/ui/autosum.ui:36
msgctxt "autosum|max"
msgid "Max"
-msgstr ""
+msgstr "最大値"
#: sc/uiconfig/scalc/ui/autosum.ui:44
msgctxt "autosum|count"
msgid "Count"
-msgstr ""
+msgstr "数値の個数"
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:35
msgctxt "cellprotectionpage|checkProtected"
@@ -15724,7 +15724,7 @@ msgstr "行(_R)"
#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:259
msgctxt "chisquaretestdialog|label2"
msgid "Grouped by"
-msgstr "グループ化"
+msgstr "データ方向"
#: sc/uiconfig/scalc/ui/colorrowdialog.ui:8
msgctxt "colorrowdialog|ColOrRowDialog"
@@ -16509,7 +16509,7 @@ msgstr "行"
#: sc/uiconfig/scalc/ui/correlationdialog.ui:258
msgctxt "correlationdialog|label2"
msgid "Grouped by"
-msgstr "グループ化"
+msgstr "データ方向"
#: sc/uiconfig/scalc/ui/covariancedialog.ui:9
msgctxt "covariancedialog|CovarianceDialog"
@@ -16544,7 +16544,7 @@ msgstr "行"
#: sc/uiconfig/scalc/ui/covariancedialog.ui:259
msgctxt "covariancedialog|label2"
msgid "Grouped by"
-msgstr "グループ化"
+msgstr "データ方向"
#: sc/uiconfig/scalc/ui/createnamesdialog.ui:8
msgctxt "createnamesdialog|CreateNamesDialog"
@@ -17479,7 +17479,7 @@ msgstr "行(_R)"
#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:259
msgctxt "descriptivestatisticsdialog|label2"
msgid "Grouped by"
-msgstr "グループ化"
+msgstr "データ方向"
#: sc/uiconfig/scalc/ui/doubledialog.ui:8
msgctxt "doubledialog|DoubleDialog"
@@ -17584,7 +17584,7 @@ msgstr "行"
#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:265
msgctxt "exponentialsmoothingdialog|label2"
msgid "Grouped by"
-msgstr "グループ化"
+msgstr "データ方向"
#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:302
msgctxt "exponentialsmoothingdialog|smoothing-factor-label"
@@ -17964,7 +17964,7 @@ msgstr "行(_R)"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:284
msgctxt "fourieranalysisdialog|label2"
msgid "Grouped by"
-msgstr "グループ化"
+msgstr "データ方向"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:315
msgctxt "fourieranalysisdialog|inverse-check"
@@ -18764,7 +18764,7 @@ msgstr "行"
#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
-msgstr "グループ化"
+msgstr "データ方向"
#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
@@ -21178,7 +21178,7 @@ msgstr "行"
#: sc/uiconfig/scalc/ui/regressiondialog.ui:318
msgctxt "regressiondialog|label2"
msgid "Grouped by"
-msgstr "グループ化"
+msgstr "データ方向"
#: sc/uiconfig/scalc/ui/regressiondialog.ui:353
msgctxt "regressiondialog|linear-radio"
@@ -23603,7 +23603,7 @@ msgstr "行"
#: sc/uiconfig/scalc/ui/ttestdialog.ui:296
msgctxt "ttestdialog|label2"
msgid "Grouped by"
-msgstr "グループ化"
+msgstr "データ方向"
#: sc/uiconfig/scalc/ui/ungroupdialog.ui:8
msgctxt "ungroupdialog|UngroupDialog"
@@ -23858,4 +23858,4 @@ msgstr "行"
#: sc/uiconfig/scalc/ui/ztestdialog.ui:296
msgctxt "ztestdialog|label2"
msgid "Grouped by"
-msgstr "グループ化"
+msgstr "データ方向"
diff --git a/source/ja/sd/messages.po b/source/ja/sd/messages.po
index 47fd432e41b..9502ab4e212 100644
--- a/source/ja/sd/messages.po
+++ b/source/ja/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-07 09:40+0000\n"
"Last-Translator: So <sou@e06.itscom.net>\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: 1562492439.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "レビュー(_R)"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "配置(_A)"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "編集(_E)"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "グリッド線(_G)"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "図形(_G)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "色(_O)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "メディア(_M)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "スライドショー(_S)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "フレーム(_R)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "表示(_V)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "マスターページ(_M)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "挿入(_I)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "表示(_V)"
diff --git a/source/ja/sw/messages.po b/source/ja/sw/messages.po
index 92f92b59ffd..576b89bd315 100644
--- a/source/ja/sw/messages.po
+++ b/source/ja/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-07-15 04:41+0000\n"
"Last-Translator: So <sou@e06.itscom.net>\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: 1563165692.000000\n"
#: sw/inc/app.hrc:29
@@ -8357,7 +8357,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "項目の選択: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "編集"
diff --git a/source/jv/cui/messages.po b/source/jv/cui/messages.po
index d0778bbaf78..710dd1b6559 100644
--- a/source/jv/cui/messages.po
+++ b/source/jv/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4461,147 +4461,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9409,74 +9409,74 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "pitulung"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Dialog %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Dialog %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13088,12 +13088,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po b/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po
index e175a744409..67e1d4f412e 100644
--- a/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-03-11 23:00+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21222,6 +21222,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/jv/sd/messages.po b/source/jv/sd/messages.po
index 0d7bb726387..76cea41e258 100644
--- a/source/jv/sd/messages.po
+++ b/source/jv/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-03-11 23:01+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5435,9 +5435,9 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr ""
@@ -5509,8 +5509,8 @@ msgid "_Edit"
msgstr "~Sunting"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr ""
@@ -5525,55 +5525,55 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "grafik"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Tampilan"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Sisip"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/jv/sw/messages.po b/source/jv/sw/messages.po
index 579a85af1e8..4eadfacb50b 100644
--- a/source/jv/sw/messages.po
+++ b/source/jv/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-03-11 23:03+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8599,7 +8599,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
#, fuzzy
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
diff --git a/source/ka/cui/messages.po b/source/ka/cui/messages.po
index 6fccd8e3307..046a73dd60e 100644
--- a/source/ka/cui/messages.po
+++ b/source/ka/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4510,147 +4510,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9591,75 +9591,75 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "დახმარება"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME დიალოგების _გამოყენება"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "გახსნა/შენახვა დიალოგები"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME დიალოგების _გამოყენება"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_ბეჭდვის მიერ \"დოკუმენტი შეიცვალა\" სტატუსის დაყენება"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "დოკუმენტის სტატუსი"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "და "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "წელი (ორი ციფრი)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME-ის ჩატვირთვა სისტემის გაშვების მომენტში"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter-ი"
@@ -13357,12 +13357,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 a429f7d82a3..7622b9b535b 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21326,6 +21326,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/ka/sd/messages.po b/source/ka/sd/messages.po
index 2b6148a5f6e..3a474c3ac92 100644
--- a/source/ka/sd/messages.po
+++ b/source/ka/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5524,9 +5524,9 @@ msgstr "განხილვა"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5603,8 +5603,8 @@ msgid "_Edit"
msgstr "~რედაქტირება"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_ბადე"
@@ -5620,58 +5620,58 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "ნახატი"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ფერი"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "დიაფილმი"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "ჩარჩო"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "ხედი"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "მთავარი გვერდები"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "ჩა_სმა"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/ka/sw/messages.po b/source/ka/sw/messages.po
index 577c4ca0ee0..d3fd8025a1d 100644
--- a/source/ka/sw/messages.po
+++ b/source/ka/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8684,7 +8684,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "აირჩიეთ ელემენტი:"
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "რედაქტირება"
diff --git a/source/kab/cui/messages.po b/source/kab/cui/messages.po
index b01347fc201..96ffdd35497 100644
--- a/source/kab/cui/messages.po
+++ b/source/kab/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-12-14 16:56+0000\n"
"Last-Translator: Muḥend Velqasem <belkacem77@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4385,147 +4385,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9177,72 +9177,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Tallalt"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Seqdec Tinkulin n udiwenni %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Tankult n udiwenni Lddi/Sekles"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Seqdec Tinkulin n _udiwenni %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Tankult n udiwenni Siggez"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "A_siggez yesbadu aẓayer n \"uttaftar yettwabeddelen\""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Addad n isemli"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Suqel am iseggasen gar "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "akked "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Aseggas (sin izwilen)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Lqeḍ isefka n useqdec yerna azen-iten ɣer The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Fkk-d tallalt i wesnerni n %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Aɛebbi n %PRODUCTNAME mi ara yekker unagraw"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Sermed asekker arurad n teɣzut n tilɣa"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Asekker arurad n %PRODUCTNAME"
@@ -12771,12 +12771,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po
index 3d99bea9a93..857572765e1 100644
--- a/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21053,6 +21053,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/kab/sd/messages.po b/source/kab/sd/messages.po
index d61d336c6c4..a62672d490f 100644
--- a/source/kab/sd/messages.po
+++ b/source/kab/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5344,9 +5344,9 @@ msgstr "A_cegger"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Su_ddes"
@@ -5414,8 +5414,8 @@ msgid "_Edit"
msgstr "_Ẓreg"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "Ta_ferrugt"
@@ -5430,52 +5430,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "U_dlif"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "I_ni"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "A_midya"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Askan n t_meccegin"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "A_katar"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Sk_en"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Asebtar a_gejdan"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Ger"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Su_neɣ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "Sk_en"
diff --git a/source/kab/sw/messages.po b/source/kab/sw/messages.po
index c31d40d61f2..2d2364e6659 100644
--- a/source/kab/sw/messages.po
+++ b/source/kab/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kab\n"
@@ -8341,7 +8341,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Fren aferdis: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Ẓreg"
diff --git a/source/kk/cui/messages.po b/source/kk/cui/messages.po
index 2abaaad6f21..c202f018cdc 100644
--- a/source/kk/cui/messages.po
+++ b/source/kk/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-14 11:16+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@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: 1563102986.000000\n"
#: cui/inc/numcategories.hrc:17
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Көмек"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME сұхбаттарын қол_дану"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Ашу/сақтау сұхбат терезелері"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME сұ_хбаттарын қолдану"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Баспаға шығару сұхбат терезелері"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Бас_паға шығару «құжат түрлендірілген» қалып-күйін орнатады"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Құжат қалып-күйі"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Келесі аралықтағы жылдар ретінде _тану: "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "және "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Жыл (екі сан)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Қолдану ақпаратын жинау және TDF ұйымына жіберу"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "%PRODUCTNAME жақсартуға көмектесу"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Жүйе іске қосылған кезде %PRODUCTNAME өнімін жүктеу"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Жылдам іске қосуды қолдану"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME жылдам қосылу"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 5c9248d116c..b5a4b0a72c6 100644
--- a/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-01-12 07:13+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21054,6 +21054,24 @@ msgstr "LibreOffice-ке ақшалай көмектесу"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/kk/sd/messages.po b/source/kk/sd/messages.po
index aa80612cdab..ba43ff1f5fb 100644
--- a/source/kk/sd/messages.po
+++ b/source/kk/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-07-14 11:44+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@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: 1563104657.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -5345,9 +5345,9 @@ msgstr "Те_ксеру"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Ор_наластыру"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "Түз_ету"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Тор"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Графика"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Тү_с"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Медиа"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_Слайдшоу"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Ф_рейм"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Түрі"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "_Шебер беті"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Терістеу"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Су_рет салу"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Түрі"
diff --git a/source/kk/sw/messages.po b/source/kk/sw/messages.po
index 7c10ce8446b..d822f0fa985 100644
--- a/source/kk/sw/messages.po
+++ b/source/kk/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-17 16:02+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\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: LibreOffice\n"
-"X-POOTLE-MTIME: 1563104944.000000\n"
+"X-POOTLE-MTIME: 1563470465.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -4437,6 +4437,9 @@ msgid ""
"\n"
"Do you want to enter email account information now?"
msgstr ""
+"Электронды поштаны тарату үшін %PRODUCTNAME пошталық тіркелгіні талап етеді.\n"
+"\n"
+"Электронды пошта тіркелгісін қазір баптау керек пе?"
#: sw/inc/strings.hrc:827
msgctxt "ST_FILTERNAME"
@@ -8352,7 +8355,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Элементті таңдау: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Түзету"
diff --git a/source/kl/cui/messages.po b/source/kl/cui/messages.po
index 87507bb97aa..7daf99b97f9 100644
--- a/source/kl/cui/messages.po
+++ b/source/kl/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4447,147 +4447,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9352,74 +9352,74 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "ikiuut"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME makro"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME makro"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13020,12 +13020,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po
index ad71ef81277..e2f92968a01 100644
--- a/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21197,6 +21197,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/kl/sd/messages.po b/source/kl/sd/messages.po
index 361a23f5613..77465785dc0 100644
--- a/source/kl/sd/messages.po
+++ b/source/kl/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5416,9 +5416,9 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr ""
@@ -5490,8 +5490,8 @@ msgid "_Edit"
msgstr "~Allanngortiguk"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr ""
@@ -5506,55 +5506,55 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "titartagartat"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "takuuk"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Ikkuguk"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/kl/sw/messages.po b/source/kl/sw/messages.po
index 10f24f8fb5d..aed5fd4b24c 100644
--- a/source/kl/sw/messages.po
+++ b/source/kl/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8558,7 +8558,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
#, fuzzy
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
diff --git a/source/km/cui/messages.po b/source/km/cui/messages.po
index 63d346c0b77..17a892732e5 100644
--- a/source/km/cui/messages.po
+++ b/source/km/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4489,147 +4489,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9524,76 +9524,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "ជំនួយ"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "ប្រើ​ប្រអប់​របស់​ %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "បើក​/រក្សា​ទុក​ប្រអប់"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "ប្រើ​ប្រអប់​របស់​ %PRODUCTNAME "
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "ប្រអប់​បោះ​ពុម្ព​"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "បោះ​ពុម្ពសំណុំ​ស្ថាន​ភាព​ \"ឯកសារដែល​បាន​កែប្រែ​\" "
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "ស្ថានភាព​ឯកសារ"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "បង្ហាញ​ជា​ឆ្នាំ​ចាប់ពី"
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "និង"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "ឆ្នាំ​ (ពីរ​តួលេខ​)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "ផ្ទុក​ %PRODUCTNAME ក្នុង​អំឡុង​ពេល​ចាប់​ផ្តើម​ប្រព័ន្ធ​"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "បើក​កម្មវិធី​ចាប់​ផ្តើម​រហ័ស​របស់​ថាស​ប្រព័ន្ធ"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "កម្មវិធី​ចាប់​ផ្តើម​រហ័ស​របស់ %PRODUCTNAME"
@@ -13269,12 +13269,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 e8df0bd91fe..4a0d3f85422 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -21343,6 +21343,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/km/sd/messages.po b/source/km/sd/messages.po
index 1c17947f912..55ce43f55e1 100644
--- a/source/km/sd/messages.po
+++ b/source/km/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5488,9 +5488,9 @@ msgstr "Review"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5564,8 +5564,8 @@ msgid "_Edit"
msgstr "កែ​សម្រួល​ "
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "ក្រឡា​ចត្រង្គ "
@@ -5581,59 +5581,59 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "ក្រាហ្វិក​"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ពណ៌"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "មេឌៀ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "បញ្ចាំង​ស្លាយ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "ស៊ុម"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "ទិដ្ឋភាព"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "ទំព័រ​មេ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "បញ្ចូល"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/km/sw/messages.po b/source/km/sw/messages.po
index 3f5c385bef7..4fb0cbb02ba 100644
--- a/source/km/sw/messages.po
+++ b/source/km/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-20 17:21+0000\n"
"Last-Translator: Andras Timar <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8673,7 +8673,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "ជ្រើស​ធាតុ ៖ "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "កែ​សម្រួល"
diff --git a/source/kmr-Latn/cui/messages.po b/source/kmr-Latn/cui/messages.po
index 5eacf59a80f..91e9946bfde 100644
--- a/source/kmr-Latn/cui/messages.po
+++ b/source/kmr-Latn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4534,147 +4534,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9684,78 +9684,78 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Alîkarî"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Diyalogên %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Diyalogên %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Navê\tRewşa Belgeyê"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "û"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Gava pergal hate vekirin %PRODUCTNAME'yê bar bike"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Zû-Destpêkera di berkêşka pergalê de Neçalak bike"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13488,12 +13488,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 88acfe542e4..312732b2ca7 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21385,6 +21385,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/kmr-Latn/sd/messages.po b/source/kmr-Latn/sd/messages.po
index ed2bafc980b..b575ccb1649 100644
--- a/source/kmr-Latn/sd/messages.po
+++ b/source/kmr-Latn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5545,9 +5545,9 @@ msgstr "Rexne"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5625,8 +5625,8 @@ msgid "_Edit"
msgstr "~Serrrast bike"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5643,60 +5643,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Xanxank"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Reng"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Medya"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "~Nîşandana Slaytê"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Çarçoveyek"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Dîtin"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Rûpelên Master"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Têxe"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/kmr-Latn/sw/messages.po b/source/kmr-Latn/sw/messages.po
index d383c8c59bc..ed903826e6b 100644
--- a/source/kmr-Latn/sw/messages.po
+++ b/source/kmr-Latn/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8760,7 +8760,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
#, fuzzy
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
diff --git a/source/kn/cui/messages.po b/source/kn/cui/messages.po
index 1d8bff8b2af..525cebe6d90 100644
--- a/source/kn/cui/messages.po
+++ b/source/kn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-06-06 01:43+0000\n"
"Last-Translator: Omshivaprakash <omshivaprakash@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4484,147 +4484,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9476,72 +9476,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "ಸಹಾಯ"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ಸಂವಾದಗಳನ್ನು ಬಳಸು (_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ಸಂವಾದ ಚೌಕಗಳನ್ನು ತೆರೆ/ಉಳಿಸು"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ನ ಸಂವಾದಗಳನ್ನು ಬಳಸು (_d)"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "ಮುದ್ರಣ ಸಂವಾದಗಳು"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "ಮುದ್ರಣವು \"ದಸ್ತಾವೇಜನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿದೆ\" ಎಂದು ಗುರುತು ಹಾಕುತ್ತದೆ (_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "ದಸ್ತಾವೇಜಿನ ಸ್ಥಿತಿ"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "ನಡುವೆ ವರ್ಷಗಳು ಇರುವಂತೆ ಅರ್ಥೈಸು (_I)"
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ಮತ್ತು "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "ವರ್ಷ (ಎರಡು ಅಂಕಿಗಳು)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "ಆರಂಭಿಸುವ ಸಮಯದಲ್ಲಿ %PRODUCTNAME ಅನ್ನು ಲೋಡ್‌ ಮಾಡು"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "ಸಿಸ್‌ಟ್ರೇ ಕ್ವಿಕ್‌ಸ್ಟಾರ್ಟರ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸು"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME ಕ್ವಿಕ್‌ಸ್ಟಾರ್ಟರ್"
@@ -13221,12 +13221,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 b3ee43a908b..915a6dd0fc2 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
@@ -21366,6 +21366,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/kn/sd/messages.po b/source/kn/sd/messages.po
index d0783c8eb15..8605a5ca27e 100644
--- a/source/kn/sd/messages.po
+++ b/source/kn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-06-06 09:09+0000\n"
"Last-Translator: Omshivaprakash <omshivaprakash@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5499,9 +5499,9 @@ msgstr "ಮುನ್ನೋಟ"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5578,8 +5578,8 @@ msgid "_Edit"
msgstr "ಸಂಪಾದನೆ (~E)"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "ಚೌಕಜಾಲ (_G)"
@@ -5595,60 +5595,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "ಗ್ರಾಫಿಕ್"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ಬಣ್ಣ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "ಮೀಡಿಯ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "ಜಾರುಫಲಕ ಪ್ರದರ್ಶನ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "ಚೌಕಟ್ಟು (_r)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "ನೋಟ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "ಮಾಸ್ಟರ್ ಪುಟಗಳು"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "ಸೇರಿಸು (_I)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/kn/sw/messages.po b/source/kn/sw/messages.po
index dd2447c581b..fda957038b4 100644
--- a/source/kn/sw/messages.po
+++ b/source/kn/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-06-06 16:00+0000\n"
"Last-Translator: Omshivaprakash <omshivaprakash@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8729,7 +8729,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "ಅಂಶವನ್ನು ಆಯ್ಕೆ ಮಾಡು: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "ಸಂಪಾದಿಸು"
diff --git a/source/ko/cui/messages.po b/source/ko/cui/messages.po
index 1de6e32481b..d0ec5611830 100644
--- a/source/ko/cui/messages.po
+++ b/source/ko/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-06-29 07:41+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "유형:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr "시작:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "글자:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr "선택..."
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr "이미지 선택..."
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "너비:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "높이:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "비율 유지하기"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "앞:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "뒤:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "구분자"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "색깔:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "들여쓰기:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "너비:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0.00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0.00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "위치"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "도움말"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME 대화 상자 사용(_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "열기/저장 대화 상자"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME 대화 상자 사용(_D)"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "인쇄 대화 상자"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "인쇄 시 \"문서가 수정된\" 상태로 지정(_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "문서 상태"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "연간으로 해석(_I) "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "및 "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "연도 설정(두 자리수)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "사용 현황 데이터를 수집하고 The Document Foundation에 보냄"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "%PRODUCTNAME를 개선하는데 도움주기"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "시스템 시작 시 %PRODUCTNAME 로드"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray 빠른 시작 활성화"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME 빠른 시작"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 d4e95cbfe2f..98f9ee4fc66 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-03-16 00:15+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21054,6 +21054,24 @@ msgstr "리브레오피스에 기부하기"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/ko/sd/messages.po b/source/ko/sd/messages.po
index b296091a16f..386b1cdf433 100644
--- a/source/ko/sd/messages.po
+++ b/source/ko/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-03-16 06:58+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5345,9 +5345,9 @@ msgstr "검토(_R)"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "정렬(_A)"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "편집(_E)"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "격자(_G)"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "그래픽(_G)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "색상(_O)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "미디어(_M)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "슬라이드 쇼(_S)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "틀(_R)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "보기(_V)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "마스터 페이지(_M)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "삽입(_I)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "그리기(_R)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "보기(_V)"
diff --git a/source/ko/sw/messages.po b/source/ko/sw/messages.po
index df99e8094e0..2bc1996bcc0 100644
--- a/source/ko/sw/messages.po
+++ b/source/ko/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ko\n"
@@ -8351,7 +8351,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "항목 선택:"
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "편집"
diff --git a/source/kok/cui/messages.po b/source/kok/cui/messages.po
index c3938cda43e..71afa207d59 100644
--- a/source/kok/cui/messages.po
+++ b/source/kok/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4528,147 +4528,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9668,78 +9668,78 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदत"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME संवाद"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME संवाद"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "दस्तावेज नाव \\स्थितिः "
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "आनिक"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "व्यवस्था सुरू जातास्तना %PRODUCTNAME लागू करात"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "सिस्ट्रे क्विकस्टार्टर अक्षम करात."
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13452,12 +13452,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 7fc4701b30d..8523df37d38 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21379,6 +21379,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/kok/sd/messages.po b/source/kok/sd/messages.po
index 59d3b513069..ee96f5cc4fc 100644
--- a/source/kok/sd/messages.po
+++ b/source/kok/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5552,9 +5552,9 @@ msgstr "परीक्षण"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5632,8 +5632,8 @@ msgid "_Edit"
msgstr "सम्पादन"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5650,60 +5650,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "चित्र"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "रंग"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "बदल न्हयकारप (~u)Madhyom"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "दर्शिका दर्शन"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "चौकट"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "दृश्य"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "प्रधान पानां"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "भितर घालात"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/kok/sw/messages.po b/source/kok/sw/messages.po
index 22f2a5781ef..5814c73ba21 100644
--- a/source/kok/sw/messages.po
+++ b/source/kok/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kok\n"
@@ -8714,7 +8714,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
#, fuzzy
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
diff --git a/source/ks/cui/messages.po b/source/ks/cui/messages.po
index be2af56f4ae..71cba2b7c00 100644
--- a/source/ks/cui/messages.po
+++ b/source/ks/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4523,147 +4523,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9644,76 +9644,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "مدد"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr " %PRODUCTNAME ڈائیلاگز"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr " %PRODUCTNAME ڈائیلاگز"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "بےیئ"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr " %PRODUCTNAMEسسٹم اسٹارٹ اپ کے دوران لوڈ کرو۔"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13454,12 +13454,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 a82feacfb9d..40ac534fdc5 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21381,6 +21381,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/ks/sd/messages.po b/source/ks/sd/messages.po
index f6fb9c9947a..9037b77dc4a 100644
--- a/source/ks/sd/messages.po
+++ b/source/ks/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5572,9 +5572,9 @@ msgstr "دوبارہ جائزہ لینا"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5652,8 +5652,8 @@ msgid "_Edit"
msgstr "~ادارت كریو"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5670,59 +5670,59 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "ترسیم"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "رنگ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "سلائڈدکھاؤ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "فریم"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "منظر"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "ماسٹرصفحئ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "دئخل کرُن"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/ks/sw/messages.po b/source/ks/sw/messages.po
index c8e0bb9b340..22849aa4b6f 100644
--- a/source/ks/sw/messages.po
+++ b/source/ks/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ks\n"
@@ -8772,7 +8772,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
#, fuzzy
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
diff --git a/source/ky/cui/messages.po b/source/ky/cui/messages.po
index 2553d9a14ee..a59db4dab6e 100644
--- a/source/ky/cui/messages.po
+++ b/source/ky/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4365,147 +4365,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9152,72 +9152,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -12741,12 +12741,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po
index e8d98d42021..2e3d02d261a 100644
--- a/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21060,6 +21060,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/ky/sd/messages.po b/source/ky/sd/messages.po
index d4495cf6157..495451ed762 100644
--- a/source/ky/sd/messages.po
+++ b/source/ky/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5335,9 +5335,9 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr ""
@@ -5406,8 +5406,8 @@ msgid "_Edit"
msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr ""
@@ -5422,53 +5422,53 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Көрүү"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/ky/sw/messages.po b/source/ky/sw/messages.po
index a7c61c9737e..29010b5b988 100644
--- a/source/ky/sw/messages.po
+++ b/source/ky/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8350,7 +8350,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr ""
diff --git a/source/lb/cui/messages.po b/source/lb/cui/messages.po
index 771b66b16c5..d464c29f390 100644
--- a/source/lb/cui/messages.po
+++ b/source/lb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4459,147 +4459,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9461,75 +9461,75 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hëllef"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME Dialoger"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME Dialoger"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "an"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13175,12 +13175,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po
index 406ce1f7829..3eb75de4e77 100644
--- a/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21365,6 +21365,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/lb/sd/messages.po b/source/lb/sd/messages.po
index 613f6413564..268f4fc4007 100644
--- a/source/lb/sd/messages.po
+++ b/source/lb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5460,9 +5460,9 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr ""
@@ -5536,8 +5536,8 @@ msgid "_Edit"
msgstr "~Beaarbechten"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5554,56 +5554,56 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Graphik"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Faarf"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Weisen"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Afügen"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/lb/sw/messages.po b/source/lb/sw/messages.po
index 2bd5145b929..17857c1b006 100644
--- a/source/lb/sw/messages.po
+++ b/source/lb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8632,7 +8632,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Beaarbechten"
diff --git a/source/lo/cui/messages.po b/source/lo/cui/messages.po
index ae18cdf6df2..dcefdb81b9c 100644
--- a/source/lo/cui/messages.po
+++ b/source/lo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4502,147 +4502,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9581,76 +9581,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "ຊ່ວຍເຫຼືອ"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ກອບສົນທະນາ"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ກອບສົນທະນາ"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ແລະ"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "ດຶງເອົາ %PRODUCTNAME ໃນລະຫວ່າງລະບົບເລິ່ມຕົ້ນຂື້ນ"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13359,12 +13359,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 a7e51d89d88..84b2a99f73e 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21370,6 +21370,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/lo/sd/messages.po b/source/lo/sd/messages.po
index 5a4f7e75457..f723155432b 100644
--- a/source/lo/sd/messages.po
+++ b/source/lo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5543,9 +5543,9 @@ msgstr "ສະແດງຄືນ"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5623,8 +5623,8 @@ msgid "_Edit"
msgstr "~ແກ້ໄຂ"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5641,59 +5641,59 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "ພາບສະແດງ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ສີ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "~ເລື່ອນສະແດງ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "ຂອບ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "ສະແດງເບິ່ງ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "ໜ້າຫລັກ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "ແຊກໃສ່"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/lo/sw/messages.po b/source/lo/sw/messages.po
index 22914c81288..935ccca9948 100644
--- a/source/lo/sw/messages.po
+++ b/source/lo/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8738,7 +8738,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "ແກ້ໄຂ"
diff --git a/source/lt/basctl/messages.po b/source/lt/basctl/messages.po
index 9f0e1598aa9..fe5f25688f0 100644
--- a/source/lt/basctl/messages.po
+++ b/source/lt/basctl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-05-03 20:11+0000\n"
+"PO-Revision-Date: 2019-07-24 11:14+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: 1556914276.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563966897.000000\n"
#: basctl/inc/strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
@@ -420,27 +420,27 @@ msgstr ""
#: basctl/inc/strings.hrc:100
msgctxt "RID_STR_PRINTDLG_PAGES"
msgid "Pages:"
-msgstr ""
+msgstr "Puslapiai:"
#: basctl/inc/strings.hrc:101
msgctxt "RID_STR_PRINTDLG_PRINTALLPAGES"
msgid "All ~Pages"
-msgstr ""
+msgstr "Visi puslapiai"
#: basctl/inc/strings.hrc:102
msgctxt "RID_STR_PRINTDLG_PRINTPAGES"
msgid "Pa~ges:"
-msgstr ""
+msgstr "Puslapiai:"
#: basctl/inc/strings.hrc:103
msgctxt "RID_STR_PRINTDLG_PRINTEVENPAGES"
msgid "~Even pages"
-msgstr ""
+msgstr "Lyginiai puslapiai"
#: basctl/inc/strings.hrc:104
msgctxt "RID_STR_PRINTDLG_PRINTODDPAGES"
msgid "~Odd pages"
-msgstr ""
+msgstr "Nelyginiai puslapiai"
#: basctl/inc/strings.hrc:105
msgctxt "RID_STR_CHOOSE"
diff --git a/source/lt/chart2/messages.po b/source/lt/chart2/messages.po
index 8d9fc464af6..00d359693a2 100644
--- a/source/lt/chart2/messages.po
+++ b/source/lt/chart2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-02-03 11:03+0000\n"
+"PO-Revision-Date: 2019-07-24 18:59+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: 1549191812.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563994750.000000\n"
#: chart2/inc/chart.hrc:17
msgctxt "tp_ChartType|liststore1"
@@ -966,12 +966,12 @@ msgstr "Duomenų sritys"
#: chart2/uiconfig/ui/datarangedialog.ui:124
msgctxt "datarangedialog|range"
msgid "Data Range"
-msgstr ""
+msgstr "Duomenų sritis"
#: chart2/uiconfig/ui/datarangedialog.ui:170
msgctxt "datarangedialog|series"
msgid "Data Series"
-msgstr ""
+msgstr "Duomenų sekos"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:13
msgctxt "dlg_DataLabel|dlg_DataLabels"
@@ -2884,12 +2884,12 @@ msgstr "Grafiko nuostatos"
#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:385
msgctxt "tp_SeriesToAxis|CB_LEGEND_ENTRY_HIDDEN"
msgid "Hide legend entry"
-msgstr ""
+msgstr "Slėpti legendos įrašą"
#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:406
msgctxt "tp_SeriesToAxis|label4"
msgid "Legend Entry"
-msgstr ""
+msgstr "Legendos įrašas"
#: chart2/uiconfig/ui/tp_Trendline.ui:65
msgctxt "tp_Trendline|linear"
diff --git a/source/lt/cui/messages.po b/source/lt/cui/messages.po
index 04a99349ed0..f5f0d3414bb 100644
--- a/source/lt/cui/messages.po
+++ b/source/lt/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-07-17 12:43+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-24 19:11+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563367407.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1563995471.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -2031,7 +2031,7 @@ msgstr "Pranešėjo pultas itin palengvina „%PRODUCTNAME Impress“ pateikties
#: cui/inc/tipoftheday.hrc:85
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
-msgstr ""
+msgstr "Abėcėlinės rodyklės įrašus galima sukurti automatiškai naudojant atitikties failą."
#. local help missing
#: cui/inc/tipoftheday.hrc:86
@@ -2098,7 +2098,7 @@ msgstr "„%PRODUCTNAME“ programa galima kurti hibridinius PDF dokumentus, kur
#: cui/inc/tipoftheday.hrc:99
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management ? Use a 3rd party extension."
-msgstr ""
+msgstr "Reikia daugiau galimybių citatoms tvarkyti? Naudokite trečiųjų šalių programos plėtinius."
#: cui/inc/tipoftheday.hrc:100
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2133,7 +2133,7 @@ msgstr "„%PRODUCTNAME“ programą galima paleisti bet kurioje naršyklėje na
#: cui/inc/tipoftheday.hrc:106
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and xml filters?"
-msgstr ""
+msgstr "Reikia patarimų, kaip kurti naujus XSLT ir XML filtrus?"
#: cui/inc/tipoftheday.hrc:108
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2168,7 +2168,7 @@ msgstr "„%PRODUCTNAME“ skaičiuoklės būsenos juostoje spustelėkite dešin
#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress use Insert > Media > Photo Album to create a slideshow from a series of pictures with the 'Photo Album' feature."
-msgstr ""
+msgstr "„%PRODUCTNAME“ pateikčių rengyklėje pasirinkite „Įterpimas → Medija → Nuotraukų albumas“ – sukursite pateiktį visoms pasirinktoms nuotraukoms demonstruoti."
#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2678,22 +2678,22 @@ msgstr "Norite į dokumento metaduomenis įtraukti kitokias savybes? Pasirinkite
#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert your metadata in your document with Insert > Fields > More Fields… > Document or DocInformation."
-msgstr ""
+msgstr "Dokumento metaduomenis į patį dokumentą įterpti galima iš lango „Įterpimas → Laukas → Daugiau laukų“ kortelių „Dokumentas“ ir „Informacija apie dokumentą“."
#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, copy the range, paste special, and select everything except comments."
-msgstr ""
+msgstr "Jei norite pašalinti keletą komentarų, pažymėkite reikiamus langelius ir pasirinkite komandą „Lakštas → Langelio komentarai → Šalinti komentarą“."
#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
-msgstr ""
+msgstr "Jei norite pamatyti atskirų formulės elementų skaičiavimo rezultatą, pažymėkite norimus elementus ir paspauskite klavišą F9."
#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table > Properties… > Text Flow > Text orientation."
-msgstr ""
+msgstr "Teksto kryptį lentelės langeliuose galima pakeisti lango „Lentelė → Savybės“ kortelėje „Teksto skaidymas“ nustačius norimą parinkties „Teksto kryptis“ reikšmę."
#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2703,138 +2703,138 @@ msgstr "Teksto dokumente daug paveikslų? Paslėpkite juos ir taip paspartinkite
#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+Ctrl+del deletes from cursor to the end of the current sentence."
-msgstr ""
+msgstr "Klavišų kombinacija „Lyg2+Vald+Šal“ pašalinamas tekstas nuo žymeklio iki sakinio pabaigos."
#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need an unnumbered item in a list? Use 'Insert Unnumbered Entry' in the Bullets and Numbering toolbar."
-msgstr ""
+msgstr "Sąraše norite įterpti elementą be numerio? Ženklinimo ir numeravimo mygtukų juostoje spustelėkite mygtuką „Įterpti elementą be numerio“."
#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a pivot table? Click on drop-list's arrow in the row/col header and select sort method: ascending, descending, or custom."
-msgstr ""
+msgstr "Norite surikiuoti duomenis suvestinėje lentelėje? Spustelėkite rodyklę ties stulpelio antrašte ir pasirinkite norimą rikiavimo tvarką."
#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing > Spacing > Below paragraph at the style/paragraph properties."
-msgstr ""
+msgstr "Neskirkite dviejų pastraipų rankinių būdu įterptais lūžiais. Geriau stiliaus ar pastraipos savybių lango kortelėje „Įtraukos ir intervalai“ pakeiskite intervalo po pastraipos reikšmę."
#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document didn’t reopen with the text cursor at the same editing position it was when you saved it? Check Tools > Options > %PRODUCTNAME > User Data > First/Last name is not empty."
-msgstr ""
+msgstr "Kad atvėrus teksto dokumentą žymeklis būtų toje pačioje vietoje, kur jis buvo tą dokumentą įrašant, lange „Priemonės → Parinktys → %PRODUCTNAME → Naudotojo duomenys“ turi būti įvestas naudotojo vardas ir pavardė."
#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
-msgstr ""
+msgstr "Žvalgiklyje galima pažymėti ir perkelti aukštyn arba žemyn dokumento skyrių antraštes. Kartu su antrašte į naują vietą dokumente bus perkeltas ir pats skyriaus tekstas."
#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME doesn't calculate from left to right but respects the order Parentheses > Exponents > Multiplication > Division > Addition > Subtraction."
-msgstr ""
+msgstr "„%PRODUCTNAME“ programoje skaičiavimai atliekami ne tiesiog iš kairės į dešinę, bet pagal šią tvarką: veiksmai skliaustuose; laipsniai ir eksponentės; daugyba; dalyba; sudėtis; atimtis."
#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the default function in the status bar: right click on the area."
-msgstr ""
+msgstr "Numatytąją būsenos juostos funkciją galima pakeisti – spustelėkite toje srityje dešiniuoju pelės klavišu."
#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
-msgstr ""
+msgstr "Nenorite spausdinti visų stulpelių? Paslėpkite arba sugrupuokite nereikalingus."
#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Shift+Space to select the current row and Ctrl+Space to select the current column."
-msgstr ""
+msgstr "Veikiamąją eilutę pažymėsite paspaudę „Lyg2+Tarpas“, veikiamąjį stulpelį – „Vald+Tarpas“."
#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document use Insert > Field > Date."
-msgstr ""
+msgstr "Jei norite į dokumentą įterpti dabartinę datą, pasirinkite “Įterpimas → Laukas → Data“."
#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click at the beginning (end) of a section and press Alt+Enter to insert a paragraph before (after) the section."
-msgstr ""
+msgstr "Jei norite prieš sekciją (arba po sekcijos) įterpti naują pastraipą, nustatę žymeklį sekcijos pradžioje (pabaigoje) paspauskite klavišus „Alt+Įvesti“."
#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet > Sheet Tab Color."
-msgstr ""
+msgstr "Kiekvieno lakšto ąselei galima parinkti spalvą: spustelėkite ąselę dešiniuoju pelės klavišu arba pasirinkite „Lakštas → Lakšto ąselės spalva“."
#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with %PRODUCTNAME basic macros? Take a look at the examples under Tools > Macros > Edit Macros."
-msgstr ""
+msgstr "Norite rašyti „%PRODUCTNAME Basic“ makrokomandas? Pasirinkę „Priemonės → Makrokomandos → Taisyti makrokomandas“ rasite keletą pavyzdžių."
#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert > Table of Contents (or right-click and Edit the previously inserted index). At the Entries tab delete the page number (#) from Structure line."
-msgstr ""
+msgstr "Jei iš turinio norite pašalinti puslapio numerius, pasirinkite „Įterpimas → Turinys ir rodyklė → Turinys, rodyklė arba bibliografija“ (arba spustelėkite jau įterptą turinį ar rodyklę dešiniuoju pelės klavišu ir pasirinkite „Taisyti rodyklę“) ir kortelėje „Įrašai“ iš struktūros laukelio pašalinkite puslapio numerio elementą (PN)."
#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type 'Chapter ' to display 'Chapter 1'"
-msgstr ""
+msgstr "Skyrių numeravimo lange galima įvesti tekstą, kuris bus rodomas prieš arba po skyriaus numerio. Pavyzdžiui, laukelyje „Iš dešinės“ įveskite „ skyrius“, kad vietoj tik numerio būtų rašoma „1 skyrius“."
#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools > Detective > Trace Dependents (Shift+F5)."
-msgstr ""
+msgstr "Norite išsiaiškinti, ar langelio reikšmė naudojama kitų langelių formulėse? Pasirinkite „Priemonės → Sekiklis → Susekti priklausomybes“ (Lyg2+F5)."
#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools > Options > %PRODUCTNAME > View > Middle Mouse button."
-msgstr ""
+msgstr "Viduriniojo pelės mygtuko atliekamą funkciją galima pakeisti lange „Priemonės → Parinktys → %PRODUCTNAME → Rodymas“ nustačius norimą parinkties „Vidurinis pelės mygtukas“ reikšmę."
#: cui/inc/tipoftheday.hrc:239
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To repeat rows/columns on every pages use Format > Print Ranges > Edit."
-msgstr ""
+msgstr "Jei tam tikras eilutes ar stulpelius norite kartoti kiekviename puslapyje, pasirinkite „Formatas → Spausdinimo sritis → Taisyti spausdinimo sritį“."
#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? Alt+arrow Keys move objects (shape, picture, formula) by one pixel."
-msgstr ""
+msgstr "Norite tiksliai nustatyti objekto vietą? Laikydami nuspaustą klavišą „Alt“ spauskite rodyklių klavišus – objektas (figūra, paveikslas, formulė) bus judinamas per vieną tašką."
#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose ‘Hierarchical View’ in the Styles and Formatting sidebar to see the relation between styles."
-msgstr ""
+msgstr "Kad stilių polangyje matytumėte sąryšius tarp stilių, polangio apačioje iš sąrašo pasirinkite stilių hierarchijos rodinį."
#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can toggle between the field names and the actual value with View > Fields Names (or Ctrl + F9)."
-msgstr ""
+msgstr "Vietoj laukų reikšmių dokumente galima rodyti laukų pavadinimus ir atvirkščiai – pasirinkite „Rodymas → Laukų pavadinimai“ (Vald+F9)."
#: cui/inc/tipoftheday.hrc:243
#, c-format
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Creating a Style based on another, you can enter a percentage value or a point value (e.g. 110% or -2pt or +5pt)."
-msgstr ""
+msgstr "Kai kuriate naują stilių kito stiliaus pagrindu, tam tikras reikšmes galima nurodyti procentais arba taškų skirtumu bazinio stiliaus reikšmių atžvilgiu (pvz., 110%, -2pt ar +5pt)."
#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
-msgstr ""
+msgstr "Pritaikę sąrašo stilių toliau norite rinkti tekstą numatytuoju stiliumi? Spustelėkite mygtukus „Ženklintas sąrašas“ arba „Numeruotas sąrašas“ formatavimo mygtukų juostoje."
#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the Ctrl key to follow hyperlinks? Tools > Options > %PRODUCTNAME > Security > Options > ‘Ctrl+click required to follow hyperlinks’."
-msgstr ""
+msgstr "Nenorite, jog reikėtų spausti valdymo klavišą, kad sektumėte saitu? Atverkite langą „Priemonės → Parinktys → %PRODUCTNAME → Saugumas“, spustelėkite mygtuką „Parinktys“ ir išjunkite parinktį „Spustelint saitą reikalauti nuspausti „Vald“ klavišą, jei norima sekti saitu“."
#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed from the marching ants around cells in Calc. Press escape to stop them; the copied content will remain available for pasting."
-msgstr ""
+msgstr "Aplink skaičiuoklės langelį bėgančių „skruzdėlių“ rėmelis atrodo įkyriai? Paspauskite grįžties klavišą – nukopijuotas turinys vis tiek liks iškarpinėje."
#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly insert or delete rows, select the desired number of rows (or columns) and press Ctrl+ to add or Ctrl- to delete."
-msgstr ""
+msgstr "Jei norite sparčiai įterpti ar pašalinti eilutes ar stulpelius, pažymėkite norimą skaičių eilučių (arba stulpelių) ir paspauskite „Vald++“ (įterpimui) arba „Vald+-“ (šalinimui)."
#: cui/inc/tipoftheday.hrc:248
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2874,7 +2874,7 @@ msgstr "Lango „Priemonės → Sąranka“ kortelėje „Klaviatūra“ nebūti
#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in the selection, press / (divide key) on the number pad. Press * to restore entire page in screen."
-msgstr ""
+msgstr "Pažymėtos srities mastelį galima greitai padidinti paspaudus dalybos ženklo (/) klavišą klaviatūros skaitmenų srityje. Paspauskite žvaigždutę (*), kad visas puslapis vėl tilptų ekrane."
#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -3519,7 +3519,7 @@ msgstr "Automatinis įtraukimas"
#: cui/uiconfig/ui/acorexceptpage.ui:292
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
-msgstr ""
+msgstr "Nauji žodžiai su DViem PIrmosiomis DIdžiosiomis raidėmis arba mAŽĄJA pIRMĄJA"
#: cui/uiconfig/ui/acorexceptpage.ui:304
msgctxt "acorexceptpage|replace1"
@@ -3529,12 +3529,12 @@ msgstr "Pakeisti"
#: cui/uiconfig/ui/acorexceptpage.ui:328
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
-msgstr ""
+msgstr "Šalinti žodžius su DViem PIrmosiomis DIdžiosiomis raidėmis arba mAŽĄJA pIRMĄJA"
#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
-msgstr ""
+msgstr "Žodžiai su DViem PIrmosiomis DIdžiosiomis raidėmis arba mAŽĄJA pIRMĄJA"
#: cui/uiconfig/ui/acorreplacepage.ui:47
msgctxt "acorreplacepage|replace"
@@ -4374,162 +4374,162 @@ msgstr "Minimalus žodžių ilgis"
#: cui/uiconfig/ui/bulletandposition.ui:50
msgctxt "bulletandposition|fromfile"
msgid "From file..."
-msgstr ""
+msgstr "Iš failo…"
#: cui/uiconfig/ui/bulletandposition.ui:58
msgctxt "bulletandposition|gallery"
msgid "Gallery"
-msgstr ""
+msgstr "Galerija"
#: cui/uiconfig/ui/bulletandposition.ui:95
msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Ženklinimas ir numeravimas"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
-msgstr ""
+msgstr "Lygmuo"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
-msgstr ""
+msgstr "Tipas:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
-msgstr ""
+msgstr "Pradėti nuo:"
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
-msgstr ""
+msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
-msgstr ""
+msgstr "Rašmuo:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
-msgstr ""
+msgstr "Parinkti…"
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
-msgstr ""
+msgstr "Parinkti paveikslą…"
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
-msgstr ""
+msgstr "Plotis:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
-msgstr ""
+msgstr "Aukštis:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
-msgstr ""
+msgstr "Išlaikyti proporcijas"
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
-msgstr ""
+msgstr "Iš kairės:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
-msgstr ""
+msgstr "Iš dešinės:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
-msgstr ""
+msgstr "Skirtukas"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
-msgstr ""
+msgstr "Spalva:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
-msgstr ""
+msgstr "Sant. dydis:"
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
-msgstr ""
+msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
-msgstr ""
+msgstr "Įtrauka:"
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
-msgstr ""
+msgstr "Plotis:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
-msgstr ""
+msgstr "Santykinė"
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
-msgstr ""
+msgstr "Padėtis"
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
-msgstr ""
+msgstr "Lygiuotė"
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
-msgstr ""
+msgstr "Skaidrė"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
-msgstr ""
+msgstr "Atranka"
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
-msgstr ""
+msgstr "Taikyti pagrindui"
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
-msgstr ""
+msgstr "Taikymo sritis"
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
-msgstr ""
+msgstr "Savybės"
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
-msgstr ""
+msgstr "Peržiūra"
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
@@ -9179,72 +9179,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Žinynas"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Naudoti „%PRODUCTNAME“ langus"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Failų atvėrimo ir įrašymo langai"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Naudoti „%PRODUCTNAME“ langus"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Spausdinimo dialogo langai"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Spausdinimą laikyti dokumento modifikacija"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Spausdinimo poveikis dokumento būsenai"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Laikyti metais tarp"
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ir "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Metai be šimtmečių (du skaitmenys)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Rinkti duomenis apie programos naudojimą ir siųsti juos į „The Document Foundation“"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pagalba „%PRODUCTNAME“ kūrėjams"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Įkelti „%PRODUCTNAME“ paleidus operacinę sistemą"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Įjungti sparčiąją paleistį"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "„%PRODUCTNAME“ sparčioji paleistis"
@@ -12773,12 +12773,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "Kitas patarimas"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Ar žinojote?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/lt/filter/messages.po b/source/lt/filter/messages.po
index da8734b846d..b5bde1429c6 100644
--- a/source/lt/filter/messages.po
+++ b/source/lt/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-05-25 21:01+0000\n"
+"PO-Revision-Date: 2019-07-22 19:38+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: 1558818086.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563824321.000000\n"
#: filter/inc/strings.hrc:25
msgctxt "STR_UNKNOWN_APPLICATION"
@@ -528,12 +528,12 @@ msgstr "Sukuriamas ISO 19005-2 standartą atitinkantis PDF failas, tinkamas ilga
#: filter/uiconfig/ui/pdfgeneralpage.ui:732
msgctxt "pdfgeneralpage|pdfa"
msgid "PDF/A-2b"
-msgstr ""
+msgstr "PDF/A-2b"
#: filter/uiconfig/ui/pdfgeneralpage.ui:746
msgctxt "pdfgeneralpage|pdfa"
msgid "PDF/A-1b"
-msgstr ""
+msgstr "PDF/A-1b"
#: filter/uiconfig/ui/pdfgeneralpage.ui:779
msgctxt "pdfgeneralpage|label4"
diff --git a/source/lt/helpcontent2/source/text/shared/01.po b/source/lt/helpcontent2/source/text/shared/01.po
index 22dc016108c..9879e7c9b9f 100644
--- a/source/lt/helpcontent2/source/text/shared/01.po
+++ b/source/lt/helpcontent2/source/text/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-05-29 21:29+0000\n"
+"PO-Revision-Date: 2019-07-30 22:05+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: 1559165379.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564524352.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -37552,7 +37552,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Digital Signatures"
-msgstr ""
+msgstr "Skaitmeniniai parašai"
#: digitalsignatures.xhp
msgctxt ""
@@ -37560,7 +37560,7 @@ msgctxt ""
"par_idN10544\n"
"help.text"
msgid "<link href=\"text/shared/01/digitalsignatures.xhp\">Digital Signatures</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/digitalsignatures.xhp\">Skaitmeniniai parašai</link>"
#: digitalsignatures.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/shared/06.po b/source/lt/helpcontent2/source/text/shared/06.po
index 99b15aa8902..625b84ad3e1 100644
--- a/source/lt/helpcontent2/source/text/shared/06.po
+++ b/source/lt/helpcontent2/source/text/shared/06.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: 2018-09-03 13:23+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2019-07-29 07:26+0000\n"
+"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564385168.000000\n"
#: svx_screenshots.xhp
msgctxt ""
@@ -19,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "SVX Screenshots"
-msgstr ""
+msgstr "SVX ekrano nuotraukos"
#: svx_screenshots.xhp
msgctxt ""
@@ -27,7 +30,7 @@ msgctxt ""
"par_id431534783734366\n"
"help.text"
msgid "<image src=\"media/screenshots/svx/ui/compressgraphicdialog/CompressGraphicDialog.png\" id=\"img_id131534783734367\"><alt id=\"alt_id271534783734367\">Compress Image Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/svx/ui/compressgraphicdialog/CompressGraphicDialog.png\" id=\"img_id131534783734367\"><alt id=\"alt_id271534783734367\">Paveikslo glaudinimo dialogo langas</alt></image>"
#: youtubevideos.xhp
msgctxt ""
@@ -35,4 +38,4 @@ msgctxt ""
"tit\n"
"help.text"
msgid "YouTube Videos"
-msgstr ""
+msgstr "„YouTube“ vaizdo įrašai"
diff --git a/source/lt/helpcontent2/source/text/shared/autokorr.po b/source/lt/helpcontent2/source/text/shared/autokorr.po
index acbca516782..6b99b62ace2 100644
--- a/source/lt/helpcontent2/source/text/shared/autokorr.po
+++ b/source/lt/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: 2016-06-30 13:28+0000\n"
+"PO-Revision-Date: 2019-07-29 09:29+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: 1467293309.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564392590.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 01000000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3148410\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 01000000.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 02000000.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"hd_id3155354\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 02000000.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 03000000.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"hd_id3152459\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 03000000.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 04000000.xhp
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"hd_id3154283\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 04000000.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 05000000.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"hd_id3155354\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 05000000.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 06000000.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"hd_id3148932\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 06000000.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 07000000.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"hd_id3153629\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 07000000.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 08000000.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"hd_id3147240\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 08000000.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 09000000.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"hd_id3149976\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 09000000.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 10000000.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"hd_id3147446\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 10000000.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 12000000.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"hd_id3153116\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 12000000.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 13000000.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"hd_id3149513\n"
"help.text"
msgid "AutoCorrect has been activated"
-msgstr ""
+msgstr "Automatinis rašybos taisymas aktyvintas"
#: 13000000.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/shared/guide.po b/source/lt/helpcontent2/source/text/shared/guide.po
index 3aa127f9dc5..21f93b275f8 100644
--- a/source/lt/helpcontent2/source/text/shared/guide.po
+++ b/source/lt/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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-05-28 21:04+0000\n"
+"PO-Revision-Date: 2019-07-30 22:04+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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1559077473.000000\n"
+"X-POOTLE-MTIME: 1564524266.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -5110,7 +5110,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Copying Drawing Objects Into Other Documents"
-msgstr ""
+msgstr "Grafikos objektų kopijavimas į kitus dokumentus"
#: copy_drawfunctions.xhp
msgctxt ""
@@ -5118,7 +5118,7 @@ msgctxt ""
"bm_id3153394\n"
"help.text"
msgid "<bookmark_value>draw objects; copying between documents</bookmark_value><bookmark_value>copying; draw objects between documents</bookmark_value><bookmark_value>pasting;draw objects from other documents</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>grafikos objektai; kopijavimas tarp dokumentų</bookmark_value><bookmark_value>kopijavimas; grafikos objektų tarp dokumentų</bookmark_value><bookmark_value>įdėjimas;grafikos objektų tarp dokumentų</bookmark_value>"
#: copy_drawfunctions.xhp
msgctxt ""
@@ -5126,7 +5126,7 @@ msgctxt ""
"hd_id3153394\n"
"help.text"
msgid "<variable id=\"copy_drawfunctions\"><link href=\"text/shared/guide/copy_drawfunctions.xhp\" name=\"Copying Drawing Objects Into Other Documents\">Copying Drawing Objects Into Other Documents</link></variable>"
-msgstr ""
+msgstr "<variable id=\"copy_drawfunctions\"><link href=\"text/shared/guide/copy_drawfunctions.xhp\" name=\"Grafikos objektų kopijavimas į kitus dokumentus\">Grafikos objektų kopijavimas į kitus dokumentus</link></variable>"
#: copy_drawfunctions.xhp
msgctxt ""
@@ -5134,7 +5134,7 @@ msgctxt ""
"par_id3153345\n"
"help.text"
msgid "In $[officename] it is possible to copy drawing objects between text, spreadsheets and presentation documents."
-msgstr ""
+msgstr "„$[officename]“ programų pakete grafikos objektus galima kopijuoti tarp teksto, skaičiuoklės ir pateikčių dokumentų."
#: copy_drawfunctions.xhp
msgctxt ""
@@ -5142,7 +5142,7 @@ msgctxt ""
"par_id3145345\n"
"help.text"
msgid "Select the drawing object or objects."
-msgstr ""
+msgstr "Pažymėkite grafikos objektą ar objektus."
#: copy_drawfunctions.xhp
msgctxt ""
@@ -5150,7 +5150,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "Copy the drawing object to the clipboard, for example, by using <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C."
-msgstr ""
+msgstr "Nukopijuokite grafikos objektą į iškarpinę. Tai galima atlikti paspaudus klavišus <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Vald</emph></defaultinline></switchinline><emph>+C</emph>."
#: copy_drawfunctions.xhp
msgctxt ""
@@ -5158,7 +5158,7 @@ msgctxt ""
"par_id3152996\n"
"help.text"
msgid "Switch to the other document and place the cursor where the drawing object is to be inserted."
-msgstr ""
+msgstr "Atverkite kitą dokumentą ir nustatykite žymeklį toje vietoje, kur norite įterpti objektą."
#: copy_drawfunctions.xhp
msgctxt ""
@@ -5166,7 +5166,7 @@ msgctxt ""
"par_id3149234\n"
"help.text"
msgid "Insert the drawing object, for example, by using <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V."
-msgstr ""
+msgstr "Įdėkite grafikos objektą. Tai galima atlikti paspaudus klavišus <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Vald</emph></defaultinline></switchinline><emph>+V</emph>."
#: copy_drawfunctions.xhp
msgctxt ""
@@ -5174,7 +5174,7 @@ msgctxt ""
"hd_id3147573\n"
"help.text"
msgid "Inserting into a text document"
-msgstr ""
+msgstr "Įterpimas į teksto dokumentą"
#: copy_drawfunctions.xhp
msgctxt ""
@@ -5182,7 +5182,7 @@ msgctxt ""
"par_id3150276\n"
"help.text"
msgid "An inserted drawing object is anchored to the current paragraph. You can change the anchor by selecting the object and clicking the <emph>Change Anchor</emph> icon on the <emph>OLE-Object</emph> toolbar or the <emph>Frame</emph> toolbar. This opens a popup menu where you can select the anchor type."
-msgstr ""
+msgstr "Įdėtas grafikos objektas pririšamas prie veikiamosios pastraipos. Prieraišą galima pakeisti pažymėjus objektą ir spustelėjus mygtuką <emph>Prieraišas</emph> mygtukų juostose <emph>OLE objektas</emph> arba <emph>Kadras</emph>. Mygtuku atveriamas meniu, kuriame galima pasirinkti norimo tipo prieraišą."
#: copy_drawfunctions.xhp
msgctxt ""
@@ -5190,7 +5190,7 @@ msgctxt ""
"hd_id3145609\n"
"help.text"
msgid "Inserting into a spreadsheet"
-msgstr ""
+msgstr "Įterpimas į skaičiuoklės dokumentą"
#: copy_drawfunctions.xhp
msgctxt ""
@@ -5198,7 +5198,7 @@ msgctxt ""
"par_id3151210\n"
"help.text"
msgid "An inserted drawing object is anchored to the current cell. You can change the anchor between cell and page by selecting the object and clicking the <emph>Change Anchor</emph> icon <image id=\"img_id3149456\" src=\"cmd/sc_toggleanchortype.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149456\">Icon</alt></image>."
-msgstr ""
+msgstr "Įdėtas grafikos objektas pririšamas prie veikiamojo langelio. Prieraišą galima pakeisti pažymėjus objektą ir spustelėjus mygtuką <emph>Prieraišas</emph>. <image id=\"img_id3149456\" src=\"cmd/sc_toggleanchortype.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149456\">Piktograma</alt></image>."
#: copytable2application.xhp
msgctxt ""
@@ -5206,7 +5206,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Inserting Data From Spreadsheets"
-msgstr ""
+msgstr "Duomenų iš skaičiuoklės dokumento įterpimas"
#: copytable2application.xhp
msgctxt ""
@@ -5214,7 +5214,7 @@ msgctxt ""
"bm_id3154186\n"
"help.text"
msgid "<bookmark_value>charts;copying with link to source cell range</bookmark_value><bookmark_value>inserting; cell ranges from spreadsheets</bookmark_value><bookmark_value>pasting;cell ranges from spreadsheets</bookmark_value><bookmark_value>presentations;inserting spreadsheet cells</bookmark_value><bookmark_value>text documents;inserting spreadsheet cells</bookmark_value><bookmark_value>tables in spreadsheets;copying data to other applications</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>diagramos;kopijavimas išlaikant saitą į pradinį langelių bloką</bookmark_value><bookmark_value>įterpimas; langelių blokai iš skaičiuoklės</bookmark_value><bookmark_value>įdėjimas;langelių blokai iš skaičiuoklės</bookmark_value><bookmark_value>pateiktys;skaičiuoklės dokumento langelių įterpimas</bookmark_value><bookmark_value>teksto dokumentai;skaičiuoklės dokumento langelių įterpimas</bookmark_value><bookmark_value>lentelės skaičiuoklės dokumentuose;duomenų kopijavimas į kitas programas</bookmark_value>"
#: copytable2application.xhp
msgctxt ""
@@ -5222,7 +5222,7 @@ msgctxt ""
"hd_id3154186\n"
"help.text"
msgid "<variable id=\"copytable2application\"><link href=\"text/shared/guide/copytable2application.xhp\" name=\"Inserting Data From Spreadsheets\">Inserting Data From Spreadsheets</link></variable>"
-msgstr ""
+msgstr "<variable id=\"copytable2application\"><link href=\"text/shared/guide/copytable2application.xhp\" name=\"Duomenų iš skaičiuoklės dokumento įterpimas\">Duomenų iš skaičiuoklės dokumento įterpimas</link></variable>"
#: copytable2application.xhp
msgctxt ""
@@ -5230,7 +5230,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "Use the clipboard to copy the contents of a single cell. You can also copy a formula from a cell into the clipboard (for example, from the input line of the formula bar) so that the formula can be inserted into a text."
-msgstr ""
+msgstr "Vieno langelio turiniui nukopijuoti naudokite iškarpinę. Iš langelio į iškarpinę taip pat galima nukopijuoti formulę (pavyzdžiui, iš formulių įvesties eilutės), tada ją įdėti į tekstą."
#: copytable2application.xhp
msgctxt ""
@@ -5238,7 +5238,7 @@ msgctxt ""
"par_id3145345\n"
"help.text"
msgid "To copy a cell range into a text document, select the cell range in the sheet and then use either the clipboard or drag-and-drop to insert the cells into the text document. You will then find an OLE object in the text document, which you can edit further."
-msgstr ""
+msgstr "Jei norite nukopijuoti langelių bloką, pažymėkite norimus langelius lakšte, tada arba nukopijuokite duomenis per iškarpinę, arba nutempkite langelius į teksto dokumentą. Langelių blokas teksto dokumente bus įterptas kaip OLE objektas, kurį vėliau bus galima taisyti."
#: copytable2application.xhp
msgctxt ""
@@ -5246,7 +5246,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "If you drag cells to the normal view of a presentation document, the cells will be inserted there as an OLE object. If you drag cells into the outline view, each cell will form a line of the outline view."
-msgstr ""
+msgstr "Jei langelių bloką nutempsite į pateikties dokumento skaidrės rodinį, langeliai bus įterpti kaip OLE objektas. Nutempus langelius į pateikties dokumento struktūros rodinį, iš kiekvieno langelio bus sukurta atskira struktūros eilutė."
#: copytable2application.xhp
msgctxt ""
@@ -5254,7 +5254,7 @@ msgctxt ""
"par_id3148538\n"
"help.text"
msgid "When you copy a cell range from $[officename] Calc to the clipboard, the drawing objects, OLE objects and charts within this range are also copied."
-msgstr ""
+msgstr "Kai langelių bloką iš „$[officename] Calc“ skaičiuoklės dokumento nukopijuojate į iškarpinę, kartu nukopijuojami ir į pažymėtą sritį patenkantys grafikos objektai, OLE objektai ir diagramos."
#: copytable2application.xhp
msgctxt ""
@@ -5262,7 +5262,7 @@ msgctxt ""
"par_id3153031\n"
"help.text"
msgid "If you insert a cell range with an enclosed chart, the chart will keep its link to the source cell range only if you copied the chart and the source cell range together."
-msgstr ""
+msgstr "Jei į kopijuojamą langelių bloką patenka diagrama, diagramos ir jos duomenų langelių sąryšis bus išlaikytas tik tokiu atveju, jei kartu nukopijuosite ir diagramos duomenų langelius."
#: copytext2application.xhp
msgctxt ""
@@ -5270,7 +5270,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Inserting Data From Text Documents"
-msgstr ""
+msgstr "Duomenų iš teksto dokumento įterpimas"
#: copytext2application.xhp
msgctxt ""
@@ -5278,7 +5278,7 @@ msgctxt ""
"bm_id3152924\n"
"help.text"
msgid "<bookmark_value>sending; AutoAbstract function in presentations</bookmark_value><bookmark_value>AutoAbstract function for sending text to presentations</bookmark_value><bookmark_value>outlines; sending to presentations</bookmark_value><bookmark_value>text; copying by drag and drop</bookmark_value><bookmark_value>drag and drop; copying and pasting text</bookmark_value><bookmark_value>inserting;data from text documents</bookmark_value><bookmark_value>copying;data from text documents</bookmark_value><bookmark_value>pasting;data from text documents</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>siuntimas; savaiminės santraukos funkcija</bookmark_value><bookmark_value>savaiminės santraukos funkcija tekstui į pateiktį siųsti</bookmark_value><bookmark_value>antraštės; siuntimas į pateiktį</bookmark_value><bookmark_value>tekstas; kopijavimas tempiant</bookmark_value><bookmark_value>tempimas; teksto kopijavimas ir įdėjimas</bookmark_value><bookmark_value>įterpimas;duomenų iš teksto dokumento</bookmark_value><bookmark_value>kopijavimas;duomenų iš teksto dokumento</bookmark_value><bookmark_value>įdėjimas;duomenų iš teksto dokumento</bookmark_value>"
#: copytext2application.xhp
msgctxt ""
@@ -5286,7 +5286,7 @@ msgctxt ""
"hd_id3152924\n"
"help.text"
msgid "<variable id=\"copytext2application\"><link href=\"text/shared/guide/copytext2application.xhp\" name=\"Inserting Data From Text Documents\">Inserting Data From Text Documents</link></variable>"
-msgstr ""
+msgstr "<variable id=\"copytext2application\"><link href=\"text/shared/guide/copytext2application.xhp\" name=\"IDuomenų iš teksto dokumento įterpimas\">Duomenų iš teksto dokumento įterpimas</link></variable>"
#: copytext2application.xhp
msgctxt ""
@@ -5294,7 +5294,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 ""
+msgstr "Tekstą galima įterpti ir į kitokius dokumentus: skaičiuoklės dokumentus ar pateiktis. Svarbu žinoti, kad tekstas apdorojamas skirtingai, jei jį įterpiate į teksto kadrą, skaičiuoklės dokumento langelį ar pateikties struktūrą."
#: copytext2application.xhp
msgctxt ""
@@ -5302,7 +5302,7 @@ msgctxt ""
"par_id3147576\n"
"help.text"
msgid "If you copy text to the clipboard, you can paste it with or without text attributes. Use the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy and <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V to paste."
-msgstr ""
+msgstr "Į iškarpinę kopijuotą tekstą galima įdėti su teksto požymiais arba be jų. Tekstą nukopijuoti galima klavišais <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Vald</emph></defaultinline></switchinline><emph>+C</emph>, o įdėti – klavišais <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Vald</emph></defaultinline></switchinline><emph>+V</emph>."
#: copytext2application.xhp
msgctxt ""
@@ -5310,7 +5310,7 @@ msgctxt ""
"par_id3152349\n"
"help.text"
msgid "<image id=\"img_id3143270\" src=\"cmd/sc_paste.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3143270\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3143270\" src=\"cmd/sc_paste.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3143270\">Piktograma</alt></image>"
#: copytext2application.xhp
msgctxt ""
@@ -5318,7 +5318,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 ""
+msgstr "Jei norite pasirinkti formatą, kaip įdėti iškarpinės turinį į dokumentą, <emph>standartinėje</emph> mygtukų juostoje spustelėkite rodyklę šalia mygtuko <emph>Įdėti</emph>, arba pasirinkite <emph>Taisa → Įdėti kitaip</emph>, o tada – norimą formatą."
#: copytext2application.xhp
msgctxt ""
@@ -5326,7 +5326,7 @@ msgctxt ""
"par_id3156155\n"
"help.text"
msgid "If a text document contains headings formatted with the Heading Paragraph Style, choose <emph>File - Send - Outline to Presentation</emph>. A new presentation document is created, which contains the headings as an outline."
-msgstr ""
+msgstr "Jei teksto dokumente yra antraščių, kurioms pritaikytas antraštės pastraipos stilius, pasirinkite <emph>Failas → Siųsti → Antraštes į pateiktį</emph>. Šitaip sukursite naują pateiktį, kurios struktūra bus sudaryta iš antraščių."
#: copytext2application.xhp
msgctxt ""
@@ -5334,7 +5334,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 ""
+msgstr "Jei antraštes į pateiktį norite perkelti kartu su teksto pastraipomis, pasirinkite <emph>Failas → Siųsti → Savaiminę santrauką į pateiktį</emph>. Kad ši komanda būtų veiksni, antraštėms turi būti pritaikytas tinkamas pastraipų stilius."
#: copytext2application.xhp
msgctxt ""
@@ -5342,7 +5342,7 @@ msgctxt ""
"hd_id3156024\n"
"help.text"
msgid "Copying Text Using Drag-and-Drop"
-msgstr ""
+msgstr "Teksto kopijavimas tempiant"
#: copytext2application.xhp
msgctxt ""
@@ -5350,7 +5350,7 @@ msgctxt ""
"par_id3147303\n"
"help.text"
msgid "If you select text and drag it into a spreadsheet with drag-and-drop, it will be inserted as text into the cell where you release the mouse."
-msgstr ""
+msgstr "Jei pažymėsite tekstą ir nutempsite jį į skaičiuoklės dokumentą, tekstas bus įterptas į langelį, ties kuriuo atleisite pelės klavišą."
#: copytext2application.xhp
msgctxt ""
@@ -5358,7 +5358,7 @@ msgctxt ""
"par_id3149655\n"
"help.text"
msgid "If you drag text to the normal view of a presentation, an OLE object is inserted as a $[officename] plug-in."
-msgstr ""
+msgstr "Jei tekstą nutepsite į pateikties skaidrės rodinį, tekstas bus įdėtas kaip OLE objektas."
#: copytext2application.xhp
msgctxt ""
@@ -5366,7 +5366,7 @@ msgctxt ""
"par_id3150793\n"
"help.text"
msgid "If you drag the text to the outline view of a presentation, it will be inserted at the cursor location."
-msgstr ""
+msgstr "Jei tekstą nutempsite į pateikties struktūros rodinį, tekstas bus įterptas žymeklio vietoje."
#: ctl.xhp
msgctxt ""
@@ -7542,7 +7542,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "About Digital Signatures"
-msgstr ""
+msgstr "Apie skaitmeninius parašus"
#: digital_signatures.xhp
msgctxt ""
@@ -7550,7 +7550,7 @@ msgctxt ""
"bm_id7430951\n"
"help.text"
msgid "<bookmark_value>certificates</bookmark_value> <bookmark_value>digital signatures;overview</bookmark_value> <bookmark_value>security;digital signatures</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>liudijimai</bookmark_value> <bookmark_value>skaitmeniniai parašai;apžvalga</bookmark_value> <bookmark_value>saugumas;skaitmeniniai parašai</bookmark_value>"
#: digital_signatures.xhp
msgctxt ""
@@ -7558,7 +7558,7 @@ msgctxt ""
"hd_id2767418\n"
"help.text"
msgid "<variable id=\"digital_signatures\"><link href=\"text/shared/guide/digital_signatures.xhp\">About Digital Signatures</link></variable>"
-msgstr ""
+msgstr "<variable id=\"digital_signatures\"><link href=\"text/shared/guide/digital_signatures.xhp\">Apie skaitmeninius parašus</link></variable>"
#: digital_signatures.xhp
msgctxt ""
@@ -7566,7 +7566,7 @@ msgctxt ""
"par_idN10632\n"
"help.text"
msgid "In %PRODUCTNAME, you can digitally sign your documents and macros."
-msgstr ""
+msgstr "„%PRODUCTNAME“ programų pakete skaitmeniniu būdu galima pasirašyti dokumentus ir makrokomandas."
#: digital_signatures.xhp
msgctxt ""
@@ -7574,7 +7574,7 @@ msgctxt ""
"hd_id6564531\n"
"help.text"
msgid "Certificates"
-msgstr ""
+msgstr "Liudijimai"
#: digital_signatures.xhp
msgctxt ""
@@ -7582,7 +7582,7 @@ msgctxt ""
"par_idN10639\n"
"help.text"
msgid "To sign a document digitally, you need a personal key, the certificate. A personal key is stored on your computer as a combination of a private key, which must be kept secret, and a public key, which you add to your documents when you sign them."
-msgstr ""
+msgstr "Dokumentui skaitmeniniu būdu pasirašyti reikalingas asmeninis raktas, vadinamas liudijimu. Šis liudijimas laikomas jūsų kompiuteryje ir yra sudarytas iš privačiojo rakto, kurį reikia laikyti slaptai, ir viešojo rakto, kuris pridedamas prie dokumentų juos pasirašant."
#: digital_signatures.xhp
msgctxt ""
@@ -7590,7 +7590,7 @@ msgctxt ""
"par_idN1066D\n"
"help.text"
msgid "Save and sign the document"
-msgstr ""
+msgstr "Dokumento įrašymas ir pasirašymas"
#: digital_signatures.xhp
msgctxt ""
@@ -7598,7 +7598,7 @@ msgctxt ""
"par_idN10671\n"
"help.text"
msgid "When you apply a digital signature to a document, a kind of checksum is computed from the document's content plus your personal key. The checksum and your public key are stored together with the document."
-msgstr ""
+msgstr "Kai skaitmeniniu būdu pasirašote dokumentą, pagal dokumento turinį ir jūsų asmeninį raktą apskaičiuojama tam tikra kontrolinė suma. Ši kontrolinė suma ir jūsų viešasis raktas įrašomi kartu su dokumentu."
#: digital_signatures.xhp
msgctxt ""
@@ -7606,7 +7606,7 @@ msgctxt ""
"par_idN10674\n"
"help.text"
msgid "Open a signed document"
-msgstr ""
+msgstr "Pasirašyto dokumento atvėrimas"
#: digital_signatures.xhp
msgctxt ""
@@ -7614,7 +7614,7 @@ msgctxt ""
"par_idN10678\n"
"help.text"
msgid "When someone later opens the document on any computer with a recent version of %PRODUCTNAME, the program will compute the checksum again and compare it with the stored checksum. If both are the same, the program will signal that you see the original, unchanged document. In addition, the program can show you the public key information from the certificate."
-msgstr ""
+msgstr "Kai vėliau kas nors kitame kompiuteryje su pakankamai nauja „%PRODUCTNAME“ programa atvers pasirašytą dokumentą, programa iš naujo apskaičiuos kontrolinę sumą ir palygins ją su dokumente įrašyta kontroline suma. Jei kontrolinės sumos sutaps, programa praneš, kad turite pradinį nepakeistą dokumentą. Be to, programa gali parodyti ir viešojo rakto informaciją."
#: digital_signatures.xhp
msgctxt ""
@@ -7622,7 +7622,7 @@ msgctxt ""
"par_idN1067B\n"
"help.text"
msgid "You can compare the public key with the public key that is published on the web site of the certificate authority."
-msgstr ""
+msgstr "Dokumente įrašytą viešąjį raktą galima palyginti su viešuoju raktu, skelbiamu liudijimą išdavusios įstaigos tinklalapyje."
#: digital_signatures.xhp
msgctxt ""
@@ -7630,7 +7630,7 @@ msgctxt ""
"par_idN1067E\n"
"help.text"
msgid "Whenever someone changes something in the document, this change breaks the digital signature. After the change, there will be no sign that you see the original document."
-msgstr ""
+msgstr "Vos tik kas nors pakeis dokumento turinį, skaitmeninis parašas bus pašalintas. Dokumentas, kuriame yra pakeitimų, jau nerodomas kaip pradinis, kuris buvo pasirašytas."
#: digital_signatures.xhp
msgctxt ""
@@ -7638,7 +7638,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 ""
+msgstr "Parašo patikros rezultatas rodomas būsenos juostoje ir skaitmeninių parašų dialogo lange. Viename ODF dokumente gali būti keletas dokumentų ir makrokomandų parašų. Jei bent vienas skaitmeninis parašas negalioja, tuomet toks pat rezultatas rodomas ir likusiems dokumento parašams, t. y. jei dokumente yra dešimt galiojančių skaitmeninių parašų ir vienas negaliojantis, visi dokumento parašai laikomi negaliojančiais ir taip rodoma būsenos juostoje bei dialogo lange."
#: digital_signatures.xhp
msgctxt ""
@@ -7646,7 +7646,7 @@ msgctxt ""
"par_id0821200911571878\n"
"help.text"
msgid "You can see any of the following icons and messages when you open a signed document."
-msgstr ""
+msgstr "Atvėrus pasirašytą dokumentą galima išvysti tokias būsenos piktogramas ar pranešimus."
#: digital_signatures.xhp
msgctxt ""
@@ -7654,7 +7654,7 @@ msgctxt ""
"par_id0821200912504050\n"
"help.text"
msgid "Icon in Status bar"
-msgstr ""
+msgstr "Piktograma būsenos juostoje"
#: digital_signatures.xhp
msgctxt ""
@@ -7662,7 +7662,7 @@ msgctxt ""
"par_id0821200912504061\n"
"help.text"
msgid "Signature status"
-msgstr ""
+msgstr "Parašo būsena"
#: digital_signatures.xhp
msgctxt ""
@@ -7670,7 +7670,7 @@ msgctxt ""
"par_id0821200912504010\n"
"help.text"
msgid "<image id=\"img_id0821200912421569\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id0821200912421569\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id0821200912421569\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id0821200912421569\">Piktograma</alt></image>"
#: digital_signatures.xhp
msgctxt ""
@@ -7678,7 +7678,7 @@ msgctxt ""
"par_id0821200912504189\n"
"help.text"
msgid "The signature is valid."
-msgstr ""
+msgstr "Parašas galioja."
#: digital_signatures.xhp
msgctxt ""
@@ -7686,7 +7686,7 @@ msgctxt ""
"par_id082120091250418\n"
"help.text"
msgid "<image id=\"img_id0821200912431081\" src=\"xmlsecurity/res/notcertificate_16.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id0821200912431081\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id0821200912431081\" src=\"xmlsecurity/res/notcertificate_16.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id0821200912431081\">Piktograma</alt></image>"
#: digital_signatures.xhp
msgctxt ""
@@ -7694,7 +7694,7 @@ msgctxt ""
"par_id0821200912504133\n"
"help.text"
msgid "The signature is OK, but the certificates could not be validated."
-msgstr ""
+msgstr "Parašas galioja, bet nepavyko patikrinti liudijimų."
#: digital_signatures.xhp
msgctxt ""
@@ -7702,7 +7702,7 @@ msgctxt ""
"par_id0821200912504165\n"
"help.text"
msgid "The signature and the certificate are OK, but not all parts of the document are signed. (For documents that were signed with old versions of the software, see note below.)"
-msgstr ""
+msgstr "Parašas ir liudijimas galioja, bet ne visos dokumento dalys pasirašytos. (Apie senų versijų programomis pasirašytus dokumentus skaitykite žemiau.)"
#: digital_signatures.xhp
msgctxt ""
@@ -7710,7 +7710,7 @@ msgctxt ""
"par_id0821200912504237\n"
"help.text"
msgid "<image id=\"img_id0821200912435090\" src=\"svx/res/caution_11x16.png\" width=\"0.1665in\" height=\"0.1146in\"><alt id=\"alt_id0821200912435090\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id0821200912435090\" src=\"svx/res/caution_11x16.png\" width=\"0.1665in\" height=\"0.1146in\"><alt id=\"alt_id0821200912435090\">Piktograma</alt></image>"
#: digital_signatures.xhp
msgctxt ""
@@ -7718,7 +7718,7 @@ msgctxt ""
"par_id0821200912504233\n"
"help.text"
msgid "The signature is invalid."
-msgstr ""
+msgstr "Parašas negalioja."
#: digital_signatures.xhp
msgctxt ""
@@ -7726,7 +7726,7 @@ msgctxt ""
"hd_id0821200910191787\n"
"help.text"
msgid "Signatures and software versions"
-msgstr ""
+msgstr "Parašai ir programos versijos"
#: digital_signatures.xhp
msgctxt ""
@@ -7734,7 +7734,7 @@ msgctxt ""
"par_id0821200910191747\n"
"help.text"
msgid "The signing of contents got changed with OpenOffice.org 3.2 and StarOffice 9.2. Now all contents of the files, except the signature file itself (META-INF/documentsignatures.xml) are signed."
-msgstr ""
+msgstr "Nuo „OpenOffice.org 3.2“ ir „StarOffice 9.2“ programų versijų pasikeitė dokumentų pasirašymo būdas. Dabar parašas pritaikomas visų failų turiniui, išskyrus patį parašo failą (META-INF/documentsignatures.xml)."
#: digital_signatures.xhp
msgctxt ""
@@ -7742,7 +7742,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 "Jei pasirašysite dokumentą „OpenOffice.org 3.2“ arba „StarOffice 9.2“ ar naujesnių versijų programomis, o vėliau dokumentą atversite senesnė versijos programa, parašai bus laikomi negaliojančiais. Jei dokumentą pasirašysite senesnės versijos programa, o atversite nauja, bus pranešama, kad pasirašytos ne visos dokumento dalys."
#: digital_signatures.xhp
msgctxt ""
@@ -7750,7 +7750,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 "Jei pasirašysite OOXML formato dokumentą, visada bus rodoma, jog pasirašytos ne visos dokumento dalys. OOXML failų metaduomenims parašai nėra taikomi, kad būtų išlaikytas suderinamumas su „Microsoft Office“ programomis."
#: digital_signatures.xhp
msgctxt ""
@@ -7758,7 +7758,7 @@ msgctxt ""
"par_id0821200910191776\n"
"help.text"
msgid "When you sign a PDF document, then this marking is not used. Signing only parts of the document is simply an invalid signature."
-msgstr ""
+msgstr "Pasirašant PDF formato dokumentus toks atvejis negalimas. Dalies dokumento dalių pasirašymas tiesiog reikštų negaliojantį skaitmeninį parašą."
#: digital_signatures.xhp
msgctxt ""
@@ -7766,7 +7766,7 @@ msgctxt ""
"par_id0821200910191777\n"
"help.text"
msgid "Signing other document formats is not supported at the moment."
-msgstr ""
+msgstr "Kitokių formatų dokumentų skaitmeniniu būdu pasirašyti kol kas negalima."
#: digital_signatures.xhp
msgctxt ""
@@ -7774,7 +7774,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 ""
+msgstr "Kartais atvėrus ODF formato dokumentą būsenos juostoje ir skaitmeninių parašų dialogo lange gali būti rodoma piktograma, žyminti, jog dokumentas tik dalinai pasirašytas. Tokia būsena reiškia, kad parašas ir liudijimas galioja, bet dokumentas buvo sukurtas programomis, senesnėmis nei „OpenOffice.org 3.2“ arba „StarOffice 9.2“. Programose, senesnėse nei „OpenOffice.org 3.0“ ar „StarOffice 9.0“ dokumento parašas buvo taikomas tik pagrindiniam dokumento turiniui, paveikslams ir įterptiesiems objektams, o likęs turinys, pavyzdžiui, makrokomandos, nebuvo pasirašomas. Nuo „OpenOffice.org 3.0“ ir „StarOffice 9.0“ programų versijų skaitmeniniai parašai pradėti taikyti visam turiniui, įskaitant makrokomandas, tačiau dokumento MIME tipo informacija ir aplanko META-INF turinys vis dar nebuvo pasirašomi. Pradedant „OpenOffice.org 3.2“ ir „StarOffice 9.2“ programų versijomis, taip pat visose „LibreOffice“ versijose visas dokumento turinys, išskyrus patį parašo failą (META-INF/documentsignatures.xml), yra pasirašomas skaitmeniniu parašu."
#: digital_signatures.xhp
msgctxt ""
@@ -7782,7 +7782,7 @@ msgctxt ""
"hd_id9354228\n"
"help.text"
msgid "Security Warnings"
-msgstr ""
+msgstr "Saugumo įspėjimai"
#: digital_signatures.xhp
msgctxt ""
@@ -7790,7 +7790,7 @@ msgctxt ""
"par_id2372508\n"
"help.text"
msgid "When you receive a signed document, and the software reports that the signature is valid, this does not mean that you can be absolutely sure that the document is the same that the sender has sent. Signing documents with software certificates is not a perfectly secure method. Numerous ways are possible to circumvent the security features."
-msgstr ""
+msgstr "Jei gavote skaitmeniniu būdu pasirašytą dokumentą ir programoje pranešama, jog parašas galioja, tai dar nereiškia, kad tai tikrai yra būtent tas dokumentas, kurį siuntėjas išsiuntė. Dokumentų pasirašymas skaitmeniniu būdu nėra visiškai saugus metodas. Yra daug būdų šiai saugumo priemonei apeiti."
#: digital_signatures.xhp
msgctxt ""
@@ -7798,7 +7798,7 @@ msgctxt ""
"par_id7953123\n"
"help.text"
msgid "Example: Think about someone who wants to camouflage his identity to be a sender from your bank. He can easily get a certificate using a false name, then send you any signed e-mail pretending he is working for your bank. You will get that e-mail, and the e-mail or the document within has the \"valid signed\" icon."
-msgstr ""
+msgstr "Pavyzdys: Tarkime, kažkas nori apsimesti, jog yra banko, kurio paslaugomis naudojatės, darbuotojas. Toks asmuo gali gauti liudijimą pasinaudojęs svetimu vardu, tada atsiųsti jums el. laišką teigdamas, jog yra banko darbuotojas. Tokio laiško prie jo pridėto dokumento parašai bus laikomi galiojančiais."
#: digital_signatures.xhp
msgctxt ""
@@ -7806,7 +7806,7 @@ msgctxt ""
"par_id6195257\n"
"help.text"
msgid "Do not trust the icon. Inspect and verify the certificates."
-msgstr ""
+msgstr "Nepasitikėkite tuo, ką rodo piktograma. Visuomet tikrinkite liudijimus."
#: digital_signatures.xhp
msgctxt ""
@@ -7814,7 +7814,7 @@ msgctxt ""
"par_id8635517\n"
"help.text"
msgid "The validation of a signature is not a legally binding guarantee of any kind."
-msgstr ""
+msgstr "Parašo tikrinimas teisiškai nesuteikia jokių garantijų dėl duomenų tikrumo."
#: digital_signatures.xhp
msgctxt ""
@@ -7822,7 +7822,7 @@ msgctxt ""
"par_id6075624\n"
"help.text"
msgid "On Windows operating systems, the Windows features of validating a signature are used. On Solaris and Linux systems, files that are supplied by Thunderbird, Mozilla or Firefox are used. You must ensure that the files that are in use within your system are really the original files that were supplied by the original developers. For malevolent intruders, there are numerous ways to replace original files with other files that they supply."
-msgstr ""
+msgstr "„Windows“ operacinėse sistemose skaitmeninių parašų tikrinimui naudojamos pačios operacinės sistemos funkcijos. „Solaris ir „Linux“ sistemose naudojami „Thunderbird“, „Mozilla“ arba „Firefox“ failai. Turite užtikrinti, kad šie sistemos naudojami failai iš tikrųjų yra tikrieji, sukurti atitinkamos programinės įrangos kūrėjų. Kas nors įsilaužęs jūsų kompiuterį šiuos failus galėtų pakeisti kitais."
#: digital_signatures.xhp
msgctxt ""
@@ -7830,7 +7830,7 @@ msgctxt ""
"par_id6819971\n"
"help.text"
msgid "The messages about validation of a signature that you see in %PRODUCTNAME are the messages that the validation files return. The %PRODUCTNAME software has no way to ensure that the messages reflect the true status of any certificate. The %PRODUCTNAME software only displays the messages that other files that are not under control of %PRODUCTNAME report. There is no legal responsibility of %PRODUCTNAME that the displayed messages reflect the true status of a digital signature."
-msgstr ""
+msgstr "Parašo būsena, kuri rodoma „%PRODUCTNAME“ programose, priklauso nuo to, koks atsakymas buvo gautas iš sistemoje naudojamų tikrinimo failų. Pačiame „%PRODUCTNAME“ programų pakete nėra galimybių patikrinti, ar rodoma būsena iš tiesų atitinka liudijimo būseną. „%PRODUCTNAME“ tik parodo informaciją, kuri gaunama iš kitų failų, niekaip nesusijusių su „%PRODUCTNAME“. „%PRODUCTNAME“ ir jos kūrėjai negali būti laikomi atsakingais už tai, ar programoje rodoma parašo būsena atitinka tikrąją skaitmeninio parašo būseną."
#: digital_signatures.xhp
msgctxt ""
@@ -7838,7 +7838,7 @@ msgctxt ""
"par_id3204443\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\" name=\"wiki.documentfoundation.org: How to use digital Signatures\">English Wiki page on digital signatures</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\" name=\"wiki.documentfoundation.org: How to use digital Signatures\">Vikio straipsnis apie skaitmeninius parašus (anglų k.)</link>"
#: digital_signatures.xhp
msgctxt ""
@@ -7846,7 +7846,7 @@ msgctxt ""
"par_id486465\n"
"help.text"
msgid "<link href=\"text/shared/guide/digitalsign_send.xhp\">Applying digital signatures</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/digitalsign_send.xhp\">Skaitmeninių parašų taikymas</link>"
#: digital_signatures.xhp
msgctxt ""
@@ -7854,7 +7854,7 @@ msgctxt ""
"par_id3448591\n"
"help.text"
msgid "<link href=\"text/shared/guide/digitalsign_receive.xhp\">Opening a document using WebDAV over HTTPS</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/digitalsign_receive.xhp\">Dokumentų atvėrimas naudojant WebDAV protokolą HTTPS ryšiu</link>"
#: digitalsign_receive.xhp
msgctxt ""
@@ -7862,7 +7862,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Opening a Document Using WebDAV over HTTPS"
-msgstr ""
+msgstr "Dokumentų atvėrimas iš WebDAV serverio naudojant HTTPS protokolą"
#: digitalsign_receive.xhp
msgctxt ""
@@ -7870,7 +7870,7 @@ msgctxt ""
"bm_id7430951\n"
"help.text"
msgid "<bookmark_value>opening;documents on WebDAV server</bookmark_value><bookmark_value>WebDAV over HTTPS</bookmark_value><bookmark_value>digital signatures;WebDAV over HTTPS</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>atvėrimas;dokumentų iš WebDAV serverio</bookmark_value><bookmark_value>WebDAV naudojant HTTPS protokolą</bookmark_value><bookmark_value>skaitmeniniai parašai;WebDAV naudojant HTTPS protokolą</bookmark_value>"
#: digitalsign_receive.xhp
msgctxt ""
@@ -7878,7 +7878,7 @@ msgctxt ""
"hd_id4989165\n"
"help.text"
msgid "<variable id=\"digitalsign_receive\"><link href=\"text/shared/guide/digitalsign_receive.xhp\">Opening a Document Using WebDAV over HTTPS</link></variable>"
-msgstr ""
+msgstr "<variable id=\"digitalsign_receive\"><link href=\"text/shared/guide/digitalsign_receive.xhp\">Dokumentų atvėrimas iš WebDAV serverio naudojant HTTPS protokolą</link></variable>"
#: digitalsign_receive.xhp
msgctxt ""
@@ -7886,7 +7886,7 @@ msgctxt ""
"par_id1399578\n"
"help.text"
msgid "In %PRODUCTNAME, you can open and save documents that are stored on a WebDAV server, using the secure HTTPS protocol."
-msgstr ""
+msgstr "„%PRODUCTNAME“ programomis galima atverti ir įrašyti dokumentus, laikomus „WebDAV“ serveryje, naudojant saugų HTTPS protokolą."
#: digitalsign_receive.xhp
msgctxt ""
@@ -7894,7 +7894,7 @@ msgctxt ""
"par_id598162\n"
"help.text"
msgid "You must use the %PRODUCTNAME file dialogs to use WebDAV over HTTPS."
-msgstr ""
+msgstr "Kad būtų galima kreiptis į „WebDAV“ serverį naudojant HTTPS protokolą, turi būti įgalinti „%PRODUCTNAME“ dialogo langai."
#: digitalsign_receive.xhp
msgctxt ""
@@ -7902,7 +7902,7 @@ msgctxt ""
"par_id7309793\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <item type=\"menuitem\">%PRODUCTNAME - General</item>. Ensure that <emph>Use %PRODUCTNAME dialogs</emph> is enabled. Click <emph>OK</emph> to close the dialog box."
-msgstr ""
+msgstr "Pasirinkite <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME → Parinktys</caseinline><defaultinline>Priemonės → Parinktys</defaultinline></switchinline> → <item type=\"menuitem\">%PRODUCTNAME → Bendrosios parinktys</item>. Įsitikinkite, kad pažymėta parinktis <emph>Naudoti „%PRODUCTNAME“ langus</emph>. Spustelėkite mygtuką <emph>Gerai</emph>, kad užvertumėte parinkčių langą."
#: digitalsign_receive.xhp
msgctxt ""
@@ -7910,7 +7910,7 @@ msgctxt ""
"par_id1227759\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Open</item>."
-msgstr ""
+msgstr "Pasirinkite <item type=\"menuitem\">Failas → Atverti</item>."
#: digitalsign_receive.xhp
msgctxt ""
@@ -7918,7 +7918,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 ""
+msgstr "<emph>Failo vardo</emph> laukelyje įveskite „WebDAV“ aplanko adresą. Pavyzdžiui, įvedus <item type=\"literal\">https://192.168.1.1/tinklo_aplankas</item> bus užmegztas saugus ryšys su „WebDAV“ serveriu, kurio IP adresas yra 192.168.1.1, ir parodytas aplanko <item type=\"literal\">tinklo_aplankas</item> turinys."
#: digitalsign_receive.xhp
msgctxt ""
@@ -7926,7 +7926,7 @@ msgctxt ""
"par_id1388592\n"
"help.text"
msgid "The first time you connect to a WebDAV server, you see the \"<emph>Website Certified by an Unknown Authority</emph>\" dialog."
-msgstr ""
+msgstr "Pirmą kartą prisijungus prie „WebDAV“ serverio parodomas pranešimas <emph>Svetainės liudijimas išduotas nežinomos įstaigos</emph>."
#: digitalsign_receive.xhp
msgctxt ""
@@ -7934,7 +7934,7 @@ msgctxt ""
"par_id343943\n"
"help.text"
msgid "You should click the <emph>Examine Certificate</emph> button and examine the certificate."
-msgstr ""
+msgstr "Turėtumėte peržiūrėti <emph>liudijimo informaciją</emph> spustelėję atitinkamą mygtuką."
#: digitalsign_receive.xhp
msgctxt ""
@@ -7942,7 +7942,7 @@ msgctxt ""
"par_id8726767\n"
"help.text"
msgid "If you accept the certificate, choose \"<emph>Accept this certificate temporarily for this session</emph>\" and click <emph>OK</emph>. Now you can open and save files from the WebDAV server without further questions, until you exit %PRODUCTNAME."
-msgstr ""
+msgstr "Jei liudijimas patikimas, pasirinkite <emph>Laikinai priimti liudijimą šiam seansui</emph> ir spustelėkite <emph>Gerai</emph>. Tuomet jau bus galima atverti ir įrašyti failus „WebDAV“ serveryje, ir jokie klausimai nebus užduodami, kol nebaigsite darbo su „%PRODUCTNAME“ programa."
#: digitalsign_receive.xhp
msgctxt ""
@@ -7950,7 +7950,7 @@ msgctxt ""
"par_id691549\n"
"help.text"
msgid "If you do not trust the certificate, click <emph>Cancel</emph>."
-msgstr ""
+msgstr "Jei liudijimu nepasitikite, spustelėkite <emph>Atsisakyti</emph>."
#: digitalsign_receive.xhp
msgctxt ""
@@ -7958,7 +7958,7 @@ msgctxt ""
"par_id9909665\n"
"help.text"
msgid "If you did accept the certificate, you can now select the file name or file names you want to open and click <emph>Open</emph>."
-msgstr ""
+msgstr "Jei liudijimą priėmėte, dabar galima pažymėti norimą failą ar failus ir spustelėti mygtuką <emph>Atverti</emph>."
#: digitalsign_receive.xhp
msgctxt ""
@@ -7966,7 +7966,7 @@ msgctxt ""
"par_id3236182\n"
"help.text"
msgid "If there is a mismatch of the domain name given in the certificate and the domain name you entered in the file dialog, then you see a dialog that allows you to choose from any of the following options:"
-msgstr ""
+msgstr "Jei liudijime nurodytas srities vardas nesutaps su srities vardu, įvestu failo vardo laukelyje, bus atvertas dialogo langas, kuriame bus galima pasirinkti vieną iš šių veiksmų:"
#: digitalsign_receive.xhp
msgctxt ""
@@ -7974,7 +7974,7 @@ msgctxt ""
"par_id1251258\n"
"help.text"
msgid "<emph>View Certificate</emph> - <ahelp hid=\".\">Opens the View Certificate dialog.</ahelp>"
-msgstr ""
+msgstr "<emph>Peržiūrėti liudijimą</emph>: <ahelp hid=\".\">Atveriamas liudijimo informacijos dialogo langas.</ahelp>"
#: digitalsign_receive.xhp
msgctxt ""
@@ -7982,7 +7982,7 @@ msgctxt ""
"par_id8111819\n"
"help.text"
msgid "<emph>Continue</emph> - <ahelp hid=\".\">If you are sure both domains are the same, click the Continue button.</ahelp>"
-msgstr ""
+msgstr "<emph>Tęsti</emph>: <ahelp hid=\".\">Jei tikrai žinote, kad abu vardai reiškia tą pačią sritį, spustelėkite mygtuką „Tęsti“.</ahelp>"
#: digitalsign_receive.xhp
msgctxt ""
@@ -7990,7 +7990,7 @@ msgctxt ""
"par_id9116794\n"
"help.text"
msgid "<emph>Cancel Connection</emph> - Cancels the connection."
-msgstr ""
+msgstr "<emph>Nutraukti ryšį</emph>: Ryšys nutraukiamas."
#: digitalsign_receive.xhp
msgctxt ""
@@ -7998,7 +7998,7 @@ msgctxt ""
"par_id4381847\n"
"help.text"
msgid "If you click <emph>Continue</emph>, you may see a dialog that asks you to enter your user name and password."
-msgstr ""
+msgstr "Jei spustelėsite mygtuką <emph>Tęsti</emph>, reikės įvesti naudotojo vardą ir slaptažodį."
#: digitalsign_receive.xhp
msgctxt ""
@@ -8006,7 +8006,7 @@ msgctxt ""
"par_id1336710\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter your user name to log on to the WebDAV server.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Įveskite prisijungimui prie „WebDAV“ serverio skirtą naudotojo vardą.</ahelp>"
#: digitalsign_receive.xhp
msgctxt ""
@@ -8014,7 +8014,7 @@ msgctxt ""
"par_id1221655\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter your password.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Įveskite slaptažodį.</ahelp>"
#: digitalsign_receive.xhp
msgctxt ""
@@ -8022,7 +8022,7 @@ msgctxt ""
"par_id3397320\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">If you enable <emph>Remember password till end of session</emph>, your password will be remembered for subsequent WebDAV connections until you exit %PRODUCTNAME.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Jei pažymėsite parinktį <emph>Prisiminti slaptažodį iki seanso pabaigos</emph>, slaptažodžio nebus prašoma kitiems ryšiams su tuo pačiu „WebDAV“ serveriu kol nebaigsite darbo su „%PRODUCTNAME“ programa.</ahelp>"
#: digitalsign_receive.xhp
msgctxt ""
@@ -8030,7 +8030,7 @@ msgctxt ""
"par_id3204443\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\" name=\"wiki.documentfoundation.org How to use digital Signatures\">English Wiki page on digital signatures</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\" name=\"wiki.documentfoundation.org How to use digital Signatures\">Vikio straipsnis apie skaitmeninius parašus (anglų k.)</link>"
#: digitalsign_receive.xhp
msgctxt ""
@@ -8038,7 +8038,7 @@ msgctxt ""
"par_id2182378\n"
"help.text"
msgid "<link href=\"text/shared/guide/digital_signatures.xhp\">About digital signatures</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/digital_signatures.xhp\">Apie skaitmeninius parašus</link>"
#: digitalsign_send.xhp
msgctxt ""
@@ -8046,7 +8046,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Applying Digital Signatures"
-msgstr ""
+msgstr "Skaitmeninių parašų taikymas"
#: digitalsign_send.xhp
msgctxt ""
@@ -8054,7 +8054,7 @@ msgctxt ""
"bm_id7430951\n"
"help.text"
msgid "<bookmark_value>signing documents with digital signatures</bookmark_value> <bookmark_value>digital signatures;getting/managing/applying</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumentų pasirašymas skaitmeniniais parašais</bookmark_value> <bookmark_value>skaitmeniniai parašai;gavimas, tvarkymas, taikymas</bookmark_value>"
#: digitalsign_send.xhp
msgctxt ""
@@ -8062,7 +8062,7 @@ msgctxt ""
"hd_id344248\n"
"help.text"
msgid "<variable id=\"digitalsign_send\"><link href=\"text/shared/guide/digitalsign_send.xhp\">Applying Digital Signatures</link></variable>"
-msgstr ""
+msgstr "<variable id=\"digitalsign_send\"><link href=\"text/shared/guide/digitalsign_send.xhp\">Skaitmeninių parašų taikymas</link></variable>"
#: digitalsign_send.xhp
msgctxt ""
@@ -8070,7 +8070,7 @@ msgctxt ""
"par_idN1063C\n"
"help.text"
msgid "Getting a Certificate"
-msgstr ""
+msgstr "Liudijimo gavimas"
#: digitalsign_send.xhp
msgctxt ""
@@ -8078,7 +8078,7 @@ msgctxt ""
"par_idN10640\n"
"help.text"
msgid "You can get a certificate from a certification authority. No matter if you choose a governmental institution or a private company it is common to be charged for this service, for example when they certify your identity. Few other authorities issue certificates free of costs, like the Open Source Project <link href=\"https://www.CAcert.org/\"><emph>CAcert</emph></link> which is based on the well-known and reliable Web of Trust model and is of growing popularity."
-msgstr ""
+msgstr "Liudijimus išduoda liudijimų įstaigos. Tai gali būti valstybinė arba privati įstaiga. Dažniausiai už šią paslaugą imamas mokestis. Yra įstaigų, išduodančių liudijimus nemokamai: pavyzdžiui, atvirasis projektas <link href=\"https://www.CAcert.org/\"><emph>CAcert</emph></link>, paremtas patikimu „Web of Trust“ (pasitikėjimo tinklo) modeliu ir vis populiarėjantis."
#: digitalsign_send.xhp
msgctxt ""
@@ -8086,7 +8086,7 @@ msgctxt ""
"par_idN106F6\n"
"help.text"
msgid "Managing your Certificates"
-msgstr ""
+msgstr "Liudijimų tvarkymas"
#: digitalsign_send.xhp
msgctxt ""
@@ -8094,7 +8094,7 @@ msgctxt ""
"par_idN1071D\n"
"help.text"
msgid "If you are using Linux, macOS or Solaris, you must install a recent version of Thunderbird or Firefox. %PRODUCTNAME will then access their certificate storage."
-msgstr ""
+msgstr "Jei naudojate „Linux“, „macOS“ ar „Solaris“ operacinę sistemą, reikės įdiegti naujos versijos „Thunderbird“ arba „Firefox“ programas. „%PRODUCTNAME“ naudos šių programų liudijimų saugyklą."
#: digitalsign_send.xhp
msgctxt ""
@@ -8102,7 +8102,7 @@ msgctxt ""
"par_idN10720\n"
"help.text"
msgid "If you have created different profiles in Thunderbird or Firefox and you want to use certificates from one specific user profile, select the profile in <emph>Tools - Options - Security - Certificate Path</emph>. Alternatively, you can set the environment variable MOZILLA_CERTIFICATE_FOLDER to point to the folder containing that profile."
-msgstr ""
+msgstr "Jei „Thunderbird“ ar „Firefox“ programose esate sukūrę keletą naudotojo profilių, nurodykite tinkamą profilį lange <emph>Priemonės → Parinktys → Saugumas → Liudijimo adresas</emph>. Arba galima aplinkos kintamojo MOZILLA_CERTIFICATE_FOLDER reikšme nustatyti aplanką, kuriame yra reikiamas profilis."
#: digitalsign_send.xhp
msgctxt ""
@@ -8110,7 +8110,7 @@ msgctxt ""
"par_id944242\n"
"help.text"
msgid "Open your web browser’s preferences, select the <emph>Advanced</emph> section, click on the <emph>Certificates</emph> tab, and then choose <emph>View Certificates</emph>. The <emph>Certificate Manager</emph> dialog will appear."
-msgstr ""
+msgstr "Atverkite naršyklės nuostatų langą, <emph>Privatumo ir saugumo</emph> skiltyje raskite <emph>liudijimų</emph> nuostatų grupę ir spustelėkite mygtuką <emph>Peržiūrėti liudijimus</emph>. Bus atvertas <emph>liudijimų tvarkytuvės</emph> dialogo langas."
#: digitalsign_send.xhp
msgctxt ""
@@ -8118,7 +8118,7 @@ msgctxt ""
"par_id6452223\n"
"help.text"
msgid "Import your new root certificate, then select and edit the certificate. Enable the root certificate to be trusted at least for web and email access. This ensures that the certificate can sign your documents. You may edit any intermediate certificate in the same way, but it is not mandatory for signing documents."
-msgstr ""
+msgstr "Importuokite naująjį pagrindinį liudijimą, tada jį pažymėkite ir atverkite liudijimo pasitikėjimo taisymo langą. Įgalinkite nuostatas, leidžiančias liudijimu patvirtinti svetainių ir el. pašto naudotojų tapatybę. Tik šitaip liudijimą bus galima naudoti dokumentams pasirašyti. Tas pačias parinktis galima įgalinti ir tarpiniams liudijimams, bet tai nėra būtina dokumentų pasirašymui."
#: digitalsign_send.xhp
msgctxt ""
@@ -8126,7 +8126,7 @@ msgctxt ""
"par_id6486098\n"
"help.text"
msgid "When you have edited the new certificates, restart %PRODUCTNAME."
-msgstr ""
+msgstr "Parinkę naujojo liudijimo nuostatas, paleiskite „%PRODUCTNAME“ iš naujo."
#: digitalsign_send.xhp
msgctxt ""
@@ -8134,7 +8134,7 @@ msgctxt ""
"par_id921519766138177\n"
"help.text"
msgid "On Windows systems, %PRODUCTNAME will access the system certificate storage."
-msgstr ""
+msgstr "„Windows“ operacinėse sistemose „%PRODUCTNAME“ naudoja sistemos liudijimų saugyklą."
#: digitalsign_send.xhp
msgctxt ""
@@ -8142,7 +8142,7 @@ msgctxt ""
"par_id461519763996407\n"
"help.text"
msgid "Your private key for the digital signature will usually be generated and securely stored by Windows as part of the signature-issuance process. Once the issuing Certificate Authority is satisfied that your computer produced the private key and you have satisfied any other identification requirements, the corresponding public key is signed by the Certificate Authority. For personal keys obtained over the Internet, the private key is generated by your browser and it is not shared with the Certificate Authority."
-msgstr ""
+msgstr "Skaitmeninio parašo privatusis raktas paprastai sugeneruojamas ir įrašomas „Windows“ sistemoje parašo išdavimo metu. Kai liudijimą išduodanti įstaiga patikrina, jog kompiuteryje buvo sukurtas privatusis raktas, o taip pat atlikote kitus reikalaujamus tapatybės nustatymo veiksmus, privatųjį raktą atitinkantis viešasis raktas yra pasirašomas liudijimų įstaigos. Jei asmeninis raktas atsisiunčiamas internetu, privatųjį raktą sugeneruoja interneto naršyklė ir toks raktas nesiunčiamas liudijimų įstaigai."
#: digitalsign_send.xhp
msgctxt ""
@@ -8150,7 +8150,7 @@ msgctxt ""
"par_id181519764008387\n"
"help.text"
msgid "If a private key is received by other means or you transfer it from another computer, you can install it on your Windows PC by double-clicking on the private key certificate and providing any required password. This private key may be known to others (such as an organizational or governmental security administration) depending on how it was issued to you."
-msgstr ""
+msgstr "Jei privatųjį raktą gavote kitais būdais arba perkėlėte jį iš kito kompiuterio, „Windows“ kompiuteryje raktą galima įdiegti dukart spustelėjus liudijimo failo piktogramą ir įvedus slaptažodį, jei to prašoma. Priklausomai nuo to, kaip privatusis raktas buvo išduotas, jis gali būti žinomas kitoms šalims (pavyzdžiui, valstybės saugumo tarnyboms)."
#: digitalsign_send.xhp
msgctxt ""
@@ -8158,7 +8158,7 @@ msgctxt ""
"par_id21519764016831\n"
"help.text"
msgid "Public keys of other people used to verify document digital signatures, or encrypt documents for their eyes only, are usually stored in your system with digital certificate-management applications. In some cases you will need to manage those public-key certificates yourself."
-msgstr ""
+msgstr "Kitų asmenų viešieji raktai, naudojami dokumentų skaitmeniniams parašams tikrinti ar dokumentams užšifruoti, paprastai sistemoje saugomi kartu su liudijimų tvarkymo programomis. Kai kuriais atvejais viešųjų raktų liudijimus gali tekti tvarkyti patiems."
#: digitalsign_send.xhp
msgctxt ""
@@ -8166,7 +8166,7 @@ msgctxt ""
"par_id351519764024243\n"
"help.text"
msgid "The general management of public and private keys on your PC will vary depending on the version of Windows you are operating. For more information, use the \"Help and Support\" topic of your Windows version and search for \"digital signature\"."
-msgstr ""
+msgstr "Viešųjų ir privačiųjų raktų tvarkymo būdai skiriasi priklausomai nuo naudojamos „Windows“ operacinės sistemos versijos. Daugiau informacijos galima rasti operacinės sistemos žinyne, paieškojus temos apie skaitmeninius parašus."
#: digitalsign_send.xhp
msgctxt ""
@@ -8174,7 +8174,7 @@ msgctxt ""
"par_idN10681\n"
"help.text"
msgid "Signing a document"
-msgstr ""
+msgstr "Dokumento pasirašymas"
#: digitalsign_send.xhp
msgctxt ""
@@ -8182,7 +8182,7 @@ msgctxt ""
"par_idN10688\n"
"help.text"
msgid "Choose <emph>File - Digital Signatures - Digital Signatures</emph>."
-msgstr ""
+msgstr "Pasirinkite <emph>Failas → Skaitmeniniai parašai → Skaitmeniniai parašai</emph>."
#: digitalsign_send.xhp
msgctxt ""
@@ -8190,7 +8190,7 @@ msgctxt ""
"par_idN10690\n"
"help.text"
msgid "A message box advises you to save the document. Click <emph>Yes</emph> to save the file."
-msgstr ""
+msgstr "Programa paprašys įrašyti dokumentą. Spustelėkite mygtuką <emph>Taip</emph>, kad įrašytumėte dokumentą."
#: digitalsign_send.xhp
msgctxt ""
@@ -8198,7 +8198,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "After saving, you see the <link href=\"text/shared/01/digitalsignatures.xhp\"><emph>Digital Signatures</emph></link> dialog. Click <emph>Add</emph> to add a public key to the document."
-msgstr ""
+msgstr "Įrašius dokumentą bus atvertas <link href=\"text/shared/01/digitalsignatures.xhp\"><emph>skaitmeninių parašų</emph></link> dialogo langas. Spustelėkite <emph>Pridėti</emph>, kad pridėtumėte viešąjį raktą į dokumentą."
#: digitalsign_send.xhp
msgctxt ""
@@ -8206,7 +8206,7 @@ msgctxt ""
"par_idN106AE\n"
"help.text"
msgid "In the <link href=\"text/shared/01/selectcertificate.xhp\"><emph>Select Certificate</emph></link> dialog, select your certificate and click <emph>OK</emph>."
-msgstr ""
+msgstr "<link href=\"text/shared/01/selectcertificate.xhp\"><emph>Liudijimo parinkimo</emph></link> dialogo lange parinkite reikiamą liudijimą ir spustelėkite mygtuką <emph>Gerai</emph>."
#: digitalsign_send.xhp
msgctxt ""
@@ -8214,7 +8214,7 @@ msgctxt ""
"par_idN106C0\n"
"help.text"
msgid "You see again the <emph>Digital Signatures</emph> dialog, where you can add more certificates if you want. Click <emph>OK</emph> to add the public key to the saved file."
-msgstr ""
+msgstr "Vėl pamatysite <emph>skaitmeninių parašų</emph> dialogo langą, kuriame, jei reikia, bus galima pridėti daugiau liudijimų. Spustelėkite <emph>Gerai</emph>, kad pridėtumėte viešąjį raktą į įrašytą failą."
#: digitalsign_send.xhp
msgctxt ""
@@ -8222,7 +8222,7 @@ msgctxt ""
"par_idN106C3\n"
"help.text"
msgid "A signed document shows an icon<image id=\"img_id262764\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id262764\">Icon</alt></image> in the status bar. You can double-click the icon in the status bar to view the certificate."
-msgstr ""
+msgstr "Pasirašyto dokumento būsenos juostoje rodoma piktograma<image id=\"img_id262764\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id262764\">Piktograma</alt></image>. Dukart ją spustelėjus galima peržiūrėti liudijimą."
#: digitalsign_send.xhp
msgctxt ""
@@ -8230,7 +8230,7 @@ msgctxt ""
"par_id2008200911381426\n"
"help.text"
msgid "The result of the signature validation is displayed in the status bar and within the <emph>Digital Signature</emph> 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 <emph>invalid</emph>."
-msgstr ""
+msgstr "Parašo patikros rezultatas rodomas būsenos juostoje ir <emph>skaitmeninių parašų</emph> dialogo lange. Viename ODF dokumente gali būti keletas dokumentų ir makrokomandų parašų. Jei bent vienas skaitmeninis parašas negalioja, tuomet toks pat rezultatas rodomas ir likusiems dokumento parašams, t. y. jei dokumente yra dešimt galiojančių skaitmeninių parašų ir vienas negaliojantis, visi dokumento parašai laikomi <emph>negaliojančiais</emph> ir taip rodoma būsenos juostoje bei dialogo lange."
#: digitalsign_send.xhp
msgctxt ""
@@ -8238,7 +8238,7 @@ msgctxt ""
"par_idN106E0\n"
"help.text"
msgid "Signing the macros inside a document"
-msgstr ""
+msgstr "Dokumento makrokomandų pasirašymas"
#: digitalsign_send.xhp
msgctxt ""
@@ -8246,7 +8246,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 ""
+msgstr "Paprastai makrokomandos yra dokumento dalis. Jei pasirašote dokumentą, dokumente esančios makrokomandos pasirašomos automatiškai. Vis dėlto, jei norite pasirašyti tik makrokomandas, bet ne visą dokumentą, atlikite šiuos veiksmus:"
#: digitalsign_send.xhp
msgctxt ""
@@ -8254,7 +8254,7 @@ msgctxt ""
"par_idN106EA\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Digital Signature</emph>."
-msgstr ""
+msgstr "Pasirinkite <emph>Priemonės → Makrokomandos → Skaitmeninis parašas</emph>."
#: digitalsign_send.xhp
msgctxt ""
@@ -8262,7 +8262,7 @@ msgctxt ""
"par_idN106F2\n"
"help.text"
msgid "Apply the signature as described above for documents."
-msgstr ""
+msgstr "Pritaikykite parašą taip, kaip aprašyta aukščiau dokumentų pasirašymo atveju."
#: digitalsign_send.xhp
msgctxt ""
@@ -8270,7 +8270,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.<br/>You can double-click the icon in the status bar to view the certificate."
-msgstr ""
+msgstr "Kai atversite „Basic IDE“ programavimo aplinką, kurioje bus pasirašytų makrokomandų, būsenos juostoje bus rodoma piktograma<image id=\"img_id9252296\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id9252296\">Piktograma</alt></image>.<br/>Dukart ją spustelėjus galima peržiūrėti liudijimą."
#: digitalsign_send.xhp
msgctxt ""
@@ -8278,7 +8278,7 @@ msgctxt ""
"par_id5734733\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to open the <emph>View Certificate</emph> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Spustelėjus atveriamas <emph>liudijimo peržiūros</emph> dialogo langas.</ahelp>"
#: digitalsign_send.xhp
msgctxt ""
@@ -8286,7 +8286,7 @@ msgctxt ""
"par_id561540\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose this setting to accept the certificate until you exit %PRODUCTNAME.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Šia nuostata liudijimas priimamas laikotarpiui, kol baigsite darbą su „%PRODUCTNAME“ programa.</ahelp>"
#: digitalsign_send.xhp
msgctxt ""
@@ -8294,7 +8294,7 @@ msgctxt ""
"par_id7705618\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose this setting to cancel the connection.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Šia nuostata ryšys nutraukiamas.</ahelp>"
#: digitalsign_send.xhp
msgctxt ""
@@ -8302,7 +8302,7 @@ msgctxt ""
"par_id3204443\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\">English Wiki page on digital signatures</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\">Vikio straipsnis apie skaitmeninius parašus (anglų k.)</link>"
#: digitalsign_send.xhp
msgctxt ""
@@ -8310,7 +8310,7 @@ msgctxt ""
"par_id5166173\n"
"help.text"
msgid "<link href=\"text/shared/guide/digital_signatures.xhp\">About digital signatures</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/digital_signatures.xhp\">Apie skaitmeninius parašus</link>"
#: doc_autosave.xhp
msgctxt ""
@@ -9526,7 +9526,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Sending Documents as E-mail"
-msgstr ""
+msgstr "Dokumentų siuntimas el. paštu"
#: email.xhp
msgctxt ""
@@ -9534,7 +9534,7 @@ msgctxt ""
"bm_id3153345\n"
"help.text"
msgid "<bookmark_value>documents; sending as e-mail</bookmark_value><bookmark_value>sending; documents as e-mail</bookmark_value><bookmark_value>e-mail attachments</bookmark_value><bookmark_value>files; sending as e-mail</bookmark_value><bookmark_value>text documents;sending as e-mail</bookmark_value><bookmark_value>spreadsheets; sending as e-mail</bookmark_value><bookmark_value>drawings; sending as e-mail</bookmark_value><bookmark_value>presentations; sending as e-mail</bookmark_value><bookmark_value>attachments in e-mails</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumentai; siuntimas el. paštu</bookmark_value><bookmark_value>siuntimas; dokumentų el. paštu</bookmark_value><bookmark_value>el. laiško priedai</bookmark_value><bookmark_value>failai; siuntimas el. paštu</bookmark_value><bookmark_value>teksto dokumentai;siuntimas el. paštu</bookmark_value><bookmark_value>skaičiuoklės dokumentai; siuntimas el. paštu</bookmark_value><bookmark_value>grafikos dokumentai; siuntimas el. paštu</bookmark_value><bookmark_value>pateiktys; siuntimas el. paštu</bookmark_value><bookmark_value>priedai el. laiškuose</bookmark_value>"
#: email.xhp
msgctxt ""
@@ -9542,7 +9542,7 @@ msgctxt ""
"hd_id3153345\n"
"help.text"
msgid "<variable id=\"email\"><link href=\"text/shared/guide/email.xhp\" name=\"Sending Documents as E-mail\">Sending Documents as E-mail</link></variable>"
-msgstr ""
+msgstr "<variable id=\"email\"><link href=\"text/shared/guide/email.xhp\" name=\"Dokumentų siuntimas el. paštu\">Dokumentų siuntimas el. paštu</link></variable>"
#: email.xhp
msgctxt ""
@@ -9550,7 +9550,7 @@ msgctxt ""
"par_id3154897\n"
"help.text"
msgid "Working in $[officename], you can send the current document as an e-mail attachment."
-msgstr ""
+msgstr "Dirbant „$[officename]“ programomis, veikiamąjį dokumentą galima išsiųsti kaip el. laiško priedą."
#: email.xhp
msgctxt ""
@@ -9558,7 +9558,7 @@ msgctxt ""
"par_id3147335\n"
"help.text"
msgid "Choose <emph>File - Send - E-mail Document</emph>."
-msgstr ""
+msgstr "Pasirinkite <emph>Failas → Siųsti → Dokumentą el. paštu</emph>."
#: email.xhp
msgctxt ""
@@ -9566,7 +9566,7 @@ msgctxt ""
"par_id3153127\n"
"help.text"
msgid "$[officename] opens your default e-mail program.<switchinline select=\"sys\"><caseinline select=\"UNIX\"> If you want to send the current document with another e-mail program, you can select the program to use with <emph>Internet - E-mail</emph> in the Options dialog box.</caseinline></switchinline>"
-msgstr ""
+msgstr "„$[officename]“ paleis numatytąją kompiuterio el. pašto programą.<switchinline select=\"sys\"><caseinline select=\"UNIX\"> Jei veikiamąjį dokumentą norite siųsti kita el. pašto programa, nurodykite programą parinkčių lango kortelėje <emph>Internetas→ El. paštas</emph>.</caseinline></switchinline>"
#: email.xhp
msgctxt ""
@@ -9574,7 +9574,7 @@ msgctxt ""
"par_id3150986\n"
"help.text"
msgid "In your e-mail program, enter the recipient, subject and any text you want to add, then send the e-mail."
-msgstr ""
+msgstr "El. laiško lange nurodykite gavėją, temą, įveskite laiško tekstą ir išsiųskite laišką."
#: email.xhp
msgctxt ""
@@ -9582,7 +9582,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 ""
+msgstr "Jei el. laiško gavėjo turima programinė įrangą nesuderinama su „OpenDocument“ formatu, veikiamąjį dokumentą galima išsiųsti populiariu uždaru formatu.<br/>Jei siunčiate teksto dokumentą, pasirinkite <item type=\"menuitem\">Failas → Siųsti → Siųsti el. paštu – „Microsoft Word“ dokumentą</item>. Jei skaičiuoklės dokumentą – <item type=\"menuitem\">Failas → Siųsti → Siųsti el. paštu – „Microsoft Excel“ dokumentą</item>. Jei siunčiate pateiktį – <item type=\"menuitem\">Failas → Siųsti → Siųsti el. paštu – „Microsoft PowerPoint“ pateiktį</item>. <br/>Jei norite išsiųsti tik skaitymui skirtą dokumentą, pasirinkite <item type=\"menuitem\">Failas → Siųsti → Siųsti el. paštu – PDF dokumentą</item>.<br/>Šiomis komandomis veikiamojo dokumento formatas nebus pakeistas. Bus sukurta ir išsiųsta laikina dokumento kopija."
#: error_report.xhp
msgctxt ""
@@ -13520,7 +13520,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Creating and Printing Labels and Business Cards"
-msgstr ""
+msgstr "Etikečių ir vizitinių kortelių kūrimas ir spausdinimas"
#: labels.xhp
msgctxt ""
@@ -13528,7 +13528,7 @@ msgctxt ""
"bm_id3150774\n"
"help.text"
msgid "<bookmark_value>labels; creating and synchronizing</bookmark_value><bookmark_value>business cards; creating and synchronizing</bookmark_value><bookmark_value>synchronizing;labels and business cards</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>etiketės; kūrimas ir vienodinimas</bookmark_value><bookmark_value>vizitinės kortelės; kūrimas ir vienodinimas</bookmark_value><bookmark_value>vienodinimas;etiketės ir vizitinės kortelės</bookmark_value>"
#: labels.xhp
msgctxt ""
@@ -13544,7 +13544,7 @@ msgctxt ""
"hd_id3153345\n"
"help.text"
msgid "Designing Business Cards Through a Dialog"
-msgstr ""
+msgstr "Vizitinių kortelių kūrimas dialogo lange"
#: labels.xhp
msgctxt ""
@@ -13552,7 +13552,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 ""
+msgstr "Pasirinkite <link href=\"text/shared/01/01010300.xhp\" name=\"Failas → Naujas → Vizitinė kortelė\"><emph>Failas → Naujas → Vizitinė kortelė</emph></link>, kad atvertumėte dialogo langą <emph>Vizitinės kortelės</emph> – jame galima nurodyti, kaip atrodys kuriamos kortelės."
#: labels.xhp
msgctxt ""
@@ -13560,7 +13560,7 @@ msgctxt ""
"hd_id3147654\n"
"help.text"
msgid "Designing Labels and Business Cards"
-msgstr ""
+msgstr "Etikečių ir vizitinių kortelių kūrimas"
#: labels.xhp
msgctxt ""
@@ -13568,7 +13568,7 @@ msgctxt ""
"par_id3152349\n"
"help.text"
msgid "You can design both labels and business cards through the <emph>Labels</emph> dialog."
-msgstr ""
+msgstr "Ir etiketes, ir vizitines korteles galima kurti tame pačiame dialogo lange <emph>Etiketės</emph>."
#: labels.xhp
msgctxt ""
@@ -13584,7 +13584,7 @@ msgctxt ""
"par_id3149233\n"
"help.text"
msgid "On the <emph>Labels</emph> tab, under <emph>Format</emph>, define the label format."
-msgstr ""
+msgstr "Kortelės <emph>Etiketės</emph> parinkčių grupėje <emph>Formatas</emph> nurodykite etiketės formatą."
#: labels.xhp
msgctxt ""
@@ -13592,7 +13592,7 @@ msgctxt ""
"par_id3145674\n"
"help.text"
msgid "$[officename] Writer contains many formats of commercially available sheets for labels, badges, and business cards. You can also add other, user-defined formats."
-msgstr ""
+msgstr "Tekstų rengyklėje „$[officename] Writer“ yra iš anksto aprašyti populiarūs įvairių gamintojų etiketėms ar vizitinėms kortelėms skirto popieriaus formatai. Taip pat galima aprašyti kitokį, savą formatą."
#: labels.xhp
msgctxt ""
@@ -13600,7 +13600,7 @@ msgctxt ""
"par_id3143271\n"
"help.text"
msgid "On the <emph>Labels</emph> tab, under <emph>Inscription</emph>, you can choose what you want written on the labels."
-msgstr ""
+msgstr "Kortelės <emph>Etiketės</emph> parinkčių grupėje <emph>Užrašas</emph> nurodykite, kas bus parašyta etiketėse."
#: labels.xhp
msgctxt ""
@@ -13608,7 +13608,7 @@ msgctxt ""
"par_id3145610\n"
"help.text"
msgid "This often involves database fields, so that the labels can be printed with varying content, when sending \"Form Letters\" for example. It is also possible to have the same text printed on every label."
-msgstr ""
+msgstr "Čia dažnai nurodomi duomenų bazės laukai – tokiu būdu galima sukurti etiketes su kintamu turiniu, pavyzdžiui, laiškams komponuoti. Taip pat galima naudoti tą patį tekstą visose etiketėse."
#: labels.xhp
msgctxt ""
@@ -13616,7 +13616,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 ""
+msgstr "Iš išskleidžiamųjų sąrašų <emph>Duomenų bazė</emph> ir <emph>Lentelė</emph> parinkite duomenų bazę ir lentelę, iš kurių bus gaunami duomenų laukai. Spustelėję rodyklės mygtuką įterpkite parinktą duomenų bazės lauką į užrašo sritį. Įvedimo klavišu galima įterpti naują eilutę, taip pat galima įterpti tarpus ar bet kokį kitą fiksuotą tekstą."
#: labels.xhp
msgctxt ""
@@ -13624,7 +13624,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 ""
+msgstr "Kortelėje <emph>Formatas</emph> galima aprašyti savą etiketės formatą, jei netiko nė vienas iš iš anksto aprašytų. Prieš tai sąraše <emph>Tipas</emph> parinkite reikšmę „Naudotojo aprašytas“. <emph>Parinkčių</emph> kortelėje nurodykite, ar kurti visas etiketes, ar tik tam tikrą jų skaičių."
#: labels.xhp
msgctxt ""
@@ -13632,7 +13632,7 @@ msgctxt ""
"par_id3150358\n"
"help.text"
msgid "On the <emph>Options</emph> tab page, make sure that the <emph>Synchronize contents</emph> box is selected. If this is selected, a label only has to be entered (on the top left label) and edited once."
-msgstr ""
+msgstr "Kortelėje <emph>Parinktys</emph> pažymėkite langelį <emph>Vienodinti turinį</emph>. Tuomet užteks pakeisti vieną (viršutinę kairiąją) etiketę, o kitos bus atnaujintos automatiškai."
#: labels.xhp
msgctxt ""
@@ -13640,7 +13640,7 @@ msgctxt ""
"par_id3149767\n"
"help.text"
msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Naujas dokumentas</emph>, kad sukurtumėte naują etikečių dokumentą pagal parinktas nuostatas."
#: labels.xhp
msgctxt ""
@@ -13648,7 +13648,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 ""
+msgstr "Spustelėjus mygtuką <emph>Naujas dokumentas</emph> pasirodys mažas langelis su mygtuku <emph>Vienodinti turinį</emph>. Sukurkite pirmąją etiketę ir paspauskite šį mygtuką – visos etiketės dokumente bus suvienodintos su pirmąją."
#: labels.xhp
msgctxt ""
@@ -13656,7 +13656,7 @@ msgctxt ""
"par_id3150449\n"
"help.text"
msgid "<link href=\"text/shared/01/01010300.xhp\" name=\"Business Cards\">Business Cards</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01010300.xhp\" name=\"Vizitinės kortelės\">Vizitinės kortelės</link>"
#: labels_database.xhp
msgctxt ""
@@ -13664,7 +13664,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Printing Address Labels"
-msgstr ""
+msgstr "Adresų etikečių spausdinimas"
#: labels_database.xhp
msgctxt ""
@@ -13672,7 +13672,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 ""
+msgstr "<bookmark_value>adresų etiketės iš duomenų bazių</bookmark_value> <bookmark_value>etiketės; iš duomenų bazių</bookmark_value> <bookmark_value>lipdukai</bookmark_value> <bookmark_value>duomenų bazės;etikečių kūrimas</bookmark_value>"
#: labels_database.xhp
msgctxt ""
@@ -13680,7 +13680,7 @@ msgctxt ""
"hd_id3147399\n"
"help.text"
msgid "<variable id=\"labels_database\"><link href=\"text/shared/guide/labels_database.xhp\" name=\"Printing Address Labels\">Printing Address Labels</link></variable>"
-msgstr ""
+msgstr "<variable id=\"labels_database\"><link href=\"text/shared/guide/labels_database.xhp\" name=\"Adresų etikečių spausdinimas\">Adresų etikečių spausdinimas</link></variable>"
#: labels_database.xhp
msgctxt ""
@@ -13696,7 +13696,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 ""
+msgstr "Kortelėje <emph>Etiketės</emph> parinkite popieriaus, ant kurio spausdinsite, formatą."
#: labels_database.xhp
msgctxt ""
@@ -13704,7 +13704,7 @@ msgctxt ""
"par_id0130200903370863\n"
"help.text"
msgid "Choose the database and table from which to get the data."
-msgstr ""
+msgstr "Nurodykite duomenų bazę ir lentelę, iš kurios bus imami duomenys."
#: labels_database.xhp
msgctxt ""
@@ -13712,7 +13712,7 @@ msgctxt ""
"par_id013020090337089\n"
"help.text"
msgid "Select a database field of which you want to print the contents. Click the button that shows a left arrow to insert the database field into the Label Text box."
-msgstr ""
+msgstr "Parinkite duomenų bazės lauką, kurio turinį norėsite spausdinti. Spustelėkite mygtuką su rodykle kairėn, kad parinktą duomenų bazės lauką įterptumėte į lauką <emph>Etiketės tekstas</emph>."
#: labels_database.xhp
msgctxt ""
@@ -13720,7 +13720,7 @@ msgctxt ""
"par_id0130200903370930\n"
"help.text"
msgid "Continue to select and insert database fields if you want more fields on every label. You can press Enter to insert a new line, and you can type any character to insert fixed text."
-msgstr ""
+msgstr "Jei etiketėje reikia daugiau laukų, parinkite ir įterpkite kiekvieną iš jų. Įvesties klavišu galima įterpti naują eilutę, taip pat galima tiesiog surinkti tekstą, kuris bus statinis visose etiketėse."
#: labels_database.xhp
msgctxt ""
@@ -13728,7 +13728,7 @@ msgctxt ""
"par_id0130200903370924\n"
"help.text"
msgid "Optionally, if you want to type more text, apply formatting, or insert images and line art, you should enable <emph>Synchronize contents</emph> on the <emph>Options</emph> tab. If you enable this, once you leave the Labels dialog box a small window opens with a Synchronize button. Now you only need to work on the first label on the labels document, then click the Synchronize button to copy your work to every label of the document."
-msgstr ""
+msgstr "Jei etiketėje norėsite įvesti daugiau teksto, taikyti formatavimą, įterpti paveikslus, figūras, kortelėje <emph>Parinktys</emph> pažymėkite langelį <emph>Vienodinti turinį</emph>. Tuomet, kai užversite etikečių dialogo langą, pasirodys mažas langelis su mygtuku <emph>Suvienodinti įrašus</emph>. Etikečių dokumente taisykite tik pirmąją etiketę, tada spustelėkite šį mygtuką ir atlikti pakeitimai bus nukopijuoti į visas etiketes dokumente."
#: labels_database.xhp
msgctxt ""
@@ -13736,7 +13736,7 @@ msgctxt ""
"par_idN10687\n"
"help.text"
msgid "Click <emph>New Document</emph>."
-msgstr ""
+msgstr "Spustelėkite <emph>Naujas dokumentas</emph>."
#: labels_database.xhp
msgctxt ""
@@ -13744,7 +13744,7 @@ msgctxt ""
"par_id3148685\n"
"help.text"
msgid "When you see the label document, you might want to temporarily enable <item type=\"menuitem\">View - Field Names</item>. This displays the fields in a more visible manner, so that you can arrange and edit label contents more easily."
-msgstr ""
+msgstr "Etikečių dokumente gali būti patogu įgalinti parinktį <item type=\"menuitem\">Rodymas → Laukų pavadinimai</item>. Tuomet laukai atvaizduojami aiškiau, tad keisti etiketės turinį bus paprasčiau."
#: labels_database.xhp
msgctxt ""
@@ -13752,7 +13752,7 @@ msgctxt ""
"par_id3148484\n"
"help.text"
msgid "You can save and/or print the label document."
-msgstr ""
+msgstr "Dabar etikečių dokumentą galima įrašyti arba spausdinti."
#: labels_database.xhp
msgctxt ""
@@ -13760,7 +13760,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 "Jei spausdinsite etikečių dokumentą, programa paklaus, ar norite spausdinti laiško blanką. Atsakius „Taip“ bus atvertas <link href=\"text/swriter/01/01150000.xhp\">laiškų komponavimo</link> dialogo langas. Šiame lange galima parinkti duomenų bazės įrašus, kuriems reikia spausdinti etiketes."
#: language_select.xhp
msgctxt ""
@@ -15832,7 +15832,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=\"https://wiki.documentfoundation.org/Documentation/OOoAuthors_User_Manual/Migration_Guide\" name=\"wiki.dcoumentfoundation.org OOoAuthors User Manual: Migration Guide\">Migration Guide</link>."
-msgstr ""
+msgstr "Daugiau informacijos apie dokumentų konvertavimą į ir iš „Microsoft Office“ dokumentų formato galima rasti <link href=\"https://wiki.documentfoundation.org/Documentation/OOoAuthors_User_Manual/Migration_Guide\" name=\"wiki.dcoumentfoundation.org OOoAuthors User Manual: Migration Guide\">migravimo vadovo</link> tinklalapyje (anglų k.)."
#: ms_import_export_limitations.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/shared/menu.po b/source/lt/helpcontent2/source/text/shared/menu.po
index 027454ba388..75eaa5c71fa 100644
--- a/source/lt/helpcontent2/source/text/shared/menu.po
+++ b/source/lt/helpcontent2/source/text/shared/menu.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-05-23 21:37+0200\n"
-"PO-Revision-Date: 2016-06-30 13:30+0000\n"
+"PO-Revision-Date: 2019-07-29 07:30+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1467293404.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564385438.000000\n"
#: insert_chart.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Chart"
-msgstr ""
+msgstr "Diagrama"
#: insert_chart.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id030420160945436725\n"
"help.text"
msgid "<link href=\"text/shared/menu/insert_chart.xhp\">Chart</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/menu/insert_chart.xhp\">Diagrama</link>"
#: insert_chart.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id030420160947559665\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts a chart based on data from a cell or table range or with default data.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Įterpiama diagrama, atvaizduojanti langelių ar lentelės sritį, arba numatytuosius duomenis.</ahelp>"
#: insert_form_control.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/simpress.po b/source/lt/helpcontent2/source/text/simpress.po
index 61f951a5548..1ce6fad590c 100644
--- a/source/lt/helpcontent2/source/text/simpress.po
+++ b/source/lt/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2017-10-04 11:28+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-31 07:46+0000\n"
+"Last-Translator: eglejasu <egle.jasute@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507116514.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564559183.000000\n"
#: main0000.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Welcome to the $[officename] Impress Help"
-msgstr ""
+msgstr "Sveiki! Čia „$[officename]“ pateikčių rengyklės žinynas"
#: main0000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3150746\n"
"help.text"
msgid "Welcome to the $[officename] Impress Help"
-msgstr ""
+msgstr "Sveiki! Čia „$[officename]“ pateikčių rengyklės žinynas"
#: main0000.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"hd_id3153000\n"
"help.text"
msgid "How to Work With $[officename] Impress"
-msgstr ""
+msgstr "Kaip dirbti „$[officename]“ pateikčių rengykle"
#: main0000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"hd_id3149880\n"
"help.text"
msgid "$[officename] Impress Menus, Toolbars, and Keys"
-msgstr ""
+msgstr "„$[officename]“ pateikčių rengyklės meniu, mygtukų juostos ir klavišai"
#: main0100.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Menus"
-msgstr ""
+msgstr "Meniu"
#: main0100.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"hd_id3149664\n"
"help.text"
msgid "<variable id=\"main0100\"><link href=\"text/simpress/main0100.xhp\" name=\"Menus\">Menus</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"main0100\"><link href=\"text/simpress/main0100.xhp\" name=\"Menus\">Meniu</link></variable>"
#: main0100.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id3150012\n"
"help.text"
msgid "The following section lists the help topics available for menus and dialogs."
-msgstr ""
+msgstr "Šioje žinyno dalyje aprašomos meniu komandos ir jomis atveriami dialogo langai."
#: main0101.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "File"
-msgstr ""
+msgstr "Failas"
#: main0101.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"hd_id3153190\n"
"help.text"
msgid "<link href=\"text/simpress/main0101.xhp\" name=\"File\">File</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0101.xhp\" name=\"File\">Failas</link>"
#: main0101.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id3154321\n"
"help.text"
msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Šios komandos taikomos veikiamajam dokumentui, jomis galima sukurti naują dokumentą ar baigti darbą su programa.</ahelp>"
#: main0103.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "View"
-msgstr ""
+msgstr "Mastelis"
#: main0103.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"hd_id3150297\n"
"help.text"
msgid "<link href=\"text/simpress/main0103.xhp\" name=\"View\">View</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0103.xhp\" name=\"View\">Rodymas</link>"
#: main0103.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"par_id3149378\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Šiame meniu yra komandos, skirtos veikiamojo dokumento rodymui ekrane.</ahelp>"
#: main0103.xhp
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"hd_id110120150549176280\n"
"help.text"
msgid "<link href=\"text/simpress/01/03120000.xhp\">Handout</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03120000.xhp\">Dalinamoji medžiaga</link>"
#: main0103.xhp
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"hd_id102720151244263489\n"
"help.text"
msgid "Object Moving Helplines"
-msgstr ""
+msgstr "Objektų perkėlimo pagalbinės linijos"
#: main0103.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"hd_id102720151246522815\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Rodyti komentarus"
#: main0103.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_id102720150112252443\n"
"help.text"
msgid "Show or hide a presentation's annotations."
-msgstr ""
+msgstr "Rodyti arba paslėpti pateikties pastabas."
#: main0103.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"hd_id102720151246523444\n"
"help.text"
msgid "Master Background"
-msgstr ""
+msgstr "Pagrindo fonas"
#: main0103.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"par_id102720150112257941\n"
"help.text"
msgid "Toggle the visibility of a master slide's background to be used as the background of the current slide."
-msgstr ""
+msgstr "Perjungia ruošinio skaidrės fono, naudojamo esamoje skaidrėje, rodymą."
#: main0103.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"hd_id102720151246521837\n"
"help.text"
msgid "Master Objects"
-msgstr ""
+msgstr "Ruošinio objektai"
#: main0103.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id102720150112256473\n"
"help.text"
msgid "Toggle the visibility of a master slide's objects to appear on the current slide."
-msgstr ""
+msgstr "Perjungia ruošinio skaidrės objektų esančių aktyvioje skaidrėje rodymą."
#: main0103.xhp
msgctxt ""
@@ -190,7 +190,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\">Galerija</link>"
#: main0103.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"hd_id3149121\n"
"help.text"
msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Mastelis</link>"
#: main0104.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "Įterpimas"
#: main0104.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<link href=\"text/simpress/main0104.xhp\" name=\"Insert\">Insert</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0104.xhp\" name=\"Insert\">Įterpimas</link>"
#: main0104.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_id3146971\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains the commands that are used to insert new elements into the document, for example, graphics, objects, special characters and other files.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Šis meniu apima komandas, kurios naudojamos naujų objektų įterpimui dokumente, pavyzdžiui, grafikos objektams, specialiesiems ženklams ir kitiems failams.</ahelp>"
#: main0104.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"par_idN105C7\n"
"help.text"
msgid "<link href=\"text/simpress/01/03152000.xhp\">Page Number</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03152000.xhp\">Puslapio numeris</link>"
#: main0104.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_idN10609\n"
"help.text"
msgid "Adds the slide number or the page number."
-msgstr ""
+msgstr "Įterpia skaidrės arba puslapio numerį."
#: main0104.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"par_idN105D7\n"
"help.text"
msgid "<link href=\"text/simpress/01/03152000.xhp\">Date and Time</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03152000.xhp\">Data ir laikas</link>"
#: main0104.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_idN10624\n"
"help.text"
msgid "Adds the date and time as a field."
-msgstr ""
+msgstr "Įterpia datos ir laiko laukelius."
#: main0104.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"hd_id0915200910362363\n"
"help.text"
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Komentaras</link>"
#: main0104.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"hd_id3153964\n"
"help.text"
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Specialieji rašmenys\">Specialieji rašmenys</link>"
#: main0104.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"hd_id3145790\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hipersaitas\">Hipersaitas</link>"
#: main0104.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_idN10651\n"
"help.text"
msgid "<link href=\"text/simpress/01/06050000.xhp\">Animated Image</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/06050000.xhp\">Animuotas paveikslas</link>"
#: main0104.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"hd_id3145768\n"
"help.text"
msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04080100.xhp\" name=\"Lentelė\">Lentelė</link>"
#: main0104.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"hd_id3143232\n"
"help.text"
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
-msgstr ""
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Diagrama\">Diagrama</link>"
#: main0104.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"par_id0302200904013251\n"
"help.text"
msgid "Inserts a chart."
-msgstr ""
+msgstr "Įterpiama diagrama."
#: main0104.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"hd_id3153812\n"
"help.text"
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Slankusis kadras</link>"
#: main0104.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"hd_id3149050\n"
"help.text"
msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">Failas</link>"
#: main0107.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Window"
-msgstr ""
+msgstr "Langas"
#: main0107.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"hd_id3153770\n"
"help.text"
msgid "<link href=\"text/simpress/main0107.xhp\" name=\"Window\">Window</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0107.xhp\" name=\"Window\">Langas</link>"
#: main0107.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id3147435\n"
"help.text"
msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:WindowList\">Šio meniu komandomis galima nustatyti, kaip bus rodomi dokumentų langai.</ahelp>"
#: main0113.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Modify"
-msgstr ""
+msgstr "Keisti"
#: main0113.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"hd_id3154020\n"
"help.text"
msgid "<link href=\"text/simpress/main0113.xhp\" name=\"Modify\">Modify</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0113.xhp\" name=\"Modify\">Keisti</link>"
#: main0113.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3154321\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for modifying objects in your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Apima objektų keitimo dokumente komandas.</ahelp>"
#: main0113.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"hd_id3153188\n"
"help.text"
msgid "<link href=\"text/shared/02/05090000.xhp\" name=\"Rotate\">Rotate</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/05090000.xhp\" name=\"Rotate\">Pasukti</link>"
#: main0113.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_id3149378\n"
"help.text"
msgid "Rotates the selected object(s)."
-msgstr ""
+msgstr "Pasuka pažymėtus objektus."
#: main0113.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"hd_id3149019\n"
"help.text"
msgid "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Distribution</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Paskirstymas</link>"
#: main0113.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"hd_id3153966\n"
"help.text"
msgid "<link href=\"text/shared/01/05190000.xhp\" name=\"Name Object\">Name Object</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05190000.xhp\" name=\"Name Object\">Pavadinti objektą</link>"
#: main0113.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"hd_id3154656\n"
"help.text"
msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Grupuoti</link>"
#: main0113.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"hd_id3153484\n"
"help.text"
msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Išgrupuoti</link>"
#: main0113.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"hd_id3148870\n"
"help.text"
msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Įeiti į grupę</link>"
#: main0113.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"hd_id3143233\n"
"help.text"
msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Išeiti iš grupės</link>"
#: main0114.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide Show"
-msgstr ""
+msgstr "Pateikties demonstravimas"
#: main0114.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"hd_id3154011\n"
"help.text"
msgid "<link href=\"text/simpress/main0114.xhp\" name=\"Slide Show\">Slide Show</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0114.xhp\" name=\"Slide Show\">Pateikties demonstravimas</link>"
#: main0114.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_id3145252\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands and options for running a presentation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Apima pateikties demonstravimo komandas ir parinktis.</ahelp>"
#: main0114.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"hd_id3154510\n"
"help.text"
msgid "<link href=\"text/simpress/01/06080000.xhp\" name=\"Slide Show Settings\">Slide Show Settings</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/06080000.xhp\" name=\"Slide Show Settings\">Skaidrių demonstravimo nuostatos.</link>"
#: main0114.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"hd_id3153486\n"
"help.text"
msgid "<link href=\"text/simpress/01/06070000.xhp\" name=\"Interaction\">Interaction</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/06070000.xhp\" name=\"Interaction\">Interaktyvumas</link>"
#: main0114.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_idN10611\n"
"help.text"
msgid "<link href=\"text/simpress/01/06060000.xhp\">Custom Animation</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/06060000.xhp\">Vartotojo animacija</link>"
#: main0114.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"hd_id3153711\n"
"help.text"
msgid "<link href=\"text/simpress/01/06100000.xhp\" name=\"Custom Slide Show\">Custom Slide Show</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/06100000.xhp\" name=\"Custom Slide Show\">Vartotojo skaidrių demonstravimas</link>"
#: main0200.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Toolbars"
-msgstr ""
+msgstr "Mygtukų juostos"
#: main0200.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"hd_id3147434\n"
"help.text"
msgid "<variable id=\"main0200\"><link href=\"text/simpress/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
-msgstr ""
+msgstr "<variable id=\"main0200\"><link href=\"text/simpress/main0200.xhp\" name=\"Toolbars\">Mygtukų juostos</link></variable>"
#: main0200.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"par_id31474099\n"
"help.text"
msgid "Add objects, including charts, spreadsheets, and images, to your document."
-msgstr ""
+msgstr "Pridėti objektus, įskaitant diagramas, skaičiuoklės lenteles ir paveikslus, į dokumentą."
#: main0202.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Line and Filling Bar"
-msgstr ""
+msgstr "Linijų ir užpildo juosta"
#: main0202.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"hd_id3149664\n"
"help.text"
msgid "<link href=\"text/simpress/main0202.xhp\" name=\"Line and Filling Bar\">Line and Filling Bar</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0202.xhp\" name=\"Line and Filling Bar\">Linijų ir užpildo juosta</link>"
#: main0202.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id3153729\n"
"help.text"
msgid "<ahelp hid=\".\">The Line and Filling Bar contains commands and options that you can apply in the current view.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Linijų ir užpildo juostoje yra komandos ir parinktys, kurias galite taikyti esamam rodiniui.</ahelp>"
#: main0202.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"hd_id3156382\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Linijos stilius</link>"
#: main0202.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"hd_id3159184\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Linijos storis</link>"
#: main0202.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"hd_id3150250\n"
"help.text"
msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05200100.xhp\" name=\"Linijos spalva\">Linijos spalva</link>"
#: main0202.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"hd_id3148609\n"
"help.text"
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Srities stilius ir užpildas</link>"
#: main0202.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"hd_id3150048\n"
"help.text"
msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Šešėlis</link>"
#: main0203.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Text Formatting Bar"
-msgstr ""
+msgstr "Teksto formatavimo juosta"
#: main0203.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"hd_id3150010\n"
"help.text"
msgid "<link href=\"text/simpress/main0203.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0203.xhp\" name=\"Text Formatting Bar\">Teksto formatavimo juosta</link>"
#: main0203.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"par_id3152597\n"
"help.text"
msgid "To display the <emph>Text Formatting</emph> Bar, place the cursor inside a text object."
-msgstr ""
+msgstr "Jei norite matyti <emph>Teksto formatavimo</emph> juostą, žymeklį padėkite tekstiniame objekte."
#: main0203.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"hd_id3151391\n"
"help.text"
msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Teksto spalva</link>"
#: main0203.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"hd_id3154645\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Rašmenys</link>"
#: main0203.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"hd_id3149984\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Pastraipa</link>"
#: main0203.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"hd_id3153619\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/shared/01/06050000.xhp\" name=\"Numbering Symbols\">Numbering Symbols</link></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/shared/01/06050000.xhp\" name=\"Numbering Symbols\">Numeravimo ženklai</link></caseinline></switchinline>"
#: main0203.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"hd_id0122200903104143\n"
"help.text"
msgid "Increase Font"
-msgstr ""
+msgstr "Didinti šriftą"
#: main0203.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_id0122200903104255\n"
"help.text"
msgid "<ahelp hid=\".\">Increases the font size of the selected text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Padidinamas pažymėto teksto šriftas.</ahelp>"
#: main0203.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"hd_id0122200903104228\n"
"help.text"
msgid "Reduce Font"
-msgstr ""
+msgstr "Sumažinti šriftą"
#: main0203.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"par_id0122200903104247\n"
"help.text"
msgid "<ahelp hid=\".\">Reduces the font size of the selected text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sumažinamas pažymėto teksto šriftas.</ahelp>"
#: main0204.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide View Bar"
-msgstr ""
+msgstr "Skaidrės rodymo juosta"
#: main0204.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"hd_id3150010\n"
"help.text"
msgid "<link href=\"text/simpress/main0204.xhp\" name=\"Slide View Bar\">Slide View Bar</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0204.xhp\" name=\"Slide View Bar\">Skaidrės rodymo juosta</link>"
#: main0204.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_id3146971\n"
"help.text"
msgid "<ahelp hid=\"dummy\">The <emph>Slide View</emph> bar opens with the Slide Sorter view.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dummy\"><emph>Skaidrės rodymo</emph> juostoje atveriama skaidrių rikiavimo peržiūra.</ahelp>"
#: main0206.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Status Bar"
-msgstr ""
+msgstr "Būsenos juosta"
#: main0206.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"hd_id3153768\n"
"help.text"
msgid "<link href=\"text/simpress/main0206.xhp\" name=\"Status Bar\">Status Bar</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0206.xhp\" name=\"Status Bar\">Būsenos juosta</link>"
#: main0206.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id3154020\n"
"help.text"
msgid "The status bar displays information about your document, including the currently selected object. You can double-click some status bar items to open a related dialog window."
-msgstr ""
+msgstr "Būsenos juostoje pateikia informaciją apie dokumentus, įskaitant ir esamą pasirinktą objektą. Dukart spragtelėję būsenos juostos elementą atversite jo dialogo langą."
#: main0209.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Rulers"
-msgstr ""
+msgstr "Liniuotės"
#: main0209.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"bm_id3153191\n"
"help.text"
msgid "<bookmark_value>rulers; in presentations</bookmark_value><bookmark_value>origin of rulers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>liniuotės; pateiktyse</bookmark_value><bookmark_value>liniuotės atskaitos pradžia</bookmark_value>"
#: main0209.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"hd_id3153191\n"
"help.text"
msgid "<link href=\"text/simpress/main0209.xhp\" name=\"Rulers\">Rulers</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main0209.xhp\" name=\"Rulers\">Liniuotės</link>"
#: main0209.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/simpress/00.po b/source/lt/helpcontent2/source/text/simpress/00.po
index d9ffb080f41..8403b52d843 100644
--- a/source/lt/helpcontent2/source/text/simpress/00.po
+++ b/source/lt/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-06-24 19:59+0000\n"
+"PO-Revision-Date: 2019-07-31 05:39+0000\n"
"Last-Translator: eglejasu <egle.jasute@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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1561406355.000000\n"
+"X-POOTLE-MTIME: 1564551544.000000\n"
#: 00000004.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\">Pasirinkite <emph>Taisa → Figūrų virsmas</emph> (<item type=\"productname\">„%PRODUCTNAME“</item> Tik brėžiniui) </variable>"
+msgstr "<variable id=\"bearbueber\">Pasirinkite <emph>Taisa → Figūrų virsmas</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje) </variable>"
#: 00000402.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_idN10B07\n"
"help.text"
msgid "<variable id=\"master\">Choose <emph>Slide - Master Elements</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"master\">Pasirinkite <emph>Skaidrė → Ruošinio elementai</emph></variable>"
#: 00000403.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_idN10B57\n"
"help.text"
msgid "Choose <emph>Insert - Header and Footer</emph>"
-msgstr ""
+msgstr "Pasirinkite <emph>Įterpimas → Puslapinė antraštė ir poraštė</emph>."
#: 00000403.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_idN10B6E\n"
"help.text"
msgid "Choose <emph>Insert - Page number</emph>"
-msgstr ""
+msgstr "Pasirinkite <emph>Įterpimas → Skaidrės numeris</emph>"
#: 00000403.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_idN10B74\n"
"help.text"
msgid "Choose <emph>Insert - Date and time</emph>"
-msgstr ""
+msgstr "Pasirinkite <emph>Įterpimas → Data ir laikas</emph>."
#: 00000403.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_id3149286\n"
"help.text"
msgid "<variable id=\"hinterzeichnung\">Choose <emph>View - Normal</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"hinterzeichnung\">Pasirinkite <emph>Rodymas → Skaidrė</emph> </variable>"
#: 00000403.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"par_id3153480\n"
"help.text"
msgid "<variable id=\"master_drawing\">Choose <emph>View - Master Slide</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"master_drawing\">Pasirinkite <emph>Rodymas → Ruošinio skaidrė</emph> </variable>"
#: 00000403.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3147254\n"
"help.text"
msgid "<variable id=\"hinternotizen\">Choose <emph>View - Notes</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"hinternotizen\">Pasirinkite <emph>Rodymas → Pastabos</emph> </variable>"
#: 00000404.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert Menu"
-msgstr ""
+msgstr "Įterpimo meniu"
#: 00000404.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"hd_id3143219\n"
"help.text"
msgid "Insert Menu"
-msgstr ""
+msgstr "Įterpimo meniu"
#: 00000404.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "<variable id=\"seiteduplizieren\">Choose <emph>Insert - Duplicate Slide</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteduplizieren\">Pasirinkite <emph>Įterpimas → Skaidrės kopija</emph> </variable>"
#: 00000404.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_id3153711\n"
"help.text"
msgid "<variable id=\"seitegliederung\">Choose <emph>Insert - Expand Slide</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"seitegliederung\">Pasirinkite <emph>Įterpimas → Išplėsti skaidrę</emph> </variable>"
#: 00000404.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id3154254\n"
"help.text"
msgid "<variable id=\"uebersicht\">Choose <emph>Insert - Summary Slide</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"uebersicht\">Pasirinkite <emph>Įterpimas → Apibendrinanti skaidrė</emph> </variable>"
#: 00000404.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_id3147002\n"
"help.text"
msgid "Choose <emph>Insert - Layer</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph>Įterpimas → Sluoksnis</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000404.xhp
msgctxt ""
@@ -494,7 +494,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 ""
+msgstr "Sluoksnio kortelės kontekstiniame meniu pasirinkite <emph>Įterpti sluoksnį</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000404.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"par_id3155376\n"
"help.text"
msgid "Choose <emph>Insert - Insert Snap Point/Line</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph>Įterpimas → Įterpti traukos tašką arba tiesę</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000404.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id3154372\n"
"help.text"
msgid "Open a context menu and choose <emph>Insert Snap Point/Line</emph>"
-msgstr ""
+msgstr "Kontekstiniame meniu pasirinkite <emph>Įterpti traukos tašką arba tiesę</emph>"
#: 00000404.xhp
msgctxt ""
@@ -518,7 +518,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 ""
+msgstr "<variable id=\"efglbe\">Pažymėkite traukos tašką arba tiesę, atverkite kontekstinį meniu ir pasirinkite <emph>Taisyti traukos tašką arba tiesę</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id3151239\n"
"help.text"
msgid "Choose <emph>Insert - Spreadsheet</emph>"
-msgstr ""
+msgstr "Pasirinkite <emph>Įterpimas → Lentelė</emph>"
#: 00000404.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"par_id3144769\n"
"help.text"
msgid "On the <emph>Insert</emph> toolbar, click"
-msgstr ""
+msgstr "<emph>Įterpimo</emph> mygtukų juostoje spustelėkite"
#: 00000404.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id3163703\n"
"help.text"
msgid "<image id=\"img_id3145361\" src=\"cmd/sc_grid.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145361\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145361\" src=\"cmd/sc_grid.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145361\"> piktogramą</alt></image>"
#: 00000404.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"par_id3146963\n"
"help.text"
msgid "Spreadsheet"
-msgstr ""
+msgstr "Skaičiuoklė"
#: 00000404.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_id3153075\n"
"help.text"
msgid "Choose <emph>Insert - File</emph>"
-msgstr ""
+msgstr "Pasirinkite<emph>Įterpimas → Failas</emph>"
#: 00000404.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"par_id3153958\n"
"help.text"
msgid "On the <emph>Insert</emph> toolbar, click"
-msgstr ""
+msgstr "<emph>Įterpimo</emph> mygtukų juostoje spustelėkite"
#: 00000404.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"par_id3156397\n"
"help.text"
msgid "<image id=\"img_id3145237\" src=\"cmd/sc_inserttoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145237\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145237\" src=\"cmd/sc_inserttoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145237\"> piktogramą</alt></image>"
#: 00000404.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_id3157900\n"
"help.text"
msgid "File"
-msgstr ""
+msgstr "Failas"
#: 00000404.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"par_id3149351\n"
"help.text"
msgid "<variable id=\"feldbf\">Choose <emph>Insert - Field</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"feldbf\">Pasirinkite <emph>Įterpimas → Laukas</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id3150477\n"
"help.text"
msgid "<variable id=\"feldbf1\">Choose <emph>Insert - Field - Date (fixed)</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"feldbf1\">Pasirinkite <emph>Įterpimas → Laukas → Data (fiksuota)</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"par_id3146879\n"
"help.text"
msgid "<variable id=\"feldbf2\">Choose <emph>Insert - Field - Date (variable)</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"feldbf2\">Pasirinkite <emph>Įterpimas → Laukas Data (kintama)</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"par_id3153036\n"
"help.text"
msgid "<variable id=\"feldbf3\">Choose <emph>Insert - Field - Time (fixed)</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"feldbf3\">Pasirinkite <emph>Įterpimas → Laukas → Laikas (fiksuotas)</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"par_id3145590\n"
"help.text"
msgid "<variable id=\"feldbf4\">Choose <emph>Insert - Field - Time (variable)</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"feldbf4\">Pasirinkite <emph>Įterpimas → Laukas → Laikas (kintamas)</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"par_id3153935\n"
"help.text"
msgid "<variable id=\"feldbf5\">Choose <emph>Insert - Field - Page Number</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"feldbf5\">Pasirinkite <emph>Įterpimas → Laukas → Puslapio numeris</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"par_id3148583\n"
"help.text"
msgid "<variable id=\"feldbf6\">Choose <emph>Insert - Field - Author</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"feldbf6\">Pasirinkite <emph>Įterpimas → Laukas → Autorius</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"par_id3155951\n"
"help.text"
msgid "<variable id=\"feldbf7\">Choose <emph>Insert - Field - File Name</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"feldbf7\">Pasirinkite <emph>Įterpimas → Laukas → Failo pavadinimas</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format Menu"
-msgstr ""
+msgstr "Meniu Formatas"
#: 00000405.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"hd_id3147001\n"
"help.text"
msgid "Format Menu"
-msgstr ""
+msgstr "Meniu Formatas"
#: 00000405.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"par_id3148489\n"
"help.text"
msgid "In the context menu of a dimension line, choose <emph>Dimensions</emph>."
-msgstr ""
+msgstr "Matmenų linijos kontekstiniame meniu pasirinkite <emph>Matmenys</emph>."
#: 00000405.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id3150207\n"
"help.text"
msgid "On the <emph>Lines and Arrows</emph> toolbar, click the <emph>Dimension Line</emph> icon."
-msgstr ""
+msgstr "Spustelėję <emph>Linijų ir rodyklių</emph> piktogramą pasirinkite <emph>Matmenų linija</emph>."
#: 00000405.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"par_id3152874\n"
"help.text"
msgid "In a Draw document, right-click a layer tab and choose <emph>Modify Layer</emph>"
-msgstr ""
+msgstr "Braižyklės dokumente dešiniuoju pelės klavišų spustelėję sluoksnio kortelę pasirinkite <emph>Koreguoti sluoksnį</emph>"
#: 00000405.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_id3154765\n"
"help.text"
msgid "Choose <emph>Format - Layer</emph> (only $[officename] Draw)"
-msgstr ""
+msgstr "Pasirinkite <emph>Formatas → Sluoksnis</emph> (tik „$[officename]“ braižyklėje)"
#: 00000406.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Tools Menu"
-msgstr ""
+msgstr "Priemonių juosta"
#: 00000406.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"hd_id3153770\n"
"help.text"
msgid "Tools Menu"
-msgstr ""
+msgstr "Priemonių juosta"
#: 00000406.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_id3163803\n"
"help.text"
msgid "<variable id=\"neuprae\">Choose <emph>Slide Show - Custom Slide Show</emph> and then click <emph>New</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"neuprae\">Pasirinkite <emph>Demonstravimas → Aprašyti pateikčių demonstravimai</emph> ir spustelėkite <emph>Kurti</emph>.</variable>"
#: 00000407.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide Show Menu"
-msgstr ""
+msgstr "Demonstravimo meniu"
#: 00000407.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"hd_id3150541\n"
"help.text"
msgid "Slide Show Menu"
-msgstr ""
+msgstr "Demonstravimo meniu"
#: 00000407.xhp
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"par_id3158394\n"
"help.text"
msgid "<variable id=\"etdaw\">Choose <emph>Slide Show - Slide Transition</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"etdaw\">Pasirinkite <emph>Demonstravimas → Perėjimas tarp skaidrių</emph></variable>"
#: 00000407.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"par_id3152576\n"
"help.text"
msgid "Choose <emph>Insert - Animated Image</emph>"
-msgstr ""
+msgstr "Pasirinkite <emph>Įterpimas → Animuotas paveikslėlis</emph>."
#: 00000407.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"par_id3149262\n"
"help.text"
msgid "Choose <emph>Slide Show - Custom Animation</emph>"
-msgstr ""
+msgstr "Pasirinkite <emph> Demonstravimas → Animacija</emph>."
#: 00000407.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"par_id3146976\n"
"help.text"
msgid "On the <emph>Drawing</emph> toolbar, click"
-msgstr ""
+msgstr "<emph>Braižymo</emph> mygtukų juostoje spustelėkite"
#: 00000407.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"par_id3155603\n"
"help.text"
msgid "<image id=\"img_id3149400\" src=\"cmd/sc_customanimation.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3149400\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149400\" src=\"cmd/sc_customanimation.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3149400\"> piktogramą</alt></image>"
#: 00000407.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"par_id3154754\n"
"help.text"
msgid "Custom Animation"
-msgstr ""
+msgstr "Animacija"
#: 00000407.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"par_id3146316\n"
"help.text"
msgid "Choose <emph>Slide Show - Interaction</emph>"
-msgstr ""
+msgstr "Pasirinkite <emph>Demonstravimas → Interaktyvumas</emph>"
#: 00000407.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"par_id3149257\n"
"help.text"
msgid "On the <emph>Drawing</emph> toolbar, click"
-msgstr ""
+msgstr "<emph>Braižymo</emph> mygtukų juostoje spustelėkite"
#: 00000407.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"par_id3154649\n"
"help.text"
msgid "<image id=\"img_id3150205\" src=\"cmd/sc_animationeffects.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150205\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150205\" src=\"cmd/sc_animationeffects.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150205\"> piktogramą</alt></image>"
#: 00000407.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"par_id3155380\n"
"help.text"
msgid "Interaction"
-msgstr ""
+msgstr "Interaktyvumas"
#: 00000407.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"par_id3152987\n"
"help.text"
msgid "<variable id=\"praesent\">Choose <emph>Slide Show - Slide Show Settings</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"praesent\">Pasirinkite <emph>Demonstravimas → Pateikties demonstravimo nuostatos</emph></variable>"
#: 00000407.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_id3155089\n"
"help.text"
msgid "<variable id=\"indipra\">Choose <emph>Slide Show - Custom Slide Show</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"indipra\">Pasirinkite <emph>Demonstravimas → Aprašyti pateikčių demonstravimai</emph></variable>"
#: 00000413.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Shape Menu"
-msgstr ""
+msgstr "Figūrų meniu"
#: 00000413.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"hd_id3152578\n"
"help.text"
msgid "Shape Menu"
-msgstr ""
+msgstr "Figūrų meniu"
#: 00000413.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "Choose <emph>Shape - Convert </emph>(<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph>Figūros → Konvertuoti </emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"par_id3153415\n"
"help.text"
msgid "Open the context menu of a selected object and choose <emph>Convert</emph>"
-msgstr ""
+msgstr "Pažymėto objekto kontekstiniame meniu pasirinkite <emph>Konvertuoti</emph>"
#: 00000413.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"par_id3149124\n"
"help.text"
msgid "Choose <emph>Shape - Convert - To Curve</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Konvertuoti → Į kreivę</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"par_id3149018\n"
"help.text"
msgid "Open the context menu of a selected object and choose <emph>Convert - To Curve</emph>"
-msgstr ""
+msgstr "Pažymėto objekto kontekstiniame meniu pasirinkite <emph>Konvertuoti → Į kreivę</emph>"
#: 00000413.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"par_id3156384\n"
"help.text"
msgid "Choose <emph>Shape - Convert - To Polygon</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Konvertuoti → Į daugiakampį</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"par_id3154702\n"
"help.text"
msgid "Open the context menu of a selected object and choose <emph>Convert - To Polygon</emph>"
-msgstr ""
+msgstr "Pažymėto objekto kontekstiniame meniu pasirinkite <emph>Konvertuoti → Į daigiakampį</emph>"
#: 00000413.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"par_id3147001\n"
"help.text"
msgid "Choose <emph>Shape - Convert - To 3D</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Konvertuoti → Į trimatį vaizdą</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id3155111\n"
"help.text"
msgid "Open the context menu of a selected object and choose <emph>Convert - To 3D </emph>"
-msgstr ""
+msgstr "Pažymėto objekto kontekstiniame meniu pasirinkite <emph>Konvertuoti → Į trimatį vaizdą</emph>"
#: 00000413.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"par_id3150205\n"
"help.text"
msgid "Choose <emph>Shape - Convert - To 3D Rotation Object</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Konvertuoti → Į trimatį pasuktą vaizdą</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"par_id3152992\n"
"help.text"
msgid "Open the context menu of a selected object and choose <emph>Convert - To 3D Rotation Body</emph>"
-msgstr ""
+msgstr "Pažymėto objekto kontekstiniame meniu pasirinkite <emph>Konvertuoti → Į trimatį pasuktą vaizdą</emph>"
#: 00000413.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"par_id3152986\n"
"help.text"
msgid "Choose <emph>Shape - Convert - To Bitmap</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Konvertuoti → Į taškinės grafikos vaizdą</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"par_id3149409\n"
"help.text"
msgid "Open the context menu of a selected object and choose <emph>Convert - To Bitmap</emph>"
-msgstr ""
+msgstr "Pažymėto objekto kontekstiniame meniu pasirinkite <emph>Konvertuoti → Į taškinės grafikos vaizdą</emph>"
#: 00000413.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"par_id3148870\n"
"help.text"
msgid "Choose <emph>Shape - Convert - To Metafile</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Konvertuoti → Į metafailą</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"par_id3148608\n"
"help.text"
msgid "Open the context menu of a selected object and choose <emph>Convert - To Metafile</emph>"
-msgstr ""
+msgstr "Pažymėto objekto kontekstiniame meniu pasirinkite <emph>Konvertuoti → Į metafailą</emph>"
#: 00000413.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"par_id3153246\n"
"help.text"
msgid "Choose <emph>Shape - Convert - To Contour</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Konvertuoti → Į kontūrą</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"par_id3159231\n"
"help.text"
msgid "Open the context menu of a selected object and choose <emph>Convert - To Contour</emph>"
-msgstr ""
+msgstr "Pažymėto objekto kontekstiniame meniu pasirinkite <emph>Konvertuoti → Į kontūrą</emph>"
#: 00000413.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"par_id3153008\n"
"help.text"
msgid "Choose <emph>Shape - Arrange - In Front of Object</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Išdėstyti → Perkelti į priekį</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -998,7 +998,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 ""
+msgstr "Pažymėto objekto kontekstiniame meniu pasirinkite <emph>Išdėstyti→ Perkelti į priekį</emph>"
#: 00000413.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"par_id3147249\n"
"help.text"
msgid "On the Drawing bar, open the <emph>Arrange</emph> toolbar and click:"
-msgstr ""
+msgstr "Grafikos objektų mygtukų jusotoje atverkite <emph>Išdėstymo</emph> priemones ir spustelėkite:"
#: 00000413.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"par_id3150537\n"
"help.text"
msgid "<image id=\"img_id3145233\" src=\"cmd/sc_beforeobject.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145233\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145233\" src=\"cmd/sc_beforeobject.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145233\"> piktogramą</alt></image>"
#: 00000413.xhp
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"par_id3153121\n"
"help.text"
msgid "In Front of Object"
-msgstr ""
+msgstr "Perkelti į priekį"
#: 00000413.xhp
msgctxt ""
@@ -1030,7 +1030,7 @@ msgctxt ""
"par_id3150654\n"
"help.text"
msgid "Choose <emph>Shape - Arrange - Behind Object</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Išdėstyti → Perkelti į pagrindą</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -1038,7 +1038,7 @@ msgctxt ""
"par_id3150482\n"
"help.text"
msgid "Open the context menu of a selected object and choose <emph>Arrange - Behind Object</emph>"
-msgstr ""
+msgstr "Pažymėto objekto kontekstiniame meniu pasirinkite <emph>Išdėstyti → Perkelti į pagrindą</emph>"
#: 00000413.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"par_id3149886\n"
"help.text"
msgid "On the Drawing bar, open the <emph>Arrange</emph> toolbar and click:"
-msgstr ""
+msgstr "Grafikos objektų mygtukų jusotoje atverkite <emph>Išdėstymo</emph> priemones ir spustelėkite:"
#: 00000413.xhp
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"par_id3150865\n"
"help.text"
msgid "<image id=\"img_id3145597\" src=\"cmd/sc_behindobject.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145597\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145597\" src=\"cmd/sc_behindobject.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145597\"> piktogramą</alt></image>"
#: 00000413.xhp
msgctxt ""
@@ -1062,7 +1062,7 @@ msgctxt ""
"par_id3153110\n"
"help.text"
msgid "Behind Object"
-msgstr ""
+msgstr "Perkelti į pagrindą"
#: 00000413.xhp
msgctxt ""
@@ -1070,7 +1070,7 @@ msgctxt ""
"par_id3150002\n"
"help.text"
msgid "Choose <emph>Shape - Arrange - Reverse</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Išdėstyti → Perstatyti</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -1078,7 +1078,7 @@ msgctxt ""
"par_id3150339\n"
"help.text"
msgid "Open the context menu of a selected object and choose <emph>Arrange - Reverse</emph>"
-msgstr ""
+msgstr "Pažymėto objekto kontekstiniame meniu pasirinkite <emph>Išdėstyti → Perstatyti</emph>"
#: 00000413.xhp
msgctxt ""
@@ -1086,7 +1086,7 @@ msgctxt ""
"par_id3145164\n"
"help.text"
msgid "On the Drawing bar, open the <emph>Arrange</emph> toolbar and click:"
-msgstr ""
+msgstr "Grafikos objektų mygtukų juostoje atverkite <emph>Išdėstymo</emph> priemones ir spustelėkite:"
#: 00000413.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id3154327\n"
"help.text"
msgid "<image id=\"img_id3155439\" src=\"cmd/sc_reverseorder.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155439\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155439\" src=\"cmd/sc_reverseorder.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155439\"> mygtuką</alt></image>"
#: 00000413.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id3150272\n"
"help.text"
msgid "Reverse"
-msgstr ""
+msgstr "Perstatyti"
#: 00000413.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"par_id3145298\n"
"help.text"
msgid "Choose <emph>Shape - Combine</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Grupuoti</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"par_id3148386\n"
"help.text"
msgid "Select two or more objects, open the context menu and choose <emph>Combine</emph>."
-msgstr ""
+msgstr "Pažymėkite du ar daugiau objektų ir kontekstiniame meniu pasirinkite <emph>Grupuoti</emph>."
#: 00000413.xhp
msgctxt ""
@@ -1126,7 +1126,7 @@ msgctxt ""
"par_id3150930\n"
"help.text"
msgid "Choose <emph>Shape - Split</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Skaidyti</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"par_id3151022\n"
"help.text"
msgid "Select a combined object, open the context menu and choose <emph>Split</emph>."
-msgstr ""
+msgstr "Pažymėkite du ar daugiau objektų ir kontekstiniame meniu pasirinkite <emph>Skaidyti</emph>."
#: 00000413.xhp
msgctxt ""
@@ -1142,7 +1142,7 @@ msgctxt ""
"par_id3154872\n"
"help.text"
msgid "Choose <emph>Shape - Connect</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Sujungti</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"par_id3150470\n"
"help.text"
msgid "Select two or more lines, open the context menu and choose <emph>Connect</emph>."
-msgstr ""
+msgstr "Pažymėkite du ar daugiau tiesių ir kontekstiniame meniu pasirinkite <emph>Sujungti</emph>."
#: 00000413.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id3153920\n"
"help.text"
msgid "Choose <emph>Shape - Break</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Atskirti</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -1166,7 +1166,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 ""
+msgstr "Pažymėkite tiesę, kurią sukūrėti sujungdami dvi ar daugiau tiesių ir kontekstiniame meniu pasirinkite <emph>Atskirti</emph>."
#: 00000413.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"par_id3155408\n"
"help.text"
msgid "Choose <emph>Shape</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -1182,7 +1182,7 @@ msgctxt ""
"par_id3145615\n"
"help.text"
msgid "Select two or more objects, open the context menu and choose <emph>Shapes</emph>"
-msgstr ""
+msgstr "Pažymėkite du ar daugiau objektų ir kontekstiniame meniu pasirinkite <emph>Figūros</emph>."
#: 00000413.xhp
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"par_id3163822\n"
"help.text"
msgid "Choose <emph>Shape - Merge</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Sąjunga</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"par_id3156309\n"
"help.text"
msgid "Select two or more objects, open the context menu and choose <emph>Shapes - Merge</emph>"
-msgstr ""
+msgstr "Pažymėkite du ar daugiau objektų ir kontekstiniame meniu pasirinkite <emph>Figūros → Sąjunga</emph>."
#: 00000413.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"par_id3150874\n"
"help.text"
msgid "Choose <emph>Shape - Subtract</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Atimtis</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"par_id3154643\n"
"help.text"
msgid "Select two or more objects, open the context menu and choose <emph>Shapes - Subtract</emph>"
-msgstr ""
+msgstr "Pažymėkite du ar daugiau objektų ir kontekstiniame meniu pasirinkite <emph>Figūros → Atimtis</emph>."
#: 00000413.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"par_id3145204\n"
"help.text"
msgid "Choose <emph>Shape - Intersect</emph> (<item type=\"productname\">%PRODUCTNAME</item> Draw only)"
-msgstr ""
+msgstr "Pasirinkite <emph> Figūros → Sankirta</emph> (tik <item type=\"productname\">„%PRODUCTNAME“</item> braižyklėje)"
#: 00000413.xhp
msgctxt ""
@@ -1230,7 +1230,7 @@ msgctxt ""
"par_id3152931\n"
"help.text"
msgid "Select two or more objects, open the context menu and choose <emph>Shapes - Intersect</emph>"
-msgstr ""
+msgstr "Pažymėkite du ar daugiau objektų ir kontekstiniame meniu pasirinkite <emph>Figūros → Sankirta</emph>."
#: slide_menu.xhp
msgctxt ""
@@ -1238,7 +1238,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide Menu"
-msgstr ""
+msgstr "Skaidrės meniu"
#: slide_menu.xhp
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"par_id3155530\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <emph>Slide - Properties</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Pasirinkite <emph>Skaidrė → Savybės</emph> </variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id3145386\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <emph>Slide - Properties</emph> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Pasirinkite <emph>Skaidrė → Savybės</emph> ir spustelėkite kortelę <emph>Puslapis</emph> </variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <emph>Slide - Properties</emph> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Pasirinkite <emph>Skaidrė → Savybės</emph> ir spustelėkite kortelę <emph>Pagrindas</emph> </variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"par_id3155266\n"
"help.text"
msgid "<variable id=\"adnsei\">Choose <emph>Slide - Layout</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"adnsei\">Pasirinkite <emph>Skaidrė → Maketas</emph> </variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"par_id3153012\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Slide - Change Slide Master</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Pasirinkite <emph>Skaidrė → Keisti skaidrės ruošinį</emph> </variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_id3134264\n"
"help.text"
msgid "Choose <emph>Slide - New Slide</emph>"
-msgstr ""
+msgstr "Pasirinkite <emph>Skaidrė → Nauja skaidrė</emph>"
#: slide_menu.xhp
msgctxt ""
@@ -1294,7 +1294,7 @@ msgctxt ""
"par_id3177597\n"
"help.text"
msgid "On the <emph>Presentation</emph> bar, click"
-msgstr ""
+msgstr "<emph>Demonstracijos</emph> juostoje spustelėkite"
#: slide_menu.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3685251\n"
"help.text"
msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">piktogramą</alt></image>"
#: slide_menu.xhp
msgctxt ""
@@ -1310,4 +1310,4 @@ msgctxt ""
"par_id7354512\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Nauja skaidrė"
diff --git a/source/lt/helpcontent2/source/text/simpress/01.po b/source/lt/helpcontent2/source/text/simpress/01.po
index 7fe43821221..0938a20dc20 100644
--- a/source/lt/helpcontent2/source/text/simpress/01.po
+++ b/source/lt/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: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2018-09-03 13:12+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-31 05:38+0000\n"
+"Last-Translator: eglejasu <egle.jasute@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1535980328.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564551527.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Export"
-msgstr ""
+msgstr "Eksportuoti"
#: 01170000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"bm_id3153728\n"
"help.text"
msgid "<bookmark_value>Macromedia Flash export</bookmark_value><bookmark_value>exporting;to Macromedia Flash format</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Macromedia Flash eksportavimas</bookmark_value><bookmark_value>eksportavimas;į Macromedia Flash formatą</bookmark_value> "
#: 01170000.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"hd_id3153728\n"
"help.text"
msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Eksportuoti\">Eksportuoti</link>"
#: 01170000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3150715\n"
"help.text"
msgid "<variable id=\"dokuveroe\"><ahelp hid=\".\">Exports your presentation or drawing and sets the export options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"dokuveroe\"><ahelp hid=\".\">Eksportuoja pateiktį arba brėžinį parenka eksportavimo nuostatas.</ahelp></variable>"
#: 01170000.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id3154254\n"
"help.text"
msgid "The following file formats present you with additional export options after you click <emph>Save</emph>:"
-msgstr ""
+msgstr "Pateikti failų formatai suteikia papildomas eksportavimo savybes, kai paspausite <emph>Įrašyti</emph>:"
#: 01170000.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id3155961\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01110000.xhp\" name=\"HTML Document\">HTML Document</link>, <link href=\"text/shared/00/00000202.xhp\" name=\"JPEG\">JPEG</link>, <link href=\"text/shared/00/00000203.xhp\" name=\"SVM/WMF/PICT/MET\">SVM/WMF/PICT/MET</link>, <link href=\"text/shared/00/00000204.xhp\" name=\"BMP\">BMP</link>, <link href=\"text/shared/00/00000205.xhp\" name=\"GIF\">GIF</link>, <link href=\"text/shared/00/00000213.xhp\" name=\"EPS\">EPS</link>, <link href=\"text/shared/00/00000212.xhp\" name=\"PNG\">PNG</link>, <link href=\"text/shared/00/00000214.xhp\" name=\"PBM, PPM, PGM\">PBM, PPM, PGM</link>."
-msgstr ""
+msgstr "<link href=\"text/shared/autopi/01110000.xhp\" name=\"HTML Document\">HTML Document</link>, <link href=\"text/shared/00/00000202.xhp\" name=\"JPEG\">JPEG</link>, <link href=\"text/shared/00/00000203.xhp\" name=\"SVM/WMF/PICT/MET\">SVM/WMF/PICT/MET</link>, <link href=\"text/shared/00/00000204.xhp\" name=\"BMP\">BMP</link>, <link href=\"text/shared/00/00000205.xhp\" name=\"GIF\">GIF</link>, <link href=\"text/shared/00/00000213.xhp\" name=\"EPS\">EPS</link>, <link href=\"text/shared/00/00000212.xhp\" name=\"PNG\">PNG</link>, <link href=\"text/shared/00/00000214.xhp\" name=\"PBM, PPM, PGM\">PBM, PPM, PGM</link>."
#: 01170000.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id3145584\n"
"help.text"
msgid "If you select \"Macromedia Flash (SWF)\" as file format, the current Impress or Draw document will be exported to the Macromedia Flash format."
-msgstr ""
+msgstr "Jei pasirinksite „Macromedia Flash (SWF)“ failo formatą, esamas pateikčių rengyklės arba braižyklės dokumentas bus eksportuojamas į „Macromedia Flash“ formatą."
#: 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 ""
+msgstr "Jei pasirinksite formatą „HTML dokumentas“, tai atveriamas <emph>HTML eksportavimo </emph><link href=\"text/shared/autopi/01110000.xhp\" name=\"AutoPilot\">vediklis</link>. Vediklis pateikia eksportavimo proceso žingsnius ir savybes įskaitant ir pateikties paveikslėlių įrašymą GIF arba JPG formatais."
#: 01170000.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id3148604\n"
"help.text"
msgid "<link href=\"text/shared/01/01070001.xhp\" name=\"Export dialog\">Export dialog</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01070001.xhp\" name=\"Export dialog\">Eksportavimo dialogo langas</link>"
#: 01170000.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id3159208\n"
"help.text"
msgid "<link href=\"text/shared/00/00000020.xhp\" name=\"Information on Import and Export Filters\">Information on Import and Export Filters</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000020.xhp\" name=\"Information on Import and Export Filters\">Importavimo ir eksportavimo filtrų paaiškinimas</link>"
#: 01180001.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Puslapis"
#: 01180001.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"bm_id3154011\n"
"help.text"
msgid "<bookmark_value>slides; formatting</bookmark_value> <bookmark_value>formatting;slides</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>pateiktys;formatavimas</bookmark_value> <bookmark_value>formatavimas;skaidrės</bookmark_value>"
#: 01180001.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"hd_id3154011\n"
"help.text"
msgid "<link href=\"text/simpress/01/01180001.xhp\" name=\"Page\">Page</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/01180001.xhp\" name=\"Page\">Puslapis</link>"
#: 01180001.xhp
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"par_id3153416\n"
"help.text"
msgid "Sets page orientation, page margins, background and other layout options."
-msgstr ""
+msgstr "Nustato puslapio padėtį, paraštes, pagrindą ir kitas maketo parinktis."
#: 01180001.xhp
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"hd_id3155445\n"
"help.text"
msgid "Paper format"
-msgstr ""
+msgstr "Lapo formatas"
#: 01180001.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"hd_id3154703\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Formatas"
#: 01180001.xhp
msgctxt ""
@@ -150,7 +150,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 ""
+msgstr "Pasirinkite puslapio formatą, kurį palaiko jūsų spausdintuvas. Galite keisti puslapio matmenis pasirinkę <emph>Naudotojas </emph> ir įvedę dydžio matmenis <emph>Pločio</emph> ir <emph>Aukščio</emph> laukeliuose."
#: 01180001.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"hd_id3154659\n"
"help.text"
msgid "Width"
-msgstr ""
+msgstr "Plotis"
#: 01180001.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"par_id3152992\n"
"help.text"
msgid "Shows the width of the paper format you selected in the <emph>Format </emph>box. If you selected the <emph>User </emph>format, enter a value for the width of the page."
-msgstr ""
+msgstr "Parodo pasirinkto puslapio formato plotį <emph>Formato </emph>laukelyje. Jei pasirinkote <emph>Naudotojo </emph>formatą, tai įveskite puslapio pločio reikšmę."
#: 01180001.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"hd_id3153816\n"
"help.text"
msgid "Height"
-msgstr ""
+msgstr "Aukštis:"
#: 01180001.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id3149945\n"
"help.text"
msgid "Shows the height of the paper format you selected in the <emph>Format </emph>box. If you selected the <emph>User </emph>format, enter a value for the height of the page."
-msgstr ""
+msgstr "Parodo pasirinkto puslapio formato aukštį <emph>Formato </emph>laukelyje. Jei pasirinkote <emph>Naudotojo </emph>formatą, tai įveskite puslapio aukščio reikšmę."
#: 01180001.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"hd_id3159207\n"
"help.text"
msgid "Portrait"
-msgstr ""
+msgstr "Stačias"
#: 01180001.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id3153250\n"
"help.text"
msgid "Page orientation is vertical."
-msgstr ""
+msgstr "Puslapio padėtis vertikali"
#: 01180001.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"hd_id3154766\n"
"help.text"
msgid "Landscape"
-msgstr ""
+msgstr "Gulsčiai"
#: 01180001.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_id3153812\n"
"help.text"
msgid "Page orientation is horizontal."
-msgstr ""
+msgstr "Puslapio padėtis horizontali"
#: 01180001.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"hd_id3153075\n"
"help.text"
msgid "Paper tray"
-msgstr ""
+msgstr "Lapo padavimas"
#: 01180001.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"par_id3145115\n"
"help.text"
msgid "Select the paper source for your printer."
-msgstr ""
+msgstr "Pasirinkite lapo šaltinį spausdintuvui."
#: 01180001.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id3150652\n"
"help.text"
msgid "If your document uses more than one paper format, you can select a different tray for each format."
-msgstr ""
+msgstr "Jei dokumente yra daugiau nei vienas puslapio formatas, tai galite pasirinkti skirtingus dėklus kiekvienam formatui."
#: 01180001.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"hd_id3150746\n"
"help.text"
msgid "Margins"
-msgstr ""
+msgstr "Paraštės"
#: 01180001.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id3153037\n"
"help.text"
msgid "Specify the distance between the edge of a printed page and the printable area."
-msgstr ""
+msgstr "Nurodykite atstumus nuo puslapio krašto iki spausdinamos srities."
#: 01180001.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"hd_id3145591\n"
"help.text"
msgid "Left"
-msgstr ""
+msgstr "Kairėje:"
#: 01180001.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_id3154561\n"
"help.text"
msgid "Enter the distance between the left edge of the page and the data. You can see the result in the preview."
-msgstr ""
+msgstr "Įveskite atstumą nuo kairiojo puslapio krašto iki spausdinamų duomenų. Peržiūros laukelyje rodomas rezultatas."
#: 01180001.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"hd_id3153084\n"
"help.text"
msgid "Right"
-msgstr ""
+msgstr "Dešinėje:"
#: 01180001.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_id3153001\n"
"help.text"
msgid "Enter the distance between the right edge of the page and the data. You can see the result in the preview."
-msgstr ""
+msgstr "Įveskite atstumą nuo dešiniojo puslapio krašto iki spausdinamų duomenų. Peržiūros laukelyje rodomas rezultatas."
#: 01180001.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"hd_id3153565\n"
"help.text"
msgid "Top"
-msgstr ""
+msgstr "Viršuje:"
#: 01180001.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"par_id3145167\n"
"help.text"
msgid "Enter the distance between the top edge of the page and the data. You can see the result in the preview."
-msgstr ""
+msgstr "Įveskite atstumą nuo viršutinio puslapio krašto iki spausdinamų duomenų. Peržiūros laukelyje rodomas rezultatas."
#: 01180001.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"hd_id3150335\n"
"help.text"
msgid "Bottom"
-msgstr ""
+msgstr "Apačioje:"
#: 01180001.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"par_id3153736\n"
"help.text"
msgid "Enter the distance between the bottom edge of the page and the data. You can see the result in the preview."
-msgstr ""
+msgstr "Įveskite atstumą nuo apatinio puslapio krašto iki spausdinamų duomenų. Peržiūros laukelyje rodomas rezultatas."
#: 01180001.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"hd_id3150018\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Formatas"
#: 01180001.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"par_id3149877\n"
"help.text"
msgid "Specify the format for page numbering."
-msgstr ""
+msgstr "Nurodykite puslapių numeravimo formatą."
#: 01180001.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"hd_id3155439\n"
"help.text"
msgid "Fit object to paper format"
-msgstr ""
+msgstr "Pritaikyti objektą prie popieriaus formato"
#: 01180001.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id3153042\n"
"help.text"
msgid "Reduces the scale of objects and the size of the font on the page so that they print on the selected paper format."
-msgstr ""
+msgstr "Sumažina objekto mastelį ir šrifto dydį taip, kad spausdinama sritis tilptų į pasirinktą lapo formatą."
#: 01180002.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Background"
-msgstr ""
+msgstr "Fonas"
#: 01180002.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"hd_id3154253\n"
"help.text"
msgid "<link href=\"text/simpress/01/01180002.xhp\" name=\"Background\">Background</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/01180002.xhp\" name=\"Background\">Fonas</link>"
#: 01180002.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3155962\n"
"help.text"
msgid "Defines a background for a single page or for all of the pages in the active file."
-msgstr ""
+msgstr "Apibrėžia vieno puslapio arba visų esamo failo puslapių foną. "
#: 01180002.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_id3150297\n"
"help.text"
msgid "The options for this dialog are described <link href=\"text/shared/01/05210100.xhp\" name=\"here\">here</link>."
-msgstr ""
+msgstr "Šio dialogo lango parinktys aprašomos<link href=\"text/shared/01/05210100.xhp\" name=\"here\">čia</link>."
#: 02110000.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Navigator"
-msgstr ""
+msgstr "Žvalgiklis"
#: 02110000.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"bm_id3149664\n"
"help.text"
msgid "<bookmark_value>Navigator; presentations</bookmark_value><bookmark_value>presentations; navigating</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Žvalgiklis; pateiktys</bookmark_value><bookmark_value>pateiktys; žvalgymasis</bookmark_value>"
#: 02110000.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"hd_id3149664\n"
"help.text"
msgid "<link href=\"text/simpress/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02110000.xhp\" name=\"Navigator\">Žvalgiklis</link>"
#: 02110000.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_id3149379\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/NavigatorPanel\">Opens the Navigator, where you can quickly jump to other slides or move between open files.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/NavigatorPanel\">Atveria žvalgiklį, kuriame galite greitai pereiti prie kitos skaidrės arba judėti per atvertus failus.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_id3154015\n"
"help.text"
msgid "You can <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dock\">dock</link> the Navigator to the edge of your workspace."
-msgstr ""
+msgstr "Galite <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dock\">perkelti</link> žvalgiklį prie darbinės srities krašto. "
#: 02110000.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"par_id3156448\n"
"help.text"
msgid "Press <item type=\"keycode\">Ctrl+Shift+F5</item> to open the Navigator when you are editing a presentation."
-msgstr ""
+msgstr "Taisydami pateiktį žvalgiklį galite atverti surinkdami kombinaciją <item type=\"keycode\">Vald+Lyg2+F5</item>."
#: 02110000.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"hd_id3145235\n"
"help.text"
msgid "Pointer"
-msgstr ""
+msgstr "Žymeklis"
#: 02110000.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"par_id3157874\n"
"help.text"
msgid "<ahelp hid=\"HID_SD_NAVIGATOR_TBI_PEN\">Switches the mouse pointer to a pen that you can use to write on slides during a slide show.</ahelp> You cannot change the color of the pen."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SD_NAVIGATOR_TBI_PEN\">Pakeičia pelės žymeklį rašikliu, kuriuo galite rašyti skaidrėje ją demonstruodami.</ahelp> Rašiklio spalvos keisti negalite."
#: 02110000.xhp
msgctxt ""
@@ -454,7 +454,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\">Piktograma</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_id3150862\n"
"help.text"
msgid "Pointer"
-msgstr ""
+msgstr "Žymeklis"
#: 02110000.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"hd_id3152999\n"
"help.text"
msgid "First Slide"
-msgstr ""
+msgstr "Pirmoji skaidrė"
#: 02110000.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id3153564\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/first\">Jumps to the first slide in the slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/first\">Skaidrių demonstracijoje perkelia į pirmąją skaidrę.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_id3155925\n"
"help.text"
msgid "<image id=\"img_id3155931\" src=\"cmd/sc_firstrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155931\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155931\" src=\"cmd/sc_firstrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155931\">Piktograma</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"par_id3145246\n"
"help.text"
msgid "First Page"
-msgstr ""
+msgstr "Pirmas puslapis"
#: 02110000.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"hd_id3156061\n"
"help.text"
msgid "Previous Slide"
-msgstr ""
+msgstr "Ankstesnė skaidrė"
#: 02110000.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id3148768\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/previous\">Moves back one slide in the slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/previous\">Demonstruojant skaidres perkelia į ankstesnę skaidrę.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"par_id3153045\n"
"help.text"
msgid "<image id=\"img_id3157976\" src=\"cmd/sc_prevrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157976\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3157976\" src=\"cmd/sc_prevrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157976\">Piktograma</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id3150473\n"
"help.text"
msgid "Previous Slide"
-msgstr ""
+msgstr "Ankstesnė skaidrė"
#: 02110000.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"hd_id3155369\n"
"help.text"
msgid "Next Slide"
-msgstr ""
+msgstr "Kita skaidrė"
#: 02110000.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id3153920\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/next\">Move forward one slide in the slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/next\">Demonstruojant skaidres perkelia į kitą skaidrę.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"par_id3083279\n"
"help.text"
msgid "<image id=\"img_id3083286\" src=\"cmd/sc_nextrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083286\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3083286\" src=\"cmd/sc_nextrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083286\">Piktograma</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_id3149454\n"
"help.text"
msgid "Next Slide"
-msgstr ""
+msgstr "Kita skaidrė"
#: 02110000.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"hd_id3150762\n"
"help.text"
msgid "Last Slide"
-msgstr ""
+msgstr "Paskutinė skaidrė"
#: 02110000.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"par_id3147564\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/last\">Jumps to the last slide in the slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/last\">Demonstruojant skaidres perkelia į paskutinę skaidrę.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_id3151183\n"
"help.text"
msgid "<image id=\"img_id3156315\" src=\"cmd/sc_lastrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156315\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156315\" src=\"cmd/sc_lastrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156315\">Piktograma</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"par_id3154055\n"
"help.text"
msgid "Last Slide"
-msgstr ""
+msgstr "Paskutinė skaidrė"
#: 02110000.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"hd_id3149979\n"
"help.text"
msgid "Drag Mode"
-msgstr ""
+msgstr "Tempimo veiksena"
#: 02110000.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"par_id3150264\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/dragmode\">Drag and drop slides and named objects into the active slide.</ahelp> You can only insert slides and named objects from a saved file. You can only insert named objects as copies."
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/dragmode\">Temkite skaidres ir pavadintus objektus į esamą skaidrę.</ahelp> Galite įterpti skaidres ir pavadintus objektus tik iš įrašytų failų. Galite įterpti tik pavadintų objektų kopijas. "
#: 02110000.xhp
msgctxt ""
@@ -614,7 +614,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\">Piktograma</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"par_id3154930\n"
"help.text"
msgid "Insert as hyperlink"
-msgstr ""
+msgstr "Įterpti hipersaitu"
#: 02110000.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"par_id3145411\n"
"help.text"
msgid "<image id=\"img_id3145418\" src=\"cmd/sc_chainframes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145418\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145418\" src=\"cmd/sc_chainframes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145418\">Piktograma</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"par_id3150508\n"
"help.text"
msgid "Insert as link"
-msgstr ""
+msgstr "Įterpti saitu"
#: 02110000.xhp
msgctxt ""
@@ -646,7 +646,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\">Piktograma</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_id3149159\n"
"help.text"
msgid "Insert as copy"
-msgstr ""
+msgstr "Įterpti kopija"
#: 02110000.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"hd_id3148930\n"
"help.text"
msgid "Insert as hyperlink"
-msgstr ""
+msgstr "Įterpti hipersaitu"
#: 02110000.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"par_id3150713\n"
"help.text"
msgid "Inserts slides as a hyperlink (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>) into the active slide."
-msgstr ""
+msgstr "Skaidres įterpti hipersaitu (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>) į esamą skaidrę."
#: 02110000.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"hd_id3152945\n"
"help.text"
msgid "Insert as link"
-msgstr ""
+msgstr "Įterpti saitu"
#: 02110000.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"par_id3153747\n"
"help.text"
msgid "Inserts slides as a <link href=\"text/shared/00/00000005.xhp#verknuepfung\" name=\"link\">link</link> into the active slide."
-msgstr ""
+msgstr "Skaidres įterpti <link href=\"text/shared/00/00000005.xhp#verknuepfung\" name=\"link\">saitu</link> į esamą skaidrę."
#: 02110000.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"hd_id3159274\n"
"help.text"
msgid "Insert as copy"
-msgstr ""
+msgstr "Įterpti kopija"
#: 02110000.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id3149920\n"
"help.text"
msgid "Inserts a copy of a slide or named object into the active slide."
-msgstr ""
+msgstr "Įterpia skaidrės arba pavadinto objekto kopiją į esamą skaidrę."
#: 02110000.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"hd_id4969328\n"
"help.text"
msgid "Show Shapes"
-msgstr ""
+msgstr "Rodyti figūras"
#: 02110000.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id9635914\n"
"help.text"
msgid "<ahelp hid=\".\">In the submenu you can choose to display a list of all shapes or only the named shapes. Use drag-and-drop in the list to reorder the shapes. When you set the focus to a slide and press the <item type=\"keycode\">Tab</item> key, the next shape in the defined order is selected.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Submeniu galite pasirinkti rodyti visų figūrų sąrašą arba tik pavadintas figūras. Tempdami galite pergrupuosi figūras. Kai židiniu nustatote skaidrę ir paspaudžiate <item type=\"keycode\">Tab</item> klavišą, tai esamame rikiavime pažymima kita figūra.</ahelp> "
#: 02110000.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"hd_id3148624\n"
"help.text"
msgid "Existing Slides"
-msgstr ""
+msgstr "Esamos skaidrės"
#: 02110000.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"par_id3154599\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/tree\">Lists available slides. Double-click a slide to make it the active slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/tree\">Išvardijamos galimos skaidrės. Dukart spustelėję norimą skaidrę, ją aktyvuosite.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"hd_id3150423\n"
"help.text"
msgid "Open Documents"
-msgstr ""
+msgstr "Atverti dokumentus"
#: 02110000.xhp
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"par_id3150631\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/documents\">Lists available $[officename] files.</ahelp> Select a file to display the contents you can insert."
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/documents\">Išvardijami galimi „ $[officename]“ failai. </ahelp>Pasirinkite failą, kurio turinį galite įterpti."
#: 02120000.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Duplicate"
-msgstr ""
+msgstr "Sukurti kopiją"
#: 02120000.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"hd_id3148868\n"
"help.text"
msgid "Duplicate"
-msgstr ""
+msgstr "Sukurti kopiją"
#: 02120000.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"par_id3148604\n"
"help.text"
msgid "<variable id=\"duplizieren\"><ahelp hid=\".uno:CopyObjects\">Makes one or more copies of a selected object. </ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"duplizieren\"><ahelp hid=\".uno:CopyObjects\">Sukuria vieną ar kelias pasirinkto objekto kopijas. </ahelp></variable>"
#: 02120000.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"hd_id3146962\n"
"help.text"
msgid "Number of copies"
-msgstr ""
+msgstr "Kopijų skaičius"
#: 02120000.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"par_id3153075\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/copydlg/copies\">Enter the number of copies you want to make.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/copydlg/copies\">Įrašykite, kiek kopijų norite sukurti.</ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"hd_id3150431\n"
"help.text"
msgid "Values from selection"
-msgstr ""
+msgstr "Reikšmės iš atrankos"
#: 02120000.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"par_id3150534\n"
"help.text"
msgid "<image id=\"img_id3157870\" src=\"res/sc10350.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3157870\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3157870\" src=\"res/sc10350.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3157870\">Piktograma</alt></image>"
#: 02120000.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"par_id3150744\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/copydlg/viewdata\">Enters the width and the height values of the selected object in the <emph>X axis </emph>and the <emph>Y axis </emph>boxes respectively as well as the fill color of the object in the Start box.</ahelp> The rotation angle of the selected object is not entered."
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/copydlg/viewdata\">Įrašo pasirinkto objekto aukštį ir plotį atitinkamai <emph>X ašies </emph> ir <emph>Y ašies </emph> laukeliuose, parenka užpildymo spalvą pradžios laukelyje.</ahelp> Pasirinkto objekto posūkio kampas neįrašomas."
#: 02120000.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"hd_id3153932\n"
"help.text"
msgid "Placement"
-msgstr ""
+msgstr "Išdėstymas"
#: 02120000.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"par_id3150860\n"
"help.text"
msgid "Sets the position and rotation of a duplicate object with respect to the selected object."
-msgstr ""
+msgstr "Nustato kopijos vietą ir posūkio kampą atsižvelgdamas į pažymėtą objektą."
#: 02120000.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"hd_id3153084\n"
"help.text"
msgid "X axis"
-msgstr ""
+msgstr "X ašis"
#: 02120000.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"par_id3153564\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/copydlg/x\">Enter the horizontal distance between the centers of the selected object and the duplicate object. Positive values shift the duplicate object to the right and negative values shift the duplicate object to the left.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/copydlg/x\">Įrašykite horizontalų atstumą nuo pasirinkto objekto centro iki kopijos. Teigiama reikšmė perkelia kopiją į dešinę, neigiama – į kairę.</ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"hd_id3154507\n"
"help.text"
msgid "Y axis"
-msgstr ""
+msgstr "Y ašis"
#: 02120000.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"par_id3149882\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/copydlg/y\">Enter the vertical distance between the centers of the selected object and the duplicate object. Positive values shift the duplicate object down and negative values shift the duplicate object up.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/copydlg/y\">Įrašykite vertikalų atstumą nuo pasirinkto objekto centro iki kopijos. Teigiama reikšmė perkelia kopiją žemyn, neigiama – aukštyn.</ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"hd_id3150022\n"
"help.text"
msgid "Angle"
-msgstr ""
+msgstr "Kampas"
#: 02120000.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"par_id3153738\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/copydlg/angle\">Enter the angle (0 to 359 degrees) by which you want to rotate the duplicate object. Positive values rotate the duplicate object in a clockwise direction and negative values in a counterclockwise direction. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/copydlg/angle\">Įrašykite kampą (nuo 0 iki 359), kuriuo norite pasukto kopiją. Teigiama reikšmė reiškia kopijos posūkį pagal laikrodžio rodyklę, neigiama - prieš laikrodžio rodyklę.</ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"hd_id3145296\n"
"help.text"
msgid "Enlargement"
-msgstr ""
+msgstr "Didinimas"
#: 02120000.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"par_id3156065\n"
"help.text"
msgid "Sets the size of a duplicate object."
-msgstr ""
+msgstr "Nustato kopijos dydį."
#: 02120000.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"hd_id3148769\n"
"help.text"
msgid "Width"
-msgstr ""
+msgstr "Plotis"
#: 02120000.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"par_id3150267\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/copydlg/width\">Enter the amount by which you want to enlarge or reduce the width of the duplicate object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/copydlg/width\">Įrašykite skaičių, kiek norite padidinti arba sumažinti kopijos plotį.</ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"hd_id3150930\n"
"help.text"
msgid "Height"
-msgstr ""
+msgstr "Aukštis"
#: 02120000.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"par_id3157970\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/copydlg/height\">Enter the amount by which you want to enlarge or reduce the height of the duplicate object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/copydlg/height\">Įrašykite skaičių, kiek norite padidinti arba sumažinti kopijos aukštį.</ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"hd_id3154866\n"
"help.text"
msgid "Colors"
-msgstr ""
+msgstr "Spalvos"
#: 02120000.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"par_id3150474\n"
"help.text"
msgid "Sets the colors for the selected object and the duplicate object. If you make more than one copy, these colors define the start and end points of a color gradient."
-msgstr ""
+msgstr "Nustato pasirinktam objektui ir jo kopijai spalvas. Jei kuriate daugiau nei vieną kopiją, tai šios spalvos apibrėžia spalvos gradianto pradžios ir pabaigos taškus."
#: 02120000.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"hd_id3155819\n"
"help.text"
msgid "Start"
-msgstr ""
+msgstr "Pradžia"
#: 02120000.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"par_id3155987\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/copydlg/start\">Choose a color for the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/copydlg/start\">Pasirinkite objekto spalvą.</ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"hd_id3156258\n"
"help.text"
msgid "End"
-msgstr ""
+msgstr "Pabaiga"
#: 02120000.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"par_id3147167\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/copydlg/end\">Choose a color for the duplicate object. If you are making more than one copy, this color is applied to the last copy. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/copydlg/end\">Pasirinkite kopijos spalvą. Jei kuriate daugiau nei vieną kopiją, ši spalva bus pritaikyta paskutinei kopijai.</ahelp>"
#: 02130000.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Delete Slide"
-msgstr ""
+msgstr "Šalinti skaidrę"
#: 02130000.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"bm_id3154253\n"
"help.text"
msgid "<bookmark_value>deleting; slides</bookmark_value><bookmark_value>slides;deleting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>šalinimas; skaidrės</bookmark_value><bookmark_value>skaidrės;šalinimas</bookmark_value>"
#: 02130000.xhp
msgctxt ""
@@ -998,7 +998,7 @@ msgctxt ""
"hd_id3154253\n"
"help.text"
msgid "<link href=\"text/simpress/01/02130000.xhp\" name=\"Delete Slide\">Delete Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02130000.xhp\" name=\"Delete Slide\">Šalinti skaidrę</link>"
#: 02130000.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"par_id3145790\n"
"help.text"
msgid "<variable id=\"seiteloeschen\"><ahelp hid=\".uno:DeletePage\">Deletes the current slide or page.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteloeschen\"><ahelp hid=\".uno:DeletePage\">Pašalina esamą skaidrę arba failą.</ahelp></variable>"
#: 02130000.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"par_id3150208\n"
"help.text"
msgid "In the context menu of a slide or page you find the following command, among others:"
-msgstr ""
+msgstr "Skaidrės arba puslapio kontekstiniame meniu galite pasirinkti šias komandas:"
#: 02130000.xhp
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"hd_id3154485\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Rename Slide </caseinline><defaultinline>Rename Page</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Pervadinti skaidrę </caseinline><defaultinline>Pervadinti puslapį</defaultinline></switchinline>"
#: 02130000.xhp
msgctxt ""
@@ -1030,7 +1030,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 ""
+msgstr "<ahelp hid=\".uno:RenamePage\">Pervadina pasirinktą <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">skaidrės </caseinline><defaultinline>puslapį</defaultinline></switchinline>.</ahelp>"
#: 02140000.xhp
msgctxt ""
@@ -1038,7 +1038,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Delete Layer"
-msgstr ""
+msgstr "Šalinti sluoksnį"
#: 02140000.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"bm_id3153541\n"
"help.text"
msgid "<bookmark_value>layers; deleting</bookmark_value> <bookmark_value>deleting; layers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>sluoksniai; šalinama</bookmark_value> <bookmark_value>šalinama; sluoksniai</bookmark_value>"
#: 02140000.xhp
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"hd_id3153541\n"
"help.text"
msgid "Delete Layer"
-msgstr ""
+msgstr "Šalinti sluoksnį"
#: 02140000.xhp
msgctxt ""
@@ -1062,7 +1062,7 @@ msgctxt ""
"par_id3148664\n"
"help.text"
msgid "<variable id=\"ebeneloeschen\"><ahelp hid=\".uno:DeleteLayer\">Deletes the active layer.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"ebeneloeschen\"><ahelp hid=\".uno:DeleteLayer\">Šalina esamą sluoksnį.</ahelp></variable>"
#: 02150000.xhp
msgctxt ""
@@ -1070,7 +1070,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Cross-fading"
-msgstr ""
+msgstr "Virsmas"
#: 02150000.xhp
msgctxt ""
@@ -1078,7 +1078,7 @@ msgctxt ""
"hd_id3148577\n"
"help.text"
msgid "Cross-fading"
-msgstr ""
+msgstr "Virsmas"
#: 02150000.xhp
msgctxt ""
@@ -1086,7 +1086,7 @@ msgctxt ""
"par_id3155601\n"
"help.text"
msgid "<variable id=\"uebertext\"><ahelp hid=\".uno:Morphing\">Creates shapes and distributes them by uniform increments between two drawing objects.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"uebertext\"><ahelp hid=\".uno:Morphing\">Sukuria figūras ir paskirsto jas pagal vienodą padidėjimą tarp dviejų grafinių objektų.</ahelp></variable>"
#: 02150000.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id3146971\n"
"help.text"
msgid "$[officename] draws a series of intermediate shapes between two selected objects and <link href=\"text/shared/01/05290000.xhp\" name=\"groups\">groups</link> the result."
-msgstr ""
+msgstr "„$[officename]“ nubraižo didėjančių figūrų seką tarp dviejų pasirinktų objektų ir juos <link href=\"text/shared/01/05290000.xhp\" name=\"groups\">sugrupuoja</link>."
#: 02150000.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"hd_id3155334\n"
"help.text"
msgid "Settings"
-msgstr ""
+msgstr "Nuostatos"
#: 02150000.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"par_id3149126\n"
"help.text"
msgid "Sets the options for cross-fading."
-msgstr ""
+msgstr "Nustato virsmo nuostatas."
#: 02150000.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"hd_id3149257\n"
"help.text"
msgid "Increments"
-msgstr ""
+msgstr "Pokytis"
#: 02150000.xhp
msgctxt ""
@@ -1126,7 +1126,7 @@ msgctxt ""
"par_id3150297\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/crossfadedialog/increments\">Enter the number of shapes you want between the two selected objects.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/crossfadedialog/increments\">Įrašykite, kiek figūrų norite įterpti tarp dviejų pasirinktų objektų.</ahelp>"
#: 02150000.xhp
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"hd_id3149211\n"
"help.text"
msgid "Cross-fade attributes"
-msgstr ""
+msgstr "Virsmo savybės"
#: 02150000.xhp
msgctxt ""
@@ -1142,7 +1142,7 @@ msgctxt ""
"par_id3150207\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/crossfadedialog/attributes\">Applies cross-fading to the line and fill properties of the selected objects.</ahelp> For example, if the selected objects are filled with different colors, a color transition between the two colors is applied."
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/crossfadedialog/attributes\">Pritaiko virsmą tiesei ir pasirinkto objekto savybes.</ahelp> Pavyzdžiui, jei pasirinkti objektai yra užpildyti skirtingomis spalvomis, tai figūroms tarp jų pritaikomas spalvų perėjimas."
#: 02150000.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"hd_id3152994\n"
"help.text"
msgid "Same orientation"
-msgstr ""
+msgstr "Tokia pati padėtis"
#: 02150000.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id3153819\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/crossfadedialog/orientation\">Applies a smooth transition between the selected objects.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/crossfadedialog/orientation\">Pritaiko glotnų perėjimą vieno pasirinkto objekto iki kito.</ahelp>"
#: 02160000.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit Fields"
-msgstr ""
+msgstr "Laukų taisymas"
#: 02160000.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"bm_id3145251\n"
"help.text"
msgid "<bookmark_value>fields; editing</bookmark_value> <bookmark_value>editing; fields</bookmark_value> <bookmark_value>fields; formatting</bookmark_value> <bookmark_value>formatting; fields</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>laikai; taisymas</bookmark_value> <bookmark_value>taisymas; laukai</bookmark_value> <bookmark_value>laukai; formatavimas</bookmark_value> <bookmark_value>formatavimas; laukai</bookmark_value>"
#: 02160000.xhp
msgctxt ""
@@ -1182,7 +1182,7 @@ msgctxt ""
"hd_id3145251\n"
"help.text"
msgid "Edit Fields"
-msgstr ""
+msgstr "Laukų taisymas"
#: 02160000.xhp
msgctxt ""
@@ -1190,7 +1190,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 ""
+msgstr "<variable id=\"fields_text\"><variable id=\"feldbefehltext\"><ahelp hid=\"modules/simpress/ui/dlgfield/EditFieldsDialog\">Įterpto lauko savybių taisymas.</ahelp></variable></variable>Jei norite taisyti įterptą lauką, dukart jį spragtelėkite. <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Tuomet pasirinkite <emph>Taisa → Laukai</emph>.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"DRAW\">Tuomet pasirinkite <emph>Taisa → Laukai</emph>.</caseinline></switchinline>"
#: 02160000.xhp
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"hd_id3166425\n"
"help.text"
msgid "Field type"
-msgstr ""
+msgstr "Lauko tipas"
#: 02160000.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"par_id3159236\n"
"help.text"
msgid "Sets the type of a field."
-msgstr ""
+msgstr "Nustato lauko tipą."
#: 02160000.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"hd_id3150208\n"
"help.text"
msgid "Fixed"
-msgstr ""
+msgstr "Fiksuotas"
#: 02160000.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"par_id3156447\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/dlgfield/fixedRB\">Displays the content of the field when the field was inserted.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/dlgfield/fixedRB\">Parodo įterpiamo lauko turinį.</ahelp>"
#: 02160000.xhp
msgctxt ""
@@ -1230,7 +1230,7 @@ msgctxt ""
"hd_id3153819\n"
"help.text"
msgid "Variable"
-msgstr ""
+msgstr "Kintamasis"
#: 02160000.xhp
msgctxt ""
@@ -1238,7 +1238,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/dlgfield/varRB\">Displays the current value of the field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/dlgfield/varRB\">Parodo esamą lauko reikšmę.</ahelp>"
#: 02160000.xhp
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"hd_id3148608\n"
"help.text"
msgid "Language"
-msgstr ""
+msgstr "Kalba"
#: 02160000.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id3150210\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/dlgfield/languageLB\">Select the language for the field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/dlgfield/languageLB\">Parinkite lauko kalbą.</ahelp>"
#: 02160000.xhp
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"hd_id3154765\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Formatas"
#: 02160000.xhp
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"par_id3145112\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/dlgfield/formatLB\">Select a display format for the field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/dlgfield/formatLB\">Pasirinkite lauko rodymo formatą.</ahelp>"
#: 03050000.xhp
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Option Bar"
-msgstr ""
+msgstr "Parinkčių juosta"
#: 03050000.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"hd_id3153415\n"
"help.text"
msgid "<link href=\"text/simpress/01/03050000.xhp\" name=\"Option Bar\">Option Bar</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03050000.xhp\" name=\"Option Bar\">Parinkčių juosta</link>"
#: 03060000.xhp
msgctxt ""
@@ -1294,7 +1294,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Rulers"
-msgstr ""
+msgstr "Liniuotės"
#: 03060000.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"hd_id3146974\n"
"help.text"
msgid "<link href=\"text/simpress/01/03060000.xhp\" name=\"Rulers\">Rulers</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03060000.xhp\" name=\"Rulers\">Liniuotės</link>"
#: 03060000.xhp
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"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 ""
+msgstr "<ahelp hid=\".\">Parodo arba paslepia liniuotes darbo srities viršuje, kairėje arba dešinėje.</ahelp>"
#: 03060000.xhp
msgctxt ""
@@ -1318,7 +1318,7 @@ msgctxt ""
"par_id3146972\n"
"help.text"
msgid "You can use <link href=\"text/simpress/main0209.xhp\" name=\"rulers\">rulers</link> to position objects in the workspace, to set paragraph indents or to drag <link href=\"text/simpress/01/04030000.xhp\" name=\"guides\">guides</link> onto the page."
-msgstr ""
+msgstr "<link href=\"text/simpress/main0209.xhp\" name=\"rulers\">Liniuotes</link> galite naudoti, kai norite pakeisti objektų vietas, nustatyti pastraipų įtraukas arba nutempti <link href=\"text/simpress/01/04030000.xhp\" name=\"guides\">vadovą</link> į puslapį."
#: 03070000.xhp
msgctxt ""
@@ -1326,7 +1326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Presentation"
-msgstr ""
+msgstr "Pateiktis"
#: 03070000.xhp
msgctxt ""
@@ -1334,7 +1334,7 @@ msgctxt ""
"hd_id3153144\n"
"help.text"
msgid "<link href=\"text/simpress/01/03070000.xhp\" name=\"Presentation\">Presentation</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03070000.xhp\" name=\"Presentation\">Pateiktis</link>"
#: 03070000.xhp
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"par_id3146975\n"
"help.text"
msgid "<ahelp hid=\".uno:CommonTaskBarVisible\">Common commands for slides.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:CommonTaskBarVisible\">Bendros skaidrių komandos.</ahelp>"
#: 03070000.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Skaidrės</link>"
#: 03070000.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"hd_id3154754\n"
"help.text"
msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Slide Layout\">Slide Layout</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05130000.xhp\" name=\"Slide Layout\">Skaidrės maketas</link>"
#: 03070000.xhp
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"hd_id3155960\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Slide Design\">Slide Design</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Slide Design\">Skaidrės dizainas</link>"
#: 03080000.xhp
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Normal View"
-msgstr ""
+msgstr "Normalusis rodinys"
#: 03080000.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"bm_id3148576\n"
"help.text"
msgid "<bookmark_value>normal view;presentations</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>normalusis rodinys;pateiktys</bookmark_value>"
#: 03080000.xhp
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"hd_id3148576\n"
"help.text"
msgid "<link href=\"text/simpress/01/03080000.xhp\" name=\"Normal View\">Normal</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03080000.xhp\" name=\"Normal View\">Normalus</link>"
#: 03080000.xhp
msgctxt ""
@@ -1398,7 +1398,7 @@ msgctxt ""
"par_id3145251\n"
"help.text"
msgid "<ahelp hid=\"HID_SD_BTN_DRAW\">Switches to normal view, where you can create and edit your slides.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_SD_BTN_DRAW\">Pakeičia į normalųjį rodinį, kur galite kurti, taisyti skaidres.</ahelp>"
#: 03080000.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"par_id1977294\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a submenu with commands for the current slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Atveria esamos skaidrės komandų submeniu.</ahelp>"
#: 03080000.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"par_id9628894\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">When enabled, the current slide shows the background of the master slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Įjungus, esama skaidrė rodo skaidrės ruošinio foną.</ahelp>"
#: 03080000.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"par_id7587206\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">When enabled, the current slide shows the objects of the master slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Įjungus, esama skaidrė rodo skaidrės ruošinio objektus.</ahelp>"
#: 03080000.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"par_id3257545\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a file dialog to select a picture. The picture will be scaled and inserted on the background of the current master slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Atveria paveikslėlių pasirinkimo dialogo langą. Paveikslėlio mastelis pritaikomas ir jis įterpiama į esamo skaidrės ruošinio foną.</ahelp>"
#: 03090000.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Outline View"
-msgstr ""
+msgstr "Pateikties struktūra"
#: 03090000.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"bm_id3149664\n"
"help.text"
msgid "<bookmark_value>outline view</bookmark_value> <bookmark_value>editing;slide titles</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>pateikties struktūra</bookmark_value> <bookmark_value>taisymas;skaidrės pavadinimas</bookmark_value>"
#: 03090000.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"hd_id3149664\n"
"help.text"
msgid "<link href=\"text/simpress/01/03090000.xhp\" name=\"Outline View\">Outline</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03090000.xhp\" name=\"Outline View\">Struktūra</link>"
#: 03090000.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"par_id3152597\n"
"help.text"
msgid "<ahelp hid=\"HID_SD_BTN_OUTLINE\">Switches to outline view, where you can add, edit and reorganize slide titles and headings.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_SD_BTN_OUTLINE\">Pakeičia į struktūros rodinį, kur galite pridėti, taisyti ir perdėlioti skaidrių pavadinimus ir antraštes.</ahelp>"
#: 03090000.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"par_id3150715\n"
"help.text"
msgid "The <emph>Text Formatting</emph> bar contains the following icons for slide titles:<link href=\"text/shared/02/06060000.xhp\" name=\"Promote\">Promote</link>, <link href=\"text/shared/02/06050000.xhp\" name=\"Demote\">Demote</link>, <link href=\"text/shared/02/06100000.xhp\" name=\"Move Up\">Move Up</link> and <link href=\"text/shared/02/06110000.xhp\" name=\"Move Down\">Move Down</link>. If you want to reorder slide titles with the keyboard, ensure that the cursor is at the beginning of a title and press Tab to move the title one level lower in the hierarchy. To move the title up one level, press Shift+Tab."
-msgstr ""
+msgstr "<emph>teksto formatavimo</emph> juostoje yra šie mygtukai:<link href=\"text/shared/02/06060000.xhp\" name=\"Promote\">Vienu lygiu aukštyn</link><link href=\"text/shared/02/06050000.xhp\" name=\"Demote\">Vienu lygiu žemyn</link><link href=\"text/shared/02/06100000.xhp\" name=\"Move Up\">Pakelti</link> ir <link href=\"text/shared/02/06110000.xhp\" name=\"Move Down\">Nuleisti</link>. Jei norite pakeisti skaidrės pavadinimo lygį naudodami klaviatūra, įsitikinkite, kad žymeklis yra pavadinimo pradžioje ir spustelėkite „Tab“ klavišą. jei norite pakeisti pavadinimą vienu lygiu, tai spauskite „Lyg2“+„Tab“."
#: 03090000.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"par_id3156382\n"
"help.text"
msgid "The upper outline level corresponds to slide titles, and the lower levels correspond to the headings on a slides."
-msgstr ""
+msgstr "Aukštesnieji struktūros lygiai atitinka skaidrių pavadinimus, o žemesnieji lygiai atitinka skaidrių antraštes."
#: 03100000.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide Sorter"
-msgstr ""
+msgstr "Skaidrių rikiavimas"
#: 03100000.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"hd_id3146974\n"
"help.text"
msgid "<link href=\"text/simpress/01/03100000.xhp\" name=\"Slide Sorter\">Slide Sorter</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03100000.xhp\" name=\"Slide Sorter\">Skaidrių rikiavimas</link>"
#: 03100000.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"par_id3154492\n"
"help.text"
msgid "<ahelp hid=\"HID_SD_BTN_SLIDE\">Displays miniature versions of the slides so they can easily be rearranged.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_SD_BTN_SLIDE\">Rodomos labai mažos skaidrės , todėl jas lengva perrikiuoti.</ahelp>"
#: 03110000.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Notes View"
-msgstr ""
+msgstr "Pastabos"
#: 03110000.xhp
msgctxt ""
@@ -1518,7 +1518,7 @@ msgctxt ""
"bm_id3153190\n"
"help.text"
msgid "<bookmark_value>notes; adding to slides</bookmark_value> <bookmark_value>slides;inserting speaker notes</bookmark_value> <bookmark_value>speaker notes;inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>pastabos; skaidrių pridėjimas</bookmark_value> <bookmark_value>skaidrės;įterpti pranešėjo pastabas</bookmark_value> <bookmark_value>pranešėjo pastabos;įterpimas</bookmark_value>"
#: 03110000.xhp
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"hd_id3153190\n"
"help.text"
msgid "<link href=\"text/simpress/01/03110000.xhp\" name=\"Notes View\">Notes</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03110000.xhp\" name=\"Notes View\">Pastabos</link>"
#: 03110000.xhp
msgctxt ""
@@ -1534,7 +1534,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 ""
+msgstr "<ahelp hid=\".\">Perkelia į pastabų rodinį, kur galite savo skaidrėse pridėti pastabas.</ahelp> Klausytojams pastabos pranešimo metu nerodomos."
#: 03120000.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Handout Page"
-msgstr ""
+msgstr "Dalijamoji medžiaga"
#: 03120000.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"hd_id3149456\n"
"help.text"
msgid "<link href=\"text/simpress/01/03120000.xhp\" name=\"Handout Page\">Handout Page</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03120000.xhp\" name=\"Handout Page\">Dalinamoji medžiaga</link>"
#: 03120000.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"par_id3154684\n"
"help.text"
msgid "<variable id=\"handout_text\"><ahelp hid=\"HID_SD_BTN_HANDOUT\">Switches to the handout page view, where you can scale several slides to fit on one printed page.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"handout_text\"><ahelp hid=\"HID_SD_BTN_HANDOUT\">Perkelia į dalijamosios medžiagos rodinį, kur galite keisti skaidrių mastelį, kad keletas skaidrių tilptų į viena spausdinamą puslapį.</ahelp></variable>"
#: 03120000.xhp
msgctxt ""
@@ -1566,7 +1566,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 ""
+msgstr "Jei norite nurodyti, kiek skaidrių spausdinama viename puslapyje, pasirinkite <emph>Savybių</emph> juostoje spustelėkite norimą skaidrių <emph>Maketą</emph>."
#: 03130000.xhp
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide Show"
-msgstr ""
+msgstr "Pateikties demonstravimas"
#: 03130000.xhp
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"hd_id3159153\n"
"help.text"
msgid "<link href=\"text/simpress/01/03130000.xhp\" name=\"Slide Show\">Slide Show</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03130000.xhp\" name=\"Slide Show\">Pateikties demonstravimas</link>"
#: 03130000.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"par_id3154016\n"
"help.text"
msgid "<variable id=\"bldpra\"><ahelp hid=\"HID_SD_BTN_PRESENTATION\">Starts your slide show.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"bldpra\"><ahelp hid=\"HID_SD_BTN_PRESENTATION\">Pradėti demonstravimą.</ahelp></variable>"
#: 03130000.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"par_id3155066\n"
"help.text"
msgid "You can specify settings for running a slide show in <link href=\"text/simpress/01/06080000.xhp\" name=\"Slide Show - Slide Show Settings\"><emph>Slide Show - Slide Show Settings</emph></link>."
-msgstr ""
+msgstr "Galite nurodyti skaidrių demonstravimo nuostatas pasirinkę <link href=\"text/simpress/01/06080000.xhp\" name=\"Slide Show - Slide Show Settings\"><emph>Demonstravimas → Pateikties demonstravimo nuostatos</emph></link>."
#: 03130000.xhp
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"par_idN106CF\n"
"help.text"
msgid "Specify whether a slide show starts with the current slide or with the first slide on <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 "Nurodykite, ar pateikties demonstravimas pradedamas esama skaidre ar pirma skaidre<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Priemonės → Parinktys</emph></defaultinline></switchinline><emph> → „%PRODUCTNAME“ pateikčių rengyklė → Bendrosios pateiktys</emph>."
#: 03130000.xhp
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"par_id3155960\n"
"help.text"
msgid "To start a slide show, do one of the following:"
-msgstr ""
+msgstr "Jei norite pradėti pateikties demonstravimą, atlikite vieną iš šių žingsnių:"
#: 03130000.xhp
msgctxt ""
@@ -1622,7 +1622,7 @@ msgctxt ""
"par_id3155337\n"
"help.text"
msgid "Click the <emph>Slide Show</emph> icon on the <emph>Presentation</emph> toolbar."
-msgstr ""
+msgstr "Spustelėkite <emph>Pateikties demonstravimo</emph> mygtuką <emph>Demonstravimo</emph> juostoje."
#: 03130000.xhp
msgctxt ""
@@ -1630,7 +1630,7 @@ msgctxt ""
"par_id3150343\n"
"help.text"
msgid "Right-click a slide in <emph>Normal</emph> view and choose <emph>Slide Show.</emph>"
-msgstr ""
+msgstr "<emph>Skaidrės</emph> rodinyje spustelėkite dešinį pelės klavišą ir pasirinkite <emph>Pateikties demonstravimas.</emph>"
#: 03130000.xhp
msgctxt ""
@@ -1638,7 +1638,7 @@ msgctxt ""
"par_id3156445\n"
"help.text"
msgid "Press F5."
-msgstr ""
+msgstr "Spauskite F5."
#: 03130000.xhp
msgctxt ""
@@ -1646,7 +1646,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 ""
+msgstr "„Windows“ spustelėkite dešinį pelės klavišą „.sxi“ arba „.odp“ failų naršyklėje ir pasirinkite <emph>Demonstruoti</emph>."
#: 03150000.xhp
msgctxt ""
@@ -1654,7 +1654,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master"
-msgstr ""
+msgstr "Ruošinys"
#: 03150000.xhp
msgctxt ""
@@ -1662,7 +1662,7 @@ msgctxt ""
"bm_id3153142\n"
"help.text"
msgid "<bookmark_value>master views</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ruošinio peržiūra</bookmark_value>"
#: 03150000.xhp
msgctxt ""
@@ -1670,7 +1670,7 @@ msgctxt ""
"hd_id3153142\n"
"help.text"
msgid "<link href=\"text/simpress/01/03150000.xhp\" name=\"Master\">Master</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03150000.xhp\" name=\"Master\">Ruošinys</link>"
#: 03150000.xhp
msgctxt ""
@@ -1678,7 +1678,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 ""
+msgstr "<ahelp hid=\"HID_SD_BTN_MASTERPAGE\">Perkelia į vieną iš kelių ruošinio rodinių, kur galite pridėti elementus, kuriuos norite matyti visose skaidrėse.</ahelp>"
#: 03150100.xhp
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master Slide"
-msgstr ""
+msgstr "Ruošinio skaidrė"
#: 03150100.xhp
msgctxt ""
@@ -1694,7 +1694,7 @@ msgctxt ""
"bm_id3154013\n"
"help.text"
msgid "<bookmark_value>normal view; backgrounds</bookmark_value> <bookmark_value>backgrounds; normal view</bookmark_value> <bookmark_value>views;master slide view</bookmark_value> <bookmark_value>master slide view</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>normalus rodinys; fonas</bookmark_value> <bookmark_value>fonas; normalus rodinys</bookmark_value> <bookmark_value>rodiniai;skaidrės ruošinio rodinys</bookmark_value> <bookmark_value>skaidrės ruošinio rodinys</bookmark_value>"
#: 03150100.xhp
msgctxt ""
@@ -1702,7 +1702,7 @@ msgctxt ""
"hd_id3154013\n"
"help.text"
msgid "<link href=\"text/simpress/01/03150100.xhp\" name=\"Master Slide\">Master Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03150100.xhp\" name=\"Master Slide\">Skaidrės ruošinys</link>"
#: 03150100.xhp
msgctxt ""
@@ -1710,7 +1710,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "<ahelp hid=\".\">Switches to master slide view, where you can add elements that you want to appear on all of the slides that use the same master slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Perkelia į skaidrių ruošinio rodinį, kur galite pridėti elementus matomus visose skaidrėse sukurtose šio ruošinio pagrindu.</ahelp>"
#: 03150100.xhp
msgctxt ""
@@ -1718,7 +1718,7 @@ msgctxt ""
"par_id4941557\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new master slide into the document. Double-click the new master slide on the Slides pane to apply it to all slides.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Įterpia naują ruošinio skaidrę į dokumentą. Dukart spragtelėję skaidrės ruošinį Skaidrių panelėje pritaikysite jį visoms skaidrėms.</ahelp>"
#: 03150100.xhp
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"par_id9961851\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a master slide and click this icon to remove the master slide from the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Pasirinkite skaidrės ruošinį ir spustelėję šį mygtuką pašalinkite skaidrės ruošinį iš dokumento.</ahelp>"
#: 03150100.xhp
msgctxt ""
@@ -1734,7 +1734,7 @@ msgctxt ""
"par_id4526200\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a master slide and click this icon to rename the master slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Pasirinkite skaidrės ruošinį ir spustelėję šį mygtuką pervadinkite šį skaidrės ruošinį.</ahelp>"
#: 03150100.xhp
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"par_id8036133\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Closes the master slide view.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Užveria skaidrės ruošinio rodinį.</ahelp>"
#: 03150300.xhp
msgctxt ""
@@ -1750,7 +1750,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master Notes"
-msgstr ""
+msgstr "Ruošinio pastabos"
#: 03150300.xhp
msgctxt ""
@@ -1758,7 +1758,7 @@ msgctxt ""
"bm_id3153144\n"
"help.text"
msgid "<bookmark_value>notes;default formatting</bookmark_value> <bookmark_value>backgrounds;notes</bookmark_value> <bookmark_value>speaker notes;defaults</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>pastabos;numatytasis formatavimas</bookmark_value> <bookmark_value>fonas;pastabos</bookmark_value> <bookmark_value>pranešėjo pastabos;numatytasis</bookmark_value>"
#: 03150300.xhp
msgctxt ""
@@ -1766,7 +1766,7 @@ msgctxt ""
"hd_id3153144\n"
"help.text"
msgid "<link href=\"text/simpress/01/03150300.xhp\" name=\"Master Notes\">Master Notes</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03150300.xhp\" name=\"Master Notes\">Ruošinio pastabos</link>"
#: 03150300.xhp
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"par_id3154491\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the master notes, where you can set the default formatting for notes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Parodo ruošinio pastabas, kur galite nurodyti pastabų numatytąjį formatavimą.</ahelp>"
#: 03151000.xhp
msgctxt ""
@@ -1782,7 +1782,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master Elements"
-msgstr ""
+msgstr "Ruošinio elementai"
#: 03151000.xhp
msgctxt ""
@@ -1790,7 +1790,7 @@ msgctxt ""
"bm_id4083986\n"
"help.text"
msgid "<bookmark_value>headers and footers;master slides layouts</bookmark_value> <bookmark_value>master slides layouts with headers and footers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>antraštės ir poraštės;skaidrių ruošinio struktūra</bookmark_value> <bookmark_value>skaidrių ruošinio struktūra su antraštėmis ir poraštėmis</bookmark_value>"
#: 03151000.xhp
msgctxt ""
@@ -1798,7 +1798,7 @@ msgctxt ""
"par_idN1056D\n"
"help.text"
msgid "<link href=\"text/simpress/01/03151000.xhp\" name=\"Master Elements\">Master Elements</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03151000.xhp\" name=\"Master Elements\">Ruošinio elementai</link>"
#: 03151000.xhp
msgctxt ""
@@ -1806,7 +1806,7 @@ msgctxt ""
"par_idN1057D\n"
"help.text"
msgid "<ahelp hid=\".\">Add header, footer, date, and slide number placeholders to the master slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Pridėkite antraštės, datos ir skaidrės numerio vietas ruošinio skaidrėje.</ahelp> "
#: 03151100.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master Slide Layout"
-msgstr ""
+msgstr "Ruošinio skaidrės struktūra"
#: 03151100.xhp
msgctxt ""
@@ -1822,7 +1822,7 @@ msgctxt ""
"par_idN10537\n"
"help.text"
msgid "<link href=\"text/simpress/01/03151100.xhp\">Master Slide Layout</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03151100.xhp\">Ruošinio skaidrės struktūra</link>"
#: 03151100.xhp
msgctxt ""
@@ -1830,7 +1830,7 @@ msgctxt ""
"par_idN1053B\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/MasterLayoutDialog\">Adds or removes header, footer, date, and slide number placeholders to the layout of the master slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/MasterLayoutDialog\">Prideda arba pašalina antraštės, poraštės, datos ir skaidrės numerio vietas ruošinio skaidrės struktūroje.</ahelp>"
#: 03151100.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"par_idN1054A\n"
"help.text"
msgid "Placeholders"
-msgstr ""
+msgstr "Rezervuotos vietos"
#: 03151100.xhp
msgctxt ""
@@ -1846,7 +1846,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "Header"
-msgstr ""
+msgstr "Antraštė"
#: 03151100.xhp
msgctxt ""
@@ -1854,7 +1854,7 @@ msgctxt ""
"par_idN1055A\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/header\">Adds a header placeholder to the master slide for notes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/header\">Prideda antraštės vietą ruošinio skaidrės pastabose.</ahelp>"
#: 03151100.xhp
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"par_idN10571\n"
"help.text"
msgid "Date/time"
-msgstr ""
+msgstr "Data ir laikas"
#: 03151100.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"par_idN10575\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/datetime\">Adds a date/time placeholder to the master slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/datetime\">Prideda datos ir laiko vietą ruošinio skaidrėje.</ahelp>"
#: 03151100.xhp
msgctxt ""
@@ -1878,7 +1878,7 @@ msgctxt ""
"par_idN1058C\n"
"help.text"
msgid "Footer"
-msgstr ""
+msgstr "Puslapinė poraštė"
#: 03151100.xhp
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"par_idN10590\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/footer\">Adds a footer placeholder to the master slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/footer\">Prideda puslapinės antraštės vietą ruošinio skaidrėje.</ahelp>"
#: 03151100.xhp
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"par_idN105A7\n"
"help.text"
msgid "Slide number"
-msgstr ""
+msgstr "Skaidrės numeris"
#: 03151100.xhp
msgctxt ""
@@ -1902,7 +1902,7 @@ msgctxt ""
"par_idN105AB\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/pagenumber\">Adds a slide number placeholder to the master slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/pagenumber\">Prideda skaidrės numerio vietą ruošinio skaidrėje.</ahelp>"
#: 03151200.xhp
msgctxt ""
@@ -1910,7 +1910,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master Notes Layout"
-msgstr ""
+msgstr "Ruošinio pastabų struktūra"
#: 03151200.xhp
msgctxt ""
@@ -1918,7 +1918,7 @@ msgctxt ""
"par_idN10527\n"
"help.text"
msgid "<link href=\"text/simpress/01/03151200.xhp\">Master Notes Layout</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03151200.xhp\">Ruošinio pastabų struktūra</link>"
#: 03151200.xhp
msgctxt ""
@@ -1926,7 +1926,7 @@ msgctxt ""
"par_idN1052B\n"
"help.text"
msgid "<ahelp hid=\"SID_MASTER_LAYOUTS_NOTES\">Add header, footer, date, and slide number to the master notes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SID_MASTER_LAYOUTS_NOTES\">Pridėkite antraštę, poraštę, datą ir skaidrės numerį ruošinio pastabose.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -1934,7 +1934,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Header and Footer"
-msgstr ""
+msgstr "Puslapinė antraštė ir poraštė"
#: 03152000.xhp
msgctxt ""
@@ -1942,7 +1942,7 @@ msgctxt ""
"bm_id1374858\n"
"help.text"
msgid "<bookmark_value>slides;page numbers</bookmark_value><bookmark_value>slides;headers and footers</bookmark_value><bookmark_value>footers;slides</bookmark_value><bookmark_value>headers and footers;slides</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>skaidrės;puslapio numeris</bookmark_value><bookmark_value>skaidrės;antraštės ir poraštės</bookmark_value><bookmark_value>poraštės;skaidrės</bookmark_value><bookmark_value>antraštės ir poraštės;skaidrės</bookmark_value>"
#: 03152000.xhp
msgctxt ""
@@ -1950,7 +1950,7 @@ msgctxt ""
"par_idN1053E\n"
"help.text"
msgid "<link href=\"text/simpress/01/03152000.xhp\">Header and Footer</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03152000.xhp\">Antraštės ir poraštės</link>"
#: 03152000.xhp
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"par_idN1054E\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/HeaderFooterDialog\">Adds or changes text in placeholders at the top and the bottom of slides and master slides.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/HeaderFooterDialog\">Prideda arba pakeičia tekstą rezervuotoje vietoje ruošinio skaidrės viršuje arba apačioje.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -1966,7 +1966,7 @@ msgctxt ""
"par_idN10697\n"
"help.text"
msgid "The <emph>Header and Footer</emph> dialog contains the following tab pages:"
-msgstr ""
+msgstr "<emph>Antraštės ir poraštės</emph> dialogo lange yra šios kortelės:"
#: 03152000.xhp
msgctxt ""
@@ -1974,7 +1974,7 @@ msgctxt ""
"par_idN1069D\n"
"help.text"
msgid "<emph>Slide</emph> tab page where you can specify options for the current slide or for all slides."
-msgstr ""
+msgstr "<emph>Skaidrės</emph> kortelėje galite nurodyti esamos skaidrės arba visų skaidrių parinktis."
#: 03152000.xhp
msgctxt ""
@@ -1982,7 +1982,7 @@ msgctxt ""
"par_idN106A5\n"
"help.text"
msgid "<emph>Notes and Handouts</emph> tab page where you can specify options for the notes pages and the handout pages."
-msgstr ""
+msgstr "<emph>Pastabų ir dalijamosios medžiagos</emph> kortelėje galite nurodyti pastabų ir dalijamosios medžiagos puslapių parametrus."
#: 03152000.xhp
msgctxt ""
@@ -1990,7 +1990,7 @@ msgctxt ""
"par_id083120160418133174\n"
"help.text"
msgid "<image id=\"img_id083120160418043590\" src=\"media/screenshots/modules/simpress/ui/headerfooterdialog/HeaderFooterDialog.png\" width=\"6.5835in\" height=\"5.5102in\"><alt id=\"alt_id083120160418043590\">Header and footer dialog</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id083120160418043590\" src=\"media/screenshots/modules/simpress/ui/headerfooterdialog/HeaderFooterDialog.png\" width=\"6.5835in\" height=\"5.5102in\"><alt id=\"alt_id083120160418043590\">Antraštės ir poraštės dialogo langas</alt></image>"
#: 03152000.xhp
msgctxt ""
@@ -1998,7 +1998,7 @@ msgctxt ""
"par_idN106B7\n"
"help.text"
msgid "Include on slide"
-msgstr ""
+msgstr "Rodyti skaidrėje"
#: 03152000.xhp
msgctxt ""
@@ -2006,7 +2006,7 @@ msgctxt ""
"par_idN106BA\n"
"help.text"
msgid "Specify the elements to include on your slides."
-msgstr ""
+msgstr "Nurodykite skaidrės elementus"
#: 03152000.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"par_idN106BD\n"
"help.text"
msgid "Footer"
-msgstr ""
+msgstr "Puslapinė poraštė"
#: 03152000.xhp
msgctxt ""
@@ -2022,7 +2022,7 @@ msgctxt ""
"par_idN106C8\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfootertab/footer_cb\">Adds the text that you enter in the <emph>Footer text</emph> box to the bottom of the slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfootertab/footer_cb\">Prideda tekstą įrašytą <emph>Poraštės laukelyje</emph> skaidrės apačioje.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -2030,7 +2030,7 @@ msgctxt ""
"par_idN106D7\n"
"help.text"
msgid "Footer text"
-msgstr ""
+msgstr "Puslapinės poraštės tekstas"
#: 03152000.xhp
msgctxt ""
@@ -2038,7 +2038,7 @@ msgctxt ""
"par_idN106E2\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfootertab/footer_text\">Adds the text that you enter to the bottom of the slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfootertab/footer_text\">Prideda tekstą įrašytą skaidrės apačioje.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"par_idN106F1\n"
"help.text"
msgid "Header"
-msgstr ""
+msgstr "Antraštė"
#: 03152000.xhp
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"par_idN106FC\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfootertab/header_cb\">Adds the text that you enter in the <emph>Header text</emph> box to the top of the slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfootertab/header_cb\">Prideda tekstą įrašytą <emph>Antraštės laukelyje</emph> skaidrės viršuje.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -2062,7 +2062,7 @@ msgctxt ""
"par_idN1070B\n"
"help.text"
msgid "Header text"
-msgstr ""
+msgstr "Puslapinės antraštės tekstas"
#: 03152000.xhp
msgctxt ""
@@ -2070,7 +2070,7 @@ msgctxt ""
"par_idN10716\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfootertab/header_text\">Adds the text that you enter to the top of the slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfootertab/header_text\">Prideda tekstą įrašytą skaidrės viršuje.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -2078,7 +2078,7 @@ msgctxt ""
"par_idN1072D\n"
"help.text"
msgid "Date and time"
-msgstr ""
+msgstr "Data ir laikas"
#: 03152000.xhp
msgctxt ""
@@ -2086,7 +2086,7 @@ msgctxt ""
"par_idN10730\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfootertab/datetime_cb\">Adds the date and time to the slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfootertab/datetime_cb\">Prideda datą ir laiką skaidrėje.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -2094,7 +2094,7 @@ msgctxt ""
"par_idN1074F\n"
"help.text"
msgid "Fixed"
-msgstr ""
+msgstr "Fiksuotas"
#: 03152000.xhp
msgctxt ""
@@ -2102,7 +2102,7 @@ msgctxt ""
"par_idN10752\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfootertab/rb_fixed\">Displays the date and time that you enter in the text box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfootertab/rb_fixed\">Parodo datą ir laiką įrašytą teksto laukelyje.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -2110,7 +2110,7 @@ msgctxt ""
"par_idN10771\n"
"help.text"
msgid "Variable"
-msgstr ""
+msgstr "Kintamasis"
#: 03152000.xhp
msgctxt ""
@@ -2118,7 +2118,7 @@ msgctxt ""
"par_idN10774\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfootertab/rb_auto\">Displays the date and time that the slide was created. Select a date format from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfootertab/rb_auto\">Rodo pateikties sukūrimo datą ir laiką. Pasirinkite datos formatą iš sąrašo.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -2126,7 +2126,7 @@ msgctxt ""
"par_idN1078B\n"
"help.text"
msgid "Language"
-msgstr ""
+msgstr "Kalba"
#: 03152000.xhp
msgctxt ""
@@ -2134,7 +2134,7 @@ msgctxt ""
"par_idN1078E\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfootertab/language_list\">Select the language for the date and time format.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfootertab/language_list\">Pasirinkite datos ir laiko formatui kalbą.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -2142,7 +2142,7 @@ msgctxt ""
"par_idN107A5\n"
"help.text"
msgid "Slide number / Page number"
-msgstr ""
+msgstr "Skaidrės ir puslapio numeris"
#: 03152000.xhp
msgctxt ""
@@ -2150,7 +2150,7 @@ msgctxt ""
"par_idN107A8\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfootertab/slide_number\">Adds the slide number or the page number.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfootertab/slide_number\">Prideda skaidrės arba puslapio numerį.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -2158,7 +2158,7 @@ msgctxt ""
"par_idN107BF\n"
"help.text"
msgid "Do not show on first slide"
-msgstr ""
+msgstr "Nerodyti pirmoje skaidrėje"
#: 03152000.xhp
msgctxt ""
@@ -2166,7 +2166,7 @@ msgctxt ""
"par_idN107C2\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfootertab/not_on_title\">Does not display your specified information on the first slide of your presentation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfootertab/not_on_title\">Jūsų nurodytos informacijos nerodo pirmoje pateikties skaidrėje.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -2174,7 +2174,7 @@ msgctxt ""
"par_idN107D1\n"
"help.text"
msgid "Apply to All"
-msgstr ""
+msgstr "Taikyti visoms skaidrėms"
#: 03152000.xhp
msgctxt ""
@@ -2182,7 +2182,7 @@ msgctxt ""
"par_idN107DC\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/apply_all\">Applies the settings to all the slides in your presentation, including the corresponding master slides.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/apply_all\">Pritaiko nuostatas visoms pateikties skaidrėms įskaitant ir atitinkamas ruošinio skaidres.</ahelp>"
#: 03152000.xhp
msgctxt ""
@@ -2190,7 +2190,7 @@ msgctxt ""
"par_idN107FD\n"
"help.text"
msgid "Apply"
-msgstr ""
+msgstr "Pritaikyti"
#: 03152000.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"par_idN10800\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/apply\">Applies the current settings to the selected slides.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/apply\">Pritaiko esamas nuostatas pasirinktoms skaidrėms.</ahelp>"
#: 03180000.xhp
msgctxt ""
@@ -2206,7 +2206,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Color/Grayscale"
-msgstr ""
+msgstr "Spalvos ar pilkos spalvos atspalviai"
#: 03180000.xhp
msgctxt ""
@@ -2214,7 +2214,7 @@ msgctxt ""
"bm_id3153142\n"
"help.text"
msgid "<bookmark_value>display qualities of presentations</bookmark_value><bookmark_value>colors; displaying presentations</bookmark_value><bookmark_value>black and white display</bookmark_value><bookmark_value>grayscale display</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>rodyti pateikties savybes</bookmark_value><bookmark_value>spalvos;pateikties rodymas</bookmark_value><bookmark_value>baltai juodas rodymas</bookmark_value><bookmark_value>pilkos spalvos atspalvių rodymas</bookmark_value>"
#: 03180000.xhp
msgctxt ""
@@ -2222,7 +2222,7 @@ msgctxt ""
"hd_id3153142\n"
"help.text"
msgid "<link href=\"text/simpress/01/03180000.xhp\" name=\"Display Quality\">Color/Grayscale</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/03180000.xhp\" name=\"Display Quality\">Spalvos ar pilkos spalvos atspalviai</link>"
#: 03180000.xhp
msgctxt ""
@@ -2230,7 +2230,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "Shows slides in color, grayscale, or black and white."
-msgstr ""
+msgstr "Rodyti skaidres spalvotai, pilkos spalvos atspalviais arba juoda ir balta spalva."
#: 03180000.xhp
msgctxt ""
@@ -2238,7 +2238,7 @@ msgctxt ""
"hd_id3149123\n"
"help.text"
msgid "Color"
-msgstr ""
+msgstr "Spalva"
#: 03180000.xhp
msgctxt ""
@@ -2246,7 +2246,7 @@ msgctxt ""
"par_id3154757\n"
"help.text"
msgid "<ahelp hid=\".\">Shows slides in color.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Rodyti skaidres spalvotai.</ahelp>"
#: 03180000.xhp
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"hd_id3155333\n"
"help.text"
msgid "Grayscale"
-msgstr ""
+msgstr "Pilkos spalvos atspalviai"
#: 03180000.xhp
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"par_id3150200\n"
"help.text"
msgid "<ahelp hid=\".\">Shows slides in shades of black and white.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Rodyti skaidres balta ir juoda spalva.</ahelp>"
#: 03180000.xhp
msgctxt ""
@@ -2270,7 +2270,7 @@ msgctxt ""
"hd_id3150342\n"
"help.text"
msgid "Black and White"
-msgstr ""
+msgstr "Juodai balta"
#: 03180000.xhp
msgctxt ""
@@ -2278,7 +2278,7 @@ msgctxt ""
"par_id3150207\n"
"help.text"
msgid "<ahelp hid=\".\">Shows slides in pure black or white without shading.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Rodyti skaidres juodai baltas skaidres be šešėlių.</ahelp>"
#: 04020000.xhp
msgctxt ""
@@ -2286,7 +2286,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert Layer"
-msgstr ""
+msgstr "Įterpti sluoksnį"
#: 04020000.xhp
msgctxt ""
@@ -2294,7 +2294,7 @@ msgctxt ""
"hd_id3151074\n"
"help.text"
msgid "Insert Layer"
-msgstr ""
+msgstr "Įterpti sluoksnį"
#: 04020000.xhp
msgctxt ""
@@ -2302,7 +2302,7 @@ msgctxt ""
"par_id3153415\n"
"help.text"
msgid "<variable id=\"ebenetext\"><ahelp hid=\".uno:InsertLayer\">Inserts a new layer in the document. Layers are only available in Draw, not in Impress. </ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"ebenetext\"><ahelp hid=\".uno:InsertLayer\">Įterpia naują sluoksnį dokumente. Sluoksniai galimi tik braižyklėje.</ahelp></variable>"
#: 04020000.xhp
msgctxt ""
@@ -2310,7 +2310,7 @@ msgctxt ""
"par_id3150205\n"
"help.text"
msgid "To select a layer, click the corresponding tab at the bottom of the workspace."
-msgstr ""
+msgstr "Jei norite pasirinkti sluoksnį, spustelėkite atitinkamos kortelės ąselę darbo srities viršuje."
#: 04020000.xhp
msgctxt ""
@@ -2318,7 +2318,7 @@ msgctxt ""
"hd_id3145588\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Pavadinimas"
#: 04020000.xhp
msgctxt ""
@@ -2326,7 +2326,7 @@ msgctxt ""
"par_id3149404\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/insertlayer/name\">Enter a name for the new layer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/insertlayer/name\">Įveskite naujo sluoksnio pavadinimą.</ahelp>"
#: 04020000.xhp
msgctxt ""
@@ -2334,7 +2334,7 @@ msgctxt ""
"hd_id3153820\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Savybės"
#: 04020000.xhp
msgctxt ""
@@ -2342,7 +2342,7 @@ msgctxt ""
"par_id3151240\n"
"help.text"
msgid "Set the properties for the new layer."
-msgstr ""
+msgstr "Nustatykite naujo sluoksnio savybes."
#: 04020000.xhp
msgctxt ""
@@ -2350,7 +2350,7 @@ msgctxt ""
"hd_id3149945\n"
"help.text"
msgid "Visible"
-msgstr ""
+msgstr "Matomas"
#: 04020000.xhp
msgctxt ""
@@ -2358,7 +2358,7 @@ msgctxt ""
"par_id3157980\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/insertlayer/visible\">Show or hide the layer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/insertlayer/visible\">Parodyti arba paslėpti sluoksnį.</ahelp>"
#: 04020000.xhp
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"hd_id3153246\n"
"help.text"
msgid "Printable"
-msgstr ""
+msgstr "Spausdinamas"
#: 04020000.xhp
msgctxt ""
@@ -2374,7 +2374,7 @@ msgctxt ""
"par_id3154762\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/insertlayer/printable\">When printing, print or ignore this particular layer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/insertlayer/printable\">Spausdinant galite spausdinti arba nepaisyti tam tikro sluoksnio.</ahelp>"
#: 04020000.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"hd_id3146965\n"
"help.text"
msgid "Locked"
-msgstr ""
+msgstr "Užrakintas"
#: 04020000.xhp
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"par_id3149876\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/insertlayer/locked\">Prevent elements on the layer from being edited.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/insertlayer/locked\">Neleisti taisyti sluoksnio elementų.</ahelp>"
#: 04030000.xhp
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Snap Point/Line"
-msgstr ""
+msgstr "Pritraukti tašką arba tiesę"
#: 04030000.xhp
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"bm_id3145800\n"
"help.text"
msgid "<bookmark_value>snap lines, see also guides</bookmark_value><bookmark_value>snap points;inserting</bookmark_value><bookmark_value>guides; inserting</bookmark_value><bookmark_value>magnetic lines in presentations</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>pritraukti tiesę, skaitykite nurodymus</bookmark_value><bookmark_value>pritraukti tašką;įterpimas</bookmark_value><bookmark_value>nurodymai; įterpimas</bookmark_value><bookmark_value>pritraukimo tiesės pateiktyse</bookmark_value>"
#: 04030000.xhp
msgctxt ""
@@ -2414,7 +2414,7 @@ msgctxt ""
"hd_id3145800\n"
"help.text"
msgid "Snap Point/Line"
-msgstr ""
+msgstr "Pritraukti tašką arba tiesę"
#: 04030000.xhp
msgctxt ""
@@ -2422,7 +2422,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 ""
+msgstr "<variable id=\"fangtext\"><ahelp hid=\".uno:CapturePoint\">Įterpia traukos tašką arba tiesę (žinomą kaip orientyrą), kurį galite panaudoti objektų lygiavimui. </ahelp></variable>Traukos taškai ir tiesės nespausdinamos."
#: 04030000.xhp
msgctxt ""
@@ -2430,7 +2430,7 @@ msgctxt ""
"par_id3145388\n"
"help.text"
msgid "You can drag a snap line from the rulers and drop them on the page. To delete a snap line, drag it back to the ruler."
-msgstr ""
+msgstr "Traukos tiesę galite tempti nuo liniuotės į puslapį. Jei norite pašalinti traukos tiesę, nutempkite ją atgal į liniuotę."
#: 04030000.xhp
msgctxt ""
@@ -2438,7 +2438,7 @@ msgctxt ""
"par_id3153815\n"
"help.text"
msgid "Draw or move an object near a snap point or snap line to snap it in place."
-msgstr ""
+msgstr "Jei norite objektus pritraukti prie traukos taško ar tiesės, tiesiog juos nutempkite prie jų."
#: 04030000.xhp
msgctxt ""
@@ -2446,7 +2446,7 @@ msgctxt ""
"par_id3157978\n"
"help.text"
msgid "To set the snap range, choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070300.xhp\" name=\"Drawing - Grid\"><emph>%PRODUCTNAME Draw - Grid</emph></link></caseinline><defaultinline><link href=\"text/shared/optionen/01070300.xhp\" name=\"Presentation - Grid\"><emph>%PRODUCTNAME Impress - Grid</emph></link></defaultinline></switchinline> in the Options dialog box."
-msgstr ""
+msgstr "Jei norite nustatyti traukos sritį, pasirinkite <switchinline select=\"appl\"><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070300.xhp\" name=\"Drawing - Grid\"><emph>„%PRODUCTNAME“ braižyklė → Tinklelis</emph></link></caseinline><defaultinline><link href=\"text/shared/optionen/01070300.xhp\" name=\"Presentation - Grid\"><emph>„%PRODUCTNAME“ pateikčių rengyklė → Tinklelis</emph></link></defaultinline></switchinline> parinkčių dialogo lange."
#: 04030000.xhp
msgctxt ""
@@ -2454,7 +2454,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\">Traukos taško dialogo langas</alt></image>"
#: 04030000.xhp
msgctxt ""
@@ -2462,7 +2462,7 @@ msgctxt ""
"hd_id3147402\n"
"help.text"
msgid "Position"
-msgstr ""
+msgstr "Padėtis"
#: 04030000.xhp
msgctxt ""
@@ -2470,7 +2470,7 @@ msgctxt ""
"par_id3150533\n"
"help.text"
msgid "Sets the position of a selected snap point or line relative to the top left corner of the page."
-msgstr ""
+msgstr "Nurodykite pasirinkto traukos taško arba tiesės padėtį atsižvelgdami į puslapio viršutinį kairįjį kampą."
#: 04030000.xhp
msgctxt ""
@@ -2478,7 +2478,7 @@ msgctxt ""
"par_id3153040\n"
"help.text"
msgid "You can also drag a snap point or snap line to a new position."
-msgstr ""
+msgstr "Galite nutempti traukos tašką arba tiesį į naują vietą."
#: 04030000.xhp
msgctxt ""
@@ -2486,7 +2486,7 @@ msgctxt ""
"hd_id3153078\n"
"help.text"
msgid "X axis"
-msgstr ""
+msgstr "X ašis"
#: 04030000.xhp
msgctxt ""
@@ -2494,7 +2494,7 @@ msgctxt ""
"par_id3149951\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/dlgsnap/x\">Enter the amount of space you want between the snap point or line and the left edge of the page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/dlgsnap/x\">Įveskite srities dydį, kuri turėtų būti tarp traukos taško arba tiesės ir puslapio kairiojo kampo.</ahelp>"
#: 04030000.xhp
msgctxt ""
@@ -2502,7 +2502,7 @@ msgctxt ""
"hd_id3153932\n"
"help.text"
msgid "Y axis"
-msgstr ""
+msgstr "Y ašis"
#: 04030000.xhp
msgctxt ""
@@ -2510,7 +2510,7 @@ msgctxt ""
"par_id3153113\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/dlgsnap/y\">Enter the amount of space you want between the snap point or line and the top edge of the page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/dlgsnap/y\">Įveskite srities dydį, kuri turėtų būti tarp traukos taško arba tiesės ir puslapio viršutinio kampo.</ahelp>"
#: 04030000.xhp
msgctxt ""
@@ -2518,7 +2518,7 @@ msgctxt ""
"hd_id3145168\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Tipas"
#: 04030000.xhp
msgctxt ""
@@ -2526,7 +2526,7 @@ msgctxt ""
"par_id3154503\n"
"help.text"
msgid "Specified the type of snap object you want to insert."
-msgstr ""
+msgstr "Nurodykite traukos objekto tipą."
#: 04030000.xhp
msgctxt ""
@@ -2534,7 +2534,7 @@ msgctxt ""
"hd_id3147366\n"
"help.text"
msgid "Point"
-msgstr ""
+msgstr "Taškas"
#: 04030000.xhp
msgctxt ""
@@ -2542,7 +2542,7 @@ msgctxt ""
"par_id3155926\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/dlgsnap/point\">Inserts a snap point.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/dlgsnap/point\">Įterpti traukos tašką.</ahelp>"
#: 04030000.xhp
msgctxt ""
@@ -2550,7 +2550,7 @@ msgctxt ""
"hd_id3150014\n"
"help.text"
msgid "Vertical"
-msgstr ""
+msgstr "Vertikaliai"
#: 04030000.xhp
msgctxt ""
@@ -2558,7 +2558,7 @@ msgctxt ""
"par_id3145241\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/dlgsnap/vert\">Inserts a vertical snap line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/dlgsnap/vert\">Įterpia vertikalią traukos tiesę.</ahelp>"
#: 04030000.xhp
msgctxt ""
@@ -2566,7 +2566,7 @@ msgctxt ""
"hd_id3148386\n"
"help.text"
msgid "Horizontal"
-msgstr ""
+msgstr "Horizontaliai"
#: 04030000.xhp
msgctxt ""
@@ -2574,7 +2574,7 @@ msgctxt ""
"par_id3145348\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/dlgsnap/horz\">Inserts a horizontal snap line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/dlgsnap/horz\">Įterpia horizontalią traukos tiesę.</ahelp>"
#: 04030000m.xhp
msgctxt ""
@@ -2582,7 +2582,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Rows"
-msgstr ""
+msgstr "Eilutės"
#: 04030000m.xhp
msgctxt ""
@@ -2590,7 +2590,7 @@ msgctxt ""
"bm_id31505414711\n"
"help.text"
msgid "<bookmark_value>rows; inserting</bookmark_value><bookmark_value>inserting; rows</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>eilutės; įterpimas</bookmark_value><bookmark_value>įterpimas;eilutės</bookmark_value>"
#: 04030000m.xhp
msgctxt ""
@@ -2598,7 +2598,7 @@ msgctxt ""
"hd_id3150541\n"
"help.text"
msgid "<link href=\"text/simpress/01/04030000m.xhp\" name=\"Rows\">Rows</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04030000m.xhp\" name=\"Rows\">Eilutės</link>"
#: 04030000m.xhp
msgctxt ""
@@ -2606,7 +2606,7 @@ msgctxt ""
"par_id3150767\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertRows\">Inserts a new row above the active cell. The number of rows inserted correspond to the number of rows selected. The existing rows are moved downward.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertRows\">Įterpia naują eilutę virš aktyvaus langelio. Įterpiamų eilučių skaičius priklauso nuo pažymėtų eilučių skaičiaus. Esamos eilutės pastumiamos žemyn.</ahelp>"
#: 04030000m.xhp
msgctxt ""
@@ -2614,7 +2614,7 @@ msgctxt ""
"par_id091620081118197\n"
"help.text"
msgid "In the context menu of a cell, choose <emph>Insert - Rows</emph>"
-msgstr ""
+msgstr "Langelio kontekstiniame meniu pasirinkite <emph>Įterpti → Eilutes</emph>"
#: 04030100.xhp
msgctxt ""
@@ -2622,7 +2622,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit Snap Line / Point"
-msgstr ""
+msgstr "Taisyti traukos tiesę arba tašką"
#: 04030100.xhp
msgctxt ""
@@ -2630,7 +2630,7 @@ msgctxt ""
"bm_id3149020\n"
"help.text"
msgid "<bookmark_value>guides; editing</bookmark_value><bookmark_value>editing; guides and snap points</bookmark_value><bookmark_value>snap points; editing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>orientyrai; taisymas</bookmark_value><bookmark_value>taisymas; orientyrai ir traukos taškai</bookmark_value><bookmark_value>traukos taškai; taisymas</bookmark_value>"
#: 04030100.xhp
msgctxt ""
@@ -2638,7 +2638,7 @@ msgctxt ""
"hd_id3149020\n"
"help.text"
msgid "Edit Snap Line / Point"
-msgstr ""
+msgstr "Taisyti traukos tiesę arba tašką"
#: 04030100.xhp
msgctxt ""
@@ -2646,7 +2646,7 @@ msgctxt ""
"par_id3149259\n"
"help.text"
msgid "<ahelp hid=\".uno:SetSnapItem\">Sets the position of the selected snap point or snap line relative to the top left corner of the page. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SetSnapItem\">Nustato pasirinkto traukos taško arba tiesės padėtį atsižvelgdamas į puslapio viršutinį kairįjį kampą. </ahelp>"
#: 04030100.xhp
msgctxt ""
@@ -2654,7 +2654,7 @@ msgctxt ""
"hd_id3159238\n"
"help.text"
msgid "Delete Snap Line/Point"
-msgstr ""
+msgstr "Šalinti traukos tiesę arba tašką"
#: 04030100.xhp
msgctxt ""
@@ -2662,7 +2662,7 @@ msgctxt ""
"par_id3154656\n"
"help.text"
msgid "<ahelp hid=\".uno:DeleteSnapItem\">Deletes the selected snap point or snap line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DeleteSnapItem\">pašalina pasirinktą traukos tašką arba tiesę.</ahelp>"
#: 04040000m.xhp
msgctxt ""
@@ -2670,7 +2670,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Columns"
-msgstr ""
+msgstr "Stulpeliai"
#: 04040000m.xhp
msgctxt ""
@@ -2678,7 +2678,7 @@ msgctxt ""
"bm_id31556284711\n"
"help.text"
msgid "<bookmark_value>inserting; columns</bookmark_value><bookmark_value>columns; inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>įterpimas; stulpeliai</bookmark_value><bookmark_value>stulpeliai; įterpimas</bookmark_value>"
#: 04040000m.xhp
msgctxt ""
@@ -2686,7 +2686,7 @@ msgctxt ""
"hd_id3155628\n"
"help.text"
msgid "<link href=\"text/simpress/01/04040000m.xhp\" name=\"Columns\">Columns</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04040000m.xhp\" name=\"Columns\">Stulpeliai</link>"
#: 04040000m.xhp
msgctxt ""
@@ -2694,7 +2694,7 @@ msgctxt ""
"par_id3150791\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertColumns\">Inserts a new column to the left of the active cell. The number of columns inserted correspond to the number of columns selected. The existing columns are moved to the right.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertColumns\">Įterpia naują stulpelį aktyvaus langelio kairėje. Įterpiamų stulpelių skaičius priklauso nuo pažymėtų stulpelių skaičiaus. Esami stulpeliai pastumiami dešinės.</ahelp>"
#: 04040000m.xhp
msgctxt ""
@@ -2702,7 +2702,7 @@ msgctxt ""
"par_id0916200811234668\n"
"help.text"
msgid "In the context menu of a cell, choose <emph>Insert - Columns</emph>"
-msgstr ""
+msgstr "Langelio kontekstiniame meniu pasirinkite <emph>Įterpti → Stulpeliai</emph>"
#: 04080100.xhp
msgctxt ""
@@ -2710,7 +2710,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Table"
-msgstr ""
+msgstr "Lentelė"
#: 04080100.xhp
msgctxt ""
@@ -2718,7 +2718,7 @@ msgctxt ""
"hd_id3148576\n"
"help.text"
msgid "<link href=\"text/shared/01/04080100.xhp\">Table</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04080100.xhp\">Lentelė</link>"
#: 04080100.xhp
msgctxt ""
@@ -2726,7 +2726,7 @@ msgctxt ""
"par_id3146975\n"
"help.text"
msgid "<variable id=\"tabelletext\"><ahelp hid=\".\">Inserts a new table into the current slide or page.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".\">Įterpia naują lentelę į esamą skaidrę arba puslapį.</ahelp></variable>"
#: 04110000.xhp
msgctxt ""
@@ -2734,7 +2734,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert File"
-msgstr ""
+msgstr "Įterpti failą"
#: 04110000.xhp
msgctxt ""
@@ -2742,7 +2742,7 @@ msgctxt ""
"bm_id3153728\n"
"help.text"
msgid "<bookmark_value>files; inserting</bookmark_value><bookmark_value>inserting; files</bookmark_value><bookmark_value>HTML; inserting files</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>failai; įterpimas</bookmark_value><bookmark_value>įterpimas; failai</bookmark_value><bookmark_value>HTML; failų įterpimas</bookmark_value>"
#: 04110000.xhp
msgctxt ""
@@ -2750,7 +2750,7 @@ msgctxt ""
"hd_id3153728\n"
"help.text"
msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"Insert File\">Insert File</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"Insert File\">Įterpti failą</link>"
#: 04110000.xhp
msgctxt ""
@@ -2758,7 +2758,7 @@ msgctxt ""
"par_id3145799\n"
"help.text"
msgid "<variable id=\"dateitext\"><ahelp hid=\".uno:ImportFromFile\">Inserts a file into the active slide. You can insert $[officename] Draw or Impress files, or text from an HTML document or a text file.</ahelp></variable> If you have an active internet connection, you can also insert text from a web page by entering its URL in the <emph>File name </emph>box."
-msgstr ""
+msgstr "<variable id=\"dateitext\"><ahelp hid=\".uno:ImportFromFile\">Įterpia failą į esamą skaidrę. Galite įterpti „$[officename]“ braižyklės arba pateikčių rengyklės failą arba tekstą į HTML dokumento arba tekstinio failo.</ahelp></variable> Jei turite interneto prieigą, galite įterpti tekstą iš tinklalapio įrašydami URL <emph>Failo pavadinimo </emph>lauke."
#: 04110000.xhp
msgctxt ""
@@ -2766,7 +2766,7 @@ msgctxt ""
"par_id3155446\n"
"help.text"
msgid "You can also choose to only insert specific <link href=\"text/simpress/01/04110100.xhp\" name=\"slides or objects\">slides or objects</link> from $[officename] Draw or Impress files."
-msgstr ""
+msgstr "Taip pat galite pasirinkti įterpti tam tikras <link href=\"text/simpress/01/04110100.xhp\" name=\"slides or objects\">skaidres ar objektus</link> iš „$[officename]“ braižyklės ar pateikčių rengyklės failų."
#: 04110100.xhp
msgctxt ""
@@ -2774,7 +2774,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert Slides/Objects"
-msgstr ""
+msgstr "Įterpti skaidres arba objektus"
#: 04110100.xhp
msgctxt ""
@@ -2782,7 +2782,7 @@ msgctxt ""
"bm_id3146976\n"
"help.text"
msgid "<bookmark_value>inserting; objects from files</bookmark_value><bookmark_value>objects; inserting from files</bookmark_value><bookmark_value>slides; inserting as links</bookmark_value><bookmark_value>inserting; slides as links</bookmark_value><bookmark_value>backgrounds; deleting unused</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>įterpimas; objektai iš failų</bookmark_value><bookmark_value>objektai; įterpimas iš failų</bookmark_value><bookmark_value>skaidrės; įterpiama kaip saitai</bookmark_value><bookmark_value>įterpimas; skaidrės kaip saitai</bookmark_value><bookmark_value>fonai; šalinti nenaudojamus</bookmark_value>"
#: 04110100.xhp
msgctxt ""
@@ -2790,7 +2790,7 @@ msgctxt ""
"hd_id3146976\n"
"help.text"
msgid "Insert Slides/Objects"
-msgstr ""
+msgstr "Įterpti skaidres arba objektus"
#: 04110100.xhp
msgctxt ""
@@ -2798,7 +2798,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "Allows you to insert the entire file or specific elements in the file."
-msgstr ""
+msgstr "Leidžia įterpti esamą failą arba atitinkamus elementus į failą."
#: 04110100.xhp
msgctxt ""
@@ -2806,7 +2806,7 @@ msgctxt ""
"hd_id3154016\n"
"help.text"
msgid "To insert specific elements from a file:"
-msgstr ""
+msgstr "Jei norite įterpti atitinkamus elementus iš failo:"
#: 04110100.xhp
msgctxt ""
@@ -2814,7 +2814,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 ""
+msgstr "Spustelėkite sudėties ženklą prie failo pavadinimo ir pasirinkite elementus, kuriuos norite įterpti. Nuspauskite klavišą <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Vald</defaultinline></switchinline>, jei norite įterpti arba Lyg2, jei norite papildyti pasirinkimą."
#: 04110100.xhp
msgctxt ""
@@ -2822,7 +2822,7 @@ msgctxt ""
"par_id3155962\n"
"help.text"
msgid "If you want to insert the file as a link, select <emph>Link</emph>."
-msgstr ""
+msgstr "Jei norite įterpti failą kaip saitą, pasirinkite <emph>Saitas</emph>."
#: 04110100.xhp
msgctxt ""
@@ -2830,7 +2830,7 @@ msgctxt ""
"par_id3149255\n"
"help.text"
msgid "Click <emph>OK</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Gerai</emph>."
#: 04110100.xhp
msgctxt ""
@@ -2838,7 +2838,7 @@ msgctxt ""
"par_id3159236\n"
"help.text"
msgid "At the prompt, click <emph>Yes </emph>to scale the elements to fit on the slide or <emph>No </emph>to preserve the original size of the elements."
-msgstr ""
+msgstr "Raginime spustelėkite <emph>Taip </emph>, jei norite sutalpinti elementus skaidrėje keisdami jų mastelį arba <emph>Ne </emph>, jei norite įterpti originalaus dydžio elementus."
#: 04110100.xhp
msgctxt ""
@@ -2846,7 +2846,7 @@ msgctxt ""
"hd_id3150207\n"
"help.text"
msgid "Link"
-msgstr ""
+msgstr "Susieti"
#: 04110100.xhp
msgctxt ""
@@ -2854,7 +2854,7 @@ msgctxt ""
"par_id3156448\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/insertslidesdialog/links\">Inserts a file or some file elements as a link that is automatically updated when the source file is modified.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/insertslidesdialog/links\">Įterpia failą arba failo elementus su saitu, kuris automatiškai atnaujina elementą ar failą, kai keičiamas šaltinis.</ahelp>"
#: 04110100.xhp
msgctxt ""
@@ -2862,7 +2862,7 @@ msgctxt ""
"hd_id3152898\n"
"help.text"
msgid "Delete unused backgrounds"
-msgstr ""
+msgstr "Šalinti nenaudojamus fonus"
#: 04110100.xhp
msgctxt ""
@@ -2870,7 +2870,7 @@ msgctxt ""
"par_id3148868\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/insertslidesdialog/backgrounds\">Unused master pages are not inserted.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/insertslidesdialog/backgrounds\">Nenaudojami ruošinio puslapiai neįterpiami.</ahelp>"
#: 04110200.xhp
msgctxt ""
@@ -2878,7 +2878,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert Text"
-msgstr ""
+msgstr "Įterpti tekstą"
#: 04110200.xhp
msgctxt ""
@@ -2886,7 +2886,7 @@ msgctxt ""
"hd_id3145252\n"
"help.text"
msgid "Insert Text"
-msgstr ""
+msgstr "Įterpti tekstą"
#: 04110200.xhp
msgctxt ""
@@ -2894,7 +2894,7 @@ msgctxt ""
"par_id3150716\n"
"help.text"
msgid "Inserts text from an ASCII, RTF, or HTML file into the active slide."
-msgstr ""
+msgstr "Įterpti tekstą iš ASCII, RTF arba HTML failo į esamą skaidrę."
#: 04110200.xhp
msgctxt ""
@@ -2902,7 +2902,7 @@ msgctxt ""
"par_id3149018\n"
"help.text"
msgid "The inserted text uses the default text formatting of the active slide. If you want, you can drag a text frame in your slide, and then insert the text. The text frame automatically extends downwards for longer text passages."
-msgstr ""
+msgstr "Tekstas įterpiamas numatytuoju esamoje skaidrėje formatu. Jei norite, galite tempto teksto lauką skaidrėje ir tuomet įterpti tekstą. Teksto laukas automatiškai padidinamas ilgesniam tekstui."
#: 04110200.xhp
msgctxt ""
@@ -2910,7 +2910,7 @@ msgctxt ""
"hd_id3156382\n"
"help.text"
msgid "Display list"
-msgstr ""
+msgstr "Rodyti sąrašą"
#: 04110200.xhp
msgctxt ""
@@ -2918,7 +2918,7 @@ msgctxt ""
"par_id3154702\n"
"help.text"
msgid "Select the text you want to insert from the list."
-msgstr ""
+msgstr " Pasirinkite įterpiamą tekstą iš sąrašo."
#: 04110200.xhp
msgctxt ""
@@ -2926,7 +2926,7 @@ msgctxt ""
"hd_id3150200\n"
"help.text"
msgid "Link"
-msgstr ""
+msgstr "Susieti"
#: 04110200.xhp
msgctxt ""
@@ -2934,7 +2934,7 @@ msgctxt ""
"par_id3155333\n"
"help.text"
msgid "Inserts the text as a link. Links are updated automatically when the source file changes."
-msgstr ""
+msgstr "Įterpia tekstą su saitu. Saitas automatiškai atnaujinamas, kai keičiamas šaltinio failas."
#: 04120000.xhp
msgctxt ""
@@ -2942,7 +2942,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Duplicate Slide"
-msgstr ""
+msgstr "Skaidrės kopija"
#: 04120000.xhp
msgctxt ""
@@ -2950,7 +2950,7 @@ msgctxt ""
"hd_id3148576\n"
"help.text"
msgid "<link href=\"text/simpress/01/04120000.xhp\" name=\"Duplicate Slide\">Duplicate Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04120000.xhp\" name=\"Duplicate Slide\">Skaidrės kopija</link>"
#: 04120000.xhp
msgctxt ""
@@ -2958,7 +2958,7 @@ msgctxt ""
"par_id3153190\n"
"help.text"
msgid "<ahelp hid=\".uno:DuplicatePage\" visibility=\"visible\">Inserts a copy of the current slide after the current slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DuplicatePage\" visibility=\"visible\">Įterpia esamos skaidrės kopiją po esamos skaidrės.</ahelp>"
#: 04130000.xhp
msgctxt ""
@@ -2966,7 +2966,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Expand Slide"
-msgstr ""
+msgstr "Išplėstas lapas"
#: 04130000.xhp
msgctxt ""
@@ -2974,7 +2974,7 @@ msgctxt ""
"bm_id3146119\n"
"help.text"
msgid "<bookmark_value>expanding;slides</bookmark_value><bookmark_value>slides;expanding</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>išplečiama;skaidrės</bookmark_value><bookmark_value>skaidrės;išplečiama</bookmark_value>"
#: 04130000.xhp
msgctxt ""
@@ -2982,7 +2982,7 @@ msgctxt ""
"hd_id3146119\n"
"help.text"
msgid "<link href=\"text/simpress/01/04130000.xhp\" name=\"Expand Slide\">Expand Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04130000.xhp\" name=\"Expand Slide\">Skaidrės išplėtimas</link>"
#: 04130000.xhp
msgctxt ""
@@ -2990,7 +2990,7 @@ msgctxt ""
"par_id3154319\n"
"help.text"
msgid "<ahelp hid=\".uno:ExpandPage\">Creates a new slide from every top-level outline point (text one level below the title text in the outline hierarchy) in the selected slide. The outline text becomes the title of the new slide.</ahelp> Outline points below the top level on the original slide are moved up one level on the new slide."
-msgstr ""
+msgstr "<ahelp hid=\".uno:ExpandPage\">Sukuria naują skaidrę kiekvienam aukštesniam struktūros lygiui (vienu lygiu esantis struktūros tekstas perkeliamas į skaidrės pavadinimą) pasirinktoje pateiktyje. Struktūros tekstas perkeliamas į naujos skaidrės pavadinimą.</ahelp> Žemiau aukštesnio lygio esantis originalios skaidrės tekstas perkeliamas aukštys vienu lygiu naujoje skaidrėje."
#: 04130000.xhp
msgctxt ""
@@ -2998,7 +2998,7 @@ msgctxt ""
"par_id3146972\n"
"help.text"
msgid "You can only use the <emph>Expand Slide </emph>command if your slide layout contains a title object and an outline object."
-msgstr ""
+msgstr "Galite naudoti tik komandą <emph>Išplėsta skaidrė </emph>, jei skaidrėje yra pavadinimo ir struktūros objektas."
#: 04130000.xhp
msgctxt ""
@@ -3006,7 +3006,7 @@ msgctxt ""
"par_id3149019\n"
"help.text"
msgid "If you want to keep the original slide, choose <emph>Edit - Undo</emph>."
-msgstr ""
+msgstr "Jei norite palikti originalią skaidrę, pasirinkite <emph>Taisa → Atšaukti</emph>."
#: 04140000.xhp
msgctxt ""
@@ -3014,7 +3014,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Summary Slide"
-msgstr ""
+msgstr "Apibendrinanti skaidrė"
#: 04140000.xhp
msgctxt ""
@@ -3022,7 +3022,7 @@ msgctxt ""
"bm_id3154013\n"
"help.text"
msgid "<bookmark_value>summary slide</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>apibendrinanti skaidrė</bookmark_value>"
#: 04140000.xhp
msgctxt ""
@@ -3030,7 +3030,7 @@ msgctxt ""
"hd_id3154013\n"
"help.text"
msgid "<link href=\"text/simpress/01/04140000.xhp\" name=\"Summary Slide\">Summary Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04140000.xhp\" name=\"Summary Slide\">Apibendrinanti skaidrė</link>"
#: 04140000.xhp
msgctxt ""
@@ -3038,7 +3038,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "<ahelp hid=\".uno:SummaryPage\" visibility=\"visible\">Creates a new slide that contains a bulleted list from the titles of the slides that follow the selected slide. The summary slide is inserted behind the last slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SummaryPage\" visibility=\"visible\">Sukuria naują skaidrę su ženklintu sąrašu, kuris tęsiasi iš ankstesnės skaidrės. Apibendrinanti skaidrė įterpiama prieš paskutinę skaidrę.</ahelp>"
#: 04990000.xhp
msgctxt ""
@@ -3046,7 +3046,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Fields"
-msgstr ""
+msgstr "Laukai"
#: 04990000.xhp
msgctxt ""
@@ -3054,7 +3054,7 @@ msgctxt ""
"bm_id3154011\n"
"help.text"
msgid "<bookmark_value>fields;in slides</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>laukai;skaidrėse</bookmark_value>"
#: 04990000.xhp
msgctxt ""
@@ -3062,7 +3062,7 @@ msgctxt ""
"hd_id3154011\n"
"help.text"
msgid "<link href=\"text/simpress/01/04990000.xhp\" name=\"Fields\">Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04990000.xhp\" name=\"Fields\">Laukai</link>"
#: 04990000.xhp
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"par_id3149666\n"
"help.text"
msgid "Lists common fields that you can insert into your slide."
-msgstr ""
+msgstr "Išvardija laukus, kuriuos galite įterpti į skaidrę."
#: 04990000.xhp
msgctxt ""
@@ -3078,7 +3078,7 @@ msgctxt ""
"par_id3145799\n"
"help.text"
msgid "If you want to edit a field in your slide, select it and choose <emph>Edit – Fields</emph>."
-msgstr ""
+msgstr "Jei norite taisyti lauką skaidrėje, pasirinkite <emph>Taisa → Laukai</emph>."
#: 04990100.xhp
msgctxt ""
@@ -3086,7 +3086,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Date (fixed)"
-msgstr ""
+msgstr "Data (fiksuota)"
#: 04990100.xhp
msgctxt ""
@@ -3094,7 +3094,7 @@ msgctxt ""
"bm_id3153726\n"
"help.text"
msgid "<bookmark_value>dates; fixed</bookmark_value><bookmark_value>fields; dates (fixed)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>datos; laukai</bookmark_value><bookmark_value>laukai; datos (fiksuotos)</bookmark_value>"
#: 04990100.xhp
msgctxt ""
@@ -3102,7 +3102,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<link href=\"text/simpress/01/04990100.xhp\" name=\"Date (fixed)\">Date (fixed)</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04990100.xhp\" name=\"Date (fixed)\">Data (fiksuota)</link>"
#: 04990100.xhp
msgctxt ""
@@ -3110,7 +3110,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertDateFieldFix\">Inserts the current date into your slide as a fixed field. The date is not automatically updated.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertDateFieldFix\">Įterpia esamą datą į skaidrę. Data automatiškai neatnaujinama, kai atveriate failą iš naujo.</ahelp>"
#: 04990100.xhp
msgctxt ""
@@ -3118,7 +3118,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "<variable id=\"bearbeiten\">To edit an inserted field in your slide, double-click the field, place the cursor in front of the first character in the field and choose <link href=\"text/simpress/01/02160000.xhp\" name=\"Edit - Fields\"><emph>Edit - Fields</emph></link>.</variable>"
-msgstr ""
+msgstr "<variable id=\"bearbeiten\">Jei norite taisyti įterptą lauką skaidrėje, dukart spragtelėkite lauką, žymeklį padėję prieš pirmą ženklą lauke, ir pasirinkite <link href=\"text/simpress/01/02160000.xhp\" name=\"Edit - Fields\"><emph>Taisa → Laukai</emph></link>.</variable>"
#: 04990200.xhp
msgctxt ""
@@ -3126,7 +3126,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Date (variable)"
-msgstr ""
+msgstr "Data (kintama)"
#: 04990200.xhp
msgctxt ""
@@ -3134,7 +3134,7 @@ msgctxt ""
"bm_id3154320\n"
"help.text"
msgid "<bookmark_value>dates; variable</bookmark_value><bookmark_value>fields; dates (variable)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>datos; kintamos</bookmark_value><bookmark_value>laukai; datos (kintamos)</bookmark_value>"
#: 04990200.xhp
msgctxt ""
@@ -3142,7 +3142,7 @@ msgctxt ""
"hd_id3154320\n"
"help.text"
msgid "<link href=\"text/simpress/01/04990200.xhp\" name=\"Date (variable)\">Date (variable)</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04990200.xhp\" name=\"Date (variable)\">Data (kintanti)</link>"
#: 04990200.xhp
msgctxt ""
@@ -3150,7 +3150,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertDateFieldVar\">Inserts the current date into your slide as a variable field. The date is automatically updated when you reload the file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertDateFieldVar\">Įterpia kintančią datą į skaidrę. Kai iš naujo atversite failą, data bus atnaujinama.</ahelp>"
#: 04990300.xhp
msgctxt ""
@@ -3158,7 +3158,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Time (fixed)"
-msgstr ""
+msgstr "Laikas (fiksuotas)"
#: 04990300.xhp
msgctxt ""
@@ -3166,7 +3166,7 @@ msgctxt ""
"bm_id3146121\n"
"help.text"
msgid "<bookmark_value>times; fixed</bookmark_value><bookmark_value>fields; times (fixed)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>laikas; fiksuotas</bookmark_value><bookmark_value>laukai; laikas (fiksuotas)</bookmark_value>"
#: 04990300.xhp
msgctxt ""
@@ -3174,7 +3174,7 @@ msgctxt ""
"hd_id3146121\n"
"help.text"
msgid "<link href=\"text/simpress/01/04990300.xhp\" name=\"Time (fixed)\">Time (fixed)</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04990300.xhp\" name=\"Time (fixed)\">Laikas (fiksuotas)</link>"
#: 04990300.xhp
msgctxt ""
@@ -3182,7 +3182,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertTimeFieldFix\">Inserts the current time into your slide as a fixed field. The time is not automatically updated.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertTimeFieldFix\">Įterpia esamą laiką (fiksuota) į skaidrę. Laikas neatnaujinamas automatiškai.</ahelp>"
#: 04990400.xhp
msgctxt ""
@@ -3190,7 +3190,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Time (variable)"
-msgstr ""
+msgstr "Laikas (kintamas)"
#: 04990400.xhp
msgctxt ""
@@ -3198,7 +3198,7 @@ msgctxt ""
"bm_id3146119\n"
"help.text"
msgid "<bookmark_value>times;variable</bookmark_value><bookmark_value>fields;times (variable)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>laikas;kintamas</bookmark_value><bookmark_value>laukas;laikas (kintamas)</bookmark_value>"
#: 04990400.xhp
msgctxt ""
@@ -3206,7 +3206,7 @@ msgctxt ""
"hd_id3146119\n"
"help.text"
msgid "<link href=\"text/simpress/01/04990400.xhp\" name=\"Time (variable)\">Time (variable)</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04990400.xhp\" name=\"Time (variable)\">laikas (kintamas)</link>"
#: 04990400.xhp
msgctxt ""
@@ -3214,7 +3214,7 @@ msgctxt ""
"par_id3147434\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertTimeFieldVar\">Inserts the current time into your slide as a variable field. The time is automatically updated when you reload the file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertTimeFieldVar\">Įterpia esamą laiką į skaidrę. Kai paleisite failą iš naujo, laikas bus atnaujinamas.</ahelp>"
#: 04990500.xhp
msgctxt ""
@@ -3222,7 +3222,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Number"
-msgstr ""
+msgstr "Puslapio numeris"
#: 04990500.xhp
msgctxt ""
@@ -3230,7 +3230,7 @@ msgctxt ""
"bm_id3154319\n"
"help.text"
msgid "<bookmark_value>fields; page numbers</bookmark_value><bookmark_value>page number field</bookmark_value><bookmark_value>slide numbers</bookmark_value><bookmark_value>presentations; numbering slides in</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>laukai; puslapio numeris</bookmark_value><bookmark_value>puslapio numerio laukas</bookmark_value><bookmark_value>skaidrės numeris</bookmark_value><bookmark_value>pateiktys; numeruoti skaidres</bookmark_value>"
#: 04990500.xhp
msgctxt ""
@@ -3238,7 +3238,7 @@ msgctxt ""
"hd_id3154319\n"
"help.text"
msgid "<link href=\"text/simpress/01/04990500.xhp\" name=\"Page Numbers\">Page Number</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04990500.xhp\" name=\"Page Numbers\">Puslapio numeris</link>"
#: 04990500.xhp
msgctxt ""
@@ -3246,7 +3246,7 @@ msgctxt ""
"par_id3145799\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts the page number into the current slide or page.</ahelp> If you want to add a page number to every slide, choose View - Master<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> Slide</caseinline></switchinline> and insert the page number field. To change the number format, choose <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Slide</emph></caseinline><caseinline select=\"DRAW\"><emph>Page</emph></caseinline></switchinline><emph> - Properties - Page</emph> tab and then select a format from the list in the <emph>Layout Settings</emph> area."
-msgstr ""
+msgstr "<ahelp hid=\".\">Įterpia puslapio numerį esamoje skaidrėje arba puslapyje.</ahelp> Jei norite pridėti puslapio numerį kiekvienoje skaidrėje, pasirinkite Rodymas → <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Skaidrės ruošinys</caseinline></switchinline> ir įterpkite puslapio numerio lauką. Jei norite pakeisti numerio formatą, pasirinkite <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Skaidrė</emph></caseinline><caseinline select=\"DRAW\"><emph> arba Puslapis</emph></caseinline></switchinline><emph> → Savybės → Puslapio</emph> kortelę ir pasirinkite formatą iš sąrašo <emph>Struktūros nuostatų</emph> srityje."
#: 04990600.xhp
msgctxt ""
@@ -3254,7 +3254,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Author"
-msgstr ""
+msgstr "Autorius"
#: 04990600.xhp
msgctxt ""
@@ -3262,7 +3262,7 @@ msgctxt ""
"bm_id3146974\n"
"help.text"
msgid "<bookmark_value>authors</bookmark_value><bookmark_value>fields; authors</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>autoriai</bookmark_value><bookmark_value>laukai; autoriai</bookmark_value>"
#: 04990600.xhp
msgctxt ""
@@ -3270,7 +3270,7 @@ msgctxt ""
"hd_id3146974\n"
"help.text"
msgid "<link href=\"text/simpress/01/04990600.xhp\" name=\"Author\">Author</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04990600.xhp\" name=\"Author\">Autorius</link>"
#: 04990600.xhp
msgctxt ""
@@ -3278,7 +3278,7 @@ msgctxt ""
"par_id3153876\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertAuthorField\">Inserts the first and last names listed in the $[officename] user data into the active slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertAuthorField\">Įterpia pirmą ir paskutinį vardus iš „$[officename]“ naudotojo duomenų į esamą skaidrę.</ahelp>"
#: 04990600.xhp
msgctxt ""
@@ -3286,7 +3286,7 @@ msgctxt ""
"par_id3154512\n"
"help.text"
msgid "To edit the name, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] - User Data\"><emph>$[officename] - User Data</emph></link>."
-msgstr ""
+msgstr "Jei norite taisyti vardą, pasirinkite <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Ptiemonės → Parinktys</defaultinline></switchinline> →<link href=\"text/shared/optionen/01010100.xhp\" name=\"$[officename] - User Data\"><emph>„$[officename]“ → Naudotojo duomenys</emph></link>."
#: 04990700.xhp
msgctxt ""
@@ -3294,7 +3294,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "File name"
-msgstr ""
+msgstr "Failo vardas"
#: 04990700.xhp
msgctxt ""
@@ -3302,7 +3302,7 @@ msgctxt ""
"bm_id3148575\n"
"help.text"
msgid "<bookmark_value>fields; file names</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>laukai; failų vardai</bookmark_value>"
#: 04990700.xhp
msgctxt ""
@@ -3310,7 +3310,7 @@ msgctxt ""
"hd_id3148575\n"
"help.text"
msgid "<link href=\"text/simpress/01/04990700.xhp\" name=\"File name\">File name</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04990700.xhp\" name=\"File name\">Failo vardas</link>"
#: 04990700.xhp
msgctxt ""
@@ -3318,7 +3318,7 @@ msgctxt ""
"par_id3153142\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertFileField\">Inserts the name of the active file. The name only appears after you save the file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertFileField\">Įterpia aktyvaus failo pavadinimą. Pavadinimas pasirodo, kai įrašote failą.</ahelp>"
#: 05090000m.xhp
msgctxt ""
@@ -3326,7 +3326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format Cells"
-msgstr ""
+msgstr "Formatuoti langelius"
#: 05090000m.xhp
msgctxt ""
@@ -3334,7 +3334,7 @@ msgctxt ""
"hd_id3147172\n"
"help.text"
msgid "Format Cells"
-msgstr ""
+msgstr "Formatuoti langelius"
#: 05090000m.xhp
msgctxt ""
@@ -3342,7 +3342,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 ""
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".\">Nurodo pasirinktos lentelės savybes, pavyzdžiui, šriftą, efektus, rėmelius ir foną.</ahelp></variable>"
#: 05090000m.xhp
msgctxt ""
@@ -3350,7 +3350,7 @@ msgctxt ""
"par_id0916200811543127\n"
"help.text"
msgid "On the Table Bar, click <emph>Table Properties</emph>."
-msgstr ""
+msgstr "Lentelės mygtukų juostoje spaustelėkite <emph>Lentelės savybės</emph>."
#: 05090000m.xhp
msgctxt ""
@@ -3358,7 +3358,7 @@ msgctxt ""
"hd_id3146119\n"
"help.text"
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Šriftas</link>"
#: 05100000.xhp
msgctxt ""
@@ -3366,7 +3366,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Styles"
-msgstr ""
+msgstr "Stiliai"
#: 05100000.xhp
msgctxt ""
@@ -3374,7 +3374,7 @@ msgctxt ""
"bm_id3156024\n"
"help.text"
msgid "<bookmark_value>Styles window; graphics documents</bookmark_value> <bookmark_value>fill format mode; styles</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Stilių langas; grafikos dokumentai</bookmark_value> <bookmark_value>formatų užpildymo veiksena; stiliai</bookmark_value>"
#: 05100000.xhp
msgctxt ""
@@ -3382,7 +3382,7 @@ msgctxt ""
"hd_id3156024\n"
"help.text"
msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Styles\">Styles</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05100000.xhp\" name=\"Styles\">Stiliai</link>"
#: 05100000.xhp
msgctxt ""
@@ -3390,7 +3390,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "Opens the Styles deck of the Sidebar, which lists the available graphic and presentation styles for applying and editing."
-msgstr ""
+msgstr "Atveria stilių kortelę Priemonių juostoje, kurioje išvardijami visi galimi grafikos ir demonstravimo stiliai."
#: 05100000.xhp
msgctxt ""
@@ -3398,7 +3398,7 @@ msgctxt ""
"par_id3150439\n"
"help.text"
msgid "The Styles window in <item type=\"productname\">%PRODUCTNAME</item> Impress behaves differently than in other <item type=\"productname\">%PRODUCTNAME</item> programs. For example, you can create, edit and apply <emph>Graphic Styles</emph>, but you can only edit <emph>Presentation Styles</emph>."
-msgstr ""
+msgstr "Stiliaus dialogo langas<item type=\"productname\">„%PRODUCTNAME“</item> pateikčių rengyklėje yra kitoks nei kitose <item type=\"productname\">„%PRODUCTNAME“</item> programose. Pavyzdžiui, galite sukurti, taisyti ir taikyti <emph>Grafikos stilius</emph>, bet <emph>Pateikčių stilius</emph> galite tik taisyti."
#: 05100000.xhp
msgctxt ""
@@ -3406,7 +3406,7 @@ msgctxt ""
"par_id3146121\n"
"help.text"
msgid "When you edit a style, the changes are automatically applied to all of the elements formatted with this style in your document. If you want to ensure that the styles on a specific slide are not updated, create a new <link href=\"text/simpress/guide/masterpage.xhp\" name=\"master slide\">master slide</link> for the slide."
-msgstr ""
+msgstr "Kai taisote stilių, pakeitimai automatiškai pritaikomi visiems formatuojamiems elementams, kuriems pritaikytas taisomas stilius. Jei norite, kas tam tikrose skaidrėse stilius nesikeistų, sukurkite naują <link href=\"text/simpress/guide/masterpage.xhp\" name=\"master slide\">ruošinio skaidrę</link> tai skaidrei."
#: 05100000.xhp
msgctxt ""
@@ -3414,7 +3414,7 @@ msgctxt ""
"hd_id3145251\n"
"help.text"
msgid "Presentation Styles"
-msgstr ""
+msgstr "Pateikčių stiliai"
#: 05100000.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"par_id3153418\n"
"help.text"
msgid "<ahelp hid=\".uno:TemplateFamily5\">Show styles used in <item type=\"productname\">%PRODUCTNAME</item> Impress AutoLayouts.</ahelp> You can only modify Presentation Styles."
-msgstr ""
+msgstr "<ahelp hid=\".uno:TemplateFamily5\">Rodo stilius, kurie naudojami <item type=\"productname\">„%PRODUCTNAME“</item> Pateikčių automatinėje struktūroje.</ahelp> Taisyti galite tik pateikčių stilius."
#: 05100000.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"par_id3154253\n"
"help.text"
msgid "<image id=\"img_id3156382\" src=\"cmd/sc_presentation.png\"><alt id=\"alt_id3156382\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156382\" src=\"cmd/sc_presentation.png\"><alt id=\"alt_id3156382\">Mygtukas</alt></image>"
#: 05100000.xhp
msgctxt ""
@@ -3438,7 +3438,7 @@ msgctxt ""
"par_id3149128\n"
"help.text"
msgid "Presentation Styles"
-msgstr ""
+msgstr "Pateikčių stiliai"
#: 05100000.xhp
msgctxt ""
@@ -3446,7 +3446,7 @@ msgctxt ""
"hd_id3150297\n"
"help.text"
msgid "Graphic Styles"
-msgstr ""
+msgstr "Grafikos stiliai"
#: 05100000.xhp
msgctxt ""
@@ -3454,7 +3454,7 @@ msgctxt ""
"par_id3148488\n"
"help.text"
msgid "<ahelp hid=\".uno:ParaStyle\">Show styles for formatting graphical elements, including text objects.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ParaStyle\">Rodo grafikos objektų stilius, įskaitant ir tekstinius objektus.</ahelp>"
#: 05100000.xhp
msgctxt ""
@@ -3462,7 +3462,7 @@ msgctxt ""
"par_id3145587\n"
"help.text"
msgid "<image id=\"img_id3150370\" src=\"cmd/sc_objectcatalog.png\"><alt id=\"alt_id3150370\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150370\" src=\"cmd/sc_objectcatalog.png\"><alt id=\"alt_id3150370\">Mygtukas</alt></image>"
#: 05100000.xhp
msgctxt ""
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_id3154484\n"
"help.text"
msgid "Graphic Styles"
-msgstr ""
+msgstr "Grafikos stiliai"
#: 05100000.xhp
msgctxt ""
@@ -3478,7 +3478,7 @@ msgctxt ""
"hd_id3149404\n"
"help.text"
msgid "Fill format mode"
-msgstr ""
+msgstr "Stiliaus pritaikymo veiksena"
#: 05100000.xhp
msgctxt ""
@@ -3486,7 +3486,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\">Pritaiko pasirinktą stilių objektui ar skaidrei. Spustelėkite stiliaus pritaikymo veiksenos mygtuką ir tuomet spustelėkite objektą ar skaidrę. Jei norite išjungti veikseną, spustelėkite dar kartą stiliaus pritaikymo veiksenos mygtuką.</ahelp>"
#: 05100000.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"par_id3156020\n"
"help.text"
msgid "<image id=\"img_id3153246\" src=\"cmd/sc_fillstyle.png\"><alt id=\"alt_id3153246\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153246\" src=\"cmd/sc_fillstyle.png\"><alt id=\"alt_id3153246\">Mygtukas</alt></image>"
#: 05100000.xhp
msgctxt ""
@@ -3502,7 +3502,7 @@ msgctxt ""
"par_id3159228\n"
"help.text"
msgid "Fill format mode"
-msgstr ""
+msgstr "Stiliaus pritaikymo veiksena"
#: 05100000.xhp
msgctxt ""
@@ -3510,7 +3510,7 @@ msgctxt ""
"hd_id3145362\n"
"help.text"
msgid "New Style from Selection"
-msgstr ""
+msgstr "Naujas stilius pagal atranką"
#: 05100000.xhp
msgctxt ""
@@ -3518,7 +3518,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\">Sukuria naują stilių</link> naudodama pasirinkto objekto formatavimo savybes.</ahelp>"
#: 05100000.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"par_id3147297\n"
"help.text"
msgid "<image id=\"img_id3151390\" src=\"cmd/sc_stylenewbyexample.png\"><alt id=\"alt_id3151390\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151390\" src=\"cmd/sc_stylenewbyexample.png\"><alt id=\"alt_id3151390\">Mygtukas</alt></image>"
#: 05100000.xhp
msgctxt ""
@@ -3534,7 +3534,7 @@ msgctxt ""
"par_id3150534\n"
"help.text"
msgid "New Style from selection"
-msgstr ""
+msgstr "Naujas stilius pagal atranką"
#: 05100000.xhp
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"hd_id3153119\n"
"help.text"
msgid "Update Style"
-msgstr ""
+msgstr "Atnaujinti stilių"
#: 05100000.xhp
msgctxt ""
@@ -3550,7 +3550,7 @@ msgctxt ""
"par_id3150653\n"
"help.text"
msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles window with the current formatting of the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">Atnaujina pasirinktą stilių pagal pasirinkto objekto formatą.</ahelp>"
#: 05100000.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"par_id3149888\n"
"help.text"
msgid "<image id=\"img_id3146878\" src=\"cmd/sc_styleupdatebyexample.png\"><alt id=\"alt_id3146878\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146878\" src=\"cmd/sc_styleupdatebyexample.png\"><alt id=\"alt_id3146878\">Mygtukas</alt></image>"
#: 05100000.xhp
msgctxt ""
@@ -3566,7 +3566,7 @@ msgctxt ""
"par_id3153085\n"
"help.text"
msgid "Update Style"
-msgstr ""
+msgstr "Atnaujinti stilių"
#: 05100000.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"hd_id3153936\n"
"help.text"
msgid "Style List / Style Groups / Context menu: New / Modify / Delete"
-msgstr ""
+msgstr "Stilių sąršas / Stilių grupės / Kontekstinis meniu: Naujas / Taisyti / Šalinti"
#: 05100000.xhp
msgctxt ""
@@ -3582,7 +3582,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\">Sukurti, taisyti, taikyti, ir tvarkyti stilius.</ahelp>"
#: 05110500m.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Delete"
-msgstr ""
+msgstr "Šalinti"
#: 05110500m.xhp
msgctxt ""
@@ -3598,7 +3598,7 @@ msgctxt ""
"hd_id3149502\n"
"help.text"
msgid "<link href=\"text/simpress/01/05110500m.xhp\" name=\"Delete\">Delete</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05110500m.xhp\" name=\"Delete\">Šalinti</link>"
#: 05110500m.xhp
msgctxt ""
@@ -3606,7 +3606,7 @@ msgctxt ""
"par_id3149050\n"
"help.text"
msgid "<variable id=\"loeschentext\"><ahelp hid=\".uno:DeleteRows\">Deletes the selected row(s) from the table.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"loeschentext\"><ahelp hid=\".uno:DeleteRows\">Šalinti pasirinktas lentelės eilutes.</ahelp></variable>"
#: 05110500m.xhp
msgctxt ""
@@ -3614,7 +3614,7 @@ msgctxt ""
"par_id3149591\n"
"help.text"
msgid "On <emph>Table</emph> Bar, click"
-msgstr ""
+msgstr "Ant <emph>Lentelė</emph>mygtukų juostoje paspauskite"
#: 05110500m.xhp
msgctxt ""
@@ -3622,7 +3622,7 @@ msgctxt ""
"par_id3147555\n"
"help.text"
msgid "<image id=\"img_id3150361\" src=\"cmd/sc_deleterows.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3150361\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150361\" src=\"cmd/sc_deleterows.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3150361\">Mygtukas</alt></image>"
#: 05110500m.xhp
msgctxt ""
@@ -3630,7 +3630,7 @@ msgctxt ""
"par_id3156248\n"
"help.text"
msgid "Delete Row"
-msgstr ""
+msgstr "Šalinti eilutę"
#: 05120000.xhp
msgctxt ""
@@ -3638,7 +3638,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide Design"
-msgstr ""
+msgstr "Skaidrės Dizainas"
#: 05120000.xhp
msgctxt ""
@@ -3646,7 +3646,7 @@ msgctxt ""
"hd_id3154253\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Slide Design\">Slide Design</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Slide Design\">Skaidrės dizainas</link>"
#: 05120000.xhp
msgctxt ""
@@ -3654,7 +3654,7 @@ msgctxt ""
"par_id3148485\n"
"help.text"
msgid "<variable id=\"seitenvorlagetext\"><ahelp hid=\".uno:PresentationLayout\">Displays the <emph>Slide Design</emph> dialog, where you can select a layout scheme for the current slide. Any objects in the slide design are inserted behind objects in the current slide.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlagetext\"><ahelp hid=\".uno:PresentationLayout\">Atveria <emph>Skaidrės dizaino</emph> dialogo langą, kur galite pasirinkti kiekvienos skaidrės objektų išdėstymo schemą. bet kurie objektai skaidrių dizaine yra įterpiame po objektais esamoje skaidrėje.</ahelp></variable>"
#: 05120000.xhp
msgctxt ""
@@ -3662,7 +3662,7 @@ msgctxt ""
"hd_id3154652\n"
"help.text"
msgid "Slide design"
-msgstr ""
+msgstr "Skaidrės Dizainas"
#: 05120000.xhp
msgctxt ""
@@ -3670,7 +3670,7 @@ msgctxt ""
"par_id3152993\n"
"help.text"
msgid "Displays the slide designs you can apply to your slide. Select a design and click <emph>OK</emph> to apply it to the current slide."
-msgstr ""
+msgstr "Parodo skaidrei taikytinus skaidrių dizainus. Pasirinkite dizainą ir spustelėkite <emph>Gerai</emph>, jei norite pritaikyto jį esamai skaidrei."
#: 05120000.xhp
msgctxt ""
@@ -3678,7 +3678,7 @@ msgctxt ""
"hd_id3154372\n"
"help.text"
msgid "Exchange background page"
-msgstr ""
+msgstr "Pakeisti fono puslapį"
#: 05120000.xhp
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_id3149407\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/masterpage\">Applies the background of the selected slide design to all of the slides in your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/masterpage\">Pritaiko pasirinktos skaidrės dizaino foną kiekvienai dokumento skaidrei.</ahelp>"
#: 05120000.xhp
msgctxt ""
@@ -3694,7 +3694,7 @@ msgctxt ""
"hd_id3153818\n"
"help.text"
msgid "Delete unused backgrounds"
-msgstr ""
+msgstr "Šalinti nenaudojamus fonus"
#: 05120000.xhp
msgctxt ""
@@ -3702,7 +3702,7 @@ msgctxt ""
"par_id3148871\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/checkmasters\">Deletes unreferenced background slides and presentation layouts from your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/checkmasters\">Pašalina nenaudojamus skaidrių fonus ir pateikčių struktūras esamame dokumente.</ahelp>"
#: 05120000.xhp
msgctxt ""
@@ -3710,7 +3710,7 @@ msgctxt ""
"hd_id3157982\n"
"help.text"
msgid "Load"
-msgstr ""
+msgstr "Įkelti"
#: 05120000.xhp
msgctxt ""
@@ -3718,7 +3718,7 @@ msgctxt ""
"par_id3156020\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/simpress/01/05120100.xhp\" name=\"Load Slide Design\"><emph>Load Slide Design</emph></link> dialog, where you can select additional slide designs.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Atveria dialogo langą <link href=\"text/simpress/01/05120100.xhp\" name=\"Load Slide Design\"><emph>Kelti skaidrės dizainą</emph></link>, kur galite pasirinkti papildomus skaidrių dizainus.</ahelp>"
#: 05120100.xhp
msgctxt ""
@@ -3726,7 +3726,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Load Slide Design"
-msgstr ""
+msgstr "Lapo projekto įkėlimas"
#: 05120100.xhp
msgctxt ""
@@ -3734,7 +3734,7 @@ msgctxt ""
"hd_id3153728\n"
"help.text"
msgid "Load Slide Design"
-msgstr ""
+msgstr "Lapo projekto įkėlimas"
#: 05120100.xhp
msgctxt ""
@@ -3742,7 +3742,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "Load additional slide designs for your presentation."
-msgstr ""
+msgstr "Įkelkite papildomus skaidrių dizainus pateikčiai."
#: 05120100.xhp
msgctxt ""
@@ -3750,7 +3750,7 @@ msgctxt ""
"par_id3154016\n"
"help.text"
msgid "Select a design category, and then a template you want to apply."
-msgstr ""
+msgstr "Pasirinkite dizaino kategoriją ir šabloną, kurį norite taikyti."
#: 05120100.xhp
msgctxt ""
@@ -3758,7 +3758,7 @@ msgctxt ""
"hd_id3150327\n"
"help.text"
msgid "Categories"
-msgstr ""
+msgstr "Kategorijos"
#: 05120100.xhp
msgctxt ""
@@ -3766,7 +3766,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Displays the available slide design categories.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Parodo galimas skaidrių dizaino kategorijas.</ahelp>"
#: 05120100.xhp
msgctxt ""
@@ -3774,7 +3774,7 @@ msgctxt ""
"hd_id3155962\n"
"help.text"
msgid "Templates"
-msgstr ""
+msgstr "Šablonai"
#: 05120100.xhp
msgctxt ""
@@ -3782,7 +3782,7 @@ msgctxt ""
"par_id3155337\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Displays the templates for the selected design category.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Parodo pasirinktos dizainų kategorijos šablonus.</ahelp>"
#: 05120100.xhp
msgctxt ""
@@ -3790,7 +3790,7 @@ msgctxt ""
"hd_id3145791\n"
"help.text"
msgid "More>>"
-msgstr ""
+msgstr "Daugiau>>"
#: 05120100.xhp
msgctxt ""
@@ -3798,7 +3798,7 @@ msgctxt ""
"par_id3150344\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Shows or hides a preview of a selected template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Parodo arba paslepia pasirinkto šablono peržiūrą.</ahelp>"
#: 05120100.xhp
msgctxt ""
@@ -3806,7 +3806,7 @@ msgctxt ""
"par_id3159206\n"
"help.text"
msgid "Some templates may not contain visible text objects or drawing objects."
-msgstr ""
+msgstr "Kai kurie šablonai gali neturėti matomų tekstinių ar grafikos objektų."
#: 05120500m.xhp
msgctxt ""
@@ -3814,7 +3814,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Delete"
-msgstr ""
+msgstr "Šalinti"
#: 05120500m.xhp
msgctxt ""
@@ -3822,7 +3822,7 @@ msgctxt ""
"hd_id3145801\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120500m.xhp\" name=\"Delete\">Delete</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05120500m.xhp\" name=\"Delete\">Šalinti</link>"
#: 05120500m.xhp
msgctxt ""
@@ -3830,7 +3830,7 @@ msgctxt ""
"par_id3153418\n"
"help.text"
msgid "<variable id=\"loeschentext\"><ahelp hid=\".uno:DeleteColumns\">Deletes the selected column(s) from the table.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"loeschentext\"><ahelp hid=\".uno:DeleteColumns\">Pašalina pasirinktus lentelės stulpelius.</ahelp></variable>"
#: 05120500m.xhp
msgctxt ""
@@ -3838,7 +3838,7 @@ msgctxt ""
"par_id3156385\n"
"help.text"
msgid "This command is only available if the cursor is in a table."
-msgstr ""
+msgstr "Šią komandą galima taikyti tik, kai žymeklis yra lentelėje."
#: 05120500m.xhp
msgctxt ""
@@ -3846,7 +3846,7 @@ msgctxt ""
"par_id3155328\n"
"help.text"
msgid "On <emph>Table</emph> Bar, click"
-msgstr ""
+msgstr "Ant <emph>Lentelė</emph>mygtukų juostoje paspauskite"
#: 05120500m.xhp
msgctxt ""
@@ -3854,7 +3854,7 @@ msgctxt ""
"par_id3153600\n"
"help.text"
msgid "<image id=\"img_id3153607\" src=\"cmd/sc_deletecolumns.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3153607\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153607\" src=\"cmd/sc_deletecolumns.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3153607\">Mygtukas</alt></image>"
#: 05120500m.xhp
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"par_id3154423\n"
"help.text"
msgid "Delete Column"
-msgstr ""
+msgstr "Šalinti stulpelį"
#: 05130000.xhp
msgctxt ""
@@ -3870,7 +3870,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide Layout"
-msgstr ""
+msgstr "Lapo maketas"
#: 05130000.xhp
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"bm_id3154754\n"
"help.text"
msgid "<bookmark_value>changing; slide layouts</bookmark_value> <bookmark_value>slide layouts</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>keitimas; skaidrės maketas</bookmark_value> <bookmark_value>skaidrės maketai</bookmark_value>"
#: 05130000.xhp
msgctxt ""
@@ -3886,7 +3886,7 @@ msgctxt ""
"hd_id3154754\n"
"help.text"
msgid "Slide Layout"
-msgstr ""
+msgstr "Skaidrės maketas"
#: 05130000.xhp
msgctxt ""
@@ -3894,7 +3894,7 @@ msgctxt ""
"par_id3149126\n"
"help.text"
msgid "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Opens a submenu with slide layouts.</ahelp> </variable>"
-msgstr ""
+msgstr "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Atveria submeniu su skaidrų maketais.</ahelp> </variable>"
#: 05130000.xhp
msgctxt ""
@@ -3902,7 +3902,7 @@ msgctxt ""
"par_id31469757\n"
"help.text"
msgid "<switchinline select=\"appl\"> <caseinline select=\"IMPRESS\">The icon in the Presentation toolbar opens a submenu. Select the slide layout for the slide.</caseinline> </switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"> <caseinline select=\"IMPRESS\">Mygtukas Peteikčių priemonese atveria submeniu. Pasirinkite skaidrės maketą esamai skaidriai.</caseinline> </switchinline>"
#: 05140000.xhp
msgctxt ""
@@ -3910,7 +3910,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Modify Layer"
-msgstr ""
+msgstr "Sluoksnio keitimas"
#: 05140000.xhp
msgctxt ""
@@ -3918,7 +3918,7 @@ msgctxt ""
"bm_id3156329\n"
"help.text"
msgid "<bookmark_value>renaming layers</bookmark_value><bookmark_value>layers; renaming</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>sluoksnių pervadinimas</bookmark_value><bookmark_value>sluoksniai; pervadinimas</bookmark_value>"
#: 05140000.xhp
msgctxt ""
@@ -3926,7 +3926,7 @@ msgctxt ""
"hd_id3156329\n"
"help.text"
msgid "Modify Layer"
-msgstr ""
+msgstr "Sluoksnio keitimas"
#: 05140000.xhp
msgctxt ""
@@ -3934,7 +3934,7 @@ msgctxt ""
"par_id3147265\n"
"help.text"
msgid "<variable id=\"ebene\"><ahelp hid=\".uno:ModifyLayer\">Changes the properties of the selected layer.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"ebene\"><ahelp hid=\".uno:ModifyLayer\">Pakeičia pasirinkto sluoksnio savybes.</ahelp></variable>"
#: 05140000.xhp
msgctxt ""
@@ -3942,7 +3942,7 @@ msgctxt ""
"hd_id3155603\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Vardas"
#: 05140000.xhp
msgctxt ""
@@ -3950,7 +3950,7 @@ msgctxt ""
"par_id3155738\n"
"help.text"
msgid "Enter a name for the selected layer."
-msgstr ""
+msgstr "Įveskite pasirinkto sluoksnio pavadinimą."
#: 05140000.xhp
msgctxt ""
@@ -3958,7 +3958,7 @@ msgctxt ""
"par_id3149126\n"
"help.text"
msgid "You can only change the name of a layer you created."
-msgstr ""
+msgstr "Galite pakeisti tik savo sukurto sluoksnio pavadinimą."
#: 05140000.xhp
msgctxt ""
@@ -3966,7 +3966,7 @@ msgctxt ""
"hd_id3147345\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Savybės"
#: 05140000.xhp
msgctxt ""
@@ -3974,7 +3974,7 @@ msgctxt ""
"par_id3148488\n"
"help.text"
msgid "Sets the properties of the selected layer."
-msgstr ""
+msgstr "Nustato pasirinkto sluoksnio savybes."
#: 05140000.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"hd_id3166423\n"
"help.text"
msgid "Visible"
-msgstr ""
+msgstr "Matomas"
#: 05140000.xhp
msgctxt ""
@@ -3990,7 +3990,7 @@ msgctxt ""
"par_id3159239\n"
"help.text"
msgid "Shows or hides the contents of the selected layer."
-msgstr ""
+msgstr "Parodo arba paslepia pasirinkto sluoksnio turinį."
#: 05140000.xhp
msgctxt ""
@@ -3998,7 +3998,7 @@ msgctxt ""
"hd_id3150208\n"
"help.text"
msgid "Printable"
-msgstr ""
+msgstr "Spausdinamas"
#: 05140000.xhp
msgctxt ""
@@ -4006,7 +4006,7 @@ msgctxt ""
"par_id3152993\n"
"help.text"
msgid "Prints the contents of the selected layer."
-msgstr ""
+msgstr "Spausdina pasirinkto sluoksnio turinį."
#: 05140000.xhp
msgctxt ""
@@ -4014,7 +4014,7 @@ msgctxt ""
"hd_id3145585\n"
"help.text"
msgid "Protected"
-msgstr ""
+msgstr "Apsaugota"
#: 05140000.xhp
msgctxt ""
@@ -4022,7 +4022,7 @@ msgctxt ""
"par_id3159488\n"
"help.text"
msgid "Locks the contents of the selected layer, so that they cannot be edited."
-msgstr ""
+msgstr "Užrakina pasirinkto sluoksnio turinį ir neleidžia taisyti."
#: 05140000.xhp
msgctxt ""
@@ -4030,7 +4030,7 @@ msgctxt ""
"hd_id3156448\n"
"help.text"
msgid "Rename Layer"
-msgstr ""
+msgstr "Keisti sluoksnio pavadinimą"
#: 05140000.xhp
msgctxt ""
@@ -4038,7 +4038,7 @@ msgctxt ""
"par_id3163801\n"
"help.text"
msgid "<ahelp hid=\".uno:RenameLayer\">Renames the active layer.</ahelp> You can only change the name of a layer you created."
-msgstr ""
+msgstr "<ahelp hid=\".uno:RenameLayer\">Pervadina esamą sluoksnį.</ahelp> Galite keisti tik savo sukurto sluoksnio pavadinimą."
#: 05150000.xhp
msgctxt ""
@@ -4046,7 +4046,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Dimensioning"
-msgstr ""
+msgstr "Matmenų linija"
#: 05150000.xhp
msgctxt ""
@@ -4054,7 +4054,7 @@ msgctxt ""
"bm_id3150439\n"
"help.text"
msgid "<bookmark_value>dimension lines; properties of</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>matmenų linijos; savybės</bookmark_value>"
#: 05150000.xhp
msgctxt ""
@@ -4062,7 +4062,7 @@ msgctxt ""
"hd_id3150439\n"
"help.text"
msgid "<link href=\"text/simpress/01/05150000.xhp\" name=\"Dimensioning\">Dimensioning</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05150000.xhp\" name=\"Dimensioning\">Matmenų linijos</link>"
#: 05150000.xhp
msgctxt ""
@@ -4070,7 +4070,7 @@ msgctxt ""
"par_id3159154\n"
"help.text"
msgid "<variable id=\"bemaszungtext\"><ahelp hid=\".uno:MeasureAttributes\">Changes the length, measurement and guide properties of the selected <link href=\"text/simpress/02/10120000.xhp\" name=\"dimension line\">dimension line</link>.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"bemaszungtext\"><ahelp hid=\".uno:MeasureAttributes\">Pakeičia ilgį, matmenis ir savybes pasirinktai <link href=\"text/simpress/02/10120000.xhp\" name=\"dimension line\">matmenų linijai</link>.</ahelp></variable>"
#: 05150000.xhp
msgctxt ""
@@ -4078,7 +4078,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 ""
+msgstr "Jei norite keisti matmenų linijos arba rodyklės stilių, pasirinkite <link href=\"text/shared/01/05200000.xhp\" name=\"Format - Line\"><emph>Formatas → Objektas ir figūra → Linija</emph></link>."
#: 05150000.xhp
msgctxt ""
@@ -4086,7 +4086,7 @@ msgctxt ""
"par_id3154658\n"
"help.text"
msgid "A Dimension Line is always inserted on the <link href=\"text/simpress/guide/layer_tipps.xhp\" name=\"layer\">layer</link> called <emph>Dimension Lines</emph>. If you set that layer to invisible, you will not see any Dimension Line in your drawing."
-msgstr ""
+msgstr "Matmenų tiesė visada įterpiama <link href=\"text/simpress/guide/layer_tipps.xhp\" name=\"layer\">sluoksnyje</link>, kurio pavadinimas <emph>Matmenų tiesės</emph>. Jei nurodysite, kad sluoksnis nematomas, tai Matmenų linijos nebus rodomos jūsų brėžiniuose."
#: 05150000.xhp
msgctxt ""
@@ -4094,7 +4094,7 @@ msgctxt ""
"hd_id3166426\n"
"help.text"
msgid "Line"
-msgstr ""
+msgstr "Tiesė"
#: 05150000.xhp
msgctxt ""
@@ -4102,7 +4102,7 @@ msgctxt ""
"par_id3159344\n"
"help.text"
msgid "Sets the distance properties of the dimension line and the guides with respect to each other and to the baseline."
-msgstr ""
+msgstr "Nurodo atstumą tarp matmenų linijos ir orientyrų atsižvelgiant į juos pačius ir bazinę liniją."
#: 05150000.xhp
msgctxt ""
@@ -4110,7 +4110,7 @@ msgctxt ""
"hd_id3150368\n"
"help.text"
msgid "Line distance"
-msgstr ""
+msgstr "Atstumas iki linijos"
#: 05150000.xhp
msgctxt ""
@@ -4118,7 +4118,7 @@ msgctxt ""
"par_id3145388\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_LINE_DIST\">Specifies the distance between the dimension line and the baseline (line distance = 0).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_LINE_DIST\">Nurodo atstumą tarp matmenų linijos ir bazinės linijos (atstumas = 0).</ahelp>"
#: 05150000.xhp
msgctxt ""
@@ -4126,7 +4126,7 @@ msgctxt ""
"hd_id3148700\n"
"help.text"
msgid "Guide overhang"
-msgstr ""
+msgstr "Orientyrų išsikišimas"
#: 05150000.xhp
msgctxt ""
@@ -4134,7 +4134,7 @@ msgctxt ""
"par_id3151243\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_FLD_HELPLINE_OVERHANG\">Specifies the length of the left and right guides starting at the baseline (line distance = 0). Positive values extend the guides above the baseline and negative values extend the guides below the baseline.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_FLD_HELPLINE_OVERHANG\">Nurodo kairiojo ir dešiniojo orientyrų atstumus iki bazinės linijos (atstumas = 0). Teigiama reikšmė reiškia, kad orientyrai yra už bazinės linijos, neigiama reikšmė, kad orientyrai yra prieš bazinę liniją.</ahelp>"
#: 05150000.xhp
msgctxt ""
@@ -4142,7 +4142,7 @@ msgctxt ""
"hd_id3149945\n"
"help.text"
msgid "Guide distance"
-msgstr ""
+msgstr "Atstumas iki orientyro"
#: 05150000.xhp
msgctxt ""
@@ -4150,7 +4150,7 @@ msgctxt ""
"par_id3159203\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_FLD_HELPLINE_DIST\">Specifies the length of the right and left guides starting at the dimension line. Positive values extend the guides above the dimension line and negative values extend the guides below the dimension line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_FLD_HELPLINE_DIST\">Nurodo kairiojo ir dešiniojo orientyrų atstumus iki matmenų linijos. Teigiama reikšmė reiškia, kad orientyrai yra už matmenų linijos, neigiama reikšmė, kad orientyrai yra prieš matmenų liniją.</ahelp>"
#: 05150000.xhp
msgctxt ""
@@ -4158,7 +4158,7 @@ msgctxt ""
"hd_id3150212\n"
"help.text"
msgid "Left guide"
-msgstr ""
+msgstr "Kairysis orientyras"
#: 05150000.xhp
msgctxt ""
@@ -4166,7 +4166,7 @@ msgctxt ""
"par_id3154762\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_FLD_HELPLINE1_LEN\">Specifies the length of the left guide starting at the dimension line. Positive values extend the guide below the dimension line and negative values extend the guide above the dimension line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_FLD_HELPLINE1_LEN\">Nurodo kairiojo orientyro atstumą iki matmenų linijos. Teigiama reikšmė reiškia, kad orientyras yra už matmenų linijos, neigiama reikšmė, kad orientyras prieš matmenų liniją.</ahelp>"
#: 05150000.xhp
msgctxt ""
@@ -4174,7 +4174,7 @@ msgctxt ""
"hd_id3153809\n"
"help.text"
msgid "Right guide"
-msgstr ""
+msgstr "Dešinysis orientyras"
#: 05150000.xhp
msgctxt ""
@@ -4182,7 +4182,7 @@ msgctxt ""
"par_id3149876\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_FLD_HELPLINE2_LEN\">Specifies the length of the right guide starting at the dimension line. Positive values extend the guide below the dimension line and negative values extend the guide above the dimension line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_FLD_HELPLINE2_LEN\">Nurodo dešiniojo orientyro atstumą iki matmenų linijos. Teigiama reikšmė reiškia, kad orientyras yra už matmenų linijos, neigiama reikšmė, kad orientyras prieš matmenų liniją.</ahelp>"
#: 05150000.xhp
msgctxt ""
@@ -4190,7 +4190,7 @@ msgctxt ""
"hd_id3150436\n"
"help.text"
msgid "Dimension line below the object"
-msgstr ""
+msgstr "Matmenų linija žemiau objekto"
#: 05150000.xhp
msgctxt ""
@@ -4198,7 +4198,7 @@ msgctxt ""
"par_id3151388\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dimensionlinestabpage/TSB_BELOW_REF_EDGE\">Reverses the properties set in the <emph>Line</emph> area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/TSB_BELOW_REF_EDGE\">Apverčia <emph>Linijos</emph> elementus.</ahelp>"
#: 05150000.xhp
msgctxt ""
@@ -4206,7 +4206,7 @@ msgctxt ""
"hd_id3145236\n"
"help.text"
msgid "Decimal places"
-msgstr ""
+msgstr "Dešimtainės skiltys"
#: 05150000.xhp
msgctxt ""
@@ -4214,7 +4214,7 @@ msgctxt ""
"par_id3157876\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_FLD_DECIMALPLACES\">Specifies the number of decimal places used for the display of line properties.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/MTR_FLD_DECIMALPLACES\">Nurodo dešimtainio skaičiaus skaitmenų skaičių po kablelio.</ahelp>"
#: 05150000.xhp
msgctxt ""
@@ -4222,7 +4222,7 @@ msgctxt ""
"hd_id3150653\n"
"help.text"
msgid "Legend"
-msgstr ""
+msgstr "Legenda"
#: 05150000.xhp
msgctxt ""
@@ -4230,7 +4230,7 @@ msgctxt ""
"par_id3146874\n"
"help.text"
msgid "Sets the properties of the dimension text."
-msgstr ""
+msgstr "Nustato matmenų tiesės savybes."
#: 05150000.xhp
msgctxt ""
@@ -4238,7 +4238,7 @@ msgctxt ""
"hd_id3149892\n"
"help.text"
msgid "Text position"
-msgstr ""
+msgstr "Teksto vieta"
#: 05150000.xhp
msgctxt ""
@@ -4246,7 +4246,7 @@ msgctxt ""
"par_id3148730\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dimensionlinestabpage/CTL_POSITION\">Determines the position of the dimension text with respect to the dimension line and the guides.</ahelp>"
-msgstr ""
+msgstr "Teksto padėtis<ahelp hid=\"cui/ui/dimensionlinestabpage/CTL_POSITION\">Nustato matmenų linijos teksto vietą atsižvelgdamas į matmenų liniją ir orientyrus.</ahelp>"
#: 05150000.xhp
msgctxt ""
@@ -4254,7 +4254,7 @@ msgctxt ""
"par_id3148569\n"
"help.text"
msgid "The <emph>AutoVertical </emph>and <emph>AutoHorizontal </emph>checkboxes must be cleared before you can assign the <emph>Text position</emph>."
-msgstr ""
+msgstr "Žymimieji langeliai <emph>Automatinė vertikali padėtis </emph> ir <emph>Automatinė horizontali padėtis</emph> turi būti nepažymėti, jei norite nurodyti <emph>Teksto vietą</emph>."
#: 05150000.xhp
msgctxt ""
@@ -4262,7 +4262,7 @@ msgctxt ""
"hd_id3145167\n"
"help.text"
msgid "AutoVertical"
-msgstr ""
+msgstr "Automatinė vertikali padėtis"
#: 05150000.xhp
msgctxt ""
@@ -4270,7 +4270,7 @@ msgctxt ""
"par_id3150019\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dimensionlinestabpage/TSB_AUTOPOSV\">Determines the optimal vertical position for the dimension text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/TSB_AUTOPOSV\">Nurodo optimalią vertikalią matmenų linijos teksto padėtį.</ahelp>"
#: 05150000.xhp
msgctxt ""
@@ -4278,7 +4278,7 @@ msgctxt ""
"hd_id3155928\n"
"help.text"
msgid "AutoHorizontal"
-msgstr ""
+msgstr "Automatinė horizontali padėtis"
#: 05150000.xhp
msgctxt ""
@@ -4286,7 +4286,7 @@ msgctxt ""
"par_id3149882\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dimensionlinestabpage/TSB_AUTOPOSH\">Determines the optimal horizontal position for the dimension text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/TSB_AUTOPOSH\">Nurodo optimalią horizontalią matmenų linijos teksto padėtį.</ahelp>"
#: 05150000.xhp
msgctxt ""
@@ -4294,7 +4294,7 @@ msgctxt ""
"hd_id3145247\n"
"help.text"
msgid "Show meas. units"
-msgstr ""
+msgstr "Matavimo vienetai"
#: 05150000.xhp
msgctxt ""
@@ -4302,7 +4302,7 @@ msgctxt ""
"par_id3148386\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dimensionlinestabpage/LB_UNIT\">Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/LB_UNIT\">Parodo arba paslepia matavimo vienetus. Galite taip pat pasirinkti rodomus matavimo vienetus iš sąrašo.</ahelp>"
#: 05150000.xhp
msgctxt ""
@@ -4310,7 +4310,7 @@ msgctxt ""
"hd_id3150930\n"
"help.text"
msgid "Parallel to line"
-msgstr ""
+msgstr "Lygiagrečiai tiesei"
#: 05150000.xhp
msgctxt ""
@@ -4318,7 +4318,7 @@ msgctxt ""
"par_id3156060\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/dimensionlinestabpage/TSB_PARALLEL\">Displays the text parallel to or at 90 degrees to the dimension line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/dimensionlinestabpage/TSB_PARALLEL\">Rodo tekstą lygiagrečiai matmenų linijai arba 90 laipsnių kampu.</ahelp>"
#: 05170000.xhp
msgctxt ""
@@ -4326,7 +4326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Connectors"
-msgstr ""
+msgstr "Jungiamosios linijos"
#: 05170000.xhp
msgctxt ""
@@ -4334,7 +4334,7 @@ msgctxt ""
"bm_id3150297\n"
"help.text"
msgid "<bookmark_value>connectors; properties of</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>jungiamosios linijos; savybės</bookmark_value>"
#: 05170000.xhp
msgctxt ""
@@ -4342,7 +4342,7 @@ msgctxt ""
"hd_id3150297\n"
"help.text"
msgid "<link href=\"text/simpress/01/05170000.xhp\" name=\"Connectors\">Connectors</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05170000.xhp\" name=\"Connectors\">Jungiamosios linijos</link>"
#: 05170000.xhp
msgctxt ""
@@ -4350,7 +4350,7 @@ msgctxt ""
"par_id3149209\n"
"help.text"
msgid "<variable id=\"verbindertext\"><ahelp hid=\".\">Sets the properties of a connector.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"verbindertext\"><ahelp hid=\".\">Nurodo jungiamųjų linijų savybes.</ahelp></variable>"
#: 05170000.xhp
msgctxt ""
@@ -4358,7 +4358,7 @@ msgctxt ""
"hd_id3145384\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Tipas"
#: 05170000.xhp
msgctxt ""
@@ -4366,7 +4366,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 ""
+msgstr "<ahelp hid=\"cui/ui/connectortabpage/LB_TYPE\">Išvardija galimų jungiamųjų linijų tipus.</ahelp> Galimi keturi tipai: <emph>jungiamoji laužtė, jungiamoji linija, jungiamoji atkarpa ir jungiamoji kreivė</emph>."
#: 05170000.xhp
msgctxt ""
@@ -4374,7 +4374,7 @@ msgctxt ""
"hd_id3148866\n"
"help.text"
msgid "Line skew"
-msgstr ""
+msgstr "Linijos posvyris"
#: 05170000.xhp
msgctxt ""
@@ -4382,7 +4382,7 @@ msgctxt ""
"par_id3148605\n"
"help.text"
msgid "Defines the skew of a connector line. The preview window displays the result."
-msgstr ""
+msgstr "Apibrėžia jungiamosios linijos posvyrio kampą. Peržiūros laukelyje matote rezultatą."
#: 05170000.xhp
msgctxt ""
@@ -4390,7 +4390,7 @@ msgctxt ""
"hd_id3157982\n"
"help.text"
msgid "Line 1"
-msgstr ""
+msgstr "1 linija"
#: 05170000.xhp
msgctxt ""
@@ -4398,7 +4398,7 @@ msgctxt ""
"par_id3150215\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_LINE_1\">Enter a skew value for Line 1.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_LINE_1\">Įveskite 1 linijos posvyrį.</ahelp>"
#: 05170000.xhp
msgctxt ""
@@ -4406,7 +4406,7 @@ msgctxt ""
"hd_id3145360\n"
"help.text"
msgid "Line 2"
-msgstr ""
+msgstr "2 linija"
#: 05170000.xhp
msgctxt ""
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_id3146962\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_LINE_2\">Enter a skew value for Line 2.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_LINE_2\">Įveskite 2 linijos posvyrį.</ahelp>"
#: 05170000.xhp
msgctxt ""
@@ -4422,7 +4422,7 @@ msgctxt ""
"hd_id3149873\n"
"help.text"
msgid "Line 3"
-msgstr ""
+msgstr "3 linija"
#: 05170000.xhp
msgctxt ""
@@ -4430,7 +4430,7 @@ msgctxt ""
"par_id3153957\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_LINE_3\">Enter a skew value for Line 3.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_LINE_3\">Įveskite 3 linijos posvyrį.</ahelp>"
#: 05170000.xhp
msgctxt ""
@@ -4438,7 +4438,7 @@ msgctxt ""
"hd_id3145581\n"
"help.text"
msgid "Line spacing"
-msgstr ""
+msgstr "Eilučių intervalas"
#: 05170000.xhp
msgctxt ""
@@ -4446,7 +4446,7 @@ msgctxt ""
"par_id3150395\n"
"help.text"
msgid "Sets the line spacing for the connectors."
-msgstr ""
+msgstr "Nustato atstumus tarp jungiamųjų linijų."
#: 05170000.xhp
msgctxt ""
@@ -4454,7 +4454,7 @@ msgctxt ""
"hd_id3147297\n"
"help.text"
msgid "Begin horizontal"
-msgstr ""
+msgstr "Horizontalus pradžioje"
#: 05170000.xhp
msgctxt ""
@@ -4462,7 +4462,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 ""
+msgstr "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_HORZ_1\">Įveskite horizontalaus atstumo jungiamosios linijos pradžioje dydį.</ahelp>"
#: 05170000.xhp
msgctxt ""
@@ -4470,7 +4470,7 @@ msgctxt ""
"hd_id3153118\n"
"help.text"
msgid "Begin vertical"
-msgstr ""
+msgstr "Vertikalus pradžioje"
#: 05170000.xhp
msgctxt ""
@@ -4478,7 +4478,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 ""
+msgstr "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_VERT_1\">Įveskite vertikalaus atstumo jungiamosios linijos pradžioje dydį.</ahelp>"
#: 05170000.xhp
msgctxt ""
@@ -4486,7 +4486,7 @@ msgctxt ""
"hd_id3150746\n"
"help.text"
msgid "End horizontal"
-msgstr ""
+msgstr "Horizontalus pabaigoje"
#: 05170000.xhp
msgctxt ""
@@ -4494,7 +4494,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 ""
+msgstr "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_HORZ_2\">Įveskite horizontalaus atstumo jungiamosios linijos pabaigoje dydį.</ahelp>"
#: 05170000.xhp
msgctxt ""
@@ -4502,7 +4502,7 @@ msgctxt ""
"hd_id3153038\n"
"help.text"
msgid "End vertical"
-msgstr ""
+msgstr "Vertikalus pabaigoje"
#: 05170000.xhp
msgctxt ""
@@ -4510,7 +4510,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 ""
+msgstr "<ahelp hid=\"cui/ui/connectortabpage/MTR_FLD_VERT_2\">Įveskite vertikalaus atstumo jungiamosios linijos pabaigoje dydį.</ahelp>"
#: 05170000.xhp
msgctxt ""
@@ -4518,7 +4518,7 @@ msgctxt ""
"hd_id3147369\n"
"help.text"
msgid "Reset line skew"
-msgstr ""
+msgstr "Atkurti posvyrį"
#: 05170000.xhp
msgctxt ""
@@ -4526,7 +4526,7 @@ msgctxt ""
"par_id3159205\n"
"help.text"
msgid "<ahelp hid=\".uno:NewRouting\">Resets the line skew values to the default.</ahelp><embedvar href=\"text/shared/00/00000001.xhp#kontext\"/>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:NewRouting\">Atkuria linijos posvyrio reikšmę.</ahelp><embedvar href=\"text/shared/00/00000001.xhp#kontext\"/>"
#: 05250000.xhp
msgctxt ""
@@ -4534,7 +4534,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Arrange"
-msgstr ""
+msgstr "Išdėstyti"
#: 05250000.xhp
msgctxt ""
@@ -4542,7 +4542,7 @@ msgctxt ""
"hd_id3155444\n"
"help.text"
msgid "<link href=\"text/simpress/01/05250000.xhp\" name=\"Arrange\">Arrange</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05250000.xhp\" name=\"Arrange\">Išdėstyti</link>"
#: 05250000.xhp
msgctxt ""
@@ -4550,7 +4550,7 @@ msgctxt ""
"par_id3149259\n"
"help.text"
msgid "Changes the stacking order of a selected object."
-msgstr ""
+msgstr "Pakeičia dėstomų objektų eiliškumą."
#: 05250500.xhp
msgctxt ""
@@ -4558,7 +4558,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "In Front of Object"
-msgstr ""
+msgstr "Perkelti į priekį"
#: 05250500.xhp
msgctxt ""
@@ -4566,7 +4566,7 @@ msgctxt ""
"bm_id3152576\n"
"help.text"
msgid "<bookmark_value>objects; in front of object command</bookmark_value><bookmark_value>in front of object command</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>objektai; komanda perkelti į priekį</bookmark_value><bookmark_value> komanda perkelti į priekį</bookmark_value>"
#: 05250500.xhp
msgctxt ""
@@ -4574,7 +4574,7 @@ msgctxt ""
"hd_id3152576\n"
"help.text"
msgid "<link href=\"text/simpress/01/05250500.xhp\" name=\"In Front of Object\">In Front of Object</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05250500.xhp\" name=\"In Front of Object\">Perkelti į priekį</link>"
#: 05250500.xhp
msgctxt ""
@@ -4582,7 +4582,7 @@ msgctxt ""
"par_id3152596\n"
"help.text"
msgid "<ahelp hid=\".uno:BeforeObject\">Changes the stacking order by moving the selected object in front of an object that you specify. The screen location of the selected object does not change.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:BeforeObject\">iškelia pasirinktą objektą virš nurodyto objekto. Objektų vieną lange nepasikeičia.</ahelp>"
#: 05250500.xhp
msgctxt ""
@@ -4590,7 +4590,7 @@ msgctxt ""
"par_id3153418\n"
"help.text"
msgid "Select the object(s) that you want to move to the foreground. Right-click and choose <emph>Arrange – In Front of Object</emph>, and then click an object in your slide."
-msgstr ""
+msgstr "Pasirinkite objektą ar objektus, kuriuos norite perkelti į priekį. Spustelėkite dešinį pelės klavišą ir pasirinkite <emph>Išdėstyti → Perkelti į priekį</emph> ir spustelėkite objektą savo skaidrėje."
#: 05250600.xhp
msgctxt ""
@@ -4598,7 +4598,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Behind Object"
-msgstr ""
+msgstr "Perkelti į pagrindą"
#: 05250600.xhp
msgctxt ""
@@ -4678,7 +4678,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "You can select this function only if at least two drawing elements are selected together."
-msgstr ""
+msgstr "Funkciją galite pasirinkti tik, jei pažymėjote mažiausiai du grafikos elementus."
#: 06030000.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/simpress/02.po b/source/lt/helpcontent2/source/text/simpress/02.po
index 94fbaa964bb..d9f3ad9972f 100644
--- a/source/lt/helpcontent2/source/text/simpress/02.po
+++ b/source/lt/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2017-10-04 11:28+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-31 05:28+0000\n"
+"Last-Translator: eglejasu <egle.jasute@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507116516.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564550881.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"par_id3154018\n"
"help.text"
msgid "Effects (%PRODUCTNAME Draw only)"
-msgstr ""
+msgstr "Efektai (tik „%PRODUCTNAME“ braižyklėje)"
#: 10030000.xhp
msgctxt ""
@@ -4054,7 +4054,7 @@ msgctxt ""
"bm_id3145799\n"
"help.text"
msgid "<bookmark_value>lines;inserting</bookmark_value><bookmark_value>arrows; inserting</bookmark_value><bookmark_value>inserting; lines</bookmark_value><bookmark_value>inserting; arrows</bookmark_value><bookmark_value>dimension lines; drawing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>linijos;įterpimas</bookmark_value><bookmark_value>rodyklės;įterpimas</bookmark_value><bookmark_value>įterpimas; linijos</bookmark_value><bookmark_value>įterpimas; rodyklės</bookmark_value><bookmark_value>matmenų linijos; braižymas</bookmark_value>"
#: 10120000.xhp
msgctxt ""
@@ -4070,7 +4070,7 @@ msgctxt ""
"par_id3145790\n"
"help.text"
msgid "<ahelp hid=\".uno:ArrowsToolbox\">Open the <emph>Arrows</emph> toolbar, where you can add straight lines, lines with arrows, and dimension lines to the current slide or page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ArrowsToolbox\">Spustelėję <emph>Linijų ir rodyklių</emph> mygtuką galite pridėti linijas, linijas su rodyklėmis ir matmenų linijas esamoje skaidrėje arba puslapyje.</ahelp>"
#: 10120000.xhp
msgctxt ""
@@ -4342,7 +4342,7 @@ msgctxt ""
"hd_id3154477\n"
"help.text"
msgid "Dimension Line"
-msgstr ""
+msgstr "Matmenų linija"
#: 10120000.xhp
msgctxt ""
@@ -4350,7 +4350,7 @@ msgctxt ""
"par_id3146124\n"
"help.text"
msgid "<ahelp hid=\".uno:MeasureLine\">Draws a line that displays the dimension length bounded by guides.</ahelp> Dimension lines automatically calculate and display linear dimensions. To draw a dimension line, open the <emph>Arrows</emph> toolbar, and click the <emph>Dimension Line</emph> icon. Move your pointer to where you want the line to start and drag to draw the dimension line. Release when finished."
-msgstr ""
+msgstr "<ahelp hid=\".uno:MeasureLine\">Nubrėžia liniją, kurioje rodomas atstumas tarp orientyrų.</ahelp> matmenų linijos automatiškai apskaičiuojamos ir parodomos. Jei norite įterpti matmenų liniją spustelėkite <emph>Linijų ir rodyklių</emph> mygtuką ir pasirinkite <emph>Matmenų liniją</emph>. Prkelkite žymeklį, kur norite pradėti brėžti matmenų liniją ir nuspaudę pelės žymeklį tempkite, kiek jums reikia. Baigę atleiskite pelės klavišą."
#: 10120000.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 "Jei norite, kad matmenų linijos ilgis būtų toks pats, kaip matuojamo objekto, tempdami nuspauskite <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Vald</defaultinline></switchinline> klavišą. Jei norite braižyti 45 laipsnių matmenų liniją, tempdami pelės žymeklį laikykite nuspaudę Lyg2 klavišą."
#: 10120000.xhp
msgctxt ""
@@ -4366,7 +4366,7 @@ msgctxt ""
"par_id3148986\n"
"help.text"
msgid "In %PRODUCTNAME Draw, a dimension line is always inserted on the <link href=\"text/simpress/guide/layer_tipps.xhp\" name=\"layer\">layer</link> called <emph>Dimension Lines</emph>. If you set that layer to invisible, you will not see any dimension line in your drawing."
-msgstr ""
+msgstr "„%PRODUCTNAME“ braižykėje matmenų tiesė visada įterpiama <link href=\"text/simpress/guide/layer_tipps.xhp\" name=\"layer\">sluoksnyje</link>, kurio pavadinimas <emph>Matmenų linijos</emph>. Jei nurodysite, kad sluoksnis nematomas, tai Matmenų linijos nebus rodomos jūsų brėžiniuose."
#: 10120000.xhp
msgctxt ""
@@ -4382,7 +4382,7 @@ msgctxt ""
"par_id3151259\n"
"help.text"
msgid "Dimension Line"
-msgstr ""
+msgstr "Matmenų linija"
#: 10120000.xhp
msgctxt ""
@@ -5046,7 +5046,7 @@ msgctxt ""
"par_id3151074\n"
"help.text"
msgid "<ahelp hid=\".uno:SolidCreate\">If this icon on the <emph>Options</emph> bar is activated, objects are shown with their attributes, but with 50% transparency, while you move or draw them.</ahelp> If this icon is not activated, only a contour is shown while drawing, and the object is shown with all attributes when you release the mouse button."
-msgstr ""
+msgstr "<ahelp hid=\".uno:SolidCreate\">Jei <emph>Parinkčių</emph> juostoje piktogramą aktyvi, objektai rodomi su jų atributais ir 50% skaidrumu, kai juos tempiate ar braižote.</ahelp> Jei ši piktograma neaktyvi, tai, kai braižote, rodomi tik grafikos objekto kontūrai ir, kai atleidžiate pelės klavišą, rodomi objekto atributai."
#: 13090000.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/simpress/guide.po b/source/lt/helpcontent2/source/text/simpress/guide.po
index 5025df48aee..0ebbb971bc1 100644
--- a/source/lt/helpcontent2/source/text/simpress/guide.po
+++ b/source/lt/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-07-04 05:05+0000\n"
+"PO-Revision-Date: 2019-07-31 05:29+0000\n"
"Last-Translator: eglejasu <egle.jasute@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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1562216729.000000\n"
+"X-POOTLE-MTIME: 1564550974.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -3062,7 +3062,7 @@ msgctxt ""
"par_id3150391\n"
"help.text"
msgid "Dimension Lines"
-msgstr ""
+msgstr "Matmenų linijos"
#: layers.xhp
msgctxt ""
@@ -3094,7 +3094,7 @@ msgctxt ""
"par_id3153085\n"
"help.text"
msgid "The <emph>Dimension Lines</emph> layer is where you draw, for example, the dimension lines. By switching the layer to show or hide, you can easily switch these lines on and off."
-msgstr ""
+msgstr "<emph>Matmenų linijų</emph> sluoksnis yra ten, kur brėžiate matmenų liniją. Jei norite pereiti iš vieno sluoksnio į kitą, tai tiesiog pereikite nuo vienos linijos prie kitos."
#: layers.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/swriter/guide.po b/source/lt/helpcontent2/source/text/swriter/guide.po
index 5e374848848..5894b85f7c7 100644
--- a/source/lt/helpcontent2/source/text/swriter/guide.po
+++ b/source/lt/helpcontent2/source/text/swriter/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-05-20 19:47+0000\n"
+"PO-Revision-Date: 2019-07-26 15:32+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: 1558381660.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564155170.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -3438,7 +3438,7 @@ msgctxt ""
"par_id3154257\n"
"help.text"
msgid "To copy the selected text, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you drag. The mouse pointer changes to include a plus sign (+).<br/><image id=\"img_id3152868\" src=\"media/helpimg/copydata.png\" width=\"0.3335in\" height=\"0.3335in\"><alt id=\"alt_id3152868\">Mouse cursor copying data</alt></image>"
-msgstr "Jei norite nukopijuoti pažymėtą tekstą, kol tempsite, laikykite nuspaustą klavišą <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Vald</defaultinline></switchinline>. Šalia pelės žymeklio bus rodomas pliuso ženklas (+).<br/><image id=\"img_id3152868\" src=\"media/helpimg/copydata.png\" width=\"0.3335in\" height=\"0.3335in\"><alt id=\"alt_id3152868\">Kopijavimas pele</alt></image>"
+msgstr "Jei norite nukopijuoti pažymėtą tekstą, kol tempsite, laikykite nuspaustą klavišą <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Vald</emph></defaultinline></switchinline>. Šalia pelės žymeklio bus rodomas pliuso ženklas (+).<br/><image id=\"img_id3152868\" src=\"media/helpimg/copydata.png\" width=\"0.3335in\" height=\"0.3335in\"><alt id=\"alt_id3152868\">Kopijavimas pele</alt></image>"
#: even_odd_sdw.xhp
msgctxt ""
diff --git a/source/lt/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/lt/instsetoo_native/inc_openoffice/windows/msi_languages.po
index fe654262891..6e90355ac34 100644
--- a/source/lt/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/lt/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-16 18:57+0000\n"
+"PO-Revision-Date: 2019-07-22 17:23+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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563303448.000000\n"
+"X-POOTLE-MTIME: 1563816210.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"OOO_CONTROL_54\n"
"LngText.text"
msgid "{&DialogDefaultBold}Custom Setup"
-msgstr "{&DialogDefaultBold}Pasirinktinis diegimas"
+msgstr "{&DialogDefaultBold}Pasirenkamasis diegimas"
#: Control.ulf
msgctxt ""
@@ -2646,7 +2646,7 @@ msgctxt ""
"OOO_CONTROL_278\n"
"LngText.text"
msgid "{&DialogDefaultBold}File Type"
-msgstr "{&DialogDefaultBold}Failo tipas"
+msgstr "{&DialogDefaultBold}Failų tipai"
#: Control.ulf
msgctxt ""
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 830b88e3406..74f74cf0477 100644
--- a/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lt/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-17 12:13+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-29 07:58+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
"Language: lt\n"
@@ -13,9 +13,9 @@ 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-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1563365584.000000\n"
+"X-POOTLE-MTIME: 1564387125.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -2465,7 +2465,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Insert Columns ~After"
-msgstr ""
+msgstr "Įterpti stulpelius dešiniau"
#: CalcCommands.xcu
msgctxt ""
@@ -3680,7 +3680,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Email as ~Microsoft Excel..."
-msgstr ""
+msgstr "Siųsti el. paštu – „Microsoft Excel“ dokumentą…"
#: CalcCommands.xcu
msgctxt ""
@@ -3689,7 +3689,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Email as ~OpenDocument Spreadsheet..."
-msgstr ""
+msgstr "Siųsti el. paštu – „OpenDocument“ skaičiuoklės dokumentą…"
#: CalcCommands.xcu
msgctxt ""
@@ -6983,7 +6983,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report As Email..."
-msgstr ""
+msgstr "Ataskaitą el. paštu…"
#: DbuCommands.xcu
msgctxt ""
@@ -8361,7 +8361,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Interaction..."
-msgstr "Sąveika..."
+msgstr "Sąveika…"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8370,7 +8370,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Change Slide Master..."
-msgstr ""
+msgstr "Keisti skaidrės pagrindą…"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -18879,7 +18879,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Lentelės stiliai"
#: GenericCommands.xcu
msgctxt ""
@@ -20682,14 +20682,13 @@ msgid "~Address Book Source..."
msgstr "Adresų knygelė..."
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:RubyDialog\n"
"Label\n"
"value.text"
msgid "Asian Phonetic G~uide..."
-msgstr "Azijos fonetikos vadovas…"
+msgstr "Azijos kalbų fonetiniai patarimai…"
#: GenericCommands.xcu
msgctxt ""
@@ -21063,6 +21062,24 @@ msgstr "Paremti „LibreOffice“"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
@@ -22570,7 +22587,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sum"
-msgstr ""
+msgstr "Suma"
#: GenericCommands.xcu
msgctxt ""
@@ -23074,7 +23091,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert non-br~eaking hyphen"
-msgstr ""
+msgstr "Jungiamasis brūkšnelis"
#: GenericCommands.xcu
msgctxt ""
@@ -23083,7 +23100,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert s~oft Hyphen"
-msgstr ""
+msgstr "Kėlimo ženklas"
#: GenericCommands.xcu
msgctxt ""
@@ -23092,7 +23109,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~non-breaking space"
-msgstr ""
+msgstr "Jungiamasis tarpas"
#: GenericCommands.xcu
msgctxt ""
@@ -25670,7 +25687,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr ""
+msgstr "Kompaktiškos kortelės"
#: ToolbarMode.xcu
msgctxt ""
diff --git a/source/lt/sd/messages.po b/source/lt/sd/messages.po
index fa66a4d9140..c3b2b5782bc 100644
--- a/source/lt/sd/messages.po
+++ b/source/lt/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-06-26 19:10+0000\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
+"PO-Revision-Date: 2019-07-23 20:34+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: 1561576231.000000\n"
+"X-POOTLE-MTIME: 1563914045.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -154,52 +154,52 @@ msgstr "Nugara (kairieji puslapiai)"
#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "All ~Slides"
-msgstr ""
+msgstr "Visos skaidrės"
#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "S~lides:"
-msgstr ""
+msgstr "Skaidrės:"
#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Even slides"
-msgstr ""
+msgstr "Lyginės skaidrės"
#: sd/inc/DocumentRenderer.hrc:85
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Odd slides"
-msgstr ""
+msgstr "Nelyginės skaidrės"
#: sd/inc/DocumentRenderer.hrc:86
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Selection"
-msgstr ""
+msgstr "Atranka"
#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "All ~Pages"
-msgstr ""
+msgstr "Visi lapai"
#: sd/inc/DocumentRenderer.hrc:92
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Pages:"
-msgstr ""
+msgstr "Lapai:"
#: sd/inc/DocumentRenderer.hrc:93
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Even pages"
-msgstr ""
+msgstr "Lyginiai lapai"
#: sd/inc/DocumentRenderer.hrc:94
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Odd pages"
-msgstr ""
+msgstr "Nelyginiai lapai"
#: sd/inc/DocumentRenderer.hrc:95
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Selection"
-msgstr ""
+msgstr "Atranka"
#: sd/inc/errhdl.hrc:29
msgctxt "RID_SD_ERRHDL"
@@ -279,37 +279,37 @@ msgstr ""
#: sd/inc/pageformatpanel.hrc:30
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "None"
-msgstr ""
+msgstr "Nėra"
#: sd/inc/pageformatpanel.hrc:31
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Narrow"
-msgstr ""
+msgstr "Siauros"
#: sd/inc/pageformatpanel.hrc:32
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Moderate"
-msgstr ""
+msgstr "Vidutinės"
#: sd/inc/pageformatpanel.hrc:33
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (1.9cm)"
-msgstr ""
+msgstr "Įprastos (1,9 cm)"
#: sd/inc/pageformatpanel.hrc:34
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (2.54cm)"
-msgstr ""
+msgstr "Įprastos (2,54 cm)"
#: sd/inc/pageformatpanel.hrc:35
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (3.18cm)"
-msgstr ""
+msgstr "Įprastos (3,18 cm)"
#: sd/inc/pageformatpanel.hrc:36
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Wide"
-msgstr ""
+msgstr "Plačios"
#: sd/inc/strings.hrc:25
msgctxt "STR_NULL"
@@ -377,10 +377,9 @@ msgid "Normal"
msgstr "Skaidrė"
#: sd/inc/strings.hrc:38
-#, fuzzy
msgctxt "STR_SLIDE_MASTER_MODE"
msgid "Master Slide"
-msgstr "Pagrindas"
+msgstr "Skaidrės pagrindas"
#: sd/inc/strings.hrc:39
msgctxt "STR_OUTLINE_MODE"
@@ -393,10 +392,9 @@ msgid "Notes"
msgstr "Pastabos"
#: sd/inc/strings.hrc:41
-#, fuzzy
msgctxt "STR_NOTES_MASTER_MODE"
msgid "Master Notes"
-msgstr "Pagrindo veiksenos"
+msgstr "Pastabų pagrindas"
#: sd/inc/strings.hrc:42
msgctxt "STR_HANDOUT_MASTER_MODE"
@@ -985,7 +983,7 @@ msgstr " skaidrės"
#: sd/inc/strings.hrc:155
msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
msgid "Load Master Slide"
-msgstr ""
+msgstr "Skaidrės pagrindo įkėlimas"
#: sd/inc/strings.hrc:156
msgctxt "STR_DRAGTYPE_URL"
@@ -1394,7 +1392,7 @@ msgstr "Pavadinimas"
#: sd/inc/strings.hrc:237
msgctxt "STR_TITLE_RENAMEMASTER"
msgid "Rename Master Slide"
-msgstr ""
+msgstr "Pervadinti skaidrės pagrindą"
#: sd/inc/strings.hrc:238
msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE"
@@ -1645,17 +1643,17 @@ msgstr "Pagrindas"
#: sd/inc/strings.hrc:288
msgctxt "STR_MASTERSLIDE_LABEL"
msgid "Master Slide:"
-msgstr ""
+msgstr "Pagrindas:"
#: sd/inc/strings.hrc:289
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
-msgstr "Pagrindo lapas"
+msgstr "Lapo pagrindas"
#: sd/inc/strings.hrc:290
msgctxt "STR_MASTERPAGE_LABEL"
msgid "Master Page:"
-msgstr "Pagrindo lapas:"
+msgstr "Lapo pagrindas:"
#: sd/inc/strings.hrc:291
msgctxt "STR_NOTES"
@@ -2556,12 +2554,12 @@ msgstr "Naudoti tik spausdintuvo popieriaus padavimo nuostatas"
#: sd/inc/strings.hrc:479
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Pages:"
-msgstr ""
+msgstr "Lapai:"
#: sd/inc/strings.hrc:480
msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE"
msgid "Slides:"
-msgstr ""
+msgstr "Skaidrės:"
#: sd/inc/strings.hrc:482
msgctxt "STR_SAR_WRAP_FORWARD"
@@ -2974,10 +2972,9 @@ msgid "Bullets"
msgstr "Ženkleliai"
#: sd/uiconfig/sdraw/ui/drawprtldialog.ui:559
-#, fuzzy
msgctxt "drawprtldialog|RID_SVXPAGE_PICK_SINGLE_NUM"
msgid "Numbering"
-msgstr "Numeravimo tipas"
+msgstr "Numeravimas"
#: sd/uiconfig/sdraw/ui/drawprtldialog.ui:606
msgctxt "drawprtldialog|RID_SVXPAGE_PICK_BMP"
@@ -3073,7 +3070,7 @@ msgstr "Failas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "Žinynas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
@@ -3093,7 +3090,7 @@ msgstr "Pradžia"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:5414
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Laukas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:5600
msgctxt "drawnotebookbar|InsertMenuButton"
@@ -3138,99 +3135,99 @@ msgstr "Rodymas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:9768
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
-msgstr ""
+msgstr "Tekstas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:9848
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
-msgstr ""
+msgstr "Tekstas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:10778
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
-msgstr ""
+msgstr "Lentelė"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:10863
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "Lentelė"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11407
#: sd/uiconfig/sdraw/ui/notebookbar.ui:12610
#: sd/uiconfig/sdraw/ui/notebookbar.ui:14282
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Konvertavimas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:12005
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
-msgstr ""
+msgstr "Paveikslas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:12117
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Paveikslas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:13680
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
-msgstr ""
+msgstr "Braižymas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:13789
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
-msgstr ""
+msgstr "Braižymas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:14647
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
-msgstr ""
+msgstr "Objektas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:14757
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
-msgstr ""
+msgstr "Objektas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:15272
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
-msgstr ""
+msgstr "Medija"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:15379
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "Medija"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:15410
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Forma"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:16299
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Forma"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:16330
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
-msgstr ""
+msgstr "Trimatis vaizdas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17222
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
-msgstr ""
+msgstr "Trimatis vaizdas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17253
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
-msgstr ""
+msgstr "Pagrindas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17897
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
-msgstr ""
+msgstr "Pagrindas"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17930
msgctxt "drawnotebookbar|ToolsMenuButton"
@@ -3245,167 +3242,167 @@ msgstr "Priemonės"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2317
msgctxt "notebookbar_draw_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "Failas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2950
msgctxt "notebookbar_draw_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "Failas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2998
msgctxt "notebookbar_draw_compact|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "Pradžia"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4440
msgctxt "notebookbar_draw_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "Pradžia"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5011
msgctxt "notebookbar_draw_compact|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Laukas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5568
msgctxt "notebookbar_draw_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "Įterpimas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5619
msgctxt "notebookbar_draw_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "Įterpimas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6412
msgctxt "notebookbar_draw_compact|LayoutMenuButton"
msgid "Layout"
-msgstr ""
+msgstr "Išdėstymas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6464
msgctxt "notebookbar_draw_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "Išdėstymas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7010
msgctxt "notebookbar_draw_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Tikrinimas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7043
msgctxt "notebookbar_draw_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "Tikrinimas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7754
msgctxt "notebookbar_draw_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "Rodymas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7806
msgctxt "notebookbar_draw_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "Rodymas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7928
msgctxt "notebookbar_draw_compact|TextMenuButton"
msgid "T_ext"
-msgstr ""
+msgstr "Tekstas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9394
msgctxt "notebookbar_draw_compact|ReferencesLabel"
msgid "T~ext"
-msgstr ""
+msgstr "Tekstas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9524
msgctxt "notebookbar_draw_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "Lentelė"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11273
msgctxt "notebookbar_draw_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "Lentelė"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12700
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
-msgstr ""
+msgstr "Paveikslas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12752
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Paveikslas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14580
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Braižymas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14635
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "Braižymas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15664
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
-msgstr ""
+msgstr "Objektas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15720
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "Objektas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16898
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "Medija"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16952
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "Medija"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18230
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Forma"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18285
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Forma"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18940
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
-msgstr ""
+msgstr "Pagrindas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18992
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
-msgstr ""
+msgstr "Pagrindas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19982
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
-msgstr ""
+msgstr "Trimatis vaizdas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20037
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
-msgstr ""
+msgstr "Trimatis vaizdas"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20087
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Priemonės"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:21125
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "Priemonės"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2359
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
@@ -3473,13 +3470,13 @@ msgstr "Tikrinimas"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13457
msgctxt "draw_notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Forma"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4485
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5968
msgctxt "draw_notebookbar_groupedbar_compact|formatt"
msgid "F_ont"
-msgstr ""
+msgstr "Šriftas"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4722
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6205
@@ -3490,18 +3487,18 @@ msgstr "Pastraipa"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4989
msgctxt "draw_notebookbar_groupedbar_compact|rowscolumnst"
msgid "_Table"
-msgstr ""
+msgstr "Lentelė"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5676
msgctxt "draw_notebookbar_groupedbar_compact|calculatet"
msgid "_Calc"
-msgstr ""
+msgstr "Skaičiavimai"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6905
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11397
msgctxt "draw_notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
-msgstr ""
+msgstr "Braižymas"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7343
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9142
@@ -3510,58 +3507,58 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11835
msgctxt "draw_notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "Išdėstymas"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7811
msgctxt "draw_notebookbar_groupedbar_compact|draw"
msgid "_Shape"
-msgstr ""
+msgstr "Figūra"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8088
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12253
msgctxt "draw_notebookbar_groupedbar_compact|viewDrawb"
msgid "Grou_p"
-msgstr ""
+msgstr "Grupavimas"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8213
msgctxt "draw_notebookbar_groupedbar_compact|3Db"
msgid "3_D"
-msgstr ""
+msgstr "Trimatis vaizdas"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8447
msgctxt "draw_notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "Dekoratyvusis tekstas"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8561
msgctxt "draw_notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
-msgstr ""
+msgstr "Tinklelis"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8701
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
msgid "_Image"
-msgstr ""
+msgstr "Paveikslas"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9538
msgctxt "draw_notebookbar_groupedbar_compact|GridB"
msgid "_Color"
-msgstr ""
+msgstr "Spalva"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9827
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
-msgstr ""
+msgstr "Objektas"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10708
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
-msgstr ""
+msgstr "Medija"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12391
msgctxt "draw_notebookbar_groupedbar_compact|oleB"
msgid "_Master"
-msgstr ""
+msgstr "Pagrindas"
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:30
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -4573,7 +4570,7 @@ msgstr "Rodyti skaidrėje"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:36
msgctxt "impressprinteroptions|label2"
msgid "Type:"
-msgstr ""
+msgstr "Tipas:"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:50
msgctxt "impressprinteroptions|label7"
@@ -4583,12 +4580,12 @@ msgstr "Skaidrės/psl.:"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:64
msgctxt "impressprinteroptions|label1"
msgid "Order:"
-msgstr ""
+msgstr "Tvarka:"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:111
msgctxt "impressprinteroptions|label3"
msgid "Document"
-msgstr ""
+msgstr "Dokumentas"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:144
msgctxt "impressprinteroptions|printname"
@@ -4844,7 +4841,7 @@ msgstr "Pradžia"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5531
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Laukas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6090
msgctxt "impressnotebookbar|InsertMenuButton"
@@ -4899,99 +4896,99 @@ msgstr "Rodymas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10525
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
-msgstr ""
+msgstr "Lentelė"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10610
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "Lentelė"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11152
#: sd/uiconfig/simpress/ui/notebookbar.ui:12353
#: sd/uiconfig/simpress/ui/notebookbar.ui:14043
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Konvertavimas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11750
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
-msgstr ""
+msgstr "Paveikslas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11862
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Paveikslas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:13439
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
-msgstr ""
+msgstr "Braižymas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:13549
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
-msgstr ""
+msgstr "Braižymas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:14408
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
-msgstr ""
+msgstr "Objektas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:14518
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
-msgstr ""
+msgstr "Objektas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:15033
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
-msgstr ""
+msgstr "Medija"
#: sd/uiconfig/simpress/ui/notebookbar.ui:15140
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "Medija"
#: sd/uiconfig/simpress/ui/notebookbar.ui:15171
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Forma"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16060
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Forma"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16091
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
-msgstr ""
+msgstr "Pagrindas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16957
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
-msgstr ""
+msgstr "Pagrindas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16988
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
-msgstr ""
+msgstr "Rodymas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:17870
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
-msgstr ""
+msgstr "Struktūra"
#: sd/uiconfig/simpress/ui/notebookbar.ui:17901
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
-msgstr ""
+msgstr "Trimatis vaizdas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:18793
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
-msgstr ""
+msgstr "Trimatis vaizdas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:18824
msgctxt "impressnotebookbar|ToolsMenuButton"
@@ -5006,167 +5003,167 @@ msgstr "Priemonės"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:2611
msgctxt "notebookbar_impress_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "Failas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:3244
msgctxt "notebookbar_impress_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "Failas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:3292
msgctxt "notebookbar_impress_compact|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "Pradžia"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:4710
msgctxt "notebookbar_impress_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "Pradžia"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5284
msgctxt "notebookbar_impress_compact|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Laukas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5841
msgctxt "notebookbar_impress_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "Įterpimas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5892
msgctxt "notebookbar_impress_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "Įterpimas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6696
msgctxt "notebookbar_impress_compact|LayoutMenuButton"
msgid "Layout"
-msgstr ""
+msgstr "Išdėstymas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6748
msgctxt "notebookbar_impress_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "Išdėstymas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7297
msgctxt "notebookbar_impress_compact|LayoutMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "Demonstravimas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7349
msgctxt "notebookbar_impress_compact|LayoutLabel"
msgid "~Slide Show"
-msgstr ""
+msgstr "Demonstravimas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7895
msgctxt "notebookbar_impress_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Tikrinimas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7928
msgctxt "notebookbar_impress_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "Tikrinimas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8779
msgctxt "notebookbar_impress_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "Rodymas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8831
msgctxt "notebookbar_impress_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "Rodymas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8955
msgctxt "notebookbar_impress_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "Lentelė"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10701
msgctxt "notebookbar_impress_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "Lentelė"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10753
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
-msgstr ""
+msgstr "Paveikslas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:12181
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Paveikslas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14012
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Braižymas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14067
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "Braižymas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15095
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
-msgstr ""
+msgstr "Objektas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15151
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "Objektas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16327
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "Medija"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16381
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "Medija"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17659
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Forma"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17714
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Forma"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18483
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
-msgstr ""
+msgstr "Pagrindas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18535
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
-msgstr ""
+msgstr "Pagrindas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19523
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
-msgstr ""
+msgstr "Trimatis vaizdas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19578
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
-msgstr ""
+msgstr "Trimatis vaizdas"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19628
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Priemonės"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20666
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "Priemonės"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2269
msgctxt "impress_notebookbar_groupedbar_compact|MenubarAction"
@@ -5240,11 +5237,10 @@ msgstr "Tikrinimas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6039
msgctxt "notebookbar_groupedbar_compact|formatt"
msgid "F_ont"
-msgstr ""
+msgstr "Šriftas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4669
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6274
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|paragrapht"
msgid "_Paragraph"
msgstr "Pastraipa"
@@ -5252,7 +5248,7 @@ msgstr "Pastraipa"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4947
msgctxt "notebookbar_groupedbar_compact|rowscolumnst"
msgid "_Table"
-msgstr ""
+msgstr "Lentelė"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5621
msgctxt "notebookbar_groupedbar_compact|calculatet"
@@ -5263,7 +5259,7 @@ msgstr "Skaičiavimai"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11355
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
-msgstr ""
+msgstr "Braižymas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7303
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9100
@@ -5272,16 +5268,15 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11793
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "Išdėstymas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7771
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "_Shape"
-msgstr ""
+msgstr "Figūra"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8046
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12211
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|viewDrawb"
msgid "Grou_p"
msgstr "Grupavimas"
@@ -5294,42 +5289,42 @@ msgstr "Trimatis vaizdas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8405
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "Dekoratyvusis tekstas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8519
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
-msgstr ""
+msgstr "Tinklelis"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8659
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Image"
-msgstr ""
+msgstr "Paveikslas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9496
msgctxt "notebookbar_groupedbar_compact|GridB"
msgid "_Color"
-msgstr ""
+msgstr "Spalva"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9785
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
-msgstr ""
+msgstr "Objektas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10666
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
-msgstr ""
+msgstr "Medija"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12349
msgctxt "notebookbar_groupedbar_compact|oleB"
msgid "_Master"
-msgstr ""
+msgstr "Pagrindas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13439
msgctxt "impress_notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Forma"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2969
msgctxt "notebookbar_groupedbar_full|menub"
@@ -5344,7 +5339,7 @@ msgstr "Priemonės"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3077
msgctxt "notebookbar_groupedbar_full|helpb"
msgid "_Help"
-msgstr "_Žinynas"
+msgstr "Žinynas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3185
msgctxt "notebookbar_groupedbar_full|fileb"
@@ -5388,15 +5383,14 @@ msgstr "Peržiūra"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Išdėstymas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5072
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowt"
msgid "_Slide Show"
msgstr "Demonstravimas"
@@ -5409,19 +5403,16 @@ msgstr "Formatas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5650
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6932
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Paragraph"
msgstr "Pastraipa"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5897
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextt"
msgid "_Insert"
msgstr "Įterpimas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6063
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewt"
msgid "_View"
msgstr "Rodymas"
@@ -5429,16 +5420,14 @@ msgstr "Rodymas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6213
msgctxt "notebookbar_groupedbar_full|reviewp"
msgid "_Review"
-msgstr ""
+msgstr "Tikrinimas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6354
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowtt"
msgid "_Slide Show"
msgstr "Demonstravimas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7112
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|tabled"
msgid "T_able"
msgstr "Lentelė"
@@ -5464,14 +5453,13 @@ msgid "_Edit"
msgstr "Keitimas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "Tinklelis"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8857
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Grupavimas"
@@ -5481,58 +5469,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "Trimatis vaizdas"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Paveikslas"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Spalva"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
-#, fuzzy
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Medija"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
-#, fuzzy
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Demonstravimas"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Kadras"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
-#, fuzzy
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Rodymas"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
-#, fuzzy
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
-msgstr "Pagrindai"
+msgstr "Pagrindas"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
-#, fuzzy
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Įterpimas"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Braižymas"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
-#, fuzzy
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "Rodymas"
@@ -6490,25 +6472,21 @@ msgid "Connections"
msgstr "Ryšiai"
#: sd/uiconfig/simpress/ui/rotatemenu.ui:12
-#, fuzzy
msgctxt "rotatemenu|90"
msgid "Quarter Spin"
msgstr "Ketvirtadalis apsisukimo"
#: sd/uiconfig/simpress/ui/rotatemenu.ui:20
-#, fuzzy
msgctxt "rotatemenu|180"
msgid "Half Spin"
msgstr "Pusė apsisukimo"
#: sd/uiconfig/simpress/ui/rotatemenu.ui:28
-#, fuzzy
msgctxt "rotatemenu|360"
msgid "Full Spin"
msgstr "Visas apsisukimas"
#: sd/uiconfig/simpress/ui/rotatemenu.ui:36
-#, fuzzy
msgctxt "rotatemenu|720"
msgid "Two Spins"
msgstr "Du apsisukimai"
@@ -6615,7 +6593,7 @@ msgstr "Pagrindo objektai"
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:128
msgctxt "sidebarslidebackground|button2"
msgid "Insert Image..."
-msgstr ""
+msgstr "Įterpti paveikslą…"
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:166
msgctxt "sidebarslidebackground|displaymasterbackground"
@@ -6630,7 +6608,7 @@ msgstr "Padėtis:"
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:213
msgctxt "sidebarslidebackground|masterslidebutton"
msgid "Master View"
-msgstr ""
+msgstr "Pagrindas"
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:227
msgctxt "sidebarslidebackground|closemasterslide"
@@ -6754,7 +6732,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/slidedesigndialog.ui:8
msgctxt "slidedesigndialog|SlideDesignDialog"
msgid "Available Master Slides"
-msgstr ""
+msgstr "Galimi pagrindai"
#: sd/uiconfig/simpress/ui/slidedesigndialog.ui:29
msgctxt "slidedesigndialog|load"
diff --git a/source/lt/svx/messages.po b/source/lt/svx/messages.po
index 9f850bd2cc6..695793c4a9a 100644
--- a/source/lt/svx/messages.po
+++ b/source/lt/svx/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-05-25 21:41+0000\n"
+"PO-Revision-Date: 2019-07-29 08:01+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: 1558820483.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564387282.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -489,12 +489,12 @@ msgstr ""
#: include/svx/strings.hrc:119
msgctxt "STR_ObjNameSingulOLE2"
msgid "embedded object (OLE)"
-msgstr "Įterptas objektas (OLE)"
+msgstr "Įterptasis objektas (OLE)"
#: include/svx/strings.hrc:120
msgctxt "STR_ObjNamePluralOLE2"
msgid "Embedded objects (OLE)"
-msgstr "Įterpti objektai (OLE)"
+msgstr "Įterptieji objektai (OLE)"
#: include/svx/strings.hrc:121
msgctxt "STR_ObjNameSingulUno"
@@ -5946,7 +5946,7 @@ msgstr "Optimalus vaizdas"
#: include/svx/strings.hrc:1253
msgctxt "RID_SIDEBAR_EMPTY_PANEL_TEXT"
msgid "Properties for the task that you are performing are not available for the current selection"
-msgstr ""
+msgstr "Pažymėtam objektui savybių keisti negalima."
#: include/svx/strings.hrc:1255
msgctxt "RID_SVXSTR_SEARCH_STYLES"
@@ -9891,7 +9891,7 @@ msgstr "16:9 ekranas"
#: svx/source/dialog/page.hrc:93
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:10"
-msgstr "16:9 ekranas"
+msgstr "16:10 ekranas"
#: svx/source/dialog/page.hrc:94
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
@@ -10297,17 +10297,17 @@ msgstr "1 2 1"
#: svx/uiconfig/ui/asianphoneticguidedialog.ui:368
msgctxt "asianphoneticguidedialog|positionlb"
msgid "Top"
-msgstr "Viršutinė"
+msgstr "Viršuje"
#: svx/uiconfig/ui/asianphoneticguidedialog.ui:369
msgctxt "asianphoneticguidedialog|positionlb"
msgid "Bottom"
-msgstr "Apatinė"
+msgstr "Apačioje"
#: svx/uiconfig/ui/asianphoneticguidedialog.ui:370
msgctxt "asianphoneticguidedialog|positionlb"
msgid "Right"
-msgstr ""
+msgstr "Dešinėje"
#: svx/uiconfig/ui/asianphoneticguidedialog.ui:393
msgctxt "asianphoneticguidedialog|label1"
@@ -10741,7 +10741,7 @@ msgstr "Paveikslo glaudinimas"
#: svx/uiconfig/ui/compressgraphicdialog.ui:132
msgctxt "compressgraphicdialog|radio-jpeg"
msgid "JPEG Quality"
-msgstr ""
+msgstr "JPEG kokybė"
#: svx/uiconfig/ui/compressgraphicdialog.ui:136
msgctxt "compressgraphicdialog|radio-jpeg|tooltip_text"
@@ -10836,12 +10836,12 @@ msgstr "Tipas:"
#: svx/uiconfig/ui/compressgraphicdialog.ui:582
msgctxt "compressgraphicdialog|label7"
msgid "Actual dimensions:"
-msgstr ""
+msgstr "Tikrieji matmenys:"
#: svx/uiconfig/ui/compressgraphicdialog.ui:614
msgctxt "compressgraphicdialog|label8"
msgid "Apparent dimensions:"
-msgstr ""
+msgstr "Atvaizduojami matmenys:"
#: svx/uiconfig/ui/compressgraphicdialog.ui:645
msgctxt "compressgraphicdialog|label9"
@@ -10851,7 +10851,7 @@ msgstr "Paveikslo dydis:"
#: svx/uiconfig/ui/compressgraphicdialog.ui:674
msgctxt "compressgraphicdialog|calculate"
msgid "Calculate New Size:"
-msgstr ""
+msgstr "Skaičiuoti naująjį dydį:"
#: svx/uiconfig/ui/compressgraphicdialog.ui:712
msgctxt "compressgraphicdialog|label1"
@@ -11930,7 +11930,7 @@ msgstr "„%PRODUCTNAME %PRODUCTVERSION“ dokumentų atkūrimas"
#: svx/uiconfig/ui/docrecoverysavedialog.ui:76
msgctxt "docrecoverysavedialog|label1"
msgid "Due to an error, %PRODUCTNAME crashed. All the files you were working on will now be saved. The next time %PRODUCTNAME is launched, your files will be recovered automatically."
-msgstr ""
+msgstr "Dėl klaidos sutriko „%PRODUCTNAME“ darbas. Visi atverti dokumentai bus įrašyti ir automatiškai atkurti kitą kartą paleidus „%PRODUCTNAME“."
#: svx/uiconfig/ui/docrecoverysavedialog.ui:98
msgctxt "docrecoverysavedialog|label2"
@@ -12471,10 +12471,9 @@ msgid "Average"
msgstr "Vidurkis"
#: svx/uiconfig/ui/functionmenu.ui:20
-#, fuzzy
msgctxt "functionmenu|counta"
msgid "CountA"
-msgstr "Kiekis"
+msgstr "KiekisR"
#: svx/uiconfig/ui/functionmenu.ui:27
msgctxt "functionmenu|count"
diff --git a/source/lt/sw/messages.po b/source/lt/sw/messages.po
index 4ef163a0f1f..0666247310d 100644
--- a/source/lt/sw/messages.po
+++ b/source/lt/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-17 09:03+0000\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-28 11:30+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563354237.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1564313441.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -264,7 +264,7 @@ msgstr "Darbo telefonas"
#: sw/inc/dbui.hrc:57
msgctxt "SA_ADDRESS_HEADER"
msgid "Email Address"
-msgstr ""
+msgstr "El. pašto adresas"
#: sw/inc/dbui.hrc:58
msgctxt "SA_ADDRESS_HEADER"
@@ -556,37 +556,37 @@ msgstr "Be pavadinimo 9"
#: sw/inc/pageformatpanel.hrc:18
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "None"
-msgstr ""
+msgstr "Nėra"
#: sw/inc/pageformatpanel.hrc:19
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Narrow"
-msgstr ""
+msgstr "Siauros"
#: sw/inc/pageformatpanel.hrc:20
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Moderate"
-msgstr ""
+msgstr "Vidutinės"
#: sw/inc/pageformatpanel.hrc:21
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (0.75\")"
-msgstr ""
+msgstr "Įprastos (0,75\")"
#: sw/inc/pageformatpanel.hrc:22
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (1\")"
-msgstr ""
+msgstr "Įprastos (1\")"
#: sw/inc/pageformatpanel.hrc:23
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (1.25\")"
-msgstr ""
+msgstr "Įprastos (1,25\")"
#: sw/inc/pageformatpanel.hrc:24
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Wide"
-msgstr ""
+msgstr "Plačios"
#: sw/inc/pageformatpanel.hrc:25
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
@@ -596,37 +596,37 @@ msgstr "Plati vidinė"
#: sw/inc/pageformatpanel.hrc:31
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "None"
-msgstr ""
+msgstr "Nėra"
#: sw/inc/pageformatpanel.hrc:32
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Narrow"
-msgstr ""
+msgstr "Siauros"
#: sw/inc/pageformatpanel.hrc:33
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Moderate"
-msgstr ""
+msgstr "Vidutinės"
#: sw/inc/pageformatpanel.hrc:34
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (1.9cm)"
-msgstr ""
+msgstr "Įprastos (1,9 cm)"
#: sw/inc/pageformatpanel.hrc:35
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (2.54cm)"
-msgstr ""
+msgstr "Įprastos (2,54 cm)"
#: sw/inc/pageformatpanel.hrc:36
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (3.18cm)"
-msgstr ""
+msgstr "Įprastos (3,18 cm)"
#: sw/inc/pageformatpanel.hrc:37
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Wide"
-msgstr ""
+msgstr "Plačios"
#: sw/inc/pageformatpanel.hrc:38
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
@@ -3437,27 +3437,27 @@ msgstr "Tekstas iš dešinės į kairę"
#: sw/inc/strings.hrc:611
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "All ~Pages"
-msgstr ""
+msgstr "Visi puslapiai"
#: sw/inc/strings.hrc:612
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
-msgstr ""
+msgstr "Puslapiai:"
#: sw/inc/strings.hrc:613
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
-msgstr ""
+msgstr "Lyginiai puslapiai"
#: sw/inc/strings.hrc:614
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
-msgstr ""
+msgstr "Nelyginiai puslapiai"
#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
-msgstr ""
+msgstr "Atranka"
#: sw/inc/strings.hrc:616
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
@@ -6545,7 +6545,7 @@ msgstr "Nepavyko sujungti dokumentų."
#: sw/inc/strings.hrc:1308
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
-msgstr ""
+msgstr "Duomenų bazių modulis „%PRODUCTNAME Base“ neįdiegtas, o jis reikalingas laiškams komponuoti."
#: sw/inc/strings.hrc:1309
msgctxt "STR_ERR_SRCSTREAM"
@@ -6696,7 +6696,7 @@ msgstr ""
#: sw/inc/strings.hrc:1352
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
-msgstr ""
+msgstr "Negaliojantis parašas"
#: sw/inc/strings.hrc:1353
#, fuzzy
@@ -7062,7 +7062,7 @@ msgstr "Dešininė"
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
-msgstr ""
+msgstr "Stilius"
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
@@ -7943,7 +7943,7 @@ msgstr "Pritaikyti stiliai"
#: sw/uiconfig/swriter/ui/conditionpage.ui:208
msgctxt "conditionpage|styleft"
msgid "Paragraph Styles"
-msgstr ""
+msgstr "Pastraipos stiliai"
#: sw/uiconfig/swriter/ui/conditionpage.ui:232
msgctxt "conditionpage|filter"
@@ -8375,7 +8375,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Pasirinkti elementą: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
#, fuzzy
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
@@ -12534,45 +12534,45 @@ msgstr "_Failas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4316
msgctxt "notebookbar_groupedbar_full|EditButton"
msgid "_Edit"
-msgstr ""
+msgstr "_Taisa"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4513
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6313
msgctxt "notebookbar_groupedbar_full|StyleButton"
msgid "St_yles"
-msgstr ""
+msgstr "_Stiliai"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4799
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6599
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9481
msgctxt "notebookbar_groupedbar_full|FormatButton"
msgid "F_ormat"
-msgstr ""
+msgstr "F_ormatas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5138
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6938
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9746
msgctxt "notebookbar_groupedbar_full|ParagraphButton"
msgid "_Paragraph"
-msgstr ""
+msgstr "Pastraipa"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5377
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10077
msgctxt "notebookbar_groupedbar_full|InsertButton"
msgid "_Insert"
-msgstr ""
+msgstr "Įt_erpimas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5606
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8251
msgctxt "notebookbar_groupedbar_full|ReferenceButton"
msgid "Referen_ce"
-msgstr ""
+msgstr "_Nuoroda"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5808
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8617
msgctxt "notebookbar_groupedbar_full|ReviewButton"
msgid "_Review"
-msgstr ""
+msgstr "Tikrinimas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5958
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9183
@@ -12581,58 +12581,58 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:16083
msgctxt "notebookbar_groupedbar_full|ViewButton"
msgid "_View"
-msgstr ""
+msgstr "Rodymas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6134
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:16260
msgctxt "notebookbar_groupedbar_full|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Forma"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7163
msgctxt "notebookbar_groupedbar_full|TableButton"
msgid "T_able"
-msgstr ""
+msgstr "Lentelė"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7362
msgctxt "notebookbar_groupedbar_full|RowsColumnsButton"
msgid "R_ows"
-msgstr ""
+msgstr "Eilutės"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7564
msgctxt "notebookbar_groupedbar_full|MergeButton"
msgid "_Merge"
-msgstr ""
+msgstr "Suliejimas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7793
msgctxt "notebookbar_groupedbar_full|SelectButton"
msgid "Sele_ct"
-msgstr ""
+msgstr "Atranka"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8022
msgctxt "notebookbar_groupedbar_full|CalculateButton"
msgid "_Calc"
-msgstr ""
+msgstr "Skaičiavimai"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8388
msgctxt "notebookbar_groupedbar_full|LanguageButton"
msgid "_Language"
-msgstr ""
+msgstr "Kalba"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8830
msgctxt "notebookbar_groupedbar_full|CommentsButton"
msgid "_Comments"
-msgstr ""
+msgstr "Komentarai"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9033
msgctxt "notebookbar_groupedbar_full|CompareButton"
msgid "Com_pare"
-msgstr ""
+msgstr "Palyginimas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10407
msgctxt "notebookbar_groupedbar_full|DrawButton"
msgid "D_raw"
-msgstr ""
+msgstr "Braižymas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10718
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12576
@@ -12640,12 +12640,12 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:15468
msgctxt "notebookbar_groupedbar_full|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "Išdėstymas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11436
msgctxt "notebookbar_groupedbar_full|DrawEditButton"
msgid "_Edit"
-msgstr ""
+msgstr "Taisa"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11621
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13635
@@ -12653,42 +12653,42 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:15933
msgctxt "notebookbar_groupedbar_full|GridButton"
msgid "_Grid"
-msgstr ""
+msgstr "Tinklelis"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11823
msgctxt "notebookbar_groupedbar_full|GroupButton"
msgid "Grou_p"
-msgstr ""
+msgstr "Grupavimas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12000
msgctxt "notebookbar_groupedbar_full|3DButton"
msgid "3_D"
-msgstr ""
+msgstr "Trimatis vaizdas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12297
msgctxt "notebookbar_groupedbar_full|GraphicButton"
msgid "Image"
-msgstr ""
+msgstr "Paveikslas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13281
msgctxt "notebookbar_groupedbar_full|ColorButton"
msgid "C_olor"
-msgstr ""
+msgstr "Spalva"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13811
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "Objektas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14690
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "F_rame"
-msgstr ""
+msgstr "Kadras"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:15171
msgctxt "notebookbar_groupedbar_full|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "Medija"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:17043
msgctxt "notebookbar_groupedbar_full|PrintMenuButton"
@@ -14258,7 +14258,7 @@ msgstr "Dešinioji platesnė"
#: sw/uiconfig/swriter/ui/pagecolumncontrol.ui:226
msgctxt "pagecolumncontrol|moreoptions"
msgid "_More Options"
-msgstr "_Daugiau parinkčių"
+msgstr "Daugiau parinkčių"
#: sw/uiconfig/swriter/ui/pagecolumncontrol.ui:230
msgctxt "pagecolumncontrol|moreoptions|tooltip_text"
@@ -14466,7 +14466,7 @@ msgstr "Gulsčiai"
#: sw/uiconfig/swriter/ui/pagesizecontrol.ui:51
msgctxt "pagesizecontrol|moreoptions"
msgid "_More Options"
-msgstr "_Daugiau parinkčių"
+msgstr "Daugiau parinkčių"
#: sw/uiconfig/swriter/ui/pagesizecontrol.ui:55
msgctxt "pagesizecontrol|moreoptions|tooltip_text"
@@ -14762,7 +14762,7 @@ msgstr "Formos valdikliai"
#: sw/uiconfig/swriter/ui/printeroptions.ui:118
msgctxt "printeroptions|formcontrols"
msgid "Comments:"
-msgstr ""
+msgstr "Komentarai:"
#: sw/uiconfig/swriter/ui/printeroptions.ui:154
msgctxt "printeroptions|label4"
@@ -16169,7 +16169,7 @@ msgstr "Horizontaliai"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
-msgstr ""
+msgstr "Vertikaliai (iš viršaus į apačią)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
msgctxt "tabletextflowpage|liststore1"
@@ -16179,7 +16179,7 @@ msgstr "Naudoti ankstesnio objekto nuostatas"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:301
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
-msgstr ""
+msgstr "Vertikaliai (iš apačios į viršų)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:322
msgctxt "tabletextflowpage|headline"
diff --git a/source/lt/vcl/messages.po b/source/lt/vcl/messages.po
index 75f358ff318..848403f405d 100644
--- a/source/lt/vcl/messages.po
+++ b/source/lt/vcl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:23+0200\n"
-"PO-Revision-Date: 2019-04-03 13:05+0000\n"
+"PO-Revision-Date: 2019-07-29 07:25+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: 1554296737.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1564385104.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -175,7 +175,7 @@ msgstr "#12 vokas"
#: vcl/inc/print.hrc:59
msgctxt "RID_STR_PAPERNAMES"
msgid "16 Kai (16k)"
-msgstr ""
+msgstr "16 Kai (16k)"
#: vcl/inc/print.hrc:60
msgctxt "RID_STR_PAPERNAMES"
@@ -220,22 +220,22 @@ msgstr ""
#: vcl/inc/print.hrc:68
msgctxt "RID_STR_PAPERNAMES"
msgid "10x14"
-msgstr ""
+msgstr "10x14"
#: vcl/inc/print.hrc:69
msgctxt "RID_STR_PAPERNAMES"
msgid "#14 Envelope"
-msgstr ""
+msgstr "#14 vokas"
#: vcl/inc/print.hrc:70
msgctxt "RID_STR_PAPERNAMES"
msgid "C3 Envelope"
-msgstr ""
+msgstr "C3 vokas"
#: vcl/inc/print.hrc:71
msgctxt "RID_STR_PAPERNAMES"
msgid "Italian Envelope"
-msgstr ""
+msgstr "Itališkas vokas"
#: vcl/inc/print.hrc:72
msgctxt "RID_STR_PAPERNAMES"
@@ -255,17 +255,17 @@ msgstr "Japoniškas atvirukas"
#: vcl/inc/print.hrc:75
msgctxt "RID_STR_PAPERNAMES"
msgid "9x11"
-msgstr ""
+msgstr "9x11"
#: vcl/inc/print.hrc:76
msgctxt "RID_STR_PAPERNAMES"
msgid "10x11"
-msgstr ""
+msgstr "10x11"
#: vcl/inc/print.hrc:77
msgctxt "RID_STR_PAPERNAMES"
msgid "15x11"
-msgstr ""
+msgstr "15x11"
#: vcl/inc/print.hrc:78
msgctxt "RID_STR_PAPERNAMES"
@@ -275,12 +275,12 @@ msgstr ""
#: vcl/inc/print.hrc:79
msgctxt "RID_STR_PAPERNAMES"
msgid "SuperA"
-msgstr ""
+msgstr "SuperA"
#: vcl/inc/print.hrc:80
msgctxt "RID_STR_PAPERNAMES"
msgid "SuperB"
-msgstr ""
+msgstr "SuperB"
#: vcl/inc/print.hrc:81
msgctxt "RID_STR_PAPERNAMES"
@@ -300,37 +300,37 @@ msgstr ""
#: vcl/inc/print.hrc:84
msgctxt "RID_STR_PAPERNAMES"
msgid "A6"
-msgstr ""
+msgstr "A6"
#: vcl/inc/print.hrc:85
msgctxt "RID_STR_PAPERNAMES"
msgid "12x11"
-msgstr ""
+msgstr "12x11"
#: vcl/inc/print.hrc:86
msgctxt "RID_STR_PAPERNAMES"
msgid "A7"
-msgstr ""
+msgstr "A7"
#: vcl/inc/print.hrc:87
msgctxt "RID_STR_PAPERNAMES"
msgid "A8"
-msgstr ""
+msgstr "A8"
#: vcl/inc/print.hrc:88
msgctxt "RID_STR_PAPERNAMES"
msgid "A9"
-msgstr ""
+msgstr "A9"
#: vcl/inc/print.hrc:89
msgctxt "RID_STR_PAPERNAMES"
msgid "A10"
-msgstr ""
+msgstr "A10"
#: vcl/inc/print.hrc:90
msgctxt "RID_STR_PAPERNAMES"
msgid "B0 (ISO)"
-msgstr ""
+msgstr "B0 (ISO)"
#: vcl/inc/print.hrc:91
msgctxt "RID_STR_PAPERNAMES"
@@ -370,42 +370,42 @@ msgstr "B10 (ISO)"
#: vcl/inc/print.hrc:98
msgctxt "RID_STR_PAPERNAMES"
msgid "C2 Envelope"
-msgstr ""
+msgstr "C2 vokas"
#: vcl/inc/print.hrc:99
msgctxt "RID_STR_PAPERNAMES"
msgid "C7 Envelope"
-msgstr ""
+msgstr "C7 vokas"
#: vcl/inc/print.hrc:100
msgctxt "RID_STR_PAPERNAMES"
msgid "C8 Envelope"
-msgstr ""
+msgstr "C8 vokas"
#: vcl/inc/print.hrc:101
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch A"
-msgstr ""
+msgstr "Arch A"
#: vcl/inc/print.hrc:102
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch B"
-msgstr ""
+msgstr "Arch B"
#: vcl/inc/print.hrc:103
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch C"
-msgstr ""
+msgstr "Arch C"
#: vcl/inc/print.hrc:104
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch D"
-msgstr ""
+msgstr "Arch D"
#: vcl/inc/print.hrc:105
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch E"
-msgstr ""
+msgstr "Arch E"
#: vcl/inc/print.hrc:106
msgctxt "RID_STR_PAPERNAMES"
@@ -420,13 +420,13 @@ msgstr "16:10 ekranas"
#: vcl/inc/print.hrc:108
msgctxt "RID_STR_PAPERNAMES"
msgid "16k (195 x 270)"
-msgstr ""
+msgstr "16k (195 x 270)"
#. To translators: This is the last entry of the sequence of paper size names
#: vcl/inc/print.hrc:110
msgctxt "RID_STR_PAPERNAMES"
msgid "16k (197 x 273)"
-msgstr ""
+msgstr "16k (197 x 273)"
#: vcl/inc/printaccessoryview.hrc:27
msgctxt "SV_PRINT_NATIVE_STRINGS"
@@ -521,7 +521,7 @@ msgstr "Žinynas"
#: vcl/inc/strings.hrc:40
msgctxt "SV_HELPTEXT_SCREENSHOT"
msgid "Take and annotate a screenshot"
-msgstr "Daryti ekrano kopiją"
+msgstr "Daryti ekrano nuotrauką"
#: vcl/inc/strings.hrc:41
msgctxt "SV_HELPTEXT_FADEIN"
@@ -1607,7 +1607,7 @@ msgstr "Sukurti atskirą spausdinimo užduotį kiekvienai kopijai"
#: vcl/uiconfig/ui/printdialog.ui:65
msgctxt "printdialog|liststore1"
msgid "Custom"
-msgstr "Nurodyti:"
+msgstr "Nurodyti"
#: vcl/uiconfig/ui/printdialog.ui:77
msgctxt "printdialog|liststore2"
@@ -1647,17 +1647,17 @@ msgstr "Gulsčiai"
#: vcl/uiconfig/ui/printdialog.ui:114
msgctxt "printdialog|liststore4"
msgid "Print only in one side"
-msgstr ""
+msgstr "Vienpusis spausdinimas"
#: vcl/uiconfig/ui/printdialog.ui:117
msgctxt "printdialog|liststore4"
msgid "Print in both sides (long edge)"
-msgstr ""
+msgstr "Dvipusis spausdinimas (versti per ilgąją kraštinę)"
#: vcl/uiconfig/ui/printdialog.ui:120
msgctxt "printdialog|liststore4"
msgid "Print in both sides (short edge)"
-msgstr ""
+msgstr "Dvipusis spausdinimas (versti per trumpąją kraštinę)"
#: vcl/uiconfig/ui/printdialog.ui:127
msgctxt "printdialog|PrintDialog"
@@ -1667,7 +1667,7 @@ msgstr "Spausdinimas"
#: vcl/uiconfig/ui/printdialog.ui:158
msgctxt "printdialog|moreoptions"
msgid "More Options..."
-msgstr ""
+msgstr "Daugiau parinkčių…"
#: vcl/uiconfig/ui/printdialog.ui:262
msgctxt "printdialog|forward"
@@ -1692,12 +1692,12 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:447
msgctxt "printdialog|labelstatus"
msgid "Status:"
-msgstr ""
+msgstr "Būsena:"
#: vcl/uiconfig/ui/printdialog.ui:462
msgctxt "printdialog|status"
msgid "Default Printer"
-msgstr ""
+msgstr "Numatytasis spausdintuvas"
#: vcl/uiconfig/ui/printdialog.ui:475
msgctxt "printdialog|setup"
@@ -1707,32 +1707,32 @@ msgstr "Savybės…"
#: vcl/uiconfig/ui/printdialog.ui:503
msgctxt "printdialog|labelprinter"
msgid "Printer"
-msgstr ""
+msgstr "Spausdintuvas"
#: vcl/uiconfig/ui/printdialog.ui:540
msgctxt "printdialog|rbAllPages"
msgid "_All pages"
-msgstr ""
+msgstr "Visi puslapiai"
#: vcl/uiconfig/ui/printdialog.ui:556
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
-msgstr ""
+msgstr "Puslapiai:"
#: vcl/uiconfig/ui/printdialog.ui:577
msgctxt "printdialog|pagerange"
msgid "e.g.: 1, 3-5, 7, 9"
-msgstr ""
+msgstr "pvz.: 1, 3-5, 7, 9"
#: vcl/uiconfig/ui/printdialog.ui:587
msgctxt "printdialog|rmEvenPages"
msgid "_Even pages"
-msgstr ""
+msgstr "Lyginiai puslapiai"
#: vcl/uiconfig/ui/printdialog.ui:605
msgctxt "printdialog|rbOddPages"
msgid "_Odd pages"
-msgstr ""
+msgstr "Nelyginiai puslapiai"
#: vcl/uiconfig/ui/printdialog.ui:625
msgctxt "printdialog|fromwhich"
@@ -1742,32 +1742,32 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:650
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
-msgstr ""
+msgstr "Lapo pusės:"
#: vcl/uiconfig/ui/printdialog.ui:677
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
-msgstr ""
+msgstr "Kopijų skaičius:"
#: vcl/uiconfig/ui/printdialog.ui:701
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
-msgstr ""
+msgstr "Puslapius spausdinti atvirkštine tvarka"
#: vcl/uiconfig/ui/printdialog.ui:722
msgctxt "printdialog|collate"
msgid "_Collate"
-msgstr ""
+msgstr "Išdėstyti"
#: vcl/uiconfig/ui/printdialog.ui:758
msgctxt "printdialog|cbPrintOrder"
msgid "_Order:"
-msgstr ""
+msgstr "Tvarka:"
#: vcl/uiconfig/ui/printdialog.ui:780
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
-msgstr ""
+msgstr "Atranka"
#: vcl/uiconfig/ui/printdialog.ui:828
msgctxt "printdialog|label2"
@@ -1777,27 +1777,27 @@ msgstr "Rėžiai ir kopijos"
#: vcl/uiconfig/ui/printdialog.ui:867
msgctxt "printdialog|labelorientation"
msgid "Orientation:"
-msgstr ""
+msgstr "Padėtis:"
#: vcl/uiconfig/ui/printdialog.ui:881
msgctxt "printdialog|labelsize"
msgid "Paper size:"
-msgstr ""
+msgstr "Lapo dydis:"
#: vcl/uiconfig/ui/printdialog.ui:895
msgctxt "printdialog|labelorder"
msgid "Order:"
-msgstr ""
+msgstr "Tvarka:"
#: vcl/uiconfig/ui/printdialog.ui:957
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
-msgstr ""
+msgstr "Paraštė:"
#: vcl/uiconfig/ui/printdialog.ui:979
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
-msgstr ""
+msgstr "Atstumas:"
#: vcl/uiconfig/ui/printdialog.ui:1001
msgctxt "printdialog|pagemargintxt2"
@@ -1832,17 +1832,17 @@ msgstr "Puslapių lape:"
#: vcl/uiconfig/ui/printdialog.ui:1129
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
-msgstr ""
+msgstr "Puslapiai:"
#: vcl/uiconfig/ui/printdialog.ui:1172
msgctxt "printdialog|label3"
msgid "Page Layout"
-msgstr ""
+msgstr "Puslapių išdėstymas"
#: vcl/uiconfig/ui/printdialog.ui:1195
msgctxt "printdialog|generallabel"
msgid "General"
-msgstr ""
+msgstr "Bendrosios parinktys"
#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|customlabel"
diff --git a/source/lt/wizards/messages.po b/source/lt/wizards/messages.po
index aad6a22ed65..9df68ea2682 100644
--- a/source/lt/wizards/messages.po
+++ b/source/lt/wizards/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2019-05-25 20:22+0000\n"
+"PO-Revision-Date: 2019-07-24 18:39+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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1558815737.000000\n"
+"X-POOTLE-MTIME: 1563993599.000000\n"
#: wizards/com/sun/star/wizards/common/strings.hrc:32
msgctxt "RID_COMMON_START_0"
@@ -195,7 +195,7 @@ msgstr "Atgalinis adresas voko lange"
#: wizards/com/sun/star/wizards/common/strings.hrc:68
msgctxt "RID_LETTERWIZARDDIALOG_START_13"
msgid "Letter signs"
-msgstr ""
+msgstr "Laiško ženklai"
#: wizards/com/sun/star/wizards/common/strings.hrc:69
msgctxt "RID_LETTERWIZARDDIALOG_START_14"
@@ -1270,32 +1270,32 @@ msgstr "Papildoma informacija"
#: wizards/com/sun/star/wizards/common/strings.hrc:301
msgctxt "RID_AGENDAWIZARDDIALOG_START_81"
msgid "Minutes for"
-msgstr ""
+msgstr "Protokolas:"
#: wizards/com/sun/star/wizards/common/strings.hrc:302
msgctxt "RID_AGENDAWIZARDDIALOG_START_82"
msgid "Discussion:"
-msgstr ""
+msgstr "Diskusija:"
#: wizards/com/sun/star/wizards/common/strings.hrc:303
msgctxt "RID_AGENDAWIZARDDIALOG_START_83"
msgid "Conclusion:"
-msgstr ""
+msgstr "Išvados:"
#: wizards/com/sun/star/wizards/common/strings.hrc:304
msgctxt "RID_AGENDAWIZARDDIALOG_START_84"
msgid "To do:"
-msgstr ""
+msgstr "Veiksmai:"
#: wizards/com/sun/star/wizards/common/strings.hrc:305
msgctxt "RID_AGENDAWIZARDDIALOG_START_85"
msgid "Responsible party:"
-msgstr ""
+msgstr "Atsakingas:"
#: wizards/com/sun/star/wizards/common/strings.hrc:306
msgctxt "RID_AGENDAWIZARDDIALOG_START_86"
msgid "Deadline:"
-msgstr ""
+msgstr "Terminas:"
#: wizards/com/sun/star/wizards/common/strings.hrc:307
msgctxt "RID_AGENDAWIZARDDIALOG_START_87"
diff --git a/source/lv/cui/messages.po b/source/lv/cui/messages.po
index 8da37ceeb82..c533df1ca7f 100644
--- a/source/lv/cui/messages.po
+++ b/source/lv/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-06-21 15:26+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4386,147 +4386,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr "Aizzīmes un numurēšana"
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr "Līmenis"
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr "Tips:"
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr "1"
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr "Rakstzīme:"
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Platums:"
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Augstums:"
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Pirms:"
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Pēc:"
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Atdalītājs"
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Krāsa:"
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Platums:"
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Slaids"
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Priekšskatījums"
@@ -9178,72 +9178,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Palīdzība"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Lietot %PRODUCTNAME dialogus"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Atvērt/saglabāt dialogi"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Lietot %PRODUCTNAME _dialogus"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Drukāšanas dialogi"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Drukāšana iestata \"dokuments modificēts\" statusu"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumenta statuss"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretēt kā gadus starp "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "un "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Gads (divciparu)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Ievākt informāciju par izmantošanu un nosūtīt to uz The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Palīdzi uzlabot %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Ielādēt %PRODUCTNAME pie sistēmas startēšanas"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Ieslēgt sistēmas ikonu joslā Quickstarter"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -12772,12 +12772,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Vai jūs zināt?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Saite"
diff --git a/source/lv/helpcontent2/source/text/sbasic/shared.po b/source/lv/helpcontent2/source/text/sbasic/shared.po
index af06d2b9326..e8cd0e7574e 100644
--- a/source/lv/helpcontent2/source/text/sbasic/shared.po
+++ b/source/lv/helpcontent2/source/text/sbasic/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-03-09 15:18+0000\n"
-"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
+"PO-Revision-Date: 2019-07-21 20:35+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\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 != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1552144722.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563741332.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -3294,7 +3294,7 @@ msgctxt ""
"bm_id3148797\n"
"help.text"
msgid "<bookmark_value>libraries;organizing</bookmark_value><bookmark_value>modules;organizing</bookmark_value><bookmark_value>copying;modules</bookmark_value><bookmark_value>adding libraries</bookmark_value><bookmark_value>deleting;libraries/modules/dialogs</bookmark_value><bookmark_value>dialogs;organizing</bookmark_value><bookmark_value>moving;modules</bookmark_value><bookmark_value>organizing;modules/libraries/dialogs</bookmark_value><bookmark_value>renaming modules and dialogs</bookmark_value>"
-msgstr "<bookmark_value>bibliotēkas;organizēšana</bookmark_value><bookmark_value>moduļi;organizēšana</bookmark_value><bookmark_value>kopēšana;moduļi</bookmark_value><bookmark_value>bibliotēku pievienošana</bookmark_value><bookmark_value>dzēšana;bibliotēkas/moduļi/dialogi</bookmark_value><bookmark_value>dialogi;organizēšana</bookmark_value><bookmark_value>pārvietošana;moduļi</bookmark_value><bookmark_value>organizēšana;moduļi/bibliotēkas/dialogi</bookmark_value>moduļu un dialogu pārdēvēšana</bookmark_value>"
+msgstr "<bookmark_value>bibliotēkas;organizēšana</bookmark_value><bookmark_value>moduļi;organizēšana</bookmark_value><bookmark_value>kopēšana;moduļi</bookmark_value><bookmark_value>bibliotēku pievienošana</bookmark_value><bookmark_value>dzēšana;bibliotēkas/moduļi/dialogi</bookmark_value><bookmark_value>dialogi;organizēšana</bookmark_value><bookmark_value>pārvietošana;moduļi</bookmark_value><bookmark_value>organizēšana;moduļi/bibliotēkas/dialogi</bookmark_value><bookmark_value>moduļu un dialogu pārdēvēšana</bookmark_value>"
#: 01030400.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/swriter/guide.po b/source/lv/helpcontent2/source/text/swriter/guide.po
index 7eef8a6c788..e01769f3f3f 100644
--- a/source/lv/helpcontent2/source/text/swriter/guide.po
+++ b/source/lv/helpcontent2/source/text/swriter/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2018-11-12 13:52+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-07-21 20:38+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\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 != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1542030764.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1563741535.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"par_id3145615\n"
"help.text"
msgid "Choose <link href=\"text/swriter/01/02120000.xhp\" name=\"Tools - AutoText\"><emph>Tools - AutoText</emph></link>."
-msgstr "Izvēlieties <link href=\"text/swriter/01/02120000.xhp\" name=\"Rīki - Automātiskais teksts\">Rīki - Automātiskais teksts</emph></link>."
+msgstr "Izvēlieties <link href=\"text/swriter/01/02120000.xhp\" name=\"Rīki - Automātiskais teksts\"><emph>Rīki - Automātiskais teksts</emph></link>."
#: autotext.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"par_id3156180\n"
"help.text"
msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\">Background tab page</link>"
-msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Cilnes \"Fons\" lappuse\">Cilnes \"Fons\" lappuse</link>"
+msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Cilnes Fons lappuse\">Cilnes \"Fons\" lappuse</link>"
#: background.xhp
msgctxt ""
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 94e82c7bc5a..0ed475e0b4a 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-05-13 05:31+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -21054,6 +21054,24 @@ msgstr "Ziedot LibreOffice projektam"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/lv/sd/messages.po b/source/lv/sd/messages.po
index 80e196f2bbd..4e09685b82c 100644
--- a/source/lv/sd/messages.po
+++ b/source/lv/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2019-06-09 06:08+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5345,9 +5345,9 @@ msgstr "Pā_rskatīt"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "S_akārtot"
@@ -5415,8 +5415,8 @@ msgid "_Edit"
msgstr "R_ediģēt"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "_Režģis"
@@ -5431,52 +5431,52 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "_Grafika"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Krāsa"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Medijs"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "_Slīdrāde"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Ietva_rs"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "_Skats"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Pa_matlappuse"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "_Ievietot"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "_Zīmēt"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "_Skats"
diff --git a/source/lv/sw/messages.po b/source/lv/sw/messages.po
index 0f47286b2c5..468ed116e22 100644
--- a/source/lv/sw/messages.po
+++ b/source/lv/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2019-05-14 15:25+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8370,7 +8370,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "Izvēlieties vienumu: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Rediģēt"
diff --git a/source/mai/cui/messages.po b/source/mai/cui/messages.po
index d340dedeaca..82eec2ac40d 100644
--- a/source/mai/cui/messages.po
+++ b/source/mai/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4512,147 +4512,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9613,76 +9613,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदद"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME संवाद"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME संवाद"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "आओर"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "सिस्टम प्रारंभ होएबाक समय %PRODUCTNAME केँ लोड करू"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13405,12 +13405,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 97cde158ba3..7d3456ff561 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21382,6 +21382,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/mai/sd/messages.po b/source/mai/sd/messages.po
index 3f15442780a..6a9e3491ea6 100644
--- a/source/mai/sd/messages.po
+++ b/source/mai/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5558,9 +5558,9 @@ msgstr "समीक्षा"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5638,8 +5638,8 @@ msgid "_Edit"
msgstr "संपादन करू (~E)"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5656,59 +5656,59 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "आलेखी"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "रंग"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "स्लाइड प्रदर्शन (~S)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "ढाँचा"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "दृश्य"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "मुख्य पृष्ठसभ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "जोड़ू"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/mai/sw/messages.po b/source/mai/sw/messages.po
index 3eccd8e21d3..bf4d19a0c5f 100644
--- a/source/mai/sw/messages.po
+++ b/source/mai/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mai\n"
@@ -8782,7 +8782,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "संपादन"
diff --git a/source/mk/cui/messages.po b/source/mk/cui/messages.po
index 3fe03235940..3867cc9661b 100644
--- a/source/mk/cui/messages.po
+++ b/source/mk/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4497,147 +4497,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9591,78 +9591,78 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Помош"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Дијалози за %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Дијалози за %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Име на документ\tСтатус"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "и"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Вчитај %PRODUCTNAME при подигнување на системот"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Оневозможи го Quickstarter"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13376,12 +13376,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 2d9b4e80622..9a6e8adb51d 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21365,6 +21365,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/mk/sd/messages.po b/source/mk/sd/messages.po
index 9cbca102caf..c3617548b3b 100644
--- a/source/mk/sd/messages.po
+++ b/source/mk/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5551,9 +5551,9 @@ msgstr "Рецензија"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5631,8 +5631,8 @@ msgid "_Edit"
msgstr "~Уреди"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5649,60 +5649,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Графички"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Боја"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Медиум"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "~Слајд-шоу"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Рамка"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Преглед"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Оригинали"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Вметни"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/mk/sw/messages.po b/source/mk/sw/messages.po
index cc99dac2759..6c88595ad8a 100644
--- a/source/mk/sw/messages.po
+++ b/source/mk/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mk\n"
@@ -8763,7 +8763,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Уреди"
diff --git a/source/ml/cui/messages.po b/source/ml/cui/messages.po
index 6dc8020755b..48b4033fa3a 100644
--- a/source/ml/cui/messages.po
+++ b/source/ml/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4458,147 +4458,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9336,76 +9336,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "സഹായം"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ഡയലോഗുകള്‍ _ഉപയോഗിയ്ക്കുക"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ഡയലോഗുകള്‍ തുറക്കുക/സൂക്ഷിയ്ക്കുക"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME _ഡയലോഗുകള്‍ കാണിയ്ക്കുക"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "പ്രിന്റ് ചെയ്യുന്നതിനുള്ള ഡയലോഗുകള്‍"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Printing sets \"document modified\" status"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "രേഖയുടെ അവസ്ഥ"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "എത്ര വര്‍ഷങ്ങള്‍ എന്നു് _കണക്കു കൂട്ടുക "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "പിന്നെ"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "വര്‍ഷം (രണ്ട് അക്കങ്ങള്‍)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "സിസ്റ്റത്തിന്റെ പ്രാരംഭത്തില്‍ %PRODUCTNAME ലഭ്യമാക്കുക"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray ക്വിക്ക്സ്റ്റാര്‍ട്ടര്‍ പ്രവര്‍ത്തന സജ്ജമാക്കുക"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME ക്വിക്ക്സ്റ്റാര്‍ട്ടര്‍"
@@ -13127,12 +13127,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 d7a2da24fd6..41a66063ee2 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21352,6 +21352,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/ml/sd/messages.po b/source/ml/sd/messages.po
index 42e97458917..33501ad5b94 100644
--- a/source/ml/sd/messages.po
+++ b/source/ml/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5547,9 +5547,9 @@ msgstr "പുനര്‍വിചാരണ ചെയ്യുക"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5626,8 +5626,8 @@ msgid "_Edit"
msgstr "~ചിട്ടപ്പെടുത്തുക"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "ഗ്രിഡ്"
@@ -5643,59 +5643,59 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "ഗ്രാഫിക്"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "നിറം"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "മീഡിയാ"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "സ്ലൈഡ് കാണിക്കുക"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "ഫ്രെ_യിം:"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "ദൃശ്യം"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "മുഖ്യ പേജുകള്"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "ഉള്പ്പെടുത്തുക"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/ml/sw/messages.po b/source/ml/sw/messages.po
index 0ea77603ecd..f848ba8dee3 100644
--- a/source/ml/sw/messages.po
+++ b/source/ml/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ml\n"
@@ -8726,7 +8726,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "തിരഞ്ഞെടുത്ത കാര്യങ്ങള്: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "ചിട്ടപ്പെടുത്തുക"
diff --git a/source/mn/cui/messages.po b/source/mn/cui/messages.po
index dc7a9e49c0a..47be0fdf9f5 100644
--- a/source/mn/cui/messages.po
+++ b/source/mn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4498,147 +4498,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9620,77 +9620,77 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Тусламж"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME диалог"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME диалог"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Баримтын төлөв"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ба"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME-г системийн эхлэлд ачаалах"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Системийн самбарын түргэн эхлүүлэгчийг хаах"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13436,12 +13436,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 aa67204eeae..edf3517d0a7 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21381,6 +21381,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/mn/sd/messages.po b/source/mn/sd/messages.po
index 93e3ae367f0..accbac5e879 100644
--- a/source/mn/sd/messages.po
+++ b/source/mn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5557,9 +5557,9 @@ msgstr "Review"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5637,8 +5637,8 @@ msgid "_Edit"
msgstr "~Засах"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5655,59 +5655,59 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "График"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Өнгө"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "~Дэлгэцэнд үзүүлэх"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Блок"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Харагдац"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Мастер хуудаснууд"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Оруулах"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/mn/sw/messages.po b/source/mn/sw/messages.po
index 7f252d4b7c0..f5f015b6f06 100644
--- a/source/mn/sw/messages.po
+++ b/source/mn/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mn\n"
@@ -8785,7 +8785,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
msgstr "Засах"
diff --git a/source/mni/cui/messages.po b/source/mni/cui/messages.po
index dc9ff88c6c4..9658d64aed4 100644
--- a/source/mni/cui/messages.po
+++ b/source/mni/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4568,147 +4568,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9696,77 +9696,77 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "মতেং"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Use %PRODUCTNAME dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Save dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Use %PRODUCTNAME _dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Print dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "দোকুমেন্ত মিং\tফিবম"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "অমসুং"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "সেস্তেম হৌগত্পা মতমদা %PRODUCTNAME লোদ তৌবা"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "থুনা হৌবা সিসত্রে ঙমদবা"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -13480,12 +13480,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 8c76729c4fb..04f9cdc5255 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21397,6 +21397,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/mni/sd/messages.po b/source/mni/sd/messages.po
index 35f69944a71..07750805906 100644
--- a/source/mni/sd/messages.po
+++ b/source/mni/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5562,9 +5562,9 @@ msgstr "হন্না য়েংশিনবা"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5642,8 +5642,8 @@ msgid "_Edit"
msgstr "~শেমদোকপা"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
@@ -5660,59 +5660,59 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "গ্রাফিক"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "মচু"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "স্লাইদ উত্পা"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "ফ্রেম"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "শক্তম"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "মাস্তর ওইবা লামায"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "হাপচিনবা"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/mni/sw/messages.po b/source/mni/sw/messages.po
index 5c5f7e0b340..7e318ab5160 100644
--- a/source/mni/sw/messages.po
+++ b/source/mni/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-04 18:43+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
+"PO-Revision-Date: 2019-07-31 13:19+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mni\n"
@@ -8792,7 +8792,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr ""
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
#, fuzzy
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
diff --git a/source/mr/cui/messages.po b/source/mr/cui/messages.po
index bb23f315669..58699e2cb5f 100644
--- a/source/mr/cui/messages.po
+++ b/source/mr/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4496,147 +4496,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9535,76 +9535,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदत"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME संवादचा वापर करा (_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "संवाद उघडा/साठवा"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME संवादचा वापर करा (_d)"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "छपाई संवाद"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "छपाई \"document modified\" स्थिती सेट करते (_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "दस्तऐवज स्थिती"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "अंतर्गत वर्षांचे विश्लेषण करा (_I) "
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "आणि "
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "वर्ष (दोन अंक)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "प्रणाली स्टार्ट-अपवेळी %PRODUCTNAME लोड करा"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray क्वीकस्टार्टर कार्यक्षम करा"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME क्वीकस्टार्टर"
@@ -13283,12 +13283,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 49503538f42..0b5c4894563 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: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -21370,6 +21370,24 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"Label\n"
+"value.text"
+msgid "What's New"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:WhatsNew\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Open the release notes for the installed version in the default browser"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowLicense\n"
"Label\n"
"value.text"
diff --git a/source/mr/sd/messages.po b/source/mr/sd/messages.po
index 38c32f17711..92707d22be1 100644
--- a/source/mr/sd/messages.po
+++ b/source/mr/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-12 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5518,9 +5518,9 @@ msgstr "रिव्ह्यू"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4913
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8556
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9835
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11276
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12547
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9836
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11277
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12548
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
@@ -5597,8 +5597,8 @@ msgid "_Edit"
msgstr "संपादित करा (~E)"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8711
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9990
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11431
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9991
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11432
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "ग्रिड (_G)"
@@ -5614,60 +5614,60 @@ msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9262
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9263
#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "ग्राफीक"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9432
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9433
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "रंग"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10397
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10398
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "मिडीया"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10576
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10577
#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "स्लाइड प्रदर्शन"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10860
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10861
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "फ्रेम (_r)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11581
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11582
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "दृश्य"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11745
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11746
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "मुख्य पाने"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11984
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11985
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "अंतर्भुत करा (_I)"
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12217
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12218
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12713
+#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12714
#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
diff --git a/source/mr/sw/messages.po b/source/mr/sw/messages.po
index 45b428dfcd7..a605be9d9a7 100644
--- a/source/mr/sw/messages.po
+++ b/source/mr/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:22+0200\n"
+"POT-Creation-Date: 2019-07-30 19:49+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8707,7 +8707,7 @@ msgctxt "dropdownfielddialog|DropdownFieldDialog"
msgid "Choose Item: "
msgstr "बाब निवडा: "
-#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:207
+#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:210
#, fuzzy
msgctxt "dropdownfielddialog|label1"
msgid "Edit"
diff --git a/source/my/cui/messages.po b/source/my/cui/messages.po
index 15b8ef448b4..7adf2a1aa95 100644
--- a/source/my/cui/messages.po
+++ b/source/my/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-03 20:21+0200\n"
+"POT-Creation-Date: 2019-07-30 19:48+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4501,147 +4501,147 @@ msgctxt "bulletandposition|DrawPRTLDialog"
msgid "Bullets and Numbering"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:234
+#: cui/uiconfig/ui/bulletandposition.ui:236
msgctxt "bulletandposition|label1"
msgid "Level"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:283
+#: cui/uiconfig/ui/bulletandposition.ui:285
msgctxt "bulletandposition|label4"
msgid "Type:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:311
+#: cui/uiconfig/ui/bulletandposition.ui:313
msgctxt "bulletandposition|startatft"
msgid "Start at:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:328
+#: cui/uiconfig/ui/bulletandposition.ui:330
msgctxt "bulletandposition|startat"
msgid "1"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:342
+#: cui/uiconfig/ui/bulletandposition.ui:344
msgctxt "bulletandposition|bulletft"
msgid "Character:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:354
+#: cui/uiconfig/ui/bulletandposition.ui:356
msgctxt "bulletandposition|bullet"
msgid "Select..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:368
+#: cui/uiconfig/ui/bulletandposition.ui:370
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:414
+#: cui/uiconfig/ui/bulletandposition.ui:416
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:428
+#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:486
+#: cui/uiconfig/ui/bulletandposition.ui:488
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:527
+#: cui/uiconfig/ui/bulletandposition.ui:529
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:554
+#: cui/uiconfig/ui/bulletandposition.ui:556
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:583
+#: cui/uiconfig/ui/bulletandposition.ui:585
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:606
+#: cui/uiconfig/ui/bulletandposition.ui:608
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:640
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:655
+#: cui/uiconfig/ui/bulletandposition.ui:656
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:701
+#: cui/uiconfig/ui/bulletandposition.ui:702
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:716
+#: cui/uiconfig/ui/bulletandposition.ui:717
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:732
+#: cui/uiconfig/ui/bulletandposition.ui:733
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:746
+#: cui/uiconfig/ui/bulletandposition.ui:747
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:757
+#: cui/uiconfig/ui/bulletandposition.ui:758
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:778
+#: cui/uiconfig/ui/bulletandposition.ui:779
msgctxt "bulletandposition|position"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:855
+#: cui/uiconfig/ui/bulletandposition.ui:856
msgctxt "bulletandposition|ALlabel"
msgid "Alignment"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:882
+#: cui/uiconfig/ui/bulletandposition.ui:883
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:897
+#: cui/uiconfig/ui/bulletandposition.ui:898
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:913
+#: cui/uiconfig/ui/bulletandposition.ui:914
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:932
+#: cui/uiconfig/ui/bulletandposition.ui:933
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:953
+#: cui/uiconfig/ui/bulletandposition.ui:954
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/bulletandposition.ui:1015
+#: cui/uiconfig/ui/bulletandposition.ui:1016
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr ""
@@ -9586,76 +9586,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "ကူညီပါ"
-#: cui/uiconfig/ui/optgeneralpage.ui:115
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_%PRODUCTNAME ဒိုင်ယာလော့ဒ် အသုံးပြုပါ"
-#: cui/uiconfig/ui/optgeneralpage.ui:149
+#: cui/uiconfig/ui/optgeneralpage.ui:150
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ဖွင့်/သိမ်း ဒိုင်ယာလော့ဒ်"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME _ဒိုင်ယာလော့ဒ် သုံးပါ"
-#: cui/uiconfig/ui/optgeneralpage.ui:190
+#: cui/uiconfig/ui/optgeneralpage.ui:191
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "ဒိုင်ယာလော့ဒ် ပရင့်ထုတ်ပါ"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_‘‘မှတ်တမ်းမှတ်ရာ အထူးပြုအခြေအနေ’’ကို ပရင့်ထုတ်ရန်ထားရှိသည်"
-#: cui/uiconfig/ui/optgeneralpage.ui:231
+#: cui/uiconfig/ui/optgeneralpage.ui:232
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "မှတ်တမ်းမှတ်ရာ အခြေအနေ"
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "နှင့်"
-#: cui/uiconfig/ui/optgeneralpage.ui:305
+#: cui/uiconfig/ui/optgeneralpage.ui:306
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "နှစ် (ဂဏန်နှစ်လုံးဖြင့်)"
-#: cui/uiconfig/ui/optgeneralpage.ui:331
+#: cui/uiconfig/ui/optgeneralpage.ui:332
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:346
+#: cui/uiconfig/ui/optgeneralpage.ui:347
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:377
+#: cui/uiconfig/ui/optgeneralpage.ui:378
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "ကွန်ပျူတာစနစ် စတင်ချိန်တွင် %PRODUCTNAME အလုပ်လုပ်ပါ"
-#: cui/uiconfig/ui/optgeneralpage.ui:392
+#: cui/uiconfig/ui/optgeneralpage.ui:393
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "စနစ်ဗန်းလျင်မြန်စွာစတင်လုပ်ဆောင်ပါ"
-#: cui/uiconfig/ui/optgeneralpage.ui:413
+#: cui/uiconfig/ui/optgeneralpage.ui:414
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME လျှင်မြန်စွာ စတင်သူ"
@@ -13369,12 +13369,12 @@ msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:110
+#: cui/uiconfig/ui/tipofthedaydialog.ui:112
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:149
+#: cui/uiconfig/ui/tipofthedaydialog.ui:151
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
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 824b314a01e..d0030277176 100644
--- a/source/my/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/my/officecfg/registry/data/org/openoffice/Office/UI.po