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

#include <cppuhelper/implbase_ex.hxx>
#include <rtl/instance.hxx>

namespace cppu
{
    /// @cond INTERNAL

    struct class_data6
    {
        sal_Int16 m_nTypes;
        sal_Bool m_storedTypeRefs;
        sal_Bool m_storedId;
        sal_Int8 m_id[ 16 ];
        type_entry m_typeEntries[ 6 + 1 ];
    };

    template< typename Ifc1, typename Ifc2, typename Ifc3, typename Ifc4, typename Ifc5, typename Ifc6, typename Impl >
        struct SAL_WARN_UNUSED ImplClassData6
    {
        class_data* operator ()()
        {
            static class_data6 s_cd =
            {
                6 +1, false, false,
                { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
                {
                    CPPUHELPER_DETAIL_TYPEENTRY(Ifc1),
                    CPPUHELPER_DETAIL_TYPEENTRY(Ifc2),
                    CPPUHELPER_DETAIL_TYPEENTRY(Ifc3),
                    CPPUHELPER_DETAIL_TYPEENTRY(Ifc4),
                    CPPUHELPER_DETAIL_TYPEENTRY(Ifc5),
                    CPPUHELPER_DETAIL_TYPEENTRY(Ifc6),
                    CPPUHELPER_DETAIL_TYPEENTRY(css::lang::XTypeProvider)
                }
            };
            return reinterpret_cast< class_data * >(&s_cd);
        }
    };

    /// @endcond

    /** Implementation helper implementing interface css::lang::XTypeProvider
        and method XInterface::queryInterface(), but no reference counting.

        @derive
        Inherit from this class giving your interface(s) to be implemented as template argument(s).
        Your sub class defines method implementations for these interface(s) including acquire()/
        release() and delegates incoming queryInterface() calls to this base class.
    */
    template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6 >
    class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplHelper6
        : public css::lang::XTypeProvider
        , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6
    {
        struct cd : public rtl::StaticAggregate< class_data, ImplClassData6 < Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, ImplHelper6<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6> > > {};
    public:
        virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
            { return ImplHelper_query( rType, cd::get(), this ); }
        virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
            { return ImplHelper_getTypes( cd::get() ); }
        virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
            { return ImplHelper_getImplementationId( cd::get() ); }

#if !defined _MSC_VER // public -> protected changes mangled names there
    protected:
#elif defined __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
#endif
        ~ImplHelper6() throw () {}
#if defined _MSC_VER && defined __clang__
#pragma clang diagnostic pop
#endif
    };
    /** Implementation helper implementing interfaces css::lang::XTypeProvider and
        css::uno::XInterface which supports weak mechanism to be held weakly
        (supporting css::uno::XWeak through ::cppu::OWeakObject).

        @derive
        Inherit from this class giving your interface(s) to be implemented as template argument(s).
        Your sub class defines method implementations for these interface(s).
    */
    template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6 >
    class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakImplHelper6
        : public OWeakObject
        , public css::lang::XTypeProvider
        , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6
    {
        struct cd : public rtl::StaticAggregate< class_data, ImplClassData6 < Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, WeakImplHelper6<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6> > > {};
    public:
        virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
            { return WeakImplHelper_query( rType, cd::get(), this, static_cast<OWeakObject *>(this) ); }
        virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
            { OWeakObject::acquire(); }
        virtual void SAL_CALL release() throw () SAL_OVERRIDE
            { OWeakObject::release(); }
        virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
            { return WeakImplHelper_getTypes( cd::get() ); }
        virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
            { return ImplHelper_getImplementationId( cd::get() ); }
    };
    /** Implementation helper implementing interfaces css::lang::XTypeProvider and
        css::uno::XInterface which supports weak mechanism to be held weakly
        (supporting css::uno::XWeak through ::cppu::OWeakAggObject).
        In addition, it supports also aggregation meaning object of this class can be aggregated
        (css::uno::XAggregation through ::cppu::OWeakAggObject).
        If a delegator is set (this object is aggregated), then incoming queryInterface()
        calls are delegated to the delegator object. If the delegator does not support the
        demanded interface, it calls queryAggregation() on its aggregated objects.

        @derive
        Inherit from this class giving your interface(s) to be implemented as template argument(s).
        Your sub class defines method implementations for these interface(s).
    */
    template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6 >
    class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakAggImplHelper6
        : public OWeakAggObject
        , public css::lang::XTypeProvider
        , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6
    {
        struct cd : public rtl::StaticAggregate< class_data, ImplClassData6 < Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, WeakAggImplHelper6<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6> > > {};
    public:
        virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
            { return OWeakAggObject::queryInterface( rType ); }
        virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) SAL_OVERRIDE
            { return WeakAggImplHelper_queryAgg( rType, cd::get(), this, static_cast<OWeakAggObject *>(this) ); }
        virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
            { OWeakAggObject::acquire(); }
        virtual void SAL_CALL release() throw () SAL_OVERRIDE
            { OWeakAggObject::release(); }
        virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
            { return WeakAggImplHelper_getTypes( cd::get() ); }
        virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
            { return ImplHelper_getImplementationId( cd::get() ); }
    };
    /** Implementation helper implementing interfaces css::lang::XTypeProvider and
        css::uno::XInterface inherting from a BaseClass.
        All acquire() and release() calls are delegated to the BaseClass. Upon queryInterface(),
        if a demanded interface is not supported by this class directly, the request is
        delegated to the BaseClass.

        @attention
        The BaseClass has to be complete in a sense, that css::uno::XInterface
        and css::lang::XTypeProvider are implemented properly.  The
        BaseClass must have at least one ctor that can be called with six or
        fewer arguments, of which none is of non-const reference type.

        @derive
        Inherit from this class giving your additional interface(s) to be implemented as
        template argument(s). Your sub class defines method implementations for these interface(s).
    */
    template< class BaseClass, class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6 >
    class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplInheritanceHelper6
        : public BaseClass
        , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6
    {
        struct cd : public rtl::StaticAggregate< class_data, ImplClassData6 < Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, ImplInheritanceHelper6<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6> > > {};
    protected:
        template< typename T1 >
        explicit ImplInheritanceHelper6(T1 const & arg1): BaseClass(arg1) {}
        template< typename T1, typename T2 >
        ImplInheritanceHelper6(T1 const & arg1, T2 const & arg2):
            BaseClass(arg1, arg2) {}
        template< typename T1, typename T2, typename T3 >
        ImplInheritanceHelper6(
            T1 const & arg1, T2 const & arg2, T3 const & arg3):
            BaseClass(arg1, arg2, arg3) {}
        template< typename T1, typename T2, typename T3, typename T4 >
        ImplInheritanceHelper6(
            T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
            BaseClass(arg1, arg2, arg3, arg4) {}
        template<
            typename T1, typename T2, typename T3, typename T4, typename T5 >
        ImplInheritanceHelper6(
            T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
            T5 const & arg5):
            BaseClass(arg1, arg2, arg3, arg4, arg5) {}
        template<
            typename T1, typename T2, typename T3, typename T4, typename T5,
            typename T6 >
        ImplInheritanceHelper6(
            T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
            T5 const & arg5, T6 const & arg6):
            BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
    public:
        ImplInheritanceHelper6() {}
        virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
            {
                css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
                if (aRet.hasValue())
                    return aRet;
                return BaseClass::queryInterface( rType );
            }
        virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
            { BaseClass::acquire(); }
        virtual void SAL_CALL release() throw () SAL_OVERRIDE
            { BaseClass::release(); }
        virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
            { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
        virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
            { return ImplHelper_getImplementationId( cd::get() ); }
    };
    /** Implementation helper implementing interfaces css::lang::XTypeProvider and
        css::uno::XInterface inherting from a BaseClass.
        All acquire(),  release() and queryInterface() calls are delegated to the BaseClass.
        Upon queryAggregation(), if a demanded interface is not supported by this class directly,
        the request is delegated to the BaseClass.

        @attention
        The BaseClass has to be complete in a sense, that css::uno::XInterface,
        css::uno::XAggregation and css::lang::XTypeProvider
        are implemented properly.  The BaseClass must have at least one ctor
        that can be called with six or fewer arguments, of which none is of
        non-const reference type.

        @derive
        Inherit from this class giving your additional interface(s) to be implemented as
        template argument(s). Your sub class defines method implementations for these interface(s).
    */
    template< class BaseClass, class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6 >
    class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE AggImplInheritanceHelper6
        : public BaseClass
        , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6
    {
        struct cd : public rtl::StaticAggregate< class_data, ImplClassData6 < Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, AggImplInheritanceHelper6<BaseClass, Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6> > > {};
    protected:
        template< typename T1 >
        explicit AggImplInheritanceHelper6(T1 const & arg1): BaseClass(arg1) {}
        template< typename T1, typename T2 >
        AggImplInheritanceHelper6(T1 const & arg1, T2 const & arg2):
            BaseClass(arg1, arg2) {}
        template< typename T1, typename T2, typename T3 >
        AggImplInheritanceHelper6(
            T1 const & arg1, T2 const & arg2, T3 const & arg3):
            BaseClass(arg1, arg2, arg3) {}
        template< typename T1, typename T2, typename T3, typename T4 >
        AggImplInheritanceHelper6(
            T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4):
            BaseClass(arg1, arg2, arg3, arg4) {}
        template<
            typename T1, typename T2, typename T3, typename T4, typename T5 >
        AggImplInheritanceHelper6(
            T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
            T5 const & arg5):
            BaseClass(arg1, arg2, arg3, arg4, arg5) {}
        template<
            typename T1, typename T2, typename T3, typename T4, typename T5,
            typename T6 >
        AggImplInheritanceHelper6(
            T1 const & arg1, T2 const & arg2, T3 const & arg3, T4 const & arg4,
            T5 const & arg5, T6 const & arg6):
            BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
    public:
        AggImplInheritanceHelper6() {}
        virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) SAL_OVERRIDE
            { return BaseClass::queryInterface( rType ); }
        virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) SAL_OVERRIDE
            {
                css::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
                if (aRet.hasValue())
                    return aRet;
                return BaseClass::queryAggregation( rType );
            }
        virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
            { BaseClass::acquire(); }
        virtual void SAL_CALL release() throw () SAL_OVERRIDE
            { BaseClass::release(); }
        virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE
            { return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
        virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() SAL_OVERRIDE
            { return ImplHelper_getImplementationId( cd::get() ); }
    };
}

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
ct."
msgstr "Dotais objekts neatbalsta nosauktos argumentus."
#. 4aZxy
-#: basic/inc/basic.hrc:102
+#: basic/inc/basic.hrc:108
msgctxt "RID_BASIC_START"
msgid "The current locale setting is not supported by the given object."
msgstr "Pašreizējie lokāles iestatījumi dotajam objektam nav atbalstīti."
#. AoqGh
-#: basic/inc/basic.hrc:103
+#: basic/inc/basic.hrc:109
msgctxt "RID_BASIC_START"
msgid "Named argument not found."
msgstr "Nosauktais arguments nav atrasts."
#. G2sC5
-#: basic/inc/basic.hrc:104
+#: basic/inc/basic.hrc:110
msgctxt "RID_BASIC_START"
msgid "Argument is not optional."
msgstr "Arguments ir obligāts."
#. v78nF
-#: basic/inc/basic.hrc:105 basic/inc/basic.hrc:113
+#: basic/inc/basic.hrc:111 basic/inc/basic.hrc:119
msgctxt "RID_BASIC_START"
msgid "Invalid number of arguments."
msgstr "Nederīgs argumentu skaits."
#. DVFF3
-#: basic/inc/basic.hrc:106
+#: basic/inc/basic.hrc:112
msgctxt "RID_BASIC_START"
msgid "Object is not a list."
msgstr "Objekts nav saraksts."
#. zDijP
-#: basic/inc/basic.hrc:107
+#: basic/inc/basic.hrc:113
msgctxt "RID_BASIC_START"
msgid "Invalid ordinal number."
msgstr "Nederīgs kārtas numurs."
#. uY35B
-#: basic/inc/basic.hrc:108
+#: basic/inc/basic.hrc:114
msgctxt "RID_BASIC_START"
msgid "Specified DLL function not found."
msgstr "Norādītā DLL funkcija nav atrasta."
#. MPTAv
-#: basic/inc/basic.hrc:109
+#: basic/inc/basic.hrc:115
msgctxt "RID_BASIC_START"
msgid "Invalid clipboard format."
msgstr "Nederīgs starpliktuves formāts."
#. UC2FV
-#: basic/inc/basic.hrc:110
+#: basic/inc/basic.hrc:116
msgctxt "RID_BASIC_START"
msgid "Object does not have this property."
msgstr "Objektam nav šādas īpašības."
#. 9JEU2
-#: basic/inc/basic.hrc:111
+#: basic/inc/basic.hrc:117
msgctxt "RID_BASIC_START"
msgid "Object does not have this method."
msgstr "Objektam nav šādas metodes."
#. azsCo
-#: basic/inc/basic.hrc:112
+#: basic/inc/basic.hrc:118
msgctxt "RID_BASIC_START"
msgid "Required argument lacking."
msgstr "Trūkst obligāta argumenta."
#. 9WA8D
-#: basic/inc/basic.hrc:114
+#: basic/inc/basic.hrc:120
msgctxt "RID_BASIC_START"
msgid "Error executing a method."
msgstr "Kļūda, izpildot metodi."
#. N3vcw
-#: basic/inc/basic.hrc:115
+#: basic/inc/basic.hrc:121
msgctxt "RID_BASIC_START"
msgid "Unable to set property."
msgstr "Neizdevās iestatīt īpašību."
#. k82XW
-#: basic/inc/basic.hrc:116
+#: basic/inc/basic.hrc:122
msgctxt "RID_BASIC_START"
msgid "Unable to determine property."
msgstr "Neizdevās noteikt īpašību."
#. 5cGpa
#. Compiler errors. These are not runtime errors.
-#: basic/inc/basic.hrc:118
+#: basic/inc/basic.hrc:124
msgctxt "RID_BASIC_START"
msgid "Unexpected symbol: $(ARG1)."
msgstr "Negaidīts simbols: $(ARG1)."
#. SBpod
-#: basic/inc/basic.hrc:119
+#: basic/inc/basic.hrc:125
msgctxt "RID_BASIC_START"
msgid "Expected: $(ARG1)."
msgstr "Gaidīts: $(ARG1)."
#. JBaEp
-#: basic/inc/basic.hrc:120
+#: basic/inc/basic.hrc:126
msgctxt "RID_BASIC_START"
msgid "Symbol expected."
msgstr "Tika gaidīts simbols."
#. CkAE9
-#: basic/inc/basic.hrc:121
+#: basic/inc/basic.hrc:127
msgctxt "RID_BASIC_START"
msgid "Variable expected."
msgstr "Tika gaidīts mainīgais."
#. DS5cS
-#: basic/inc/basic.hrc:122
+#: basic/inc/basic.hrc:128
msgctxt "RID_BASIC_START"
msgid "Label expected."
msgstr "Tika gaidīta etiķete."
#. k2myJ
-#: basic/inc/basic.hrc:123
+#: basic/inc/basic.hrc:129
msgctxt "RID_BASIC_START"
msgid "Value cannot be applied."
msgstr "Vērtība nav piemērojama."
#. oPCtL
-#: basic/inc/basic.hrc:124
+#: basic/inc/basic.hrc:130
msgctxt "RID_BASIC_START"
msgid "Variable $(ARG1) already defined."
msgstr "Mainīgais $(ARG1) jau ir definēts."
#. WmiB6
-#: basic/inc/basic.hrc:125
+#: basic/inc/basic.hrc:131
msgctxt "RID_BASIC_START"
msgid "Sub procedure or function procedure $(ARG1) already defined."
msgstr "Apakšprocedūra vai funkcijas procedūra $(ARG1) jau ir definēta."
#. byksZ
-#: basic/inc/basic.hrc:126
+#: basic/inc/basic.hrc:132
msgctxt "RID_BASIC_START"
msgid "Label $(ARG1) already defined."
msgstr "Etiķete $(ARG1) jau ir definēta."
#. GHdG4
-#: basic/inc/basic.hrc:127
+#: basic/inc/basic.hrc:133
msgctxt "RID_BASIC_START"
msgid "Variable $(ARG1) not found."
msgstr "Mainīgais $(ARG1) nav atrasts."
#. DksBU
-#: basic/inc/basic.hrc:128
+#: basic/inc/basic.hrc:134
msgctxt "RID_BASIC_START"
msgid "Array or procedure $(ARG1) not found."
msgstr "Masīvs vai procedūra $(ARG1) nav atrasta."
#. 7CD6B
-#: basic/inc/basic.hrc:129
+#: basic/inc/basic.hrc:135
msgctxt "RID_BASIC_START"
msgid "Procedure $(ARG1) not found."
msgstr "Procedūra $(ARG1) nav atrasta."
#. GREm3
-#: basic/inc/basic.hrc:130
+#: basic/inc/basic.hrc:136
msgctxt "RID_BASIC_START"
msgid "Label $(ARG1) undefined."
msgstr "Etiķete $(ARG1) ir nedefinēta."
#. 2VFZq
-#: basic/inc/basic.hrc:131
+#: basic/inc/basic.hrc:137
msgctxt "RID_BASIC_START"
msgid "Unknown data type $(ARG1)."
msgstr "Nezināms datu tips $(ARG1)."
#. hvsH3
-#: basic/inc/basic.hrc:132
+#: basic/inc/basic.hrc:138
msgctxt "RID_BASIC_START"
msgid "Exit $(ARG1) expected."
msgstr "Tika gaidīts Exit $(ARG1)."
#. 7kZX5
-#: basic/inc/basic.hrc:133
+#: basic/inc/basic.hrc:139
msgctxt "RID_BASIC_START"
msgid "Statement block still open: $(ARG1) missing."
msgstr "Priekšraksta bloks joprojām atvērts: pietrūkst $(ARG1)."
#. EysAe
-#: basic/inc/basic.hrc:134
+#: basic/inc/basic.hrc:140
msgctxt "RID_BASIC_START"
msgid "Parentheses do not match."
msgstr "Iekavas nesakrīt."
#. tGqRY
-#: basic/inc/basic.hrc:135
+#: basic/inc/basic.hrc:141
msgctxt "RID_BASIC_START"
msgid "Symbol $(ARG1) already defined differently."
msgstr "Simbols $(ARG1) jau definēts citādāk."
#. Nvysh
-#: basic/inc/basic.hrc:136
+#: basic/inc/basic.hrc:142
msgctxt "RID_BASIC_START"
msgid "Parameters do not correspond to procedure."
msgstr "Parametri neatbilst procedūrai."
#. aLCNz
-#: basic/inc/basic.hrc:137
+#: basic/inc/basic.hrc:143
msgctxt "RID_BASIC_START"
msgid "Invalid character in number."
msgstr "Nederīga rakstzīme skaitlī."
#. ZL3GF
-#: basic/inc/basic.hrc:138
+#: basic/inc/basic.hrc:144
msgctxt "RID_BASIC_START"
msgid "Array must be dimensioned."
msgstr "Masīvam dimensijas ir obligātas."
#. bvzvK
-#: basic/inc/basic.hrc:139
+#: basic/inc/basic.hrc:145
msgctxt "RID_BASIC_START"
msgid "Else/Endif without If."
msgstr "Else/Endif bez If."
#. BPHwC
-#: basic/inc/basic.hrc:140
+#: basic/inc/basic.hrc:146
msgctxt "RID_BASIC_START"
msgid "$(ARG1) not allowed within a procedure."
msgstr "$(ARG1) nav atļauts procedūras ietvaros."
#. t4CFy
-#: basic/inc/basic.hrc:141
+#: basic/inc/basic.hrc:147
msgctxt "RID_BASIC_START"
msgid "$(ARG1) not allowed outside a procedure."
msgstr "$(ARG1) nav atļauts ārpus procedūras."
#. BAmBZ
-#: basic/inc/basic.hrc:142
+#: basic/inc/basic.hrc:148
msgctxt "RID_BASIC_START"
msgid "Dimension specifications do not match."
msgstr "Dimensiju specifikācijas nesakrīt."
#. kKjmy
-#: basic/inc/basic.hrc:143
+#: basic/inc/basic.hrc:149
msgctxt "RID_BASIC_START"
msgid "Unknown option: $(ARG1)."
msgstr "Nezināma opcija: $(ARG1)."
#. LCo58
-#: basic/inc/basic.hrc:144
+#: basic/inc/basic.hrc:150
msgctxt "RID_BASIC_START"
msgid "Constant $(ARG1) redefined."
msgstr "Konstante $(ARG1) ir pārdefinēta."
#. Dx6YA
-#: basic/inc/basic.hrc:145
+#: basic/inc/basic.hrc:151
msgctxt "RID_BASIC_START"
msgid "Program too large."
msgstr "Programma pārāk liela."
#. aAKCD
-#: basic/inc/basic.hrc:146
+#: basic/inc/basic.hrc:152
msgctxt "RID_BASIC_START"
msgid "Strings or arrays not permitted."
msgstr "Virknes vai masīvi nav atļauti."
#. gqBGJ
-#: basic/inc/basic.hrc:147
+#: basic/inc/basic.hrc:153
msgctxt "RID_BASIC_START"
msgid "An exception occurred $(ARG1)."
msgstr "Gadījās izņēmums $(ARG1)."
#. YTygS
-#: basic/inc/basic.hrc:148
+#: basic/inc/basic.hrc:154
msgctxt "RID_BASIC_START"
msgid "This array is fixed or temporarily locked."
msgstr "Masīvs ir fiksēts vai uz brīdi aizslēgts."
#. AwvaS
-#: basic/inc/basic.hrc:149
+#: basic/inc/basic.hrc:155
msgctxt "RID_BASIC_START"
msgid "Out of string space."
msgstr "Beidzās virknes telpa."
#. VosXA
-#: basic/inc/basic.hrc:150
+#: basic/inc/basic.hrc:156
msgctxt "RID_BASIC_START"
msgid "Expression Too Complex."
msgstr "Izteiksme ir pārāk sarežģīta."
#. fYWci
-#: basic/inc/basic.hrc:151
+#: basic/inc/basic.hrc:157
msgctxt "RID_BASIC_START"
msgid "Can't perform requested operation."
msgstr "Nevar izpildīt pieprasīto darbību."
#. oGvjJ
-#: basic/inc/basic.hrc:152
+#: basic/inc/basic.hrc:158
msgctxt "RID_BASIC_START"
msgid "Too many DLL application clients."
msgstr "Pārāk daudz DLL lietotņu klientu."
#. tC47t
-#: basic/inc/basic.hrc:153
+#: basic/inc/basic.hrc:159
msgctxt "RID_BASIC_START"
msgid "For loop not initialized."
msgstr "'For' cikls nav inicializēts."
#. DA4GN
-#: basic/inc/basic.hrc:154
+#: basic/inc/basic.hrc:160
msgctxt "RID_BASIC_START"
msgid "$(ARG1)"
msgstr "$(ARG1)"
diff --git a/source/lv/chart2/messages.po b/source/lv/chart2/messages.po
index e26a37260ac..54da2a46c2f 100644
--- a/source/lv/chart2/messages.po
+++ b/source/lv/chart2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-01-31 18:18+0100\n"
"PO-Revision-Date: 2021-10-18 06:08+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/lv/>\n"
@@ -17,25 +17,25 @@ msgstr ""
"X-POOTLE-MTIME: 1551268612.000000\n"
#. NCRDD
-#: chart2/inc/chart.hrc:16
+#: chart2/inc/chart.hrc:18
msgctxt "tp_ChartType|liststore1"
msgid "Bar"
msgstr "Josla"
#. YpLZF
-#: chart2/inc/chart.hrc:17
+#: chart2/inc/chart.hrc:19
msgctxt "tp_ChartType|liststore1"
msgid "Cylinder"
msgstr "Cilindrs"
#. VLXhh
-#: chart2/inc/chart.hrc:18
+#: chart2/inc/chart.hrc:20
msgctxt "tp_ChartType|liststore1"
msgid "Cone"
msgstr "Konuss"
#. xsWC2
-#: chart2/inc/chart.hrc:19
+#: chart2/inc/chart.hrc:21
msgctxt "tp_ChartType|liststore1"
msgid "Pyramid"
msgstr "Piramīda"
@@ -2648,67 +2648,67 @@ msgid "Sh_ape"
msgstr "Figūr_a"
#. B6KS5
-#: chart2/uiconfig/ui/sidebartype.ui:188
+#: chart2/uiconfig/ui/sidebartype.ui:187
msgctxt "sidebartype|stack"
msgid "_Stack series"
msgstr "Grēdot _sērijas"
#. Yau6n
-#: chart2/uiconfig/ui/sidebartype.ui:208
+#: chart2/uiconfig/ui/sidebartype.ui:207
msgctxt "sidebartype|ontop"
msgid "On top"
msgstr "Virspusē"
#. f2J43
-#: chart2/uiconfig/ui/sidebartype.ui:222
+#: chart2/uiconfig/ui/sidebartype.ui:221
msgctxt "sidebartype|percent"
msgid "Percent"
msgstr "Procenti"
#. iDSaa
-#: chart2/uiconfig/ui/sidebartype.ui:236
+#: chart2/uiconfig/ui/sidebartype.ui:235
msgctxt "sidebartype|deep"
msgid "Deep"
msgstr "Dziļš"
#. KaS7Z
-#: chart2/uiconfig/ui/sidebartype.ui:264
+#: chart2/uiconfig/ui/sidebartype.ui:263
msgctxt "sidebartype|linetypeft"
msgid "_Line type"
msgstr "_Līnijas tips"
#. Hqc3N
-#: chart2/uiconfig/ui/sidebartype.ui:279
+#: chart2/uiconfig/ui/sidebartype.ui:278
msgctxt "sidebartype|linetype"
msgid "Straight"
msgstr "Taisna"
#. EB58Z
-#: chart2/uiconfig/ui/sidebartype.ui:280
+#: chart2/uiconfig/ui/sidebartype.ui:279
msgctxt "sidebartype|linetype"
msgid "Smooth"
msgstr "Gluda"
#. qLn3k
-#: chart2/uiconfig/ui/sidebartype.ui:281
+#: chart2/uiconfig/ui/sidebartype.ui:280
msgctxt "sidebartype|linetype"
msgid "Stepped"
msgstr "Kāpņveida"
#. jKDXh
-#: chart2/uiconfig/ui/sidebartype.ui:291
+#: chart2/uiconfig/ui/sidebartype.ui:290
msgctxt "sidebartype|properties"
msgid "Properties..."
msgstr "Īpašības..."
#. xW9CQ
-#: chart2/uiconfig/ui/sidebartype.ui:309
+#: chart2/uiconfig/ui/sidebartype.ui:308
msgctxt "sidebartype|sort"
msgid "_Sort by X values"
msgstr "_Kārtot pēc X vērtībām"
#. thu3G
-#: chart2/uiconfig/ui/sidebartype.ui:331
+#: chart2/uiconfig/ui/sidebartype.ui:330
msgctxt "sidebartype|nolinesft"
msgid "_Number of lines"
msgstr "Ri_ndu skaits"
@@ -3434,7 +3434,7 @@ msgid "Mor_e..."
msgstr "Vairā_k..."
#. 7eDLK
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:648
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:647
msgctxt "tp_AxisPositions|label2"
msgid "Grids"
msgstr "Režģi"
@@ -3446,163 +3446,163 @@ msgid "Choose a Chart Type"
msgstr "Izvēlieties diagrammas tipu"
#. wBFXQ
-#: chart2/uiconfig/ui/tp_ChartType.ui:96
+#: chart2/uiconfig/ui/tp_ChartType.ui:94
msgctxt "tp_ChartType|extended_tip|subtype"
msgid "Select a sub type of the basic chart type."
msgstr ""
#. FSf6b
-#: chart2/uiconfig/ui/tp_ChartType.ui:125
+#: chart2/uiconfig/ui/tp_ChartType.ui:123
msgctxt "tp_ChartType|3dlook"
msgid "_3D Look"
msgstr "_3D izskats"
#. EB95g
-#: chart2/uiconfig/ui/tp_ChartType.ui:135
+#: chart2/uiconfig/ui/tp_ChartType.ui:133
msgctxt "tp_ChartType|extended_tip|3dlook"
msgid "Enables a 3D look for the data values."
msgstr ""
#. FprGw
-#: chart2/uiconfig/ui/tp_ChartType.ui:149
+#: chart2/uiconfig/ui/tp_ChartType.ui:147
msgctxt "tp_ChartType|3dscheme"
msgid "Simple"
msgstr "Vienkāršs"
#. pKhfX
-#: chart2/uiconfig/ui/tp_ChartType.ui:150
+#: chart2/uiconfig/ui/tp_ChartType.ui:148
msgctxt "tp_ChartType|3dscheme"
msgid "Realistic"
msgstr "Reālistisks"
#. zZxWG
-#: chart2/uiconfig/ui/tp_ChartType.ui:157
+#: chart2/uiconfig/ui/tp_ChartType.ui:155
msgctxt "tp_ChartType|extended_tip|3dscheme"
msgid "Select the type of 3D look."
msgstr ""
#. FxHfq
-#: chart2/uiconfig/ui/tp_ChartType.ui:175
+#: chart2/uiconfig/ui/tp_ChartType.ui:173
msgctxt "tp_ChartType|shapeft"
msgid "Sh_ape"
msgstr "Figūr_a"
#. CCA3V
-#: chart2/uiconfig/ui/tp_ChartType.ui:219
+#: chart2/uiconfig/ui/tp_ChartType.ui:216
msgctxt "tp_ChartType|extended_tip|shape"
msgid "Select a shape from the list."
msgstr ""
#. G2u4D
-#: chart2/uiconfig/ui/tp_ChartType.ui:244
+#: chart2/uiconfig/ui/tp_ChartType.ui:241
msgctxt "tp_ChartType|stack"
msgid "_Stack series"
msgstr "Grēdot _sērijas"
#. h8wCq
-#: chart2/uiconfig/ui/tp_ChartType.ui:251
+#: chart2/uiconfig/ui/tp_ChartType.ui:248
msgctxt "tp_ChartType|extended_tip|stack"
msgid "Displays stacked series for Line charts."
msgstr ""
#. KfD2L
-#: chart2/uiconfig/ui/tp_ChartType.ui:269
+#: chart2/uiconfig/ui/tp_ChartType.ui:266
msgctxt "tp_ChartType|ontop"
msgid "On top"
msgstr "Virspusē"
#. DY854
-#: chart2/uiconfig/ui/tp_ChartType.ui:277
+#: chart2/uiconfig/ui/tp_ChartType.ui:274
msgctxt "tp_ChartType|extended_tip|ontop"
msgid "Stack series display values on top of each other."
msgstr ""
#. C7JxK
-#: chart2/uiconfig/ui/tp_ChartType.ui:288
+#: chart2/uiconfig/ui/tp_ChartType.ui:285
msgctxt "tp_ChartType|percent"
msgid "Percent"
msgstr "Procenti"
#. EVNAR
-#: chart2/uiconfig/ui/tp_ChartType.ui:296
+#: chart2/uiconfig/ui/tp_ChartType.ui:293
msgctxt "tp_ChartType|extended_tip|percent"
msgid "Stack series display values as percent."
msgstr ""
#. ijuPy
-#: chart2/uiconfig/ui/tp_ChartType.ui:307
+#: chart2/uiconfig/ui/tp_ChartType.ui:304
msgctxt "tp_ChartType|deep"
msgid "Deep"
msgstr "Dziļš"
#. etF2p
-#: chart2/uiconfig/ui/tp_ChartType.ui:334
+#: chart2/uiconfig/ui/tp_ChartType.ui:331
msgctxt "tp_ChartType|linetypeft"
msgid "_Line type"
msgstr "_Līniju tips"
#. RbyB4
-#: chart2/uiconfig/ui/tp_ChartType.ui:348
+#: chart2/uiconfig/ui/tp_ChartType.ui:345
msgctxt "tp_ChartType|linetype"
msgid "Straight"
msgstr "Taisnas"
#. dG5tv
-#: chart2/uiconfig/ui/tp_ChartType.ui:349
+#: chart2/uiconfig/ui/tp_ChartType.ui:346
msgctxt "tp_ChartType|linetype"
msgid "Smooth"
msgstr "Gludas"
#. uHHpu
-#: chart2/uiconfig/ui/tp_ChartType.ui:350
+#: chart2/uiconfig/ui/tp_ChartType.ui:347
msgctxt "tp_ChartType|linetype"
msgid "Stepped"
msgstr "Kāpņveida"
#. G3eDR
-#: chart2/uiconfig/ui/tp_ChartType.ui:354
+#: chart2/uiconfig/ui/tp_ChartType.ui:351
msgctxt "tp_ChartType|extended_tip|linetype"
msgid "Choose the type of line to draw."
msgstr ""
#. JqNUv
-#: chart2/uiconfig/ui/tp_ChartType.ui:365
+#: chart2/uiconfig/ui/tp_ChartType.ui:362
msgctxt "tp_ChartType|properties"
msgid "Properties..."
msgstr "Īpašības..."
#. EnymX
-#: chart2/uiconfig/ui/tp_ChartType.ui:371
+#: chart2/uiconfig/ui/tp_ChartType.ui:368
msgctxt "tp_ChartType|extended_tip|properties"
msgid "Opens a dialog to set the line or curve properties."
msgstr ""
#. KzGZQ
-#: chart2/uiconfig/ui/tp_ChartType.ui:388
+#: chart2/uiconfig/ui/tp_ChartType.ui:385
msgctxt "tp_ChartType|sort"
msgid "_Sort by X values"
msgstr "_Kārtot pēc X vērtībām"
#. tbgi3
-#: chart2/uiconfig/ui/tp_ChartType.ui:395
+#: chart2/uiconfig/ui/tp_ChartType.ui:392
msgctxt "tp_ChartType|extended_tip|sort"
msgid "Connects points by ascending X values, even if the order of values is different, in an XY scatter diagram."
msgstr ""
#. CmGat
-#: chart2/uiconfig/ui/tp_ChartType.ui:414
+#: chart2/uiconfig/ui/tp_ChartType.ui:411
msgctxt "tp_ChartType|nolinesft"
msgid "_Number of lines"
msgstr "Ri_ndu skaits"
#. bBgDJ
-#: chart2/uiconfig/ui/tp_ChartType.ui:434
+#: chart2/uiconfig/ui/tp_ChartType.ui:431
msgctxt "tp_ChartType|extended_tip|nolines"
msgid "Set the number of lines for the Column and Line chart type."
msgstr ""
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:499
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr ""
@@ -5108,103 +5108,103 @@ msgid "Trend line is extrapolated for lower x-values."
msgstr ""
#. BGkFJ
-#: chart2/uiconfig/ui/tp_Trendline.ui:477
+#: chart2/uiconfig/ui/tp_Trendline.ui:476
msgctxt "tp_Trendline|setIntercept"
msgid "Force _Intercept"
msgstr "Uzsp_iest krustpunktu"
#. ZJUti
-#: chart2/uiconfig/ui/tp_Trendline.ui:488
+#: chart2/uiconfig/ui/tp_Trendline.ui:487
msgctxt "tp_Trendline|extended_tip|setIntercept"
msgid "For linear, polynomial and exponential trend lines, intercept value is forced to a given value."
msgstr ""
#. CSHNm
-#: chart2/uiconfig/ui/tp_Trendline.ui:499
+#: chart2/uiconfig/ui/tp_Trendline.ui:498
msgctxt "tp_Trendline|showEquation"
msgid "Show E_quation"
msgstr "Rādīt _vienādojumu"
#. nXrm7
-#: chart2/uiconfig/ui/tp_Trendline.ui:507
+#: chart2/uiconfig/ui/tp_Trendline.ui:506
msgctxt "tp_Trendline|extended_tip|showEquation"
msgid "Shows the trend line equation next to the trend line."
msgstr ""
#. cA58s
-#: chart2/uiconfig/ui/tp_Trendline.ui:519
+#: chart2/uiconfig/ui/tp_Trendline.ui:518
msgctxt "tp_Trendline|showCorrelationCoefficient"
msgid "Show _Coefficient of Determination (R²)"
msgstr "Rādīt determinācijas _koeficientu (R²)"
#. CCyCH
-#: chart2/uiconfig/ui/tp_Trendline.ui:527
+#: chart2/uiconfig/ui/tp_Trendline.ui:526
msgctxt "tp_Trendline|extended_tip|showCorrelationCoefficient"
msgid "Shows the coefficient of determination next to the trend line."
msgstr ""
#. 2S6og
-#: chart2/uiconfig/ui/tp_Trendline.ui:541
+#: chart2/uiconfig/ui/tp_Trendline.ui:540
msgctxt "tp_Trendline|label5"
msgid "Trendline _Name"
msgstr "Tendences līnijas _nosaukums"
#. GasKo
-#: chart2/uiconfig/ui/tp_Trendline.ui:547
+#: chart2/uiconfig/ui/tp_Trendline.ui:546
msgctxt "tp_Trendline|extended_tip|label5"
msgid "Name of trend line in legend."
msgstr ""
#. FBT3Y
-#: chart2/uiconfig/ui/tp_Trendline.ui:564
+#: chart2/uiconfig/ui/tp_Trendline.ui:563
msgctxt "tp_Trendline|extended_tip|entry_name"
msgid "Name of trend line in legend."
msgstr ""
#. C4C6e
-#: chart2/uiconfig/ui/tp_Trendline.ui:588
+#: chart2/uiconfig/ui/tp_Trendline.ui:586
msgctxt "tp_Trendline|extended_tip|interceptValue"
msgid "Value of intercept if it is forced."
msgstr ""
#. GEKL2
-#: chart2/uiconfig/ui/tp_Trendline.ui:601
+#: chart2/uiconfig/ui/tp_Trendline.ui:599
msgctxt "tp_Trendline|label6"
msgid "_X Variable Name"
msgstr "Mainīgā _X nosaukums"
#. 99kQL
-#: chart2/uiconfig/ui/tp_Trendline.ui:607
+#: chart2/uiconfig/ui/tp_Trendline.ui:605
msgctxt "tp_Trendline|extended_tip|label6"
msgid "Name of X variable in trend line equation."
msgstr ""
#. Fz8b3
-#: chart2/uiconfig/ui/tp_Trendline.ui:624
+#: chart2/uiconfig/ui/tp_Trendline.ui:622
msgctxt "tp_Trendline|extended_tip|entry_Xname"
msgid "Name of X variable in trend line equation."
msgstr ""
#. GDQuF
-#: chart2/uiconfig/ui/tp_Trendline.ui:637
+#: chart2/uiconfig/ui/tp_Trendline.ui:635
msgctxt "tp_Trendline|label9"
msgid "_Y Variable Name"
msgstr "Mainīgā _Y nosaukums"
#. 2PBW3
-#: chart2/uiconfig/ui/tp_Trendline.ui:643
+#: chart2/uiconfig/ui/tp_Trendline.ui:641
msgctxt "tp_Trendline|extended_tip|label9"
msgid "Name of Y variable in trend line equation."
msgstr ""
#. WHNXu
-#: chart2/uiconfig/ui/tp_Trendline.ui:660
+#: chart2/uiconfig/ui/tp_Trendline.ui:658
msgctxt "tp_Trendline|extended_tip|entry_Yname"
msgid "Name of Y variable in trend line equation."
msgstr ""
#. 9WeUe
-#: chart2/uiconfig/ui/tp_Trendline.ui:681
+#: chart2/uiconfig/ui/tp_Trendline.ui:679
msgctxt "tp_Trendline|label2"
msgid "Options"
msgstr "Opcijas"
diff --git a/source/lv/cui/messages.po b/source/lv/cui/messages.po
index 6b580f1bdde..79c41d49013 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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-01-31 18:18+0100\n"
"PO-Revision-Date: 2021-11-29 08:52+0000\n"
"Last-Translator: Tranzistors <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/lv/>\n"
@@ -450,852 +450,846 @@ msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
msgid "Mouse leaves object"
msgstr "Pele pamet objektu"
-#. E8XCn
-#: cui/inc/strings.hrc:79
-msgctxt "RID_SVXSTR_HYPDLG_NOVALIDFILENAME"
-msgid "Please type in a valid file name."
-msgstr "Lūdzu, ierakstiet derīgu datnes nosaukumu."
-
#. ES4Pj
-#: cui/inc/strings.hrc:80
+#: cui/inc/strings.hrc:79
msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
msgid "Button"
msgstr "Poga"
#. MPHHF
-#: cui/inc/strings.hrc:81
+#: cui/inc/strings.hrc:80
msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
msgid "Text"
msgstr "Teksts"
#. 9nkb2
-#: cui/inc/strings.hrc:82
+#: cui/inc/strings.hrc:81
msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Datne jau pastāv. Pārrakstīt?"
#. smWax
-#: cui/inc/strings.hrc:84
+#: cui/inc/strings.hrc:83
msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
msgid "Select File for Floating Frame"
msgstr "Izvēlēties datni peldošajam ietvaram"
#. F74rR
-#: cui/inc/strings.hrc:85
+#: cui/inc/strings.hrc:84
msgctxt "RID_SVXSTR_ALLFUNCTIONS"
msgid "All commands"
msgstr "Visas komandas"
#. EeB6i
-#: cui/inc/strings.hrc:86
+#: cui/inc/strings.hrc:85
msgctxt "RID_SVXSTR_MACROS"
msgid "Macros"
msgstr "Makrokomandas"
#. mkEjQ
-#: cui/inc/strings.hrc:87
+#: cui/inc/strings.hrc:86
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
msgstr "Manas makrokomandas"
-#. Cv5m8
-#: cui/inc/strings.hrc:88
+#. nn7Gm
+#: cui/inc/strings.hrc:87
msgctxt "RID_SVXSTR_PRODMACROS"
-msgid "%PRODUCTNAME Macros"
-msgstr "%PRODUCTNAME makrokomandas"
+msgid "Application Macros"
+msgstr ""
#. RGCGW
-#: cui/inc/strings.hrc:89
+#: cui/inc/strings.hrc:88
msgctxt "RID_SVXSTR_NOMACRODESC"
msgid "There is no description available for this macro."
msgstr "Šai makrokomandai nav pieejams apraksts."
#. AFniE
-#: cui/inc/strings.hrc:90
+#: cui/inc/strings.hrc:89
msgctxt "RID_SVXSTR_SELECTOR_RUN"
msgid "Run"
msgstr "Palaist"
#. whwAN
-#: cui/inc/strings.hrc:91
+#: cui/inc/strings.hrc:90
msgctxt "RID_SVXSTR_ROW"
msgid "Insert Rows"
msgstr "Ievietot rindas"
#. Su38S
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:93
+#: cui/inc/strings.hrc:92
msgctxt "RID_SVXSTR_INSERTROW_BEFORE"
msgid "Above selection"
msgstr "Virs izvēlētā"
#. oBHui
-#: cui/inc/strings.hrc:94
+#: cui/inc/strings.hrc:93
msgctxt "RID_SVXSTR_INSERTROW_AFTER"
msgid "Below selection"
msgstr "Zem izvēlētā"
#. c8nou
-#: cui/inc/strings.hrc:95
+#: cui/inc/strings.hrc:94
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Izņemt no izlases"
#. XpjRm
-#: cui/inc/strings.hrc:96
+#: cui/inc/strings.hrc:95
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Trūkstoša rakstzīme"
#. 7tBGT
-#: cui/inc/strings.hrc:97
+#: cui/inc/strings.hrc:96
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Pievienot izlasei"
#. AvBBC
#. PPI is pixel per inch, %1 is a number
-#: cui/inc/strings.hrc:99
+#: cui/inc/strings.hrc:98
msgctxt "RID_SVXSTR_PPI"
msgid "(%1 PPI)"
msgstr "(%1 PPI)"
#. thimC
-#: cui/inc/strings.hrc:100
+#: cui/inc/strings.hrc:99
msgctxt "RID_SVXSTR_COL"
msgid "Insert Columns"
msgstr "Ievietot kolonnas"
#. AgqiD
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:102
+#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_INSERTCOL_BEFORE"
msgid "Before selection"
msgstr "Pirms izvēlētā"
#. nXnb3
-#: cui/inc/strings.hrc:103
+#: cui/inc/strings.hrc:102
msgctxt "RID_SVXSTR_INSERTCOL_AFTER"
msgid "After selection"
msgstr "Pēc izvēlētā"
#. QrFJZ
-#: cui/inc/strings.hrc:104
+#: cui/inc/strings.hrc:103
msgctxt "RID_SVXSTR_AUTO_ENTRY"
msgid "Automatic"
msgstr "Automātiski"
#. X9CWA
-#: cui/inc/strings.hrc:105
+#: cui/inc/strings.hrc:104
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "Saite"
#. QCgnw
-#: cui/inc/strings.hrc:106
+#: cui/inc/strings.hrc:105
msgctxt "RID_SVXSTR_LOADACCELCONFIG"
msgid "Load Keyboard Configuration"
msgstr "Ielādēt tastatūras konfigurāciju"
#. eWQoY
-#: cui/inc/strings.hrc:107
+#: cui/inc/strings.hrc:106
msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
msgid "Save Keyboard Configuration"
msgstr "Saglabāt tastatūras konfigurāciju"
#. ggFZE
-#: cui/inc/strings.hrc:108
+#: cui/inc/strings.hrc:107
msgctxt "RID_SVXSTR_FILTERNAME_CFG"
msgid "Configuration (*.cfg)"
msgstr "Konfigurācija (*.cfg)"
#. DigQB
-#: cui/inc/strings.hrc:109
+#: cui/inc/strings.hrc:108
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
msgid "Targets do not exist in the document."
msgstr "Dokumentā mērķi nepastāv."
#. pCbRV
-#: cui/inc/strings.hrc:110
+#: cui/inc/strings.hrc:109
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
msgid "Couldn't open the document."
msgstr "Nevarēja atvērt dokumentu."
#. zAUfq
-#: cui/inc/strings.hrc:111
+#: cui/inc/strings.hrc:110
msgctxt "RID_SVXSTR_EDITHINT"
msgid "[Enter text here]"
msgstr "[Ievadiet tekstu šeit]"
#. ResDx
-#: cui/inc/strings.hrc:112
+#: cui/inc/strings.hrc:111
msgctxt "RID_SVXSTR_HANGUL"
msgid "Hangul"
msgstr "Hangul"
#. 3t3AC
-#: cui/inc/strings.hrc:113
+#: cui/inc/strings.hrc:112
msgctxt "RID_SVXSTR_HANJA"
msgid "Hanja"
msgstr "Handža"
#. 88dts
-#: cui/inc/strings.hrc:114
+#: cui/inc/strings.hrc:113
msgctxt "RID_SVXSTR_BASICMACROS"
msgid "BASIC Macros"
msgstr "BASIC makrokomandas"
#. XKYHn
-#: cui/inc/strings.hrc:115
+#: cui/inc/strings.hrc:114
msgctxt "RID_SVXSTR_GROUP_STYLES"
msgid "Styles"
msgstr "Stili"
#. 3Qq2E
-#: cui/inc/strings.hrc:116
+#: cui/inc/strings.hrc:115
msgctxt "RID_SVXSTR_GROUP_SIDEBARDECKS"
msgid "Sidebar Decks"
msgstr ""
#. hFEBv
-#: cui/inc/strings.hrc:118
+#: cui/inc/strings.hrc:117
msgctxt "RID_SVXSTR_EVENT_STARTAPP"
msgid "Start Application"
msgstr "Startēt lietotni"
#. 6tUvx
-#: cui/inc/strings.hrc:119
+#: cui/inc/strings.hrc:118
msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
msgid "Close Application"
msgstr "Aizvērt lietotni"
#. 6NsQz
-#: cui/inc/strings.hrc:120
+#: cui/inc/strings.hrc:119
msgctxt "RID_SVXSTR_EVENT_NEWDOC"
msgid "New Document"
msgstr "Jauns dokuments"
#. G6b2e
-#: cui/inc/strings.hrc:121
+#: cui/inc/strings.hrc:120
msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
msgid "Document closed"
msgstr "Dokuments aizvērts"
#. yvsTa
-#: cui/inc/strings.hrc:122
+#: cui/inc/strings.hrc:121
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
msgid "Document is going to be closed"
msgstr "Dokuments tiks aizvērts"
#. DKpfj
-#: cui/inc/strings.hrc:123
+#: cui/inc/strings.hrc:122
msgctxt "RID_SVXSTR_EVENT_OPENDOC"
msgid "Open Document"
msgstr "Atvērt dokumentu"
#. DTDDm
-#: cui/inc/strings.hrc:124
+#: cui/inc/strings.hrc:123
msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
msgid "Save Document"
msgstr "Saglabāt dokumentu"
#. Trc82
-#: cui/inc/strings.hrc:125
+#: cui/inc/strings.hrc:124
msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
msgid "Save Document As"
msgstr "Saglabāt dokumentu kā"
#. GCbZt
-#: cui/inc/strings.hrc:126
+#: cui/inc/strings.hrc:125
msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
msgid "Document has been saved"
msgstr "Dokuments ir saglabāts"
#. mYtMa
-#: cui/inc/strings.hrc:127
+#: cui/inc/strings.hrc:126
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
msgid "Document has been saved as"
msgstr "Dokuments ir saglabāts kā"
#. t8F8W
-#: cui/inc/strings.hrc:128
+#: cui/inc/strings.hrc:127
msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
msgid "Activate Document"
msgstr "Aktivizēt dokumentu"
#. T7QE3
-#: cui/inc/strings.hrc:129
+#: cui/inc/strings.hrc:128
msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
msgid "Deactivate Document"
msgstr "Deaktivizēt dokumentu"
#. AQXyC
-#: cui/inc/strings.hrc:130
+#: cui/inc/strings.hrc:129
msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
msgid "Print Document"
msgstr "Drukāt dokumentu"
#. 8uXuz
-#: cui/inc/strings.hrc:131
+#: cui/inc/strings.hrc:130
msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
msgid "'Modified' status was changed"
msgstr "'Modificēts' statuss ir izmainīts"
#. 5CKDG
-#: cui/inc/strings.hrc:132
+#: cui/inc/strings.hrc:131
msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
msgid "Printing of form letters started"
msgstr "Vēstuļu veidlapu drukāšana ir sākusies"
#. AZ2io
-#: cui/inc/strings.hrc:133
+#: cui/inc/strings.hrc:132
msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
msgid "Printing of form letters finished"
msgstr "Vēstuļu veidlapu drukāšana ir beigusies"
#. dHtbz
-#: cui/inc/strings.hrc:134
+#: cui/inc/strings.hrc:133
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
msgid "Merging of form fields started"
msgstr "Sākās formu lauku sapludināšana"
#. uGCdD
-#: cui/inc/strings.hrc:135
+#: cui/inc/strings.hrc:134
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
msgid "Merging of form fields finished"
msgstr "Beidzās formu lauku sapludināšana"
#. srLLa
-#: cui/inc/strings.hrc:136
+#: cui/inc/strings.hrc:135
msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
msgid "Changing the page count"
msgstr "Lappušu skaita maiņa"
#. AsuQF
-#: cui/inc/strings.hrc:137
+#: cui/inc/strings.hrc:136
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
msgid "Loaded a sub component"
msgstr "Ielādēja apakškomponenti"
#. Gf22f
-#: cui/inc/strings.hrc:138
+#: cui/inc/strings.hrc:137
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
msgid "Closed a sub component"
msgstr "Aizvēra apakškomponenti"
#. QayEb
-#: cui/inc/strings.hrc:139
+#: cui/inc/strings.hrc:138
msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
msgid "Fill parameters"
msgstr "Aizpildīšanas parametri"
#. mL59X
-#: cui/inc/strings.hrc:140
+#: cui/inc/strings.hrc:139
msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
msgid "Execute action"
msgstr "Izpildīt darbību"
#. KtHBE
-#: cui/inc/strings.hrc:141
+#: cui/inc/strings.hrc:140
msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
msgid "After updating"
msgstr "Pēc atjaunināšanas"
#. b6CCj
-#: cui/inc/strings.hrc:142
+#: cui/inc/strings.hrc:141
msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
msgid "Before updating"
msgstr "Pirms atjaunināšanas"
#. KTBcp
-#: cui/inc/strings.hrc:143
+#: cui/inc/strings.hrc:142
msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
msgid "Before record action"
msgstr "Pirms ieraksta darbības"
#. Fhyio
-#: cui/inc/strings.hrc:144
+#: cui/inc/strings.hrc:143
msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
msgid "After record action"
msgstr "Pēc ieraksta darbības"
#. PmJgM
-#: cui/inc/strings.hrc:145
+#: cui/inc/strings.hrc:144
msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
msgid "Confirm deletion"
msgstr "Apstiprināt dzēšanu"
#. gcREA
-#: cui/inc/strings.hrc:146
+#: cui/inc/strings.hrc:145
msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
msgid "Error occurred"
msgstr "Notikusi kļūda"
#. oAwDt
-#: cui/inc/strings.hrc:147
+#: cui/inc/strings.hrc:146
msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
msgid "While adjusting"
msgstr "Pielāgošanas laikā"
#. AyfwP
-#: cui/inc/strings.hrc:148
+#: cui/inc/strings.hrc:147
msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
msgid "When receiving focus"
msgstr "Kad saņem fokusu"
#. BD96B
-#: cui/inc/strings.hrc:149
+#: cui/inc/strings.hrc:148
msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
msgid "When losing focus"
msgstr "Kad zaudē fokusu"
#. wEhfE
-#: cui/inc/strings.hrc:150
+#: cui/inc/strings.hrc:149
msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
msgid "Item status changed"
msgstr "Vienuma status mainīts"
#. FRW7b
-#: cui/inc/strings.hrc:151
+#: cui/inc/strings.hrc:150
msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
msgid "Key pressed"
msgstr "Taustiņš piespiests"
#. 4kZCD
-#: cui/inc/strings.hrc:152
+#: cui/inc/strings.hrc:151
msgctxt "RID_SVXSTR_EVENT_KEYUP"
msgid "Key released"
msgstr "Taustiņš atlaists"
#. ZiS2D
-#: cui/inc/strings.hrc:153
+#: cui/inc/strings.hrc:152
msgctxt "RID_SVXSTR_EVENT_LOADED"
msgid "When loading"
msgstr "Kad ielādē"
#. vEjAG
-#: cui/inc/strings.hrc:154
+#: cui/inc/strings.hrc:153
msgctxt "RID_SVXSTR_EVENT_RELOADING"
msgid "Before reloading"
msgstr "Pirms pārlādēšanas"
#. 5FvrE
-#: cui/inc/strings.hrc:155
+#: cui/inc/strings.hrc:154
msgctxt "RID_SVXSTR_EVENT_RELOADED"
msgid "When reloading"
msgstr "Kad pārlādē"
#. CDcYt
-#: cui/inc/strings.hrc:156
+#: cui/inc/strings.hrc:155
msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
msgid "Mouse moved while key pressed"
msgstr "Pele pakustināta, kamēr taustiņš nospiests"
#. CPpyk
-#: cui/inc/strings.hrc:157
+#: cui/inc/strings.hrc:156
msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
msgid "Mouse inside"
msgstr "Pele iekšpus"
#. 4hGfp
-#: cui/inc/strings.hrc:158
+#: cui/inc/strings.hrc:157
msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
msgid "Mouse outside"
msgstr "Pele ārpus"
#. QEuWr
-#: cui/inc/strings.hrc:159
+#: cui/inc/strings.hrc:158
msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
msgid "Mouse moved"
msgstr "Pele pakustināta"
#. 8YA3S
-#: cui/inc/strings.hrc:160
+#: cui/inc/strings.hrc:159
msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
msgid "Mouse button pressed"
msgstr "Peles poga nospiesta"
#. RMuJe
-#: cui/inc/strings.hrc:161
+#: cui/inc/strings.hrc:160
msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
msgid "Mouse button released"
msgstr "Peles poga atlaista"
#. 5iPHQ
-#: cui/inc/strings.hrc:162
+#: cui/inc/strings.hrc:161
msgctxt "RID_SVXSTR_EVENT_POSITIONING"
msgid "Before record change"
msgstr "Pirms ieraksta izmaiņas"
#. yrBiz
-#: cui/inc/strings.hrc:163
+#: cui/inc/strings.hrc:162
msgctxt "RID_SVXSTR_EVENT_POSITIONED"
msgid "After record change"
msgstr "Pēc ieraksta izmaiņas"
#. bdBH4
-#: cui/inc/strings.hrc:164
+#: cui/inc/strings.hrc:163
msgctxt "RID_SVXSTR_EVENT_RESETTED"
msgid "After resetting"
msgstr "Pēc atiestatīšanas"
#. eVsFk
-#: cui/inc/strings.hrc:165
+#: cui/inc/strings.hrc:164
msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
msgid "Prior to reset"
msgstr "Pirms atiestatīšanas"
#. 2oAoV
-#: cui/inc/strings.hrc:166
+#: cui/inc/strings.hrc:165
msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
msgid "Approve action"
msgstr "Apstiprināt darbību"
#. hQAzK
-#: cui/inc/strings.hrc:167
+#: cui/inc/strings.hrc:166
msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
msgid "Before submitting"
msgstr "Pirms iesniegšanas"
#. CFPSo
-#: cui/inc/strings.hrc:168
+#: cui/inc/strings.hrc:167
msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
msgid "Text modified"
msgstr "Teksts modificēts"
#. 2ADMH
-#: cui/inc/strings.hrc:169
+#: cui/inc/strings.hrc:168
msgctxt "RID_SVXSTR_EVENT_UNLOADING"
msgid "Before unloading"
msgstr "Pirms izkraušanas"
#. F8BL3
-#: cui/inc/strings.hrc:170
+#: cui/inc/strings.hrc:169
msgctxt "RID_SVXSTR_EVENT_UNLOADED"
msgid "When unloading"
msgstr "Izkraušanas laikā"
#. M6fPe
-#: cui/inc/strings.hrc:171
+#: cui/inc/strings.hrc:170
msgctxt "RID_SVXSTR_EVENT_CHANGED"
msgid "Changed"
msgstr "Mainīts"
#. gZyVB
-#: cui/inc/strings.hrc:172
+#: cui/inc/strings.hrc:171
msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
msgid "Document created"
msgstr "Dokuments izveidots"
#. BcPDW
-#: cui/inc/strings.hrc:173
+#: cui/inc/strings.hrc:172
msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
msgid "Document loading finished"
msgstr "Dokumenta ielādēšana pabeigta"
#. ir7AQ
-#: cui/inc/strings.hrc:174
+#: cui/inc/strings.hrc:173
msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
msgid "Saving of document failed"
msgstr "Dokumenta saglabāšana neizdevās"
#. BFtTF
-#: cui/inc/strings.hrc:175
+#: cui/inc/strings.hrc:174
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
msgid "'Save as' has failed"
msgstr "Neizdevās 'Saglabāt kā'"
#. N9e6u
-#: cui/inc/strings.hrc:176
+#: cui/inc/strings.hrc:175
msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
msgid "Storing or exporting copy of document"
msgstr "Dokumenta kopijas saglabāšana vai eksportēšana"
#. okb9H
-#: cui/inc/strings.hrc:177
+#: cui/inc/strings.hrc:176
msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
msgid "Document copy has been created"
msgstr "Dokumenta kopija ir izveidota"
#. DrYTY
-#: cui/inc/strings.hrc:178
+#: cui/inc/strings.hrc:177
msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
msgid "Creating of document copy failed"
msgstr "Neizdevās izveidot dokumenta kopiju"
#. BBJJQ
-#: cui/inc/strings.hrc:179
+#: cui/inc/strings.hrc:178
msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
msgid "View created"
msgstr "Skats izveidots"
#. XN9Az
-#: cui/inc/strings.hrc:180
+#: cui/inc/strings.hrc:179
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
msgid "View is going to be closed"
msgstr "Skats tiks aizvērts"
#. a9qty
-#: cui/inc/strings.hrc:181
+#: cui/inc/strings.hrc:180
msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
msgid "View closed"
msgstr "Skats aizvērts"
#. dDunN
-#: cui/inc/strings.hrc:182
+#: cui/inc/strings.hrc:181
msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
msgid "Document title changed"
msgstr "Mainīts dokumenta virsraksts"
#. 6D6BS
-#: cui/inc/strings.hrc:183
+#: cui/inc/strings.hrc:182
msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
msgid "Selection changed"
msgstr "Izvēle izmainīta"
#. XArW3
-#: cui/inc/strings.hrc:184
+#: cui/inc/strings.hrc:183
msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
msgid "Double click"
msgstr "Dubultklikšķis"
#. oDkyz
-#: cui/inc/strings.hrc:185
+#: cui/inc/strings.hrc:184
msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
msgid "Right click"
msgstr "Labais klikšķis"
#. tVSz9
-#: cui/inc/strings.hrc:186
+#: cui/inc/strings.hrc:185
msgctxt "RID_SVXSTR_EVENT_CALCULATE"
msgid "Formulas calculated"
msgstr "Formulas izrēķinātas"
#. ESxTQ
-#: cui/inc/strings.hrc:187
+#: cui/inc/strings.hrc:186
msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
msgid "Content changed"
msgstr "Saturs mainījies"
#. Zimeo
-#: cui/inc/strings.hrc:189
+#: cui/inc/strings.hrc:188
msgctxt "RID_STR_SEARCH_ANYWHERE"
msgid "anywhere in the field"
msgstr "jebkur laukā"
#. qCKMY
-#: cui/inc/strings.hrc:190
+#: cui/inc/strings.hrc:189
msgctxt "RID_STR_SEARCH_BEGINNING"
msgid "beginning of field"
msgstr "lauka sākumā"
#. CKVTF
-#: cui/inc/strings.hrc:191
+#: cui/inc/strings.hrc:190
msgctxt "RID_STR_SEARCH_END"
msgid "end of field"
msgstr "lauka beigās"
#. FZwxu
-#: cui/inc/strings.hrc:192
+#: cui/inc/strings.hrc:191
msgctxt "RID_STR_SEARCH_WHOLE"
msgid "entire field"
msgstr "visā laukā"
#. AFUFs
-#: cui/inc/strings.hrc:193
+#: cui/inc/strings.hrc:192
msgctxt "RID_STR_FROM_TOP"
msgid "From top"
msgstr "No augšas"
#. FBDbX
-#: cui/inc/strings.hrc:194
+#: cui/inc/strings.hrc:193
msgctxt "RID_STR_FROM_BOTTOM"
msgid "From bottom"
msgstr "No apakšas"
#. brdgV
-#: cui/inc/strings.hrc:195
+#: cui/inc/strings.hrc:194
msgctxt "RID_STR_SEARCH_NORECORD"
msgid "No records corresponding to your data found."
msgstr "Nav atrasti ieraksti, kas atbilstu jūsu norādītajiem datiem."
#. VkTjA
-#: cui/inc/strings.hrc:196
+#: cui/inc/strings.hrc:195
msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
msgid "An unknown error occurred. The search could not be finished."
msgstr "Gadījās nezināma kļūda. Meklēšanu neizdevās pabeigt."
#. jiQdw
-#: cui/inc/strings.hrc:197
+#: cui/inc/strings.hrc:196
msgctxt "RID_STR_OVERFLOW_FORWARD"
msgid "Overflow, search continued at the beginning"
msgstr "Pārpilde, meklēšana tiek turpināta no sākuma"
#. EzK3y
-#: cui/inc/strings.hrc:198
+#: cui/inc/strings.hrc:197
msgctxt "RID_STR_OVERFLOW_BACKWARD"
msgid "Overflow, search continued at the end"
msgstr "Pārpilde, meklēšana tiek turpināta no beigām"
#. zwiat
-#: cui/inc/strings.hrc:199
+#: cui/inc/strings.hrc:198
msgctxt "RID_STR_SEARCH_COUNTING"
msgid "counting records"
msgstr "skaita ierakstus"
#. 7cVWa
-#: cui/inc/strings.hrc:201
+#: cui/inc/strings.hrc:200
msgctxt "RID_SVXSTR_GALLERY_NOFILES"
msgid "<No Files>"
msgstr "<Nav datņu>"
#. AnJUu
-#: cui/inc/strings.hrc:202
+#: cui/inc/strings.hrc:201
msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
msgid "Object;Objects"
msgstr "Objekts;Objekti"
#. GQXSM
-#: cui/inc/strings.hrc:203
+#: cui/inc/strings.hrc:202
msgctxt "RID_SVXSTR_GALLERY_READONLY"
msgid "(read-only)"
msgstr "(tikai lasāms)"
#. sAwgA
-#: cui/inc/strings.hrc:204
+#: cui/inc/strings.hrc:203
msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
msgid "<All Files>"
msgstr "<Visas datnes>"
#. YkCky
-#: cui/inc/strings.hrc:205
+#: cui/inc/strings.hrc:204
msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
msgid "This ID already exists..."
msgstr "Šis ID jau pastāv..."
#. w3AUk
-#: cui/inc/strings.hrc:207
+#: cui/inc/strings.hrc:206
msgctxt "RID_MULTIPATH_DBL_ERR"
msgid "The path %1 already exists."
msgstr "Ceļš %1 jau pastāv."
#. 54BsS
-#: cui/inc/strings.hrc:208
+#: cui/inc/strings.hrc:207
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
msgid "Select Archives"
msgstr "Izvēlieties arhīvu"
#. NDB5V
-#: cui/inc/strings.hrc:209
+#: cui/inc/strings.hrc:208
msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
msgid "Archives"
msgstr "Arhīvi"
#. ffPAq
-#: cui/inc/strings.hrc:210
+#: cui/inc/strings.hrc:209
msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
msgid "The file %1 already exists."
msgstr "Datne %1 jau pastāv."
#. 5FyxP
-#: cui/inc/strings.hrc:211
+#: cui/inc/strings.hrc:210
msgctxt "RID_SVXSTR_ADD_IMAGE"
msgid "Add Image"
msgstr "Pievienot attēlu"
#. eUzGk
-#: cui/inc/strings.hrc:213
+#: cui/inc/strings.hrc:212
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 "Apstiprināšanas parole nesakrita ar paroli. Vēlreiz ievadiet paroli tā, lai abos laukos tā būtu vienāda."
#. mN9jE
-#: cui/inc/strings.hrc:214
+#: cui/inc/strings.hrc:213
msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr "Apstiprināšanas paroles nesakrita ar parolēm. Vēlreiz ievadiet paroles."
#. 48ez3
-#: cui/inc/strings.hrc:215
+#: cui/inc/strings.hrc:214
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
msgstr "Lūdzu, ievadiet paroli, lai atvērtu vai lai modificētu, vai arī atzīmējiet tikai lasīšanas opciju, lai turpinātu."
#. aAbAN
-#: cui/inc/strings.hrc:216
+#: cui/inc/strings.hrc:215
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
msgid "Set the password by entering the same password in both boxes."
msgstr "Ievadiet paroli tā, lai abos laukos tā būtu vienāda."
#. ZXcFw
-#: cui/inc/strings.hrc:217
+#: cui/inc/strings.hrc:216
msgctxt "RID_SVXSTR_PASSWORD_LEN_INDICATOR"
msgid "Password length limit of %1 reached"
msgstr "Sasniegts paroles garuma ierobežojums %1"
#. Fko49
-#: cui/inc/strings.hrc:219
+#: cui/inc/strings.hrc:218
msgctxt "STR_AUTOLINK"
msgid "Automatic"
msgstr "Automātiski"
#. WYHFb
-#: cui/inc/strings.hrc:220
+#: cui/inc/strings.hrc:219
msgctxt "STR_MANUALLINK"
msgid "Manual"
msgstr "Pašrocīgi"
#. PFN4j
-#: cui/inc/strings.hrc:221
+#: cui/inc/strings.hrc:220
msgctxt "STR_BROKENLINK"
msgid "Not available"
msgstr "Nav pieejams"
#. 5ymS3
-#: cui/inc/strings.hrc:222
+#: cui/inc/strings.hrc:221
msgctxt "STR_CLOSELINKMSG"
msgid "Are you sure you want to remove the selected link?"
msgstr "Vai tiešām vēlaties izņemt izvēlēto saiti?"
#. wyMwT
-#: cui/inc/strings.hrc:223
+#: cui/inc/strings.hrc:222
msgctxt "STR_CLOSELINKMSG_MULTI"
msgid "Are you sure you want to remove the selected link?"
msgstr "Vai tiešām vēlaties izņemt izvēlēto saiti?"
#. CN74h
-#: cui/inc/strings.hrc:224
+#: cui/inc/strings.hrc:223
msgctxt "STR_WAITINGLINK"
msgid "Waiting"
msgstr "Gaida"
#. QJKgF
-#: cui/inc/strings.hrc:226
+#: cui/inc/strings.hrc:225
msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
msgid "Save Screenshot As..."
msgstr "Saglabāt ekrānuzņēmumu kā..."
#. CAaFf
#. $(ROW) can be a number or the caption of the row in quotes
-#: cui/inc/strings.hrc:229
+#: cui/inc/strings.hrc:228
msgctxt "RID_SVXSTR_DIAGRAM_ROW"
msgid "Data Series $(ROW)"
msgstr "Datu sērijas $(ROW)"
#. HzhXp
-#: cui/inc/strings.hrc:231
+#: cui/inc/strings.hrc:230
msgctxt "RID_SVXSTR_YES"
msgid "Yes"
msgstr "Jā"
#. RuQiB
-#: cui/inc/strings.hrc:232
+#: cui/inc/strings.hrc:231
msgctxt "RID_SVXSTR_NO"
msgid "No"
msgstr "Nē"
#. irLeD
-#: cui/inc/strings.hrc:234
+#: cui/inc/strings.hrc:233
msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
msgid ""
"The file\n"
@@ -1307,7 +1301,7 @@ msgstr ""
"nepastāv."
#. iQYnX
-#: cui/inc/strings.hrc:235
+#: cui/inc/strings.hrc:234
msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
msgid ""
"The file\n"
@@ -1319,7 +1313,7 @@ msgstr ""
"nepastāv lokālajā datņu sistēmā."
#. 4PaJ2
-#: cui/inc/strings.hrc:236
+#: cui/inc/strings.hrc:235
msgctxt "STR_NAME_CONFLICT"
msgid ""
"The name '$file$' is already used for another database.\n"
@@ -1329,163 +1323,163 @@ msgstr ""
"Lūdzu, izvēlieties citu nosaukumu."
#. KFB7q
-#: cui/inc/strings.hrc:237
+#: cui/inc/strings.hrc:236
msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
msgid "Do you want to delete the entry?"
msgstr "Vai vēlaties dzēst ierakstu?"
#. gg9gD
-#: cui/inc/strings.hrc:239
+#: cui/inc/strings.hrc:238
msgctxt "RID_SVXSTR_DELQUERY"
msgid "Do you want to delete the following object?"
msgstr "Vai vēlaties dzēst sekojošo objektu?"
#. 42ivC
-#: cui/inc/strings.hrc:240
+#: cui/inc/strings.hrc:239
msgctxt "RID_SVXSTR_DELQUERY_TITLE"
msgid "Confirm Deletion"
msgstr "Apstiprināt dzēšanu"
#. kn5KE
-#: cui/inc/strings.hrc:241
+#: cui/inc/strings.hrc:240
msgctxt "RID_SVXSTR_DELFAILED"
msgid "The selected object could not be deleted."
msgstr "Nevarēja izdzēst izvēlēto objektu."
#. T7T8x
-#: cui/inc/strings.hrc:242
+#: cui/inc/strings.hrc:241
msgctxt "RID_SVXSTR_DELFAILED_TITLE"
msgid "Error Deleting Object"
msgstr "Kļūda, dzēšot objektu"
#. SCgXy
-#: cui/inc/strings.hrc:243
+#: cui/inc/strings.hrc:242
msgctxt "RID_SVXSTR_CREATEFAILED"
msgid "The object could not be created."
msgstr "Neizdevās izveidot objektu."
#. TmiCU
-#: cui/inc/strings.hrc:244
+#: cui/inc/strings.hrc:243
msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
msgid " Object with the same name already exists."
msgstr " Objekts ar tādu pašu nosaukumu jau pastāv."
#. ffc5M
-#: cui/inc/strings.hrc:245
+#: cui/inc/strings.hrc:244
msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
msgid "Error Creating Object"
msgstr "Kļūda, veidojot objektu"
#. hpB8B
-#: cui/inc/strings.hrc:246
+#: cui/inc/strings.hrc:245
msgctxt "RID_SVXSTR_RENAMEFAILED"
msgid "The object could not be renamed."
msgstr "Neizdevās pārdēvēt objektu."
#. eevjm
-#: cui/inc/strings.hrc:247
+#: cui/inc/strings.hrc:246
msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
msgid "Error Renaming Object"
msgstr "Kļūda, pārdēvējot objektu"
#. fTHFY
-#: cui/inc/strings.hrc:248
+#: cui/inc/strings.hrc:247
msgctxt "RID_SVXSTR_ERROR_TITLE"
msgid "%PRODUCTNAME Error"
msgstr "%PRODUCTNAME kļūda"
#. e6BgS
-#: cui/inc/strings.hrc:249
+#: cui/inc/strings.hrc:248
msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr "Skriptēšanas valoda %LANGUAGENAME nav atbalstīta."
#. EUek9
-#: cui/inc/strings.hrc:250
+#: cui/inc/strings.hrc:249
msgctxt "RID_SVXSTR_ERROR_RUNNING"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "Notikusi kļūda, palaižot %LANGUAGENAME skriptu %SCRIPTNAME."
#. KVQAh
-#: cui/inc/strings.hrc:251
+#: cui/inc/strings.hrc:250
msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "Palaižot %LANGUAGENAME skriptu %SCRIPTNAME, radās izņēmuma situācija."
#. 5bFCQ
-#: cui/inc/strings.hrc:252
+#: cui/inc/strings.hrc:251
msgctxt "RID_SVXSTR_ERROR_AT_LINE"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "Palaižot %LANGUAGENAME skriptu %SCRIPTNAME, rindā %LINENUMBER notikusi kļūda."
#. KTptU
-#: cui/inc/strings.hrc:253
+#: cui/inc/strings.hrc:252
msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "Palaižot %LANGUAGENAME skriptu %SCRIPTNAME, rindā %LINENUMBER radās izņēmuma situācija."
#. BZDbp
-#: cui/inc/strings.hrc:254
+#: cui/inc/strings.hrc:253
msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "Skriptēšanas struktūras kļūda radusies, palaižot %LANGUAGENAME skriptu %SCRIPTNAME."
#. AAghx
-#: cui/inc/strings.hrc:255
+#: cui/inc/strings.hrc:254
msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
msgid "Type:"
msgstr "Tips:"
#. GAsca
-#: cui/inc/strings.hrc:256
+#: cui/inc/strings.hrc:255
msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
msgid "Message:"
msgstr "Ziņojums:"
#. ZcxRY
-#: cui/inc/strings.hrc:258
+#: cui/inc/strings.hrc:257
msgctxt "RID_SVXSTR_CHG_MATH"
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr "MathType uz %PRODUCTNAME Math vai otrādi"
#. Ttggs
-#: cui/inc/strings.hrc:259
+#: cui/inc/strings.hrc:258
msgctxt "RID_SVXSTR_CHG_WRITER"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr "WinWord uz %PRODUCTNAME Writer vai otrādi"
#. ZJRKY
-#: cui/inc/strings.hrc:260
+#: cui/inc/strings.hrc:259
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr "Excel uz %PRODUCTNAME Calc vai otrādi"
#. VmuND
-#: cui/inc/strings.hrc:261
+#: cui/inc/strings.hrc:260
msgctxt "RID_SVXSTR_CHG_IMPRESS"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr "PowerPoint uz %PRODUCTNAME Impress vai otrādi"
#. sE8as
-#: cui/inc/strings.hrc:262
+#: cui/inc/strings.hrc:261
msgctxt "RID_SVXSTR_CHG_SMARTART"
msgid "SmartArt to %PRODUCTNAME shapes or reverse"
msgstr "SmartArt uz %PRODUCTNAME figūrām vai otrādi"
#. AEgXY
-#: cui/inc/strings.hrc:263
+#: cui/inc/strings.hrc:262
msgctxt "RID_SVXSTR_CHG_VISIO"
msgid "Visio to %PRODUCTNAME Draw or reverse"
msgstr "Visio uz %PRODUCTNAME Draw vai otrādi"
#. Zarkq
-#: cui/inc/strings.hrc:264
+#: cui/inc/strings.hrc:263
msgctxt "RID_SVXSTR_CHG_PDF"
msgid "PDF to %PRODUCTNAME Draw or reverse"
msgstr "PDF uz %PRODUCTNAME Draw vai otrādi"
#. dDtDU
-#: cui/inc/strings.hrc:266
+#: cui/inc/strings.hrc:265
msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
msgid ""
"The specified name already exists.\n"
@@ -1495,7 +1489,7 @@ msgstr ""
"Lūdzu, ievadiet jaunu vārdu."
#. kzhkA
-#: cui/inc/strings.hrc:267
+#: cui/inc/strings.hrc:266
msgctxt "RID_SVXSTR_OPT_INVALID_DICT_NAME"
msgid ""
"The specified name is invalid.\n"
@@ -1517,133 +1511,133 @@ msgstr ""
#. For example, adding "Grammar By" word "fund" to the new user
#. word "crowdfund", the spell checker will recognize "crowdfund"
#. with suffixes of "fund": "crowdfunding", "crowdfund's" etc.
-#: cui/inc/strings.hrc:282
+#: cui/inc/strings.hrc:281
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
msgstr "~Gramatika"
#. LPb5d
-#: cui/inc/strings.hrc:283
+#: cui/inc/strings.hrc:282
msgctxt "STR_MODIFY"
msgid "~Replace"
msgstr "~Aizstāt"
#. anivV
-#: cui/inc/strings.hrc:284
+#: cui/inc/strings.hrc:283
msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
msgid "Do you want to change the '%1' dictionary language?"
msgstr "Vai vēlaties mainīt '%1' vārdnīcas valodu?"
#. XEFrB
-#: cui/inc/strings.hrc:286
+#: cui/inc/strings.hrc:285
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
msgid "Do you really want to delete the color scheme?"
msgstr "Vai tiešām vēlaties dzēst šo krāsu shēmu?"
#. ybdED
-#: cui/inc/strings.hrc:287
+#: cui/inc/strings.hrc:286
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
msgid "Color Scheme Deletion"
msgstr "Krāsu shēmas dzēšana"
#. DoNBE
-#: cui/inc/strings.hrc:288
+#: cui/inc/strings.hrc:287
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
msgid "Save scheme"
msgstr "Saglabāt saskaņu"
#. tFrki
-#: cui/inc/strings.hrc:289
+#: cui/inc/strings.hrc:288
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
msgid "Name of color scheme"
msgstr "Krāsu shēmas nosaukums"
#. BAGbe
-#: cui/inc/strings.hrc:291
+#: cui/inc/strings.hrc:290
msgctxt "RID_SVXSTR_SPELL"
msgid "Spelling"
msgstr "Pareizrakstība"
#. uBohu
-#: cui/inc/strings.hrc:292
+#: cui/inc/strings.hrc:291
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
msgstr "Zilbjdale"
#. XGkt6
-#: cui/inc/strings.hrc:293
+#: cui/inc/strings.hrc:292
msgctxt "RID_SVXSTR_THES"
msgid "Thesaurus"
msgstr "Tēzaurs"
#. EFrDA
-#: cui/inc/strings.hrc:294
+#: cui/inc/strings.hrc:293
msgctxt "RID_SVXSTR_GRAMMAR"
msgid "Grammar"
msgstr "Gramatika"
#. zbEv9
-#: cui/inc/strings.hrc:295
+#: cui/inc/strings.hrc:294
msgctxt "RID_SVXSTR_CAPITAL_WORDS"
msgid "Check uppercase words"
msgstr "Pārbaudīt vārdus ar lielajiem burtiem"
#. BbDNe
-#: cui/inc/strings.hrc:296
+#: cui/inc/strings.hrc:295
msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
msgid "Check words with numbers "
msgstr "Pārbaudīt vārdus ar cipariem "
#. bPDyB
-#: cui/inc/strings.hrc:297
+#: cui/inc/strings.hrc:296
msgctxt "RID_SVXSTR_SPELL_SPECIAL"
msgid "Check special regions"
msgstr "Pārbaudīt īpašos reģionus"
#. XjifG
-#: cui/inc/strings.hrc:298
+#: cui/inc/strings.hrc:297
msgctxt "RID_SVXSTR_SPELL_AUTO"
msgid "Check spelling as you type"
msgstr "Pārbaudīt pareizrakstību rakstīšanas laikā"
#. J3ENq
-#: cui/inc/strings.hrc:299
+#: cui/inc/strings.hrc:298
msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
msgid "Check grammar as you type"
msgstr "Pārbaudīt gramatiku rakstīšanas laikā"
#. f6v3L
-#: cui/inc/strings.hrc:300
+#: cui/inc/strings.hrc:299
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
msgstr "Minimālais rakstzīmju skaitu zilbjdalē: "
#. BCrEf
-#: cui/inc/strings.hrc:301
+#: cui/inc/strings.hrc:300
msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
msgid "Characters before line break: "
msgstr "Rakstzīmes pirms rindas dalīšanas: "
#. Kgioh
-#: cui/inc/strings.hrc:302
+#: cui/inc/strings.hrc:301
msgctxt "RID_SVXSTR_NUM_POST_BREAK"
msgid "Characters after line break: "
msgstr "Rakstzīmes pēc rindas dalīšanas: "
#. AewrH
-#: cui/inc/strings.hrc:303
+#: cui/inc/strings.hrc:302
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
msgstr "Dalīt zilbēs bez apvaicāšanas"
#. qCKn9
-#: cui/inc/strings.hrc:304
+#: cui/inc/strings.hrc:303
msgctxt "RID_SVXSTR_HYPH_SPECIAL"
msgid "Hyphenate special regions"
msgstr "Dalīt zilbēs īpašos reģionus"
#. weKUF
-#: cui/inc/strings.hrc:306
+#: cui/inc/strings.hrc:305
msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
msgid ""
"The folder you selected does not contain a Java runtime environment.\n"
@@ -1653,7 +1647,7 @@ msgstr ""
"Lūdzu, izvēlieties citu mapi."
#. jFLdB
-#: cui/inc/strings.hrc:307
+#: cui/inc/strings.hrc:306
msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
msgid ""
"The Java runtime environment you selected is not the required version.\n"
@@ -1663,13 +1657,13 @@ msgstr ""
"Lūdzu, izvēlieties citu mapi."
#. 79uiz
-#: cui/inc/strings.hrc:308
+#: cui/inc/strings.hrc:307
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
msgstr "Rediģēt parametru"
#. fsbAN
-#: cui/inc/strings.hrc:310
+#: cui/inc/strings.hrc:309
msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
msgid ""
"Invalid value!\n"
@@ -1681,37 +1675,37 @@ msgstr ""
"Maksimālais porta skaitlis ir 65535."
#. UCFD6
-#: cui/inc/strings.hrc:312
+#: cui/inc/strings.hrc:311
msgctxt "RID_SVXSTR_DESC_GRADIENT"
msgid "Please enter a name for the gradient:"
msgstr "Lūdzu, ievadiet nosaukumu krāsu pārejai:"
#. UDvKR
-#: cui/inc/strings.hrc:313
+#: cui/inc/strings.hrc:312
msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
msgid "Please enter a name for the bitmap:"
msgstr "Lūdzu, ievadiet nosaukumu bitkartei:"
#. QXqJD
-#: cui/inc/strings.hrc:314
+#: cui/inc/strings.hrc:313
msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
msgid "Please enter a name for the external bitmap:"
msgstr "Lūdzu, ievadiet nosaukumu ārējai bitkartei:"
#. SrS6X
-#: cui/inc/strings.hrc:315
+#: cui/inc/strings.hrc:314
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
msgstr "Lūdzu, ievadiet raksta nosaukumu:"
#. yD7AW
-#: cui/inc/strings.hrc:316
+#: cui/inc/strings.hrc:315
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
msgid "Please enter a name for the line style:"
msgstr "Lūdzu, ievadiet nosaukumu līnijas stilam:"
#. FQDrh
-#: cui/inc/strings.hrc:317
+#: cui/inc/strings.hrc:316
msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
msgid ""
"The line style was modified without saving. \n"
@@ -1721,415 +1715,457 @@ msgstr ""
"Modificējiet izvēlēto līnijas stilu vai pievienojiet jaunu."
#. Z5Dkg
-#: cui/inc/strings.hrc:318
+#: cui/inc/strings.hrc:317
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
msgstr "Lūdzu, ievadiet nosaukumu svītrojumam:"
#. rvyBi
-#: cui/inc/strings.hrc:319
+#: cui/inc/strings.hrc:318
msgctxt "RID_SVXSTR_CHANGE"
msgid "Modify"
msgstr "Modificēt"
#. ZDhBm
-#: cui/inc/strings.hrc:320
+#: cui/inc/strings.hrc:319
msgctxt "RID_SVXSTR_ADD"
msgid "Add"
msgstr "Pievienot"
#. QgAFH
-#: cui/inc/strings.hrc:321
+#: cui/inc/strings.hrc:320
msgctxt "RID_SVXSTR_DESC_COLOR"
msgid "Please enter a name for the new color:"
msgstr "Lūdzu, ievadiet nosaukumu jaunajai krāsai:"
#. GKnJR
-#: cui/inc/strings.hrc:322
+#: cui/inc/strings.hrc:321
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
msgstr "Tabula"
#. J6FBw
-#: cui/inc/strings.hrc:323
+#: cui/inc/strings.hrc:322
msgctxt "RID_SVXSTR_DESC_LINEEND"
msgid "Please enter a name for the new arrowhead:"
msgstr "Lūdzu, ievadiet nosaukumu jaunajam bultas galam:"
#. xD9BU
-#: cui/inc/strings.hrc:324
+#: cui/inc/strings.hrc:323
msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
msgid "No %1"
msgstr "Nr %1"
#. GVkFG
-#: cui/inc/strings.hrc:325
+#: cui/inc/strings.hrc:324
msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
msgid "Family:"
msgstr "Saime:"
#. 6uDkp
-#: cui/inc/strings.hrc:326
+#: cui/inc/strings.hrc:325
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
msgstr "Fonts:"
#. KFXAV
-#: cui/inc/strings.hrc:327
+#: cui/inc/strings.hrc:326
msgctxt "RID_SVXSTR_CHARNAME_STYLE"
msgid "Style:"
msgstr "Stils:"
#. gDu75
-#: cui/inc/strings.hrc:328
+#: cui/inc/strings.hrc:327
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
msgstr "Burtveidols:"
#. BcWHA
-#: cui/inc/strings.hrc:329
+#: cui/inc/strings.hrc:328
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
msgstr "Lietot aizstājumu tabulu"
#. L8BEE
-#: cui/inc/strings.hrc:330
+#: cui/inc/strings.hrc:329
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
msgstr "Labot SĀkotnējos DIvus LIelos BUrtus"
#. p5h3s
-#: cui/inc/strings.hrc:331
+#: cui/inc/strings.hrc:330
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
msgstr "Visu teikumu pirmos burtus pārvērst par lielajiem"
#. prrWd
-#: cui/inc/strings.hrc:332
+#: cui/inc/strings.hrc:331
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr "Automātisks *trekns*, /kursīvs/, -pārsvītrojums- un _pasvītrojums_"
#. a89xT
-#: cui/inc/strings.hrc:333
+#: cui/inc/strings.hrc:332
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
msgstr "Ignorēt dubultas atstarpes"
#. qEA6h
-#: cui/inc/strings.hrc:334
+#: cui/inc/strings.hrc:333
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
msgstr "URL atpazīšana"
#. JfySE
-#: cui/inc/strings.hrc:335
+#: cui/inc/strings.hrc:334
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
msgstr "Aizstāt domuzīmes"
#. u2BuA
-#: cui/inc/strings.hrc:336
+#: cui/inc/strings.hrc:335
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
msgstr "Labot nejaušu taustiņa cAPS LOCK izmantošanu"
#. GZqG9
-#: cui/inc/strings.hrc:337
+#: cui/inc/strings.hrc:336
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
msgstr "Pievienot nedalāmo atstarpi pirms noteiktām interpunkcijas zīmēm franču valodas tekstos"
#. NDmW9
-#: cui/inc/strings.hrc:338
+#: cui/inc/strings.hrc:337
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr "Formatēt kārtas skaitļu sufiksus (1st -> 1^st)"
#. 6oHuF
-#: cui/inc/strings.hrc:339
+#: cui/inc/strings.hrc:338
msgctxt "RID_SVXSTR_OLD_HUNGARIAN"
msgid "Transliterate to Old Hungarian if the text direction is from right to left"
msgstr "Transliterēt uz senungāru, ja teksta virziens ir no labās uz kreiso"
#. CNtDd
-#: cui/inc/strings.hrc:340
+#: cui/inc/strings.hrc:339
#, fuzzy
msgctxt "RID_SVXSTR_ANGLE_QUOTES"
msgid "Replace << and >> with angle quotes"
msgstr "Aizstāt << un >> ar « un »"
#. Rc6Zg
-#: cui/inc/strings.hrc:341
+#: cui/inc/strings.hrc:340
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
msgid "Remove blank paragraphs"
msgstr "Izņemt tukšās rindkopas"
#. F6HCc
-#: cui/inc/strings.hrc:342
+#: cui/inc/strings.hrc:341
msgctxt "RID_SVXSTR_USER_STYLE"
msgid "Replace Custom Styles"
msgstr "Aizstāt pielāgotos stilus"
#. itDJG
-#: cui/inc/strings.hrc:343
+#: cui/inc/strings.hrc:342
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: %1"
msgstr "Aizstāt aizzīmes ar: %1"
#. BvroE
#. To translators: %1 will be replaced with a percentage, e.g. "10%"
-#: cui/inc/strings.hrc:345
+#: cui/inc/strings.hrc:344
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than %1"
msgstr "Apvienot vienrindas rindkopas, ja garums ir lielāks par %1"
#. M9kNQ
-#: cui/inc/strings.hrc:346
+#: cui/inc/strings.hrc:345
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: %1"
msgstr "Saraksti ar aizzīmēm un numurēti saraksti. Aizzīmes simbols: %1"
#. BJVGT
-#: cui/inc/strings.hrc:347
+#: cui/inc/strings.hrc:346
msgctxt "RID_SVXSTR_BORDER"
msgid "Apply border"
msgstr "Pielietot apmali"
#. bXpcq
-#: cui/inc/strings.hrc:348
+#: cui/inc/strings.hrc:347
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
msgstr "Izveidot tabulu"
#. RvEBo
-#: cui/inc/strings.hrc:349
+#: cui/inc/strings.hrc:348
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
msgstr "Pielietot stilus"
#. 6MGUe
-#: cui/inc/strings.hrc:350
+#: cui/inc/strings.hrc:349
msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr "Dzēst atstarpes un tabulācijas rindkopu sākumā un beigās"
#. R9Kke
-#: cui/inc/strings.hrc:351
+#: cui/inc/strings.hrc:350
msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
msgid "Delete spaces and tabs at end and start of line"
msgstr "Dzēst atstarpes un tabulācijas rindu sākumā un beigās"
#. GFpkR
-#: cui/inc/strings.hrc:352
+#: cui/inc/strings.hrc:351
msgctxt "RID_SVXSTR_CONNECTOR"
msgid "Connector"
msgstr "Savienotājs"
#. XDp8d
-#: cui/inc/strings.hrc:353
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_DIMENSION_LINE"
msgid "Dimension line"
msgstr "Mērlīnija"
#. Mxt3D
-#: cui/inc/strings.hrc:354
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
msgstr "Sākuma pēdiņa"
#. o8nY6
-#: cui/inc/strings.hrc:355
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "Beigu pēdiņa"
#. cZX7G
-#: cui/inc/strings.hrc:357
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Nav ēnas"
#. bzAHG
-#: cui/inc/strings.hrc:358
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Mest ēnu uz leju/pa labi"
#. FjBGC
-#: cui/inc/strings.hrc:359
+#: cui/inc/strings.hrc:358
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Mest ēnu uz augšu/pa labi"
#. 5BkoC
-#: cui/inc/strings.hrc:360
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Mest ēnu uz leju/pa kreisi"
#. GYB8M
-#: cui/inc/strings.hrc:361
+#: cui/inc/strings.hrc:360
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Mest ēnu uz augšu/pa kreisi"
#. xTvak
-#: cui/inc/strings.hrc:362
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Parakstījis: %1"
#. Uc7wm
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Visas datnes"
#. 8bnrf
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:365
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Reģistrētās datubāzes"
#. xySty
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:367
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr "URL <%1> nevar tikt pārveidots par datņu sistēmas ceļu."
#. ZzTBf
-#: cui/inc/strings.hrc:370
+#: cui/inc/strings.hrc:369
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2022 LibreOffice contributors."
msgstr "Autortiesības © 2000–2022 LibreOffice veidotāji."
-#. GesDU
-#: cui/inc/strings.hrc:371
-msgctxt "aboutdialog|link"
-msgid "https://www.libreoffice.org/about-us/credits/"
-msgstr "https://www.libreoffice.org/about-us/credits/"
-
#. WCnhx
-#: cui/inc/strings.hrc:372
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Šo laidienu nodrošina %OOOVENDOR."
#. Lz9nx
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:371
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice bija veidots uz OpenOffice.org pamata."
#. 9aeNR
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:372
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr "%PRODUCTNAME ir atvasināts no LibreOffice, kas tika veidots uz OpenOffice.org pamata"
#. q5Myk
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:373
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr "Lietotāja saskarne: $LOCALE"
#. 3vXzF
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:375
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "Rediģēt ceļus: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr "Etiķete"
#. GceL6
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr "Komanda"
#. dRqYc
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr "Paskaidre"
#. NBDBv
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_COMMANDEXPERIMENTAL"
msgid "Experimental"
msgstr ""
#. 3FZFt
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr "Vietrādis URL vai teksts ir pārāk garš pašreizējam kļūdu labošanas līmenim. Vai nu saīsiniet tekstu, vai samaziniet labošanas līmeni."
#. AD8QJ
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr "Jūs varat dzēst tikai lietotāja definētās krāsas"
#. 4LWGV
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr "Lūdzu, izvēlieties dzēšamo krāsu"
#. FjQQ5
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr "Instalēt"
#. 2GUFq
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr ""
#. TmK5f
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr ""
#. izdAK
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr "Meklē..."
#. HYT6K
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:390
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr "Ielādē..."
#. 88Ect
-#: cui/inc/strings.hrc:393
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr "Paplašinājumi"
-#. KTtQE
+#. LWw9B
+#: cui/inc/strings.hrc:392
+msgctxt "RID_SVXSTR_ADDITIONS_DICTIONARY"
+msgid "Extensions: Dictionary"
+msgstr ""
+
+#. MEZpu
+#: cui/inc/strings.hrc:393
+msgctxt "RID_SVXSTR_ADDITIONS_GALLERY"
+msgid "Extensions: Gallery"
+msgstr ""
+
+#. R8obE
+#: cui/inc/strings.hrc:394
+msgctxt "RID_SVXSTR_ADDITIONS_ICONS"
+msgid "Extensions: Icons"
+msgstr ""
+
+#. AqGWn
#: cui/inc/strings.hrc:395
+msgctxt "RID_SVXSTR_ADDITIONS_PALETTES"
+msgid "Extensions: Color Palette"
+msgstr ""
+
+#. mncuJ
+#: cui/inc/strings.hrc:396
+msgctxt "RID_SVXSTR_ADDITIONS_TEMPLATES"
+msgid "Extensions: Templates"
+msgstr ""
+
+#. KTtQE
+#: cui/inc/strings.hrc:398
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr ""
#. Xr3W9
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:400
msgctxt "RID_SVXSTR_OLE_INSERT"
msgid "Inserting OLE object..."
msgstr ""
+#. QMiCF
+#: cui/inc/strings.hrc:402
+msgctxt "RID_CUISTR_CLICK_RESULT"
+msgid "(Click on any test to view its resultant bitmap image)"
+msgstr ""
+
+#. YFfQV
+#: cui/inc/strings.hrc:403
+msgctxt "RID_CUISTR_ZIPFAIL"
+msgid "Creation of Zip file failed!"
+msgstr ""
+
+#. 9QSQr
+#: cui/inc/strings.hrc:404
+msgctxt "RID_CUISTR_SAVED"
+msgid "The results have been successfully saved in the file 'GraphicTestResults.zip'!"
+msgstr ""
+
#. mpS3V
#: cui/inc/tipoftheday.hrc:50
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -3617,547 +3653,547 @@ msgid "The Contextual Groups interface focuses on beginners. It exposes the most
msgstr ""
#. Xnz8J
-#: cui/inc/treeopt.hrc:33
+#: cui/inc/treeopt.hrc:34
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
#. CaEWP
-#: cui/inc/treeopt.hrc:34
+#: cui/inc/treeopt.hrc:35
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "User Data"
msgstr "Lietotāja dati"
#. 7XYLG
-#: cui/inc/treeopt.hrc:35
+#: cui/inc/treeopt.hrc:36
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "General"
msgstr "Vispārēji"
#. HCH7S
-#: cui/inc/treeopt.hrc:36
+#: cui/inc/treeopt.hrc:37
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "View"
msgstr "Skats"
#. HCLxc
-#: cui/inc/treeopt.hrc:37
+#: cui/inc/treeopt.hrc:38
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Print"
msgstr "Drukāt"
#. zuF6E
-#: cui/inc/treeopt.hrc:38
+#: cui/inc/treeopt.hrc:39
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Paths"
msgstr "Ceļi"
#. cSVdD
-#: cui/inc/treeopt.hrc:39
+#: cui/inc/treeopt.hrc:40
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Fonts"
msgstr "Fonti"
#. XnLRt
-#: cui/inc/treeopt.hrc:40
+#: cui/inc/treeopt.hrc:41
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Security"
msgstr "Drošība"
#. ZhEG3
-#: cui/inc/treeopt.hrc:41
+#: cui/inc/treeopt.hrc:42
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Personalization"
msgstr "Personalizācija"
#. DLfE7
-#: cui/inc/treeopt.hrc:42
+#: cui/inc/treeopt.hrc:43
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Application Colors"
msgstr "Lietotnes krāsas"
#. hh7Mg
-#: cui/inc/treeopt.hrc:43
+#: cui/inc/treeopt.hrc:44
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Accessibility"
msgstr "Pieejamība"
#. oUTLV
-#: cui/inc/treeopt.hrc:44
+#: cui/inc/treeopt.hrc:45
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Advanced"
msgstr "Paplašināti"
#. QR2hr
-#: cui/inc/treeopt.hrc:45
+#: cui/inc/treeopt.hrc:46
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Basic IDE"
msgstr "Basic IDE"
#. ZS4Sx
-#: cui/inc/treeopt.hrc:46
+#: cui/inc/treeopt.hrc:47
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Online Update"
msgstr "Tiešsaistes atjaunināšana"
#. 8CCRN
-#: cui/inc/treeopt.hrc:47
+#: cui/inc/treeopt.hrc:48
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "OpenCL"
msgstr "OpenCL"
#. VNpPF
-#: cui/inc/treeopt.hrc:52
+#: cui/inc/treeopt.hrc:53
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Language Settings"
msgstr "Valodas iestatījumi"
#. JmAVh
-#: cui/inc/treeopt.hrc:53
+#: cui/inc/treeopt.hrc:54
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Languages"
msgstr "Valodas"
#. HEzGc
-#: cui/inc/treeopt.hrc:54
+#: cui/inc/treeopt.hrc:55
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Writing Aids"
msgstr "Rakstīšanas palīdzība"
#. DLJAB
-#: cui/inc/treeopt.hrc:55
+#: cui/inc/treeopt.hrc:56
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Searching in Japanese"
msgstr "Meklēšana japāņu valodā"
#. dkSs5
-#: cui/inc/treeopt.hrc:56
+#: cui/inc/treeopt.hrc:57
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Asian Layout"
msgstr "Āzijas izkārtojums"
#. VsApk
-#: cui/inc/treeopt.hrc:57
+#: cui/inc/treeopt.hrc:58
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Complex Text Layout"
msgstr "Kompleksā teksta izkārtojums"
#. TGnig
-#: cui/inc/treeopt.hrc:62
+#: cui/inc/treeopt.hrc:63
msgctxt "SID_INET_DLG_RES"
msgid "Internet"
msgstr "Internets"
#. QJNEE
-#: cui/inc/treeopt.hrc:63
+#: cui/inc/treeopt.hrc:64
msgctxt "SID_INET_DLG_RES"
msgid "Proxy"
msgstr "Starpnieks"
#. EhHFs
-#: cui/inc/treeopt.hrc:64
+#: cui/inc/treeopt.hrc:65
msgctxt "SID_INET_DLG_RES"
msgid "Email"
msgstr "E-pasts"
#. 4Cajf
-#: cui/inc/treeopt.hrc:69
+#: cui/inc/treeopt.hrc:70
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Writer"
msgstr "%PRODUCTNAME Writer"
#. CtZCN
-#: cui/inc/treeopt.hrc:70
+#: cui/inc/treeopt.hrc:71
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "General"
msgstr "Vispārēji"
#. t9DgE
-#: cui/inc/treeopt.hrc:71
+#: cui/inc/treeopt.hrc:72
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "View"
msgstr "Skats"
#. MxbiL
-#: cui/inc/treeopt.hrc:72
+#: cui/inc/treeopt.hrc:73
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Formatting Aids"
msgstr "Formatēšanas palīdzība"
#. V3usW
-#: cui/inc/treeopt.hrc:73
+#: cui/inc/treeopt.hrc:74
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Grid"
msgstr "Režģis"
#. Cc2Ka
-#: cui/inc/treeopt.hrc:74
+#: cui/inc/treeopt.hrc:75
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (Western)"
msgstr "Pamata fonti (Rietumu)"
#. TDUti
-#: cui/inc/treeopt.hrc:75
+#: cui/inc/treeopt.hrc:76
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (Asian)"
msgstr "Pamata fonti (Āzijas)"
#. nfHR8
-#: cui/inc/treeopt.hrc:76
+#: cui/inc/treeopt.hrc:77
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (CTL)"
msgstr "Pamata fonti (CTL)"
#. 38A6E
-#: cui/inc/treeopt.hrc:77
+#: cui/inc/treeopt.hrc:78
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Print"
msgstr "Drukāt"
#. UCGLq
-#: cui/inc/treeopt.hrc:78
+#: cui/inc/treeopt.hrc:79
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Table"
msgstr "Tabula"
#. NVRAk
-#: cui/inc/treeopt.hrc:79
+#: cui/inc/treeopt.hrc:80
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Changes"
msgstr "Izmaiņas"
#. 3DyC7
-#: cui/inc/treeopt.hrc:80
+#: cui/inc/treeopt.hrc:81
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Comparison"
msgstr "Salīdzināšana"
#. AtMGC
-#: cui/inc/treeopt.hrc:81
+#: cui/inc/treeopt.hrc:82
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Compatibility"
msgstr "Savietojamība"
#. byMJP
-#: cui/inc/treeopt.hrc:82
+#: cui/inc/treeopt.hrc:83
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "AutoCaption"
msgstr "Automātisks paraksts"
#. aGnq6
-#: cui/inc/treeopt.hrc:83
+#: cui/inc/treeopt.hrc:84
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Mail Merge Email"
msgstr "Vēstuļu sapludināšanas e-pasts"
#. trEVm
-#: cui/inc/treeopt.hrc:88
+#: cui/inc/treeopt.hrc:89
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "%PRODUCTNAME Writer/Web"
msgstr "%PRODUCTNAME Writer/Web"
#. BZ7BG
-#: cui/inc/treeopt.hrc:89
+#: cui/inc/treeopt.hrc:90
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "View"
msgstr "Skats"
#. 3q8qM
-#: cui/inc/treeopt.hrc:90
+#: cui/inc/treeopt.hrc:91
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Formatting Aids"
msgstr "Formatēšanas palīdzība"
#. 9fj7Y
-#: cui/inc/treeopt.hrc:91
+#: cui/inc/treeopt.hrc:92
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Grid"
msgstr "Režģis"
#. stfD4
-#: cui/inc/treeopt.hrc:92
+#: cui/inc/treeopt.hrc:93
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Print"
msgstr "Drukāt"
#. KpkDS
-#: cui/inc/treeopt.hrc:93
+#: cui/inc/treeopt.hrc:94
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Table"
msgstr "Tabula"
#. 9NS67
-#: cui/inc/treeopt.hrc:94
+#: cui/inc/treeopt.hrc:95
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Background"
msgstr "Fons"
#. 9WCAp
-#: cui/inc/treeopt.hrc:99
+#: cui/inc/treeopt.hrc:100
msgctxt "SID_SM_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Math"
msgstr "%PRODUCTNAME Math"
#. rFHDF
-#: cui/inc/treeopt.hrc:100
+#: cui/inc/treeopt.hrc:101
msgctxt "SID_SM_EDITOPTIONS_RES"
msgid "Settings"
msgstr "Iestatījumi"
#. vk6jX
-#: cui/inc/treeopt.hrc:105
+#: cui/inc/treeopt.hrc:106
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Calc"
msgstr "%PRODUCTNAME Calc"
#. xe2ry
-#: cui/inc/treeopt.hrc:106
+#: cui/inc/treeopt.hrc:107
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "General"
msgstr "Vispārēji"
#. xE8RH
-#: cui/inc/treeopt.hrc:107
+#: cui/inc/treeopt.hrc:108
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Defaults"
msgstr "Noklusējumi"
#. ufTM2
-#: cui/inc/treeopt.hrc:108
+#: cui/inc/treeopt.hrc:109
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "View"
msgstr "Skats"
#. QMCfy
-#: cui/inc/treeopt.hrc:109
+#: cui/inc/treeopt.hrc:110
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Calculate"
msgstr "Aprēķināt"
#. oq8xG
-#: cui/inc/treeopt.hrc:110
+#: cui/inc/treeopt.hrc:111
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Formula"
msgstr "Formula"
#. HUUQP
-#: cui/inc/treeopt.hrc:111
+#: cui/inc/treeopt.hrc:112
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Sort Lists"
msgstr "Kārtošanas saraksti"
#. bostB
-#: cui/inc/treeopt.hrc:112
+#: cui/inc/treeopt.hrc:113
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Changes"
msgstr "Izmaiņas"
#. WVbFZ
-#: cui/inc/treeopt.hrc:113
+#: cui/inc/treeopt.hrc:114
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Compatibility"
msgstr "Savietojamība"
#. UZGDj
-#: cui/inc/treeopt.hrc:114
+#: cui/inc/treeopt.hrc:115
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Grid"
msgstr "Režģis"
#. wrdFF
-#: cui/inc/treeopt.hrc:115
+#: cui/inc/treeopt.hrc:116
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Print"
msgstr "Drukāt"
#. EeKzo
-#: cui/inc/treeopt.hrc:120
+#: cui/inc/treeopt.hrc:121
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Impress"
msgstr "%PRODUCTNAME Impress"
#. GxFDj
-#: cui/inc/treeopt.hrc:121
+#: cui/inc/treeopt.hrc:122
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "General"
msgstr "Vispārēji"
#. unCEW
-#: cui/inc/treeopt.hrc:122
+#: cui/inc/treeopt.hrc:123
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "View"
msgstr "Skats"
#. UxXLE
-#: cui/inc/treeopt.hrc:123
+#: cui/inc/treeopt.hrc:124
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "Grid"
msgstr "Režģis"
#. DLCS4
-#: cui/inc/treeopt.hrc:124
+#: cui/inc/treeopt.hrc:125
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "Print"
msgstr "Drukāt"
#. wZWAL
-#: cui/inc/treeopt.hrc:129
+#: cui/inc/treeopt.hrc:130
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "%PRODUCTNAME Draw"
msgstr "%PRODUCTNAME Draw"
#. B9gGf
-#: cui/inc/treeopt.hrc:130
+#: cui/inc/treeopt.hrc:131
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "General"
msgstr "Vispārēji"
#. oiiBb
-#: cui/inc/treeopt.hrc:131
+#: cui/inc/treeopt.hrc:132
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "View"
msgstr "Skats"
#. et8PK
-#: cui/inc/treeopt.hrc:132
+#: cui/inc/treeopt.hrc:133
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "Grid"
msgstr "Režģis"
#. oGTEW
-#: cui/inc/treeopt.hrc:133
+#: cui/inc/treeopt.hrc:134
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "Print"
msgstr "Drukāt"
#. BECZi
-#: cui/inc/treeopt.hrc:138
+#: cui/inc/treeopt.hrc:139
msgctxt "SID_SCH_EDITOPTIONS_RES"
msgid "Charts"
msgstr "Diagrammas"
#. XAhzo
-#: cui/inc/treeopt.hrc:139
+#: cui/inc/treeopt.hrc:140
msgctxt "SID_SCH_EDITOPTIONS_RES"
msgid "Default Colors"
msgstr "Noklusējuma krāsas"
#. oUBac
-#: cui/inc/treeopt.hrc:144
+#: cui/inc/treeopt.hrc:145
msgctxt "SID_FILTER_DLG_RES"
msgid "Load/Save"
msgstr "Ielādēt/saglabāt"
#. 3go3N
-#: cui/inc/treeopt.hrc:145
+#: cui/inc/treeopt.hrc:146
msgctxt "SID_FILTER_DLG_RES"
msgid "General"
msgstr "Vispārēji"
#. 9aX4K
-#: cui/inc/treeopt.hrc:146
+#: cui/inc/treeopt.hrc:147
msgctxt "SID_FILTER_DLG_RES"
msgid "VBA Properties"
msgstr "VBA īpašības"
#. oAGDd
-#: cui/inc/treeopt.hrc:147
+#: cui/inc/treeopt.hrc:148
msgctxt "SID_FILTER_DLG_RES"
msgid "Microsoft Office"
msgstr "Microsoft Office"
#. UtTyJ
-#: cui/inc/treeopt.hrc:148
+#: cui/inc/treeopt.hrc:149
msgctxt "SID_FILTER_DLG_RES"
msgid "HTML Compatibility"
msgstr "HTML savietojamība"
#. Qysp7
-#: cui/inc/treeopt.hrc:153
+#: cui/inc/treeopt.hrc:154
msgctxt "SID_SB_STARBASEOPTIONS_RES"
msgid "%PRODUCTNAME Base"
msgstr "%PRODUCTNAME Base"
#. 78XBF
-#: cui/inc/treeopt.hrc:154
+#: cui/inc/treeopt.hrc:155
msgctxt "SID_SB_STARBASEOPTIONS_RES"
msgid "Connections"
msgstr "Savienojumi"
#. 54yat
-#: cui/inc/treeopt.hrc:155
+#: cui/inc/treeopt.hrc:156
msgctxt "SID_SB_STARBASEOPTIONS_RES"
msgid "Databases"
msgstr "Datubāzes"
#. NFYmd
-#: cui/inc/twolines.hrc:27
+#: cui/inc/twolines.hrc:28
msgctxt "twolinespage|liststore1"
msgid "(None)"
msgstr "(Nav)"
#. oUwW4
-#: cui/inc/twolines.hrc:28
+#: cui/inc/twolines.hrc:29
msgctxt "twolinespage|liststore1"
msgid "("
msgstr "("
#. mSyZB
-#: cui/inc/twolines.hrc:29
+#: cui/inc/twolines.hrc:30
msgctxt "twolinespage|liststore1"
msgid "["
msgstr "["
#. aDAks
-#: cui/inc/twolines.hrc:30
+#: cui/inc/twolines.hrc:31
msgctxt "twolinespage|liststore1"
msgid "<"
msgstr "<"
#. uVPNB
-#: cui/inc/twolines.hrc:31
+#: cui/inc/twolines.hrc:32
msgctxt "twolinespage|liststore1"
msgid "{"
msgstr "{"
#. 6TmK5
-#: cui/inc/twolines.hrc:32
+#: cui/inc/twolines.hrc:33
msgctxt "twolinespage|liststore1"
msgid "Other Characters..."
msgstr "Citas rakstzīmes..."
#. ycpAX
-#: cui/inc/twolines.hrc:37
+#: cui/inc/twolines.hrc:38
msgctxt "twolinespage|liststore2"
msgid "(None)"
msgstr "(Nav)"
#. ts6EG
-#: cui/inc/twolines.hrc:38
+#: cui/inc/twolines.hrc:39
msgctxt "twolinespage|liststore2"
msgid ")"
msgstr ")"
#. REFgT
-#: cui/inc/twolines.hrc:39
+#: cui/inc/twolines.hrc:40
msgctxt "twolinespage|liststore2"
msgid "]"
msgstr "]"
#. wFPzF
-#: cui/inc/twolines.hrc:40
+#: cui/inc/twolines.hrc:41
msgctxt "twolinespage|liststore2"
msgid ">"
msgstr ">"
#. HFeFt
-#: cui/inc/twolines.hrc:41
+#: cui/inc/twolines.hrc:42
msgctxt "twolinespage|liststore2"
msgid "}"
msgstr "}"
#. YcMQR
-#: cui/inc/twolines.hrc:42
+#: cui/inc/twolines.hrc:43
msgctxt "twolinespage|liststore2"
msgid "Other Characters..."
msgstr "Citas rakstzīmes..."
@@ -4356,10 +4392,10 @@ msgctxt "accelconfigpage|office"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#. Bgzqd
+#. oakFo
#: cui/uiconfig/ui/accelconfigpage.ui:164
msgctxt "accelconfigpage|extended_tip|office"
-msgid "Displays shortcut keys that are common to all %PRODUCTNAME applications."
+msgid "Displays shortcut keys that are common to all the office suite applications."
msgstr ""
#. jjhUE
@@ -4368,10 +4404,10 @@ msgctxt "accelconfigpage|module"
msgid "$(MODULE)"
msgstr "$(MODULE)"
-#. VnoU5
+#. 6UUdW
#: cui/uiconfig/ui/accelconfigpage.ui:185
msgctxt "accelconfigpage|extended_tip|module"
-msgid "Displays shortcut keys for the current %PRODUCTNAME application."
+msgid "Displays shortcut keys for the current office suite application."
msgstr ""
#. R2nhJ
@@ -4476,16 +4512,16 @@ msgctxt "accelconfigpage|label22"
msgid "F_unctions"
msgstr "F_unkcijas"
-#. YDyhc
+#. kVeWd
#: cui/uiconfig/ui/accelconfigpage.ui:576
msgctxt "accelconfigpage|extended_tip|AccelConfigPage"
-msgid "Assigns or edits the shortcut keys for %PRODUCTNAME commands, or %PRODUCTNAME Basic macros."
+msgid "Assigns or edits the shortcut keys for the office suite commands, or Basic macros."
msgstr ""
-#. FAPZ6
+#. 3zZvu
#: cui/uiconfig/ui/acorexceptpage.ui:56
msgctxt "acorexceptpage|extended_tip|abbrev"
-msgid "Type an abbreviation followed by a period, and then click New. This prevents %PRODUCTNAME from automatically capitalizing the first letter of the word that comes after the period at the end of the abbreviation."
+msgid "Type an abbreviation followed by a period, and then click New. This prevents automatic capitalization of the first letter of the word that comes after the period at the end of the abbreviation."
msgstr ""
#. GUtft
@@ -4536,10 +4572,10 @@ msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr "Saīsināšana (bez sekojošiem lieliem burtiem)"
-#. N9SbP
+#. oDBsM
#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
-msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
+msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want automatically changed to one initial capital. For example, enter PC to prevent a change from PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr ""
#. kAzxB
@@ -4590,10 +4626,10 @@ msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr "Vārdi ar DIviem LIelajiem BUrtiem vai mAZO bURTU sākumā"
-#. 4qMgn
+#. UCDeF
#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
-msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
+msgid "Specify the abbreviations or letter combinations that you do not want corrected automatically."
msgstr ""
#. Cd7nJ
@@ -6568,193 +6604,199 @@ msgid "Select or add the correct Network Security Services Certificate directory
msgstr ""
#. xXVpD
-#: cui/uiconfig/ui/charnamepage.ui:234
+#: cui/uiconfig/ui/charnamepage.ui:238
msgctxt "charnamepage|extended_tip|weststylelb-nocjk"
msgid "Select the formatting that you want to apply."
msgstr ""
#. MR6Nr
-#: cui/uiconfig/ui/charnamepage.ui:324
+#: cui/uiconfig/ui/charnamepage.ui:328
msgctxt "charnamepage|extended_tip|westsizelb-nocjk"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
msgstr ""
#. YcKtn
-#: cui/uiconfig/ui/charnamepage.ui:354
+#: cui/uiconfig/ui/charnamepage.ui:358
msgctxt "charnamepage|westsizeft-nocjk"
msgid "Size:"
msgstr "Izmērs:"
#. WQxtG
-#: cui/uiconfig/ui/charnamepage.ui:380
+#: cui/uiconfig/ui/charnamepage.ui:384
msgctxt "charnamepage|westlangft-nocjk"
msgid "Language:"
msgstr "Valoda:"
#. 63kyg
-#: cui/uiconfig/ui/charnamepage.ui:416
+#: cui/uiconfig/ui/charnamepage.ui:420
msgctxt "charnamepage|extended_tip|westlanglb-nocjk"
msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
msgstr ""
#. NgZJ9
-#: cui/uiconfig/ui/charnamepage.ui:435
+#: cui/uiconfig/ui/charnamepage.ui:439
msgctxt "charnamepage|west_features_button-nocjk"
msgid "Features..."
msgstr "Iespējas..."
-#. nKfjE
-#: cui/uiconfig/ui/charnamepage.ui:511
-msgctxt "charnamepage|westsizeft-cjk"
-msgid "Size:"
-msgstr "Izmērs:"
-
#. jJc8T
-#: cui/uiconfig/ui/charnamepage.ui:525
+#: cui/uiconfig/ui/charnamepage.ui:515
msgctxt "charnamepage|westlangft-cjk"
msgid "Language:"
msgstr "Valoda:"
+#. zCCrx
+#: cui/uiconfig/ui/charnamepage.ui:541
+msgctxt "charnamepage|extended_tip|westlanglb-cjk"
+msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
+msgstr ""
+
#. PEg2a
-#: cui/uiconfig/ui/charnamepage.ui:568
+#: cui/uiconfig/ui/charnamepage.ui:584
msgctxt "charnamepage|extended_tip|weststylelb-cjk"
msgid "Select the formatting that you want to apply."
msgstr ""
+#. nKfjE
+#: cui/uiconfig/ui/charnamepage.ui:598
+msgctxt "charnamepage|westsizeft-cjk"
+msgid "Size:"
+msgstr "Izmērs:"
+
#. 8quPQ
-#: cui/uiconfig/ui/charnamepage.ui:591
+#: cui/uiconfig/ui/charnamepage.ui:615
msgctxt "charnamepage|extended_tip|westsizelb-cjk"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
msgstr ""
-#. zCCrx
-#: cui/uiconfig/ui/charnamepage.ui:623
-msgctxt "charnamepage|extended_tip|westlanglb-cjk"
-msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
-msgstr ""
-
#. qpSnT
-#: cui/uiconfig/ui/charnamepage.ui:652
+#: cui/uiconfig/ui/charnamepage.ui:640
msgctxt "charnamepage|west_features_button-cjk"
msgid "Features..."
msgstr "Iespējas..."
-#. LYK4e
-#: cui/uiconfig/ui/charnamepage.ui:676
-msgctxt "charnamepage|label4"
-msgid "Western Text Font"
-msgstr "Rietumu teksta fonts"
+#. UZL8k
+#: cui/uiconfig/ui/charnamepage.ui:660
+msgctxt "charnamepage|tab_western"
+msgid "Western"
+msgstr ""
#. q4WZB
-#: cui/uiconfig/ui/charnamepage.ui:738
+#: cui/uiconfig/ui/charnamepage.ui:697
msgctxt "charnamepage|eastsizeft"
msgid "Size:"
msgstr "Izmērs:"
#. 6MVEP
-#: cui/uiconfig/ui/charnamepage.ui:752
+#: cui/uiconfig/ui/charnamepage.ui:711
msgctxt "charnamepage|eastlangft"
msgid "Language:"
msgstr "Valoda:"
#. BhQZB
-#: cui/uiconfig/ui/charnamepage.ui:795
+#: cui/uiconfig/ui/charnamepage.ui:741
msgctxt "charnamepage|extended_tip|eaststylelb"
msgid "Select the formatting that you want to apply."
msgstr ""
#. JSR99
-#: cui/uiconfig/ui/charnamepage.ui:818
+#: cui/uiconfig/ui/charnamepage.ui:758
msgctxt "charnamepage|extended_tip|eastsizelb"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
msgstr ""
#. KLJQT
-#: cui/uiconfig/ui/charnamepage.ui:848
+#: cui/uiconfig/ui/charnamepage.ui:789
msgctxt "charnamepage|extended_tip|eastlanglb"
msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
msgstr ""
#. 5uQYn
-#: cui/uiconfig/ui/charnamepage.ui:876
+#: cui/uiconfig/ui/charnamepage.ui:828
msgctxt "charnamepage|east_features_button"
msgid "Features..."
msgstr "Iespējas..."
-#. vAo4E
-#: cui/uiconfig/ui/charnamepage.ui:900
-msgctxt "charnamepage|label5"
-msgid "Asian Text Font"
-msgstr "Āzijas teksta formāts"
+#. 9Ftgy
+#: cui/uiconfig/ui/charnamepage.ui:851
+msgctxt "charnamepage|tab_asian"
+msgid "Asian"
+msgstr ""
#. FSm5y
-#: cui/uiconfig/ui/charnamepage.ui:962
+#: cui/uiconfig/ui/charnamepage.ui:903
msgctxt "charnamepage|ctlsizeft"
msgid "Size:"
msgstr "Izmērs:"
-#. j6bmf
-#: cui/uiconfig/ui/charnamepage.ui:976
-msgctxt "charnamepage|ctllangft"
-msgid "Language:"
-msgstr "Valoda:"
-
#. 64NvC
-#: cui/uiconfig/ui/charnamepage.ui:1019
+#: cui/uiconfig/ui/charnamepage.ui:933
msgctxt "charnamepage|extended_tip|ctlstylelb"
msgid "Select the formatting that you want to apply."
msgstr ""
#. CeMCG
-#: cui/uiconfig/ui/charnamepage.ui:1042
+#: cui/uiconfig/ui/charnamepage.ui:950
msgctxt "charnamepage|extended_tip|ctlsizelb"
msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
msgstr ""
#. zCKxL
-#: cui/uiconfig/ui/charnamepage.ui:1072
+#: cui/uiconfig/ui/charnamepage.ui:981
msgctxt "charnamepage|extended_tip|ctllanglb"
msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
msgstr ""
#. Nobqa
-#: cui/uiconfig/ui/charnamepage.ui:1101
+#: cui/uiconfig/ui/charnamepage.ui:1006
msgctxt "charnamepage|ctl_features_button"
msgid "Features..."
msgstr "Iespējas..."
-#. C8hPj
-#: cui/uiconfig/ui/charnamepage.ui:1125
-msgctxt "charnamepage|label6"
-msgid "CTL Font"
-msgstr "CTL fonts"
+#. j6bmf
+#: cui/uiconfig/ui/charnamepage.ui:1021
+msgctxt "charnamepage|ctllangft"
+msgid "Language:"
+msgstr "Valoda:"
+
+#. aVc3Q
+#: cui/uiconfig/ui/charnamepage.ui:1043
+msgctxt "charnamepage|tab_complex"
+msgid "Complex"
+msgstr ""
+
+#. Qju7H
+#: cui/uiconfig/ui/charnamepage.ui:1056
+msgctxt "charnamepage|label4"
+msgid "Text Font"
+msgstr ""
#. RyyME
-#: cui/uiconfig/ui/charnamepage.ui:1159
+#: cui/uiconfig/ui/charnamepage.ui:1090
msgctxt "charnamepage|preview-atkobject"
msgid "Preview"
msgstr "Priekšskatījums"
#. kbQzU
-#: cui/uiconfig/ui/charnamepage.ui:1176
+#: cui/uiconfig/ui/charnamepage.ui:1107
msgctxt "charnamepage|extended_tip|CharNamePage"
msgid "Specify the formatting and the font that you want to apply."
msgstr ""
#. CQrvm
-#: cui/uiconfig/ui/colorconfigwin.ui:34
+#: cui/uiconfig/ui/colorconfigwin.ui:35
msgctxt "colorconfigwin|doccolor"
msgid "Document background"
msgstr "Dokumenta fons"
#. LE7Wp
-#: cui/uiconfig/ui/colorconfigwin.ui:65
+#: cui/uiconfig/ui/colorconfigwin.ui:64
msgctxt "colorconfigwin|docboundaries"
msgid "Text boundaries"
msgstr "Teksta robežas"
#. Df2ut
-#: cui/uiconfig/ui/colorconfigwin.ui:97
+#: cui/uiconfig/ui/colorconfigwin.ui:96
msgctxt "colorconfigwin|docboundaries_lb"
msgid "Text boundaries color"
msgstr ""
@@ -6766,373 +6808,385 @@ msgid "Application background"
msgstr "Lietotnes fons"
#. XAMAa
-#: cui/uiconfig/ui/colorconfigwin.ui:141
+#: cui/uiconfig/ui/colorconfigwin.ui:139
msgctxt "colorconfigwin|objboundaries"
msgid "Object boundaries"
msgstr "Objekta robežas"
#. ubeED
-#: cui/uiconfig/ui/colorconfigwin.ui:173
+#: cui/uiconfig/ui/colorconfigwin.ui:171
msgctxt "colorconfigwin|objboundaries_lb"
msgid "Object boundaries color"
msgstr ""
#. KsUa5
-#: cui/uiconfig/ui/colorconfigwin.ui:184
+#: cui/uiconfig/ui/colorconfigwin.ui:182
msgctxt "colorconfigwin|tblboundaries"
msgid "Table boundaries"
msgstr "Tabulas robežas"
#. uJLG6
-#: cui/uiconfig/ui/colorconfigwin.ui:216
+#: cui/uiconfig/ui/colorconfigwin.ui:214
msgctxt "colorconfigwin|tblboundaries_lb"
msgid "Table boundaries color"
msgstr ""
#. TkNp4
-#: cui/uiconfig/ui/colorconfigwin.ui:230
+#: cui/uiconfig/ui/colorconfigwin.ui:229
msgctxt "colorconfigwin|font"
msgid "Font color"
msgstr "Fonta krāsa"
#. EhDTB
-#: cui/uiconfig/ui/colorconfigwin.ui:260
+#: cui/uiconfig/ui/colorconfigwin.ui:257
msgctxt "colorconfigwin|unvisitedlinks"
msgid "Unvisited links"
msgstr "Neapmeklētās saites"
#. DySTC
-#: cui/uiconfig/ui/colorconfigwin.ui:292
+#: cui/uiconfig/ui/colorconfigwin.ui:289
msgctxt "colorconfigwin|unvisitedlinks_lb"
msgid "Unvisited links color"
msgstr ""
#. UTPiE
-#: cui/uiconfig/ui/colorconfigwin.ui:303
+#: cui/uiconfig/ui/colorconfigwin.ui:300
msgctxt "colorconfigwin|visitedlinks"
msgid "Visited links"
msgstr "Apmeklētās saites"
#. NmbCZ
-#: cui/uiconfig/ui/colorconfigwin.ui:335
+#: cui/uiconfig/ui/colorconfigwin.ui:332
msgctxt "colorconfigwin|visitedlinks_lb"
msgid "Visited links color"
msgstr ""
#. RP2Vp
-#: cui/uiconfig/ui/colorconfigwin.ui:349
+#: cui/uiconfig/ui/colorconfigwin.ui:347
msgctxt "colorconfigwin|autospellcheck"
msgid "AutoSpellcheck"
msgstr "Automātiskā pareizrakstības pārbaude"
#. CpXy5
-#: cui/uiconfig/ui/colorconfigwin.ui:382
+#: cui/uiconfig/ui/colorconfigwin.ui:379
msgctxt "colorconfigwin|smarttags"
msgid "Smart Tags"
msgstr "Gudrās iezīmes"
#. HshHE
-#: cui/uiconfig/ui/colorconfigwin.ui:412
+#: cui/uiconfig/ui/colorconfigwin.ui:407
msgctxt "colorconfigwin|shadows"
msgid "Shadows"
msgstr "Ēnas"
#. EGNdC
-#: cui/uiconfig/ui/colorconfigwin.ui:444
+#: cui/uiconfig/ui/colorconfigwin.ui:439
msgctxt "colorconfigwin|shadows_lb"
msgid "Shadows color"
msgstr ""
#. hDvCW
-#: cui/uiconfig/ui/colorconfigwin.ui:459
+#: cui/uiconfig/ui/colorconfigwin.ui:454
msgctxt "colorconfigwin|general"
msgid "General"
msgstr "Vispārēji"
#. 3bVoq
-#: cui/uiconfig/ui/colorconfigwin.ui:492
+#: cui/uiconfig/ui/colorconfigwin.ui:488
msgctxt "colorconfigwin|writergrid"
msgid "Grid"
msgstr "Režģis"
#. RydzU
-#: cui/uiconfig/ui/colorconfigwin.ui:523
+#: cui/uiconfig/ui/colorconfigwin.ui:517
msgctxt "colorconfigwin|field"
msgid "Field shadings"
msgstr "Lauku ēnojums"
#. DEpAZ
-#: cui/uiconfig/ui/colorconfigwin.ui:555
+#: cui/uiconfig/ui/colorconfigwin.ui:549
msgctxt "colorconfigwin|field_lb"
msgid "Field shadings color"
msgstr ""
#. DqZGn
-#: cui/uiconfig/ui/colorconfigwin.ui:566
+#: cui/uiconfig/ui/colorconfigwin.ui:560
msgctxt "colorconfigwin|index"
msgid "Index and table shadings"
msgstr "Indeksu un tabulu ēnojums"
#. sGffP
-#: cui/uiconfig/ui/colorconfigwin.ui:598
+#: cui/uiconfig/ui/colorconfigwin.ui:592
msgctxt "colorconfigwin|index_lb"
msgid "Index and table shadings color"
msgstr ""
#. wBw2w
-#: cui/uiconfig/ui/colorconfigwin.ui:612
+#: cui/uiconfig/ui/colorconfigwin.ui:607
msgctxt "colorconfigwin|script"
msgid "Script Indicator"
msgstr "Skripta indikators"
#. fitqS
-#: cui/uiconfig/ui/colorconfigwin.ui:642
+#: cui/uiconfig/ui/colorconfigwin.ui:635
msgctxt "colorconfigwin|section"
msgid "Section boundaries"
msgstr "Sadaļu robežas"
#. ztqX5
-#: cui/uiconfig/ui/colorconfigwin.ui:674
+#: cui/uiconfig/ui/colorconfigwin.ui:667
msgctxt "colorconfigwin|section_lb"
msgid "Section boundaries color"
msgstr ""
#. wHL6h
-#: cui/uiconfig/ui/colorconfigwin.ui:688
+#: cui/uiconfig/ui/colorconfigwin.ui:682
msgctxt "colorconfigwin|hdft"
msgid "Headers and Footer delimiter"
msgstr "Galvenes un kājenes atdalītājs"
#. dCEBJ
-#: cui/uiconfig/ui/colorconfigwin.ui:721
+#: cui/uiconfig/ui/colorconfigwin.ui:714
msgctxt "colorconfigwin|pagebreak"
msgid "Page and column breaks"
msgstr "Lappušu un kolonnu atdalīšana"
#. yrTZF
-#: cui/uiconfig/ui/colorconfigwin.ui:754
+#: cui/uiconfig/ui/colorconfigwin.ui:746
msgctxt "colorconfigwin|direct"
msgid "Direct Cursor"
msgstr "Tiešais kursors"
#. ZZcPY
-#: cui/uiconfig/ui/colorconfigwin.ui:788
+#: cui/uiconfig/ui/colorconfigwin.ui:778
msgctxt "colorconfigwin|writer"
msgid "Text Document"
msgstr "Teksta dokuments"
#. GFFes
-#: cui/uiconfig/ui/colorconfigwin.ui:821
+#: cui/uiconfig/ui/colorconfigwin.ui:812
msgctxt "colorconfigwin|calcgrid"
msgid "Grid lines"
msgstr "Režģa līnijas"
#. MGvyJ
-#: cui/uiconfig/ui/colorconfigwin.ui:855
+#: cui/uiconfig/ui/colorconfigwin.ui:845
msgctxt "colorconfigwin|brk"
msgid "Page breaks"
msgstr "Lappušu atdalīšana"
#. aNnBE
-#: cui/uiconfig/ui/colorconfigwin.ui:888
+#: cui/uiconfig/ui/colorconfigwin.ui:877
msgctxt "colorconfigwin|brkmanual"
msgid "Manual page breaks"
msgstr "Pašrocīgas lappušu atdalīšanas"
#. PVzmm
-#: cui/uiconfig/ui/colorconfigwin.ui:921
+#: cui/uiconfig/ui/colorconfigwin.ui:909
msgctxt "colorconfigwin|brkauto"
msgid "Automatic page breaks"
msgstr "Automātiskā lappušu atdalīšana"
#. NgGUC
-#: cui/uiconfig/ui/colorconfigwin.ui:954
+#: cui/uiconfig/ui/colorconfigwin.ui:941
msgctxt "colorconfigwin|det"
msgid "Detective"
msgstr "Detektīvs"
#. 5Mp8g
-#: cui/uiconfig/ui/colorconfigwin.ui:1005
+#: cui/uiconfig/ui/colorconfigwin.ui:990
msgctxt "colorconfigwin|deterror"
msgid "Detective error"
msgstr "Detektīva kļūda"
#. K5CDH
-#: cui/uiconfig/ui/colorconfigwin.ui:1038
+#: cui/uiconfig/ui/colorconfigwin.ui:1022
msgctxt "colorconfigwin|ref"
msgid "References"
msgstr "Norādes"
#. ebAgi
-#: cui/uiconfig/ui/colorconfigwin.ui:1071
+#: cui/uiconfig/ui/colorconfigwin.ui:1054
msgctxt "colorconfigwin|notes"
msgid "Notes background"
msgstr "Piezīmju fons"
#. KdFAN
-#: cui/uiconfig/ui/colorconfigwin.ui:1104
+#: cui/uiconfig/ui/colorconfigwin.ui:1086
msgctxt "colorconfigwin|values"
msgid "Values"
msgstr "Vērtības"
#. UfL75
-#: cui/uiconfig/ui/colorconfigwin.ui:1137
+#: cui/uiconfig/ui/colorconfigwin.ui:1118
msgctxt "colorconfigwin|formulas"
msgid "Formulas"
msgstr "Formulas"
#. 9kx8m
-#: cui/uiconfig/ui/colorconfigwin.ui:1170
+#: cui/uiconfig/ui/colorconfigwin.ui:1150
msgctxt "colorconfigwin|text"
msgid "Text"
msgstr "Teksts"
#. ZCYmf
-#: cui/uiconfig/ui/colorconfigwin.ui:1203
+#: cui/uiconfig/ui/colorconfigwin.ui:1182
msgctxt "colorconfigwin|protectedcells"
msgid "Protected cells background"
msgstr "Aizsargāto šūnu fons"
+#. pqHBt
+#: cui/uiconfig/ui/colorconfigwin.ui:1193
+msgctxt "colorconfigwin|hiddencolrow"
+msgid "Hidden columns/rows"
+msgstr ""
+
+#. gTFFH
+#: cui/uiconfig/ui/colorconfigwin.ui:1225
+msgctxt "colorconfigwin|hiddencolrow_lb"
+msgid "Hidden row/column color"
+msgstr ""
+
#. mA6HV
-#: cui/uiconfig/ui/colorconfigwin.ui:1219
+#: cui/uiconfig/ui/colorconfigwin.ui:1240
msgctxt "colorconfigwin|calc"
msgid "Spreadsheet"
msgstr "Izklājlapa"
#. C8q88
-#: cui/uiconfig/ui/colorconfigwin.ui:1271
+#: cui/uiconfig/ui/colorconfigwin.ui:1292
msgctxt "colorconfigwin|drawgrid"
msgid "Grid"
msgstr "Režģis"
#. oKFnR
-#: cui/uiconfig/ui/colorconfigwin.ui:1287
+#: cui/uiconfig/ui/colorconfigwin.ui:1307
msgctxt "colorconfigwin|draw"
msgid "Drawing / Presentation"
msgstr "Zīmēšana / prezentācija"
#. yELpi
-#: cui/uiconfig/ui/colorconfigwin.ui:1339
+#: cui/uiconfig/ui/colorconfigwin.ui:1359
msgctxt "colorconfigwin|basicid"
msgid "Identifier"
msgstr "Identifikators"
#. 5uQto
-#: cui/uiconfig/ui/colorconfigwin.ui:1372
+#: cui/uiconfig/ui/colorconfigwin.ui:1391
msgctxt "colorconfigwin|basiccomment"
msgid "Comment"
msgstr "Komentārs"
#. 73qea
-#: cui/uiconfig/ui/colorconfigwin.ui:1405
+#: cui/uiconfig/ui/colorconfigwin.ui:1423
msgctxt "colorconfigwin|basicnumber"
msgid "Number"
msgstr "Skaitlis"
#. rHmNM
-#: cui/uiconfig/ui/colorconfigwin.ui:1438
+#: cui/uiconfig/ui/colorconfigwin.ui:1455
msgctxt "colorconfigwin|basicstring"
msgid "String"
msgstr "Rinda"
#. Kf9eR
-#: cui/uiconfig/ui/colorconfigwin.ui:1471
+#: cui/uiconfig/ui/colorconfigwin.ui:1487
msgctxt "colorconfigwin|basicop"
msgid "Operator"
msgstr "Operators"
#. EFQpW
-#: cui/uiconfig/ui/colorconfigwin.ui:1504
+#: cui/uiconfig/ui/colorconfigwin.ui:1519
msgctxt "colorconfigwin|basickeyword"
msgid "Reserved expression"
msgstr "Rezervētā izteiksme"
#. QEuyS
-#: cui/uiconfig/ui/colorconfigwin.ui:1537
+#: cui/uiconfig/ui/colorconfigwin.ui:1551
msgctxt "colorconfigwin|error"
msgid "Error"
msgstr "Kļūda"
#. 4JokA
-#: cui/uiconfig/ui/colorconfigwin.ui:1553
+#: cui/uiconfig/ui/colorconfigwin.ui:1566
msgctxt "colorconfigwin|basic"
msgid "Basic Syntax Highlighting"
msgstr "Basic sintakses izcelšana"
#. ERVJA
-#: cui/uiconfig/ui/colorconfigwin.ui:1605
+#: cui/uiconfig/ui/colorconfigwin.ui:1618
msgctxt "colorconfigwin|sqlid"
msgid "Identifier"
msgstr "Identifikators"
#. nAF39
-#: cui/uiconfig/ui/colorconfigwin.ui:1638
+#: cui/uiconfig/ui/colorconfigwin.ui:1650
msgctxt "colorconfigwin|sqlnumber"
msgid "Number"
msgstr "Skaitlis"
#. B6Bku
-#: cui/uiconfig/ui/colorconfigwin.ui:1671
+#: cui/uiconfig/ui/colorconfigwin.ui:1682
msgctxt "colorconfigwin|sqlstring"
msgid "String"
msgstr "Rinda"
#. FPDgu
-#: cui/uiconfig/ui/colorconfigwin.ui:1704
+#: cui/uiconfig/ui/colorconfigwin.ui:1714
msgctxt "colorconfigwin|sqlop"
msgid "Operator"
msgstr "Operators"
#. 4t4Ww
-#: cui/uiconfig/ui/colorconfigwin.ui:1737
+#: cui/uiconfig/ui/colorconfigwin.ui:1746
msgctxt "colorconfigwin|sqlkeyword"
msgid "Keyword"
msgstr "Atslēgas vārds"
#. qbVhS
-#: cui/uiconfig/ui/colorconfigwin.ui:1770
+#: cui/uiconfig/ui/colorconfigwin.ui:1778
msgctxt "colorconfigwin|sqlparam"
msgid "Parameter"
msgstr "Parametrs"
#. B7ubh
-#: cui/uiconfig/ui/colorconfigwin.ui:1803
+#: cui/uiconfig/ui/colorconfigwin.ui:1810
msgctxt "colorconfigwin|sqlcomment"
msgid "Comment"
msgstr "Komentārs"
#. PLRFA
-#: cui/uiconfig/ui/colorconfigwin.ui:1819
+#: cui/uiconfig/ui/colorconfigwin.ui:1825
msgctxt "colorconfigwin|sql"
msgid "SQL Syntax Highlighting"
msgstr "SQL sintakses izcelšana"
#. NcJi8
-#: cui/uiconfig/ui/colorconfigwin.ui:1871
+#: cui/uiconfig/ui/colorconfigwin.ui:1877
msgctxt "colorconfigwin|sgml"
msgid "SGML syntax highlighting"
msgstr "SGML sintakses izcelšana"
#. uYB5C
-#: cui/uiconfig/ui/colorconfigwin.ui:1886
+#: cui/uiconfig/ui/colorconfigwin.ui:1892
msgctxt "colorconfigwin|htmlcomment"
msgid "Comment highlighting"
msgstr "Komentāru izcelšana"
#. 82UJf
-#: cui/uiconfig/ui/colorconfigwin.ui:1919
+#: cui/uiconfig/ui/colorconfigwin.ui:1924
msgctxt "colorconfigwin|htmlkeyword"
msgid "Keyword highlighting"
msgstr "Atslēgas vārdu izcelšana"
#. otYwD
-#: cui/uiconfig/ui/colorconfigwin.ui:1952
+#: cui/uiconfig/ui/colorconfigwin.ui:1956
msgctxt "colorconfigwin|unknown"
msgid "Text"
msgstr "Teksts"
#. XxGeg
-#: cui/uiconfig/ui/colorconfigwin.ui:1986
+#: cui/uiconfig/ui/colorconfigwin.ui:1988
msgctxt "colorconfigwin|html"
msgid "HTML Document"
msgstr "HTML dokuments"
@@ -7552,10 +7606,10 @@ msgctxt "colorpickerdialog|label4"
msgid "CMYK"
msgstr "CMYK"
-#. 9KyXs
+#. HuUmH
#: cui/uiconfig/ui/colorpickerdialog.ui:815
msgctxt "extended tip | ColorPicker"
-msgid "%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
+msgid "Define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
msgstr ""
#. vDFei
@@ -7565,49 +7619,49 @@ msgid "Insert Comment"
msgstr "Ievietot komentāru"
#. 22CJX
-#: cui/uiconfig/ui/comment.ui:162
+#: cui/uiconfig/ui/comment.ui:160
msgctxt "comment|label2"
msgid "Author"
msgstr "Autors"
#. QNkY6
-#: cui/uiconfig/ui/comment.ui:194
+#: cui/uiconfig/ui/comment.ui:192
msgctxt "comment|label4"
msgid "_Text"
msgstr "_Teksts"
#. 4ZGAd
-#: cui/uiconfig/ui/comment.ui:221
+#: cui/uiconfig/ui/comment.ui:219
msgctxt "comment|extended_tip|edit"
msgid "Enter a comment for the recorded change."
msgstr ""
#. bEtYk
-#: cui/uiconfig/ui/comment.ui:243
+#: cui/uiconfig/ui/comment.ui:241
msgctxt "comment|label5"
msgid "_Insert"
msgstr "_Ievietot"
#. eGHyF
-#: cui/uiconfig/ui/comment.ui:255
+#: cui/uiconfig/ui/comment.ui:253
msgctxt "comment|author"
msgid "Author"
msgstr "Autors"
#. VjKDs
-#: cui/uiconfig/ui/comment.ui:276
+#: cui/uiconfig/ui/comment.ui:274
msgctxt "comment|alttitle"
msgid "Edit Comment"
msgstr "Rediģēt komentāru"
#. JKZFi
-#: cui/uiconfig/ui/comment.ui:290
+#: cui/uiconfig/ui/comment.ui:288
msgctxt "comment|label1"
msgid "Contents"
msgstr "Saturs"
#. qSQBN
-#: cui/uiconfig/ui/comment.ui:315
+#: cui/uiconfig/ui/comment.ui:313
msgctxt "comment|extended_tip|CommentDialog"
msgid "Enter a comment for the recorded change."
msgstr ""
@@ -8038,11 +8092,11 @@ msgctxt "databaselinkdialog|label4"
msgid "Registered _name:"
msgstr "Reģistrēts _nosaukums:"
-#. qrTa8
+#. iaGuz
#: cui/uiconfig/ui/databaselinkdialog.ui:180
msgctxt "extended_tip|name"
-msgid "Enter a name for the database. %PRODUCTNAME uses this name to access the database."
-msgstr "Ievadiet nosaukumu datubāzei. %PRODUCTNAME lieto šo nosaukumu, lai piekļūtu datubāzei."
+msgid "Enter a name for the database. The office suite uses this name to access the database."
+msgstr ""
#. FrRyU
#: cui/uiconfig/ui/databaselinkdialog.ui:199
@@ -8621,241 +8675,241 @@ msgid "Effects"
msgstr "Efekti"
#. FY52V
-#: cui/uiconfig/ui/effectspage.ui:323
+#: cui/uiconfig/ui/effectspage.ui:324
msgctxt "effectspage|label46"
msgid "O_verlining:"
msgstr ""
#. ceoHc
-#: cui/uiconfig/ui/effectspage.ui:337
+#: cui/uiconfig/ui/effectspage.ui:338
msgctxt "effectspage|label47"
msgid "Stri_kethrough:"
msgstr ""
#. Qisd2
-#: cui/uiconfig/ui/effectspage.ui:351
+#: cui/uiconfig/ui/effectspage.ui:352
msgctxt "effectspage|label48"
msgid "_Underlining:"
msgstr ""
#. EGta9
-#: cui/uiconfig/ui/effectspage.ui:366 cui/uiconfig/ui/effectspage.ui:400
+#: cui/uiconfig/ui/effectspage.ui:367 cui/uiconfig/ui/effectspage.ui:401
msgctxt "effectspage|liststore6"
msgid "(Without)"
msgstr "(Bez)"
#. wvpKK
-#: cui/uiconfig/ui/effectspage.ui:367 cui/uiconfig/ui/effectspage.ui:401
+#: cui/uiconfig/ui/effectspage.ui:368 cui/uiconfig/ui/effectspage.ui:402
msgctxt "effectspage|liststore6"
msgid "Single"
msgstr "Viena"
#. dCubb
-#: cui/uiconfig/ui/effectspage.ui:368 cui/uiconfig/ui/effectspage.ui:402
+#: cui/uiconfig/ui/effectspage.ui:369 cui/uiconfig/ui/effectspage.ui:403
msgctxt "effectspage|liststore6"
msgid "Double"
msgstr "Dubulta"
#. JFKfG
-#: cui/uiconfig/ui/effectspage.ui:369 cui/uiconfig/ui/effectspage.ui:403
+#: cui/uiconfig/ui/effectspage.ui:370 cui/uiconfig/ui/effectspage.ui:404
msgctxt "effectspage|liststore6"
msgid "Bold"
msgstr "Trekna"
#. m7Jwh
-#: cui/uiconfig/ui/effectspage.ui:370 cui/uiconfig/ui/effectspage.ui:404
+#: cui/uiconfig/ui/effectspage.ui:371 cui/uiconfig/ui/effectspage.ui:405
msgctxt "effectspage|liststore6"
msgid "Dotted"
msgstr "Punktēta"
#. iC5t6
-#: cui/uiconfig/ui/effectspage.ui:371 cui/uiconfig/ui/effectspage.ui:405
+#: cui/uiconfig/ui/effectspage.ui:372 cui/uiconfig/ui/effectspage.ui:406
msgctxt "effectspage|liststore6"
msgid "Dotted (Bold)"
msgstr "Punktēta (trekna)"
#. uGcdw
-#: cui/uiconfig/ui/effectspage.ui:372 cui/uiconfig/ui/effectspage.ui:406
+#: cui/uiconfig/ui/effectspage.ui:373 cui/uiconfig/ui/effectspage.ui:407
msgctxt "effectspage|liststore6"
msgid "Dash"
msgstr "Domuzīme"
#. BLRCY
-#: cui/uiconfig/ui/effectspage.ui:373 cui/uiconfig/ui/effectspage.ui:407
+#: cui/uiconfig/ui/effectspage.ui:374 cui/uiconfig/ui/effectspage.ui:408
msgctxt "effectspage|liststore6"
msgid "Dash (Bold)"
msgstr "Domuzīme (trekna)"
#. FCcKo
-#: cui/uiconfig/ui/effectspage.ui:374 cui/uiconfig/ui/effectspage.ui:408
+#: cui/uiconfig/ui/effectspage.ui:375 cui/uiconfig/ui/effectspage.ui:409
msgctxt "effectspage|liststore6"
msgid "Long Dash"
msgstr "Garā domuzīme"
#. 7UBEL
-#: cui/uiconfig/ui/effectspage.ui:375 cui/uiconfig/ui/effectspage.ui:409
+#: cui/uiconfig/ui/effectspage.ui:376 cui/uiconfig/ui/effectspage.ui:410
msgctxt "effectspage|liststore6"
msgid "Long Dash (Bold)"
msgstr "Garā domuzīme (trekna)"
#. a58XD
-#: cui/uiconfig/ui/effectspage.ui:376 cui/uiconfig/ui/effectspage.ui:410
+#: cui/uiconfig/ui/effectspage.ui:377 cui/uiconfig/ui/effectspage.ui:411
msgctxt "effectspage|liststore6"
msgid "Dot Dash"
msgstr "Punkts—domuzīme"
#. MhBD8
-#: cui/uiconfig/ui/effectspage.ui:377 cui/uiconfig/ui/effectspage.ui:411
+#: cui/uiconfig/ui/effectspage.ui:378 cui/uiconfig/ui/effectspage.ui:412
msgctxt "effectspage|liststore6"
msgid "Dot Dash (Bold)"
msgstr "Punkts—domuzīme (trekna)"
#. AcyEi
-#: cui/uiconfig/ui/effectspage.ui:378 cui/uiconfig/ui/effectspage.ui:412
+#: cui/uiconfig/ui/effectspage.ui:379 cui/uiconfig/ui/effectspage.ui:413
msgctxt "effectspage|liststore6"
msgid "Dot Dot Dash"
msgstr "Punkts—punkts—domuzīme"
#. BRq6u
-#: cui/uiconfig/ui/effectspage.ui:379 cui/uiconfig/ui/effectspage.ui:413
+#: cui/uiconfig/ui/effectspage.ui:380 cui/uiconfig/ui/effectspage.ui:414
msgctxt "effectspage|liststore6"
msgid "Dot Dot Dash (Bold)"
msgstr "Punkts—punkts—domuzīme (trekna)"
#. kEEBv
-#: cui/uiconfig/ui/effectspage.ui:380 cui/uiconfig/ui/effectspage.ui:414
+#: cui/uiconfig/ui/effectspage.ui:381 cui/uiconfig/ui/effectspage.ui:415
msgctxt "effectspage|liststore6"
msgid "Wave"
msgstr "Vilnītis"
#. XDicz
-#: cui/uiconfig/ui/effectspage.ui:381 cui/uiconfig/ui/effectspage.ui:415
+#: cui/uiconfig/ui/effectspage.ui:382 cui/uiconfig/ui/effectspage.ui:416
msgctxt "effectspage|liststore6"
msgid "Wave (Bold)"
msgstr "Vilnītis (trekns)"
#. ZxdxD
-#: cui/uiconfig/ui/effectspage.ui:382 cui/uiconfig/ui/effectspage.ui:416
+#: cui/uiconfig/ui/effectspage.ui:383 cui/uiconfig/ui/effectspage.ui:417
msgctxt "effectspage|liststore6"
msgid "Double Wave"
msgstr "Dubultvilnītis"
#. i6Qpd
-#: cui/uiconfig/ui/effectspage.ui:386
+#: cui/uiconfig/ui/effectspage.ui:387
msgctxt "effectspage|extended_tip|overlinelb"
msgid "Select the overlining style that you want to apply. To apply the overlining to words only, select the Individual Words box."
msgstr ""
#. jbrhD
-#: cui/uiconfig/ui/effectspage.ui:420
+#: cui/uiconfig/ui/effectspage.ui:421
msgctxt "effectspage|extended_tip|underlinelb"
msgid "Select the underlining style that you want to apply. To apply the underlining to words only, select the Individual Words box."
msgstr ""
#. FgNij
-#: cui/uiconfig/ui/effectspage.ui:434
+#: cui/uiconfig/ui/effectspage.ui:435
msgctxt "effectspage|liststore5"
msgid "(Without)"
msgstr "(Bez)"
#. Q4YtH
-#: cui/uiconfig/ui/effectspage.ui:435
+#: cui/uiconfig/ui/effectspage.ui:436
msgctxt "effectspage|liststore5"
msgid "Single"
msgstr "Viena"
#. 9ndBZ
-#: cui/uiconfig/ui/effectspage.ui:436
+#: cui/uiconfig/ui/effectspage.ui:437
msgctxt "effectspage|liststore5"
msgid "Double"
msgstr "Dubulta"
#. p5Q9A
-#: cui/uiconfig/ui/effectspage.ui:437
+#: cui/uiconfig/ui/effectspage.ui:438
msgctxt "effectspage|liststore5"
msgid "Bold"
msgstr "Trekna"
#. bcZBk
-#: cui/uiconfig/ui/effectspage.ui:438
+#: cui/uiconfig/ui/effectspage.ui:439
msgctxt "effectspage|liststore5"
msgid "With /"
msgstr "Ar /"
#. GJKbv
-#: cui/uiconfig/ui/effectspage.ui:439
+#: cui/uiconfig/ui/effectspage.ui:440
msgctxt "effectspage|liststore5"
msgid "With X"
msgstr "Ar X"
#. Pmdav
-#: cui/uiconfig/ui/effectspage.ui:443
+#: cui/uiconfig/ui/effectspage.ui:444
msgctxt "effectspage|extended_tip|strikeoutlb"
msgid "Select a strikethrough style for the selected text."
msgstr "Atlasiet pārsvītrojuma stilu priekš atlasītā teksta."
#. qtErr
-#: cui/uiconfig/ui/effectspage.ui:465
+#: cui/uiconfig/ui/effectspage.ui:467
msgctxt "effectspage|extended_tip|underlinecolorlb"
msgid "Select the color for the underlining."
msgstr "Atlasiet krāsu priekš pasvītrojuma."
#. vuxpt
-#: cui/uiconfig/ui/effectspage.ui:487
+#: cui/uiconfig/ui/effectspage.ui:490
msgctxt "effectspage|extended_tip|overlinecolorlb"
msgid "Select the color for the overlining."
msgstr "Atlasiet krāsu priekš virssvītrojuma."
#. JP4PB
-#: cui/uiconfig/ui/effectspage.ui:498
+#: cui/uiconfig/ui/effectspage.ui:501
msgctxt "effectspage|individualwordscb"
msgid "_Individual words"
msgstr ""
#. AP5Gy
-#: cui/uiconfig/ui/effectspage.ui:506
+#: cui/uiconfig/ui/effectspage.ui:509
msgctxt "effectspage|extended_tip|individualwordscb"
msgid "Applies the selected effect only to words and ignores spaces."
msgstr ""
#. oFKJN
-#: cui/uiconfig/ui/effectspage.ui:550
+#: cui/uiconfig/ui/effectspage.ui:553
msgctxt "effectspage|textdecoration"
msgid "Text Decoration"
msgstr ""
#. fMFiW
-#: cui/uiconfig/ui/effectspage.ui:582
+#: cui/uiconfig/ui/effectspage.ui:585
msgctxt "effectspage|fontcolorft"
msgid "_Font color:"
msgstr ""
#. ttwFt
-#: cui/uiconfig/ui/effectspage.ui:605
+#: cui/uiconfig/ui/effectspage.ui:608
msgctxt "effectspage|extended_tip|fontcolorlb"
msgid "Sets the color for the selected text. If you select Automatic, the text color is set to black for light backgrounds and to white for dark backgrounds."
msgstr ""
#. aAbzm
-#: cui/uiconfig/ui/effectspage.ui:617
+#: cui/uiconfig/ui/effectspage.ui:620
msgctxt "effectspage|a11ywarning"
msgid "Accessibility option \"Use automatic font color for screen display\" is active. Font color attributes are not currently used to display text."
msgstr "Pieejamības opcija \"Izmantot automātisku fonta krāsu rādīšanai uz ekrāna\" ir aktīva. Fonta krāsas atribūti pašreiz netiek lietoti, lai attēlotu tekstu."
#. AZF8Q
-#: cui/uiconfig/ui/effectspage.ui:631
+#: cui/uiconfig/ui/effectspage.ui:634
msgctxt "effectspage|fonttransparencyft"
msgid "_Transparency:"
msgstr "_Caurspīdīgums:"
#. vELSr
-#: cui/uiconfig/ui/effectspage.ui:663
+#: cui/uiconfig/ui/effectspage.ui:672
msgctxt "effectspage|fontcolorft3"
msgid "Font Color"
msgstr "Fonta krāsa"
#. TzsRB
-#: cui/uiconfig/ui/effectspage.ui:678
+#: cui/uiconfig/ui/effectspage.ui:687
msgctxt "effectspage|extended_tip|EffectsPage"
msgid "Specify the font effects that you want to use."
msgstr ""
@@ -8974,10 +9028,10 @@ msgctxt "eventassignpage|extended_tip|delete"
msgid "Removes the macro assignment from the selected entry."
msgstr ""
-#. 9GNQR
+#. 3Gmuh
#: cui/uiconfig/ui/eventassignpage.ui:237
msgctxt "eventassignpage|extended_tip|libraries"
-msgid "Lists the %PRODUCTNAME program and any open %PRODUCTNAME document."
+msgid "Lists the office suite program and any open documents."
msgstr ""
#. y7Vyi
@@ -9040,10 +9094,10 @@ msgctxt "eventsconfigpage|label2"
msgid "Save in:"
msgstr "Saglabāt iekš:"
-#. JQMTJ
+#. AXbbm
#: cui/uiconfig/ui/eventsconfigpage.ui:147
msgctxt "eventsconfigpage|extended_tip|savein"
-msgid "Select first where to save the event binding, in the current document or in %PRODUCTNAME."
+msgid "Select first where to save the event binding, in the current document or in the office suite."
msgstr ""
#. C6KwW
@@ -9106,10 +9160,10 @@ msgctxt "fmsearchdialog|extended_tip|pbSearchAgain"
msgid "Starts or cancels the search."
msgstr ""
-#. QReEJ
+#. 9gcWy
#: cui/uiconfig/ui/fmsearchdialog.ui:52
msgctxt "fmsearchdialog|extended_tip|close"
-msgid "Closes the dialog. The settings of the last search will be saved until you quit %PRODUCTNAME."
+msgid "Closes the dialog. The settings of the last search will be saved until you quit the office suite."
msgstr ""
#. UPeyv
@@ -9275,109 +9329,109 @@ msgid "Similarities..."
msgstr "Līdzības..."
#. PtuHs
-#: cui/uiconfig/ui/fmsearchdialog.ui:632
+#: cui/uiconfig/ui/fmsearchdialog.ui:631
msgctxt "fmsearchdialog|extended_tip|pbApproxSettings"
msgid "Find terms that are similar to the Find text. Select this checkbox, and then click the Similarities button to define the similarity options."
msgstr ""
#. 6BpAF
-#: cui/uiconfig/ui/fmsearchdialog.ui:649
+#: cui/uiconfig/ui/fmsearchdialog.ui:648
msgctxt "fmsearchdialog|cbCase"
msgid "_Match case"
msgstr "_Reģistrjutīgs"
#. Gdo9i
-#: cui/uiconfig/ui/fmsearchdialog.ui:657
+#: cui/uiconfig/ui/fmsearchdialog.ui:656
msgctxt "fmsearchdialog|extended_tip|cbCase"
msgid "Specifies that upper and lower case are taken into consideration during the search."
msgstr ""
#. X5q2K
-#: cui/uiconfig/ui/fmsearchdialog.ui:668
+#: cui/uiconfig/ui/fmsearchdialog.ui:667
msgctxt "fmsearchdialog|cbStartOver"
msgid "Fr_om top"
msgstr "N_o sākuma"
#. y83im
-#: cui/uiconfig/ui/fmsearchdialog.ui:676
+#: cui/uiconfig/ui/fmsearchdialog.ui:675
msgctxt "fmsearchdialog|extended_tip|cbStartOver"
msgid "Restarts the search. A forward search restarts with the first record. A backwards search restarts with the last record."
msgstr ""
#. WP3XA
-#: cui/uiconfig/ui/fmsearchdialog.ui:687
+#: cui/uiconfig/ui/fmsearchdialog.ui:686
msgctxt "fmsearchdialog|cbRegular"
msgid "_Regular expression"
msgstr "_Regulārā izteiksme"
#. 4uneg
-#: cui/uiconfig/ui/fmsearchdialog.ui:695
+#: cui/uiconfig/ui/fmsearchdialog.ui:694
msgctxt "fmsearchdialog|extended_tip|cbRegular"
msgid "Searches with regular expressions."
msgstr ""
#. qzKAB
-#: cui/uiconfig/ui/fmsearchdialog.ui:706
+#: cui/uiconfig/ui/fmsearchdialog.ui:705
msgctxt "fmsearchdialog|cbUseFormat"
msgid "Appl_y field format"
msgstr "P_ielietot lauka formātu"
#. BdMDC
-#: cui/uiconfig/ui/fmsearchdialog.ui:714
+#: cui/uiconfig/ui/fmsearchdialog.ui:713
msgctxt "fmsearchdialog|extended_tip|cbUseFormat"
msgid "Specifies that all field formats are considered when searching in the current document."
msgstr ""
#. 2GvF5
-#: cui/uiconfig/ui/fmsearchdialog.ui:725
+#: cui/uiconfig/ui/fmsearchdialog.ui:724
msgctxt "fmsearchdialog|cbBackwards"
msgid "Search _backwards"
msgstr "Meklēt _pretējā virzienā"
#. QvjG7
-#: cui/uiconfig/ui/fmsearchdialog.ui:733
+#: cui/uiconfig/ui/fmsearchdialog.ui:732
msgctxt "fmsearchdialog|extended_tip|cbBackwards"
msgid "Specifies that the search process will run in reverse direction, from the last to the first record."
msgstr ""
#. 4ixJZ
-#: cui/uiconfig/ui/fmsearchdialog.ui:744
+#: cui/uiconfig/ui/fmsearchdialog.ui:743
msgctxt "fmsearchdialog|cbWildCard"
msgid "_Wildcard expression"
msgstr "_Aizstājējzīmju izteiksme"
#. BES8b
-#: cui/uiconfig/ui/fmsearchdialog.ui:752
+#: cui/uiconfig/ui/fmsearchdialog.ui:751
msgctxt "fmsearchdialog|extended_tip|cbWildCard"
msgid "Allows a search with a * or ? wildcard."
msgstr ""
#. xHRxu
-#: cui/uiconfig/ui/fmsearchdialog.ui:774
+#: cui/uiconfig/ui/fmsearchdialog.ui:773
msgctxt "fmsearchdialog|flOptions"
msgid "Settings"
msgstr "Iestatījumi"
#. wBBss
-#: cui/uiconfig/ui/fmsearchdialog.ui:806
+#: cui/uiconfig/ui/fmsearchdialog.ui:805
msgctxt "fmsearchdialog|ftRecordLabel"
msgid "Record:"
msgstr "Ieraksts:"
#. UBLpq
-#: cui/uiconfig/ui/fmsearchdialog.ui:818
+#: cui/uiconfig/ui/fmsearchdialog.ui:817
msgctxt "fmsearchdialog|ftRecord"
msgid "record count"
msgstr "ierakstu skaits"
#. 8EDSy
-#: cui/uiconfig/ui/fmsearchdialog.ui:842
+#: cui/uiconfig/ui/fmsearchdialog.ui:841
msgctxt "fmsearchdialog|flState"
msgid "State"
msgstr "Štats"
#. tqCYV
-#: cui/uiconfig/ui/fmsearchdialog.ui:873
+#: cui/uiconfig/ui/fmsearchdialog.ui:869
msgctxt "fmsearchdialog|extended_tip|RecordSearchDialog"
msgid "Searches database tables and forms."
msgstr ""
@@ -11200,37 +11254,37 @@ msgid "Change Icon"
msgstr "Mainīt ikonu"
#. qZXP7
-#: cui/uiconfig/ui/iconselectordialog.ui:139
+#: cui/uiconfig/ui/iconselectordialog.ui:138
msgctxt "iconselectordialog|label1"
msgid "_Icons"
msgstr "_Ikonas"
#. ZyFG4
-#: cui/uiconfig/ui/iconselectordialog.ui:162
+#: cui/uiconfig/ui/iconselectordialog.ui:161
msgctxt "iconselectordialog|importButton"
msgid "I_mport..."
msgstr "I_mportēt..."
-#. rAyQo
-#: cui/uiconfig/ui/iconselectordialog.ui:169
+#. pMDQA
+#: cui/uiconfig/ui/iconselectordialog.ui:168
msgctxt "iconselectordialog|extended_tip|importButton"
-msgid "Adds new icons to the list of icons. You see a file open dialog that imports the selected icon or icons into the internal icon directory of %PRODUCTNAME."
+msgid "Adds new icons to the list of icons. You see a file open dialog that imports the selected icon or icons into the internal icon directory of the office suite."
msgstr ""
#. 46d7Z
-#: cui/uiconfig/ui/iconselectordialog.ui:181
+#: cui/uiconfig/ui/iconselectordialog.ui:180
msgctxt "iconselectordialog|deleteButton"
msgid "_Delete..."
msgstr "_Dzēst..."
#. MEMzu
-#: cui/uiconfig/ui/iconselectordialog.ui:188
+#: cui/uiconfig/ui/iconselectordialog.ui:187
msgctxt "iconselectordialog|extended_tip|deleteButton"
msgid "Click to remove the selected icon from the list. Only user-defined icons can be removed."
msgstr ""
#. C4HU9
-#: cui/uiconfig/ui/iconselectordialog.ui:217
+#: cui/uiconfig/ui/iconselectordialog.ui:216
msgctxt "iconselectordialog|noteLabel"
msgid ""
"Note:\n"
@@ -12455,10 +12509,10 @@ msgctxt "menuassignpage|extended_tip|searchEntry"
msgid "Enter a string in the text box to narrow the search of commands."
msgstr ""
-#. 7gtLC
+#. jRMwG
#: cui/uiconfig/ui/menuassignpage.ui:445
msgctxt "menuassignpage|extended_tip|savein"
-msgid "Select the location where the menu is to be attached. If attached to a %PRODUCTNAME module, the menu is available for all files opened in that module. If attached to the file, the menu will be available only when that file is opened and active."
+msgid "Select the location where the menu is to be attached. If attached to an office suite module, the menu is available for all files opened in that module. If attached to the file, the menu will be available only when that file is opened and active."
msgstr ""
#. D35vJ
@@ -12593,10 +12647,10 @@ msgctxt "menuassignpage|customizelabel"
msgid "_Customize"
msgstr "_Pielāgot"
-#. yFQHn
+#. w3brP
#: cui/uiconfig/ui/menuassignpage.ui:998
msgctxt "menuassignpage|extended_tip|MenuAssignPage"
-msgid "Lets you customize %PRODUCTNAME menus for all modules."
+msgid "Lets you customize the office suite menus for all modules."
msgstr ""
#. Mcir5
@@ -13611,10 +13665,10 @@ msgctxt "optaccessibilitypage|animatedgraphics"
msgid "Allow animated _images"
msgstr "Atļaut animētus _attēlus"
-#. vvmf3
+#. DEBEA
#: cui/uiconfig/ui/optaccessibilitypage.ui:75
msgctxt "extended_tip|animatedgraphics"
-msgid "Previews animated graphics, such as GIF images, in %PRODUCTNAME."
+msgid "Previews animated graphics, such as GIF images."
msgstr ""
#. 3Q66x
@@ -13623,10 +13677,10 @@ msgctxt "optaccessibilitypage|animatedtext"
msgid "Allow animated _text"
msgstr "Atļaut animētu _tekstu"
-#. dcCgH
+#. Gc9fG
#: cui/uiconfig/ui/optaccessibilitypage.ui:95
msgctxt "extended_tip|animatedtext"
-msgid "Previews animated text, such as blinking and scrolling, in %PRODUCTNAME."
+msgid "Previews animated text, such as blinking and scrolling."
msgstr ""
#. 2A83C
@@ -13641,10 +13695,10 @@ msgctxt "optaccessibilitypage|autodetecthc"
msgid "Automatically _detect high contrast mode of operating system"
msgstr "Automātiski atklāt augsta kontrasta režīmu operētājsistēmā."
-#. S8FrL
+#. oF9CC
#: cui/uiconfig/ui/optaccessibilitypage.ui:148
msgctxt "extended_tip|autodetecthc"
-msgid "Switches %PRODUCTNAME into high contrast mode when the system background color is very dark."
+msgid "Switches the office suite into high contrast mode when the system background color is very dark."
msgstr ""
#. Sc8Cq
@@ -13653,10 +13707,10 @@ msgctxt "optaccessibilitypage|autofontcolor"
msgid "Use automatic font _color for screen display"
msgstr "Izmantot automātisku fonta _krāsu rādīšanai uz ekrāna"
-#. DP3mg
+#. BAnK4
#: cui/uiconfig/ui/optaccessibilitypage.ui:168
msgctxt "extended_tip|autofontcolor"
-msgid "Displays fonts in %PRODUCTNAME using the system color settings. This option only affects the screen display."
+msgid "Displays fonts in the office suite using the system color settings. This option only affects the screen display."
msgstr ""
#. n24Cd
@@ -13677,10 +13731,10 @@ msgctxt "optaccessibilitypage|label2"
msgid "Options for High Contrast Appearance"
msgstr "Augsta kontrasta izskata opcijas"
-#. yuSqB
+#. cocVg
#: cui/uiconfig/ui/optaccessibilitypage.ui:219
msgctxt "extended_tip|OptAccessibilityPage"
-msgid "Sets options that make %PRODUCTNAME programs more accessible for users with reduced sight, limited dexterity or other disabilities."
+msgid "Sets options that make the office suite programs more accessible for users with reduced sight, limited dexterity or other disabilities."
msgstr ""
#. kishx
@@ -13689,10 +13743,10 @@ msgctxt "optadvancedpage|javaenabled"
msgid "_Use a Java runtime environment"
msgstr "Lietot Java r_untime environment"
-#. xBxzA
+#. KMJbU
#: cui/uiconfig/ui/optadvancedpage.ui:64
msgctxt "extended_tip|javaenabled"
-msgid "Allows you to run Java applications in %PRODUCTNAME."
+msgid "Allows you to run extensions written with Java."
msgstr ""
#. DFVFw
@@ -13749,10 +13803,10 @@ msgctxt "optadvancedpage|version"
msgid "Version"
msgstr "Versija"
-#. kwgDj
+#. skEDW
#: cui/uiconfig/ui/optadvancedpage.ui:257
msgctxt "extended_tip|javas"
-msgid "Select the JRE that you want to use. On some systems, you must wait a minute until the list gets populated. On some systems, you must restart %PRODUCTNAME to use your changed setting."
+msgid "Select the JRE that you want to use. On some systems, you must wait a minute until the list gets populated. On some systems, you must restart the office suite to use your changed setting."
msgstr ""
#. erNBk
@@ -13803,10 +13857,10 @@ msgctxt "optadvancedpage|expertconfig"
msgid "Open Expert Configuration"
msgstr "Atvērt eksperta konfigurāciju"
-#. rAnYG
+#. upAQw
#: cui/uiconfig/ui/optadvancedpage.ui:412
msgctxt "extended_tip|expertconfig"
-msgid "Opens the Expert Configuration dialog for advanced settings and configuration of %PRODUCTNAME."
+msgid "Opens the Expert Configuration dialog for advanced settings and configuration."
msgstr ""
#. ZLtrh
@@ -13815,12 +13869,6 @@ msgctxt "optadvancedpage|label12"
msgid "Optional Features"
msgstr "Neobligātās iespējas"
-#. wJx8x
-#: cui/uiconfig/ui/optadvancedpage.ui:443
-msgctxt "extended_tip|OptAdvancedPage"
-msgid "Allows you to run Java applications in %PRODUCTNAME."
-msgstr ""
-
#. dmvLE
#: cui/uiconfig/ui/optappearancepage.ui:33
msgctxt "optappearancepage|label3"
@@ -13858,39 +13906,33 @@ msgid "Color Scheme"
msgstr "Krāsu shēma"
#. RAEbU
-#: cui/uiconfig/ui/optappearancepage.ui:189
+#: cui/uiconfig/ui/optappearancepage.ui:165
msgctxt "extended_tip|colorconfig"
msgid "Select the colors for the user interface elements."
msgstr "Atlasiet krāsas lietotāja saskarnes elementiem."
#. BtFUJ
-#: cui/uiconfig/ui/optappearancepage.ui:222
+#: cui/uiconfig/ui/optappearancepage.ui:198
msgctxt "optappearancepage|uielements"
msgid "User interface elements"
msgstr "Lietotāja saskarnes elementi"
#. nrHHF
-#: cui/uiconfig/ui/optappearancepage.ui:235
+#: cui/uiconfig/ui/optappearancepage.ui:211
msgctxt "optappearancepage|colorsetting"
msgid "Color setting"
msgstr "Krāsu iestatījumi"
-#. Jms9Q
-#: cui/uiconfig/ui/optappearancepage.ui:248
-msgctxt "optappearancepage|on"
-msgid "On"
-msgstr "Ieslēgts"
-
#. HFLPF
-#: cui/uiconfig/ui/optappearancepage.ui:267
+#: cui/uiconfig/ui/optappearancepage.ui:242
msgctxt "optappearancepage|label2"
msgid "Custom Colors"
msgstr "Pielāgotas krāsas"
-#. vxBRc
-#: cui/uiconfig/ui/optappearancepage.ui:282
+#. 6mjwC
+#: cui/uiconfig/ui/optappearancepage.ui:257
msgctxt "extended_tip|OptAppearancePage"
-msgid "Sets the colors for the %PRODUCTNAME user interface."
+msgid "Sets the colors for the user interface."
msgstr ""
#. nRFne
@@ -14116,37 +14158,37 @@ msgid "Language Features"
msgstr "Valodas iespējas"
#. VXGYT
-#: cui/uiconfig/ui/optchartcolorspage.ui:74
+#: cui/uiconfig/ui/optchartcolorspage.ui:77
msgctxt "extended_tip|colors"
msgid "Displays all the colors available for the data series."
msgstr ""
#. vTZjC
-#: cui/uiconfig/ui/optchartcolorspage.ui:85
+#: cui/uiconfig/ui/optchartcolorspage.ui:88
msgctxt "optchartcolorspage|label20"
msgid "Chart Colors"
msgstr "Diagrammas krāsas"
#. WA57y
-#: cui/uiconfig/ui/optchartcolorspage.ui:154
+#: cui/uiconfig/ui/optchartcolorspage.ui:157
msgctxt "optchartcolorspage|default"
msgid "_Default"
msgstr "_Noklusējuma"
#. mpSKB
-#: cui/uiconfig/ui/optchartcolorspage.ui:161
+#: cui/uiconfig/ui/optchartcolorspage.ui:164
msgctxt "extended_tip|default"
msgid "Restores the color settings that were defined when the program was installed."
msgstr ""
#. KoHHw
-#: cui/uiconfig/ui/optchartcolorspage.ui:227
+#: cui/uiconfig/ui/optchartcolorspage.ui:230
msgctxt "optchartcolorspage|label1"
msgid "Color Table"
msgstr "Krāsu tabula"
#. xxtZE
-#: cui/uiconfig/ui/optchartcolorspage.ui:242
+#: cui/uiconfig/ui/optchartcolorspage.ui:245
msgctxt "extended_tip|OptChartColorsPage"
msgid "Displays all the colors available for the data series."
msgstr ""
@@ -14253,10 +14295,10 @@ msgctxt "optctlpage|numerals"
msgid "Context"
msgstr "Konteksta"
-#. jDGEt
+#. xLaeT
#: cui/uiconfig/ui/optctlpage.ui:239
msgctxt "extended_tip|numerals"
-msgid "Selects the type of numerals used within text, text in objects, fields, and controls, in all %PRODUCTNAME modules. Only cell contents of %PRODUCTNAME Calc are not affected."
+msgid "Selects the type of numerals used within text, text in objects, fields, and controls, in all office suite modules. Only cell contents of Calc are not affected."
msgstr ""
#. kWczF
@@ -14333,10 +14375,10 @@ msgctxt "optfltrembedpage|column2"
msgid "[S]"
msgstr "[S]"
-#. xrKRQ
+#. 7h7h8
#: cui/uiconfig/ui/optfltrembedpage.ui:129
msgctxt "extended_tip|checklbcontainer"
-msgid "The [L] and [S] checkbox displays the entries for the pair of OLE objects that can be converted when loading into %PRODUCTNAME [L] and/or when saving into a Microsoft format [S]. "
+msgid "The [L] and [S] checkbox displays the entries for the pair of OLE objects that can be converted when loaded from a Microsoft format [L] and/or when saved to to a Microsoft format [S]. "
msgstr ""
#. x5kfq
@@ -14371,10 +14413,10 @@ msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "Izcelšana"
-#. mCeit
+#. qBuyX
#: cui/uiconfig/ui/optfltrembedpage.ui:239
msgctxt "extended_tip|highlighting"
-msgid "Microsoft Office has two character attributes similar to %PRODUCTNAME character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
+msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. Dnrx7
@@ -14383,10 +14425,10 @@ msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "Ēnojums"
-#. 5b274
+#. 3PFE2
#: cui/uiconfig/ui/optfltrembedpage.ui:260
msgctxt "extended_tip|shading"
-msgid "Microsoft Office has two character attributes similar to %PRODUCTNAME character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
+msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. gKwdG
@@ -14401,10 +14443,10 @@ msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr "Izveidot MSO noslēgšanas datni"
-#. NDG4H
+#. qc4GD
#: cui/uiconfig/ui/optfltrembedpage.ui:319
msgctxt "extended_tip|mso_lockfile"
-msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to %PRODUCTNAME own lock file."
+msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr ""
#. Sg5Bw
@@ -14425,10 +14467,10 @@ msgctxt "optfltrpage|wo_basic"
msgid "Load Basic _code"
msgstr "Ielādēt Basic _kodu"
-#. q4wdN
+#. QoX7F
#: cui/uiconfig/ui/optfltrpage.ui:35
msgctxt "extended_tip|wo_basic"
-msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+msgid "Loads and saves the Basic code from a Microsoft document as a special Basic module with the document. The disabled Microsoft Basic code is visible in the Basic IDE between Sub and End Sub."
msgstr ""
#. AChYC
@@ -14449,10 +14491,10 @@ msgctxt "optfltrpage|wo_saveorig"
msgid "Save _original Basic code"
msgstr "Saglabāt sāk_otnējo Basic kodu"
-#. 4pGYB
+#. 2gFSv
#: cui/uiconfig/ui/optfltrpage.ui:74
msgctxt "extended_tip|wo_saveorig"
-msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in the office suite. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
msgstr ""
#. W6nED
@@ -14467,10 +14509,10 @@ msgctxt "optfltrpage|ex_basic"
msgid "Lo_ad Basic code"
msgstr "Ielādēt B_asic kodu"
-#. QcFGD
+#. NNMHC
#: cui/uiconfig/ui/optfltrpage.ui:126
msgctxt "extended_tip|ex_basic"
-msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+msgid "Loads and saves the Basic code from a Microsoft document as a special Basic module with the document. The disabled Microsoft Basic code is visible in the Basic IDE between Sub and End Sub."
msgstr ""
#. S6ozV
@@ -14491,10 +14533,10 @@ msgctxt "optfltrpage|ex_saveorig"
msgid "Sa_ve original Basic code"
msgstr "Saglabāt sākotnējo _Basic kodu"
-#. QzDgZ
+#. BXFfA
#: cui/uiconfig/ui/optfltrpage.ui:165
msgctxt "extended_tip|ex_saveorig"
-msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in the office suite. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
msgstr ""
#. a5EkB
@@ -14509,10 +14551,10 @@ msgctxt "optfltrpage|pp_basic"
msgid "Load Ba_sic code"
msgstr "Ielādēt Ba_sic kodu"
-#. VR4v5
+#. MNcGz
#: cui/uiconfig/ui/optfltrpage.ui:217
msgctxt "extended_tip|pp_basic"
-msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
+msgid "Loads and saves the Basic code from a Microsoft document as a special Basic module with the document. The disabled Microsoft Basic code is visible in the Basic IDE between Sub and End Sub."
msgstr ""
#. VSdyY
@@ -14521,10 +14563,10 @@ msgctxt "optfltrpage|pp_saveorig"
msgid "Sav_e original Basic code"
msgstr "Saglabāt sākotnējo B_asic kodu"
-#. tTQXM
+#. 8VTG9
#: cui/uiconfig/ui/optfltrpage.ui:236
msgctxt "extended_tip|pp_saveorig"
-msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
+msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in the office suite. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
msgstr ""
#. sazZt
@@ -14809,10 +14851,10 @@ msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME datņu asociācijas"
-#. coFbL
+#. KyK5F
#: cui/uiconfig/ui/optgeneralpage.ui:437
msgctxt "extended_tip | OptGeneralPage"
-msgid "Specifies the general settings for %PRODUCTNAME."
+msgid "Specifies the general settings for the office suite."
msgstr ""
#. FsiDE
@@ -14923,10 +14965,10 @@ msgctxt "opthtmlpage|unknowntag"
msgid "_Import unknown HTML tags as fields"
msgstr "_Importēt nezināmas HTML birkas kā laukus"
-#. QvehA
+#. HUFPp
#: cui/uiconfig/ui/opthtmlpage.ui:372
msgctxt "extended_tip|unknowntag"
-msgid "Mark this check box if you want tags that are not recognized by %PRODUCTNAME to be imported as fields."
+msgid "Mark this check box if you want tags that are not recognized by Writer/Web to be imported as fields."
msgstr ""
#. VFTrU
@@ -14989,10 +15031,10 @@ msgctxt "opthtmlpage|starbasicwarning"
msgid "Display _warning"
msgstr "Rādīt _brīdinājumu"
-#. wArnh
+#. GwwUY
#: cui/uiconfig/ui/opthtmlpage.ui:533
msgctxt "extended_tip|starbasicwarning"
-msgid "If this field is marked, when exporting to HTML a warning is shown that %PRODUCTNAME Basic macros will be lost."
+msgid "If this field is marked, when exporting to HTML a warning is shown that Basic macros will be lost."
msgstr ""
#. puyKW
@@ -15001,10 +15043,10 @@ msgctxt "opthtmlpage|starbasic"
msgid "LibreOffice _Basic"
msgstr "LibreOffice _Basic"
-#. BtWXE
+#. DEAm3
#: cui/uiconfig/ui/opthtmlpage.ui:553
msgctxt "extended_tip|starbasic"
-msgid "Mark this check box to include the %PRODUCTNAME Basic instructions when exporting to HTML format."
+msgid "Mark this check box to include the Basic instructions when exporting to HTML format."
msgstr ""
#. sEnBN
@@ -15313,10 +15355,10 @@ msgctxt "optlanguagespage|label4"
msgid "_User interface:"
msgstr "_Lietotāja saskarne:"
-#. PwNF7
+#. rj5UD
#: cui/uiconfig/ui/optlanguagespage.ui:80
msgctxt "extended_tip|userinterface"
-msgid "Select the language used for the user interface, for example menus, dialogs, help files. You must have installed at least one additional language pack or a multi-language version of %PRODUCTNAME."
+msgid "Select the language used for the user interface, for example menus, dialogs, help files. You must have installed at least one additional language pack."
msgstr ""
#. e8VE3
@@ -15361,10 +15403,10 @@ msgctxt "optlanguagespage|ctlsupport"
msgid "Complex _text layout:"
msgstr "Kompleksā _teksta izkārtojums:"
-#. gTEDf
+#. EvD7M
#: cui/uiconfig/ui/optlanguagespage.ui:250
msgctxt "extended_tip|ctlsupport"
-msgid "Activates complex text layout support. You can now modify the settings corresponding to complex text layout in %PRODUCTNAME."
+msgid "Activates complex text layout support. You can now modify the settings corresponding to complex text layout."
msgstr ""
#. mpLF7
@@ -15373,10 +15415,10 @@ msgctxt "optlanguagespage|asiansupport"
msgid "Asian:"
msgstr "Āzijas:"
-#. GT6AZ
+#. jWDQg
#: cui/uiconfig/ui/optlanguagespage.ui:269
msgctxt "extended_tip|asiansupport"
-msgid "Activates Asian languages support. You can now modify the corresponding Asian language settings in %PRODUCTNAME."
+msgid "Activates Asian languages support. You can now modify the corresponding Asian language settings."
msgstr ""
#. QwDAK
@@ -15661,10 +15703,10 @@ msgctxt "optonlineupdatepage|autocheck"
msgid "_Check for updates automatically"
msgstr "_Pārbaudīt atjauninājumus automātiski"
-#. k3qNc
+#. gxD2d
#: cui/uiconfig/ui/optonlineupdatepage.ui:39
msgctxt "extended_tip|autocheck"
-msgid "Mark to check for online updates periodically, then select the time interval how often %PRODUCTNAME will check for online updates."
+msgid "Mark to check for online updates periodically, then select the time interval how often to automatically check for online updates."
msgstr ""
#. Hbe2C
@@ -15811,10 +15853,10 @@ msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "Tiešsaistes atjaunināšanas opcijas"
-#. aJHdb
+#. MdSsA
#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
-msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
+msgid "Specifies some options for the automatic notification and downloading of online updates to the office suite."
msgstr ""
#. QYxCN
@@ -15895,10 +15937,10 @@ msgctxt "edit"
msgid "Click to display the Select Path or Edit Paths dialog."
msgstr ""
-#. G5xyX
+#. 2vbPt
#: cui/uiconfig/ui/optpathspage.ui:210
msgctxt "OptPathsPage"
-msgid "This section contains the default paths to important folders in %PRODUCTNAME. These paths can be edited by the user."
+msgid "This section contains the default paths to important folders of the office suite. These paths can be edited by the user."
msgstr ""
#. pQEWv
@@ -16069,10 +16111,10 @@ msgctxt "optsavepage|autosave"
msgid "Save _AutoRecovery information every:"
msgstr "Saglabāt _automātiskās atgūšanas informāciju katras:"
-#. 6L2Yh
+#. a9xDP
#: cui/uiconfig/ui/optsavepage.ui:119
msgctxt "autosave"
-msgid "Specifies that %PRODUCTNAME saves the information needed to restore all open documents in case of a crash. You can specify the saving time interval."
+msgid "Specifies that the office suite saves the information needed to restore all open documents in case of a crash. You can specify the saving time interval."
msgstr ""
#. ipCBG
@@ -16093,10 +16135,10 @@ msgctxt "optsavepage|userautosave"
msgid "Automatically save the document too"
msgstr "Arī automātiski saglabāt dokumentu"
-#. udKBa
+#. mKGDm
#: cui/uiconfig/ui/optsavepage.ui:173
msgctxt "userautosave"
-msgid "Specifies that %PRODUCTNAME saves all open documents when saving auto recovery information. Uses the same time interval as AutoRecovery does."
+msgid "Specifies that the office suite saves all open documents when saving auto recovery information. Uses the same time interval as AutoRecovery does."
msgstr ""
#. kwFtx
@@ -16141,10 +16183,10 @@ msgctxt "optsavepage|backup"
msgid "Al_ways create backup copy"
msgstr "_Vienmēr izveidot rezerves kopiju"
-#. TtAJZ
+#. vhCe5
#: cui/uiconfig/ui/optsavepage.ui:249
msgctxt "backup"
-msgid "Saves the previous version of a document as a backup copy whenever you save a document. Every time %PRODUCTNAME creates a backup copy, the previous backup copy is replaced. The backup copy gets the extension .BAK."
+msgid "Saves the previous version of a document as a backup copy whenever you save a document. Every time the office suite creates a backup copy, the previous backup copy is replaced. The backup copy gets the extension .BAK."
msgstr ""
#. NaGCU
@@ -16376,10 +16418,10 @@ msgctxt "optsecuritypage|savepassword"
msgid "Persistently _save passwords for web connections"
msgstr "Pastāvīgi _saglabāt paroles no tīmekļa savienojumiem"
-#. RHiBv
+#. pcu6X
#: cui/uiconfig/ui/optsecuritypage.ui:251
msgctxt "extended_tip|savepassword"
-msgid "If enabled, %PRODUCTNAME will securely store all passwords that you use to access files from web servers. You can retrieve the passwords from the list after you enter the master password."
+msgid "If enabled, all passwords that you use to access files from web servers will be securely stored. You can retrieve the passwords from the list after you enter the master password."
msgstr ""
#. Gyqwf
@@ -17186,11 +17228,11 @@ msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
-#. anMTd
+#. SXzWW
#: cui/uiconfig/ui/optviewpage.ui:441
msgctxt "optviewpage|label6"
-msgid "Icon s_tyle:"
-msgstr "Ikonu s_tils:"
+msgid "_Theme:"
+msgstr ""
#. StBQN
#: cui/uiconfig/ui/optviewpage.ui:456
@@ -17198,10 +17240,10 @@ msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
-#. eMqmK
+#. F7kTw
#: cui/uiconfig/ui/optviewpage.ui:472
msgctxt "optviewpage|label1"
-msgid "Icon Style"
+msgid "Icon Theme"
msgstr ""
#. stYtM
@@ -18269,10 +18311,10 @@ msgctxt "pickoutlinepage|label25"
msgid "Selection"
msgstr "Izvēlētais"
-#. FnZK4
+#. rvStY
#: cui/uiconfig/ui/pickoutlinepage.ui:58
msgctxt "pickoutlinepage|extended_tip|PickOutlinePage"
-msgid "Displays the different styles that you can apply to a hierarchical list. %PRODUCTNAME supports up to nine outline levels in a list hierarchy."
+msgid "Displays the different styles that you can apply to a hierarchical list. Up to nine outline levels in a list hierarchy are supported."
msgstr ""
#. hRP6U
@@ -19125,10 +19167,10 @@ msgctxt "scriptorganizer|macrosft"
msgid "Macros"
msgstr "Makrokomandas"
-#. vX8VC
+#. GyWDB
#: cui/uiconfig/ui/scriptorganizer.ui:266
msgctxt "scriptorganizer|extended_tip|ScriptOrganizerDialog"
-msgid "Select a macro or script from My Macros, %PRODUCTNAME Macros, or an open document. To view the available macros or scripts, double-click an entry."
+msgid "Select a macro or script from My Macros, Application Macros, or an open document. To view the available macros or scripts, double-click an entry."
msgstr ""
#. U3sDy
@@ -20217,10 +20259,10 @@ msgctxt "spellingdialog|ignoreall"
msgid "I_gnore All"
msgstr "I_gnorēt visus"
-#. B5UQJ
+#. zS3Wm
#: cui/uiconfig/ui/spellingdialog.ui:546
msgctxt "spellingdialog|extended_tip|ignoreall"
-msgid "Skips all occurrences of the unknown word until the end of the current %PRODUCTNAME session and continues with the spellcheck."
+msgid "Skips all occurrences of the unknown word until the end of the current office suite session and continues with the spellcheck."
msgstr ""
#. ZZNQM
@@ -20787,10 +20829,10 @@ msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "_Automātiski"
-#. HwKA5
+#. xq5Sb
#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
-msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
+msgid "Automatically determine the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr ""
#. aagEf
@@ -21279,6 +21321,102 @@ msgctxt "textflowpage|extended_tip|TextFlowPage"
msgid "Specify hyphenation and pagination options."
msgstr ""
+#. K58BF
+#: cui/uiconfig/ui/themetabpage.ui:30
+msgctxt "themetabpage|lbThemeName"
+msgid "Name:"
+msgstr ""
+
+#. GxAud
+#: cui/uiconfig/ui/themetabpage.ui:60
+msgctxt "themetabpage|general"
+msgid "General"
+msgstr ""
+
+#. PFDEf
+#: cui/uiconfig/ui/themetabpage.ui:92
+msgctxt "themetabpage|lbColorSetName"
+msgid "Name:"
+msgstr ""
+
+#. 4GfYQ
+#: cui/uiconfig/ui/themetabpage.ui:121
+msgctxt "themetabpage|lbDk1"
+msgid "Background - Dark 1:"
+msgstr ""
+
+#. J3qNF
+#: cui/uiconfig/ui/themetabpage.ui:136
+msgctxt "themetabpage|lbLt1"
+msgid "Text - Light 1:"
+msgstr ""
+
+#. zFCDe
+#: cui/uiconfig/ui/themetabpage.ui:151
+msgctxt "themetabpage|lbDk2"
+msgid "Background - Dark 2:"
+msgstr ""
+
+#. RVZjG
+#: cui/uiconfig/ui/themetabpage.ui:166
+msgctxt "themetabpage|lbLt2"
+msgid "Text - Light 2:"
+msgstr ""
+
+#. kwdwQ
+#: cui/uiconfig/ui/themetabpage.ui:181
+msgctxt "themetabpage|lbAccent1"
+msgid "Accent 1:"
+msgstr ""
+
+#. iBrgD
+#: cui/uiconfig/ui/themetabpage.ui:196
+msgctxt "themetabpage|lbAccent2"
+msgid "Accent 2:"
+msgstr ""
+
+#. jA7Cn
+#: cui/uiconfig/ui/themetabpage.ui:211
+msgctxt "themetabpage|lbAccent3"
+msgid "Accent 3:"
+msgstr ""
+
+#. oPgoC
+#: cui/uiconfig/ui/themetabpage.ui:226
+msgctxt "themetabpage|lbAccent4"
+msgid "Accent 4:"
+msgstr ""
+
+#. n8AAc
+#: cui/uiconfig/ui/themetabpage.ui:241
+msgctxt "themetabpage|lbAccent5"
+msgid "Accent 5:"
+msgstr ""
+
+#. pi44r
+#: cui/uiconfig/ui/themetabpage.ui:256
+msgctxt "themetabpage|lbAccent6"
+msgid "Accent 6:"
+msgstr ""
+
+#. CeB9H
+#: cui/uiconfig/ui/themetabpage.ui:271
+msgctxt "themetabpage|lbHlink"
+msgid "Hyperlink:"
+msgstr ""
+
+#. B722M
+#: cui/uiconfig/ui/themetabpage.ui:286
+msgctxt "themetabpage|lbFolHlink"
+msgid "Followed Hyperlink:"
+msgstr ""
+
+#. jRFtE
+#: cui/uiconfig/ui/themetabpage.ui:543
+msgctxt "themetabpage|colorSet"
+msgid "Color Set"
+msgstr ""
+
#. 5BskL
#: cui/uiconfig/ui/thesaurus.ui:23
msgctxt "thesaurus|ThesaurusDialog"
@@ -21747,10 +21885,10 @@ msgctxt "wordcompletionpage|appendspace"
msgid "_Append space"
msgstr "_Pievienot atstarpi"
-#. B3Tgo
+#. gZhGZ
#: cui/uiconfig/ui/wordcompletionpage.ui:107
msgctxt "wordcompletionpage|extended_tip|appendspace"
-msgid "If you do not add punctuation after the word, %PRODUCTNAME adds a space."
+msgid "If you do not add punctuation after the word then a space is added automatically."
msgstr ""
#. YyYGC
@@ -21819,10 +21957,10 @@ msgctxt "wordcompletionpage|whenclosing"
msgid "_When closing a document, remove the words collected from it from the list"
msgstr "Aizverot dokumentu, izņemt no saraksta vārdus, kas ir ievākti no dokumenta"
-#. RFvtW
+#. 6yDhD
#: cui/uiconfig/ui/wordcompletionpage.ui:343
msgctxt "wordcompletionpage|extended_tip|whenclosing"
-msgid "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."
+msgid "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 office suite."
msgstr ""
#. f7oAK
@@ -22005,8 +22143,8 @@ msgctxt "zoomdialog|label1"
msgid "View Layout"
msgstr "Skata izkārtojums"
-#. xrBmX
+#. DWWgJ
#: cui/uiconfig/ui/zoomdialog.ui:448
msgctxt "zoomdialog|extended_tip|ZoomDialog"
-msgid "Reduces or enlarges the screen display of %PRODUCTNAME."
+msgid "Reduces or enlarges the screen display."
msgstr ""
diff --git a/source/lv/dbaccess/messages.po b/source/lv/dbaccess/messages.po
index 24907e50d26..3d8f88e697d 100644
--- a/source/lv/dbaccess/messages.po
+++ b/source/lv/dbaccess/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2021-11-29 04:12+0000\n"
"Last-Translator: Tranzistors <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/lv/>\n"
@@ -13,23 +13,23 @@ 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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1557164049.000000\n"
#. BiN6g
-#: dbaccess/inc/query.hrc:26
+#: dbaccess/inc/query.hrc:28
msgctxt "RSC_QUERY_OBJECT_TYPE"
msgid "The table view"
msgstr "Tabulas skats"
#. ySuKZ
-#: dbaccess/inc/query.hrc:27
+#: dbaccess/inc/query.hrc:29
msgctxt "RSC_QUERY_OBJECT_TYPE"
msgid "The query"
msgstr "Vaicājums"
#. akGh9
-#: dbaccess/inc/query.hrc:28
+#: dbaccess/inc/query.hrc:30
msgctxt "RSC_QUERY_OBJECT_TYPE"
msgid "The SQL statement"
msgstr "SQL priekšraksts"
@@ -3371,97 +3371,97 @@ msgstr ""
"Jaunizveidotie iestatījumi pārrakstīs jau esošos."
#. bWHAD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:18
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:23
msgctxt "generalpagewizard|headerText"
msgid "Welcome to the %PRODUCTNAME Database Wizard"
msgstr "Laipni lūgti %PRODUCTNAME datubāzes vednī"
#. DSNWP
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:35
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:40
msgctxt "generalpagewizard|helpText"
msgid "Use the Database Wizard to create a new database, open an existing database file, or connect to a database stored on a server."
msgstr "Izmantojiet datubāzes vedni, lai izveidotu jaunu datubāzi, atvērtu esošas datubāzes datni vai lai savienotos ar uz servera glabātu datubāzi."
#. KxZny
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:50
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:55
msgctxt "generalpagewizard|sourceTypeHeader"
msgid "What do you want to do?"
msgstr "Ko vēlaties darīt?"
#. M3vFA
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:61
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:66
msgctxt "generalpagewizard|createDatabase"
msgid "Create a n_ew database"
msgstr "Izv_eidot jaunu datubāzi"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:77
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:96
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "I_egultā datubāze:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:126
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Atvērt esošas datubāzes _datni"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:136
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:155
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "Nesen i_zmantots:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:180
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:191
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Atvērt"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:202
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:213
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Savienoties ar esoš_u datubāzi"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:223
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:240
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:263
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3469,7 +3469,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:273
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
@@ -3979,19 +3979,19 @@ msgid "Parameter Input"
msgstr "Parametru ievade"
#. 64gyj
-#: dbaccess/uiconfig/ui/parametersdialog.ui:152
+#: dbaccess/uiconfig/ui/parametersdialog.ui:151
msgctxt "parametersdialog|label2"
msgid "_Value:"
msgstr "_Vērtība:"
#. BqYRw
-#: dbaccess/uiconfig/ui/parametersdialog.ui:184
+#: dbaccess/uiconfig/ui/parametersdialog.ui:183
msgctxt "parametersdialog|next"
msgid "_Next"
msgstr "_Nākamais"
#. xirKR
-#: dbaccess/uiconfig/ui/parametersdialog.ui:210
+#: dbaccess/uiconfig/ui/parametersdialog.ui:209
msgctxt "parametersdialog|label1"
msgid "_Parameters"
msgstr "_Parametri"
diff --git a/source/lv/desktop/messages.po b/source/lv/desktop/messages.po
index b05010a13ed..79b0711a061 100644
--- a/source/lv/desktop/messages.po
+++ b/source/lv/desktop/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2021-11-27 22:41+0000\n"
"Last-Translator: Tranzistors <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/desktopmessages/lv/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1552484859.000000\n"
#. v2iwK
@@ -997,10 +997,10 @@ msgctxt "extensionmanager|extended_tip|getextensions"
msgid "You can find a collection of extensions on the Web."
msgstr ""
-#. vSiEz
+#. LFF2R
#: desktop/uiconfig/ui/extensionmanager.ui:389
msgctxt "extensionmanager|extended_tip|ExtensionManagerDialog"
-msgid "The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions."
+msgid "The Extension Manager adds, removes, disables, enables, and updates extensions."
msgstr ""
#. EGwkP
diff --git a/source/lv/editeng/messages.po b/source/lv/editeng/messages.po
index d0858cc3c04..8a352bdb05b 100644
--- a/source/lv/editeng/messages.po
+++ b/source/lv/editeng/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:13+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2021-10-18 06:08+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/editengmessages/lv/>\n"
@@ -13,86 +13,86 @@ 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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1550662181.000000\n"
#. BHYB4
#. enum SvxCellHorJustify ----------------------------------------------------
-#: editeng/inc/strings.hrc:17
+#: editeng/inc/strings.hrc:19
msgctxt "RID_SVXITEMS_HORJUST_STANDARD"
msgid "Horizontal alignment default"
msgstr "Horizontālā līdzināšana pēc noklusējuma"
#. htWdf
-#: editeng/inc/strings.hrc:18
+#: editeng/inc/strings.hrc:20
msgctxt "RID_SVXITEMS_HORJUST_LEFT"
msgid "Align left"
msgstr "Līdzināt pie kreisās"
#. icuN2
-#: editeng/inc/strings.hrc:19
+#: editeng/inc/strings.hrc:21
msgctxt "RID_SVXITEMS_HORJUST_CENTER"
msgid "Centered horizontally"
msgstr "Centrēts horizontāli"
#. JXEo9
-#: editeng/inc/strings.hrc:20
+#: editeng/inc/strings.hrc:22
msgctxt "RID_SVXITEMS_HORJUST_RIGHT"
msgid "Align right"
msgstr "Līdzināt pie labās"
#. BFCFs
-#: editeng/inc/strings.hrc:21
+#: editeng/inc/strings.hrc:23
msgctxt "RID_SVXITEMS_HORJUST_BLOCK"
msgid "Justify horizontally"
msgstr "Abpuslīdzināt horizontāli"
#. DVmUh
-#: editeng/inc/strings.hrc:22
+#: editeng/inc/strings.hrc:24
msgctxt "RID_SVXITEMS_HORJUST_REPEAT"
msgid "Repeat alignment"
msgstr "Atkārtot līdzinājumu"
#. hMaif
#. enum SvxCellVerJustify ----------------------------------------------------
-#: editeng/inc/strings.hrc:28
+#: editeng/inc/strings.hrc:30
msgctxt "RID_SVXITEMS_VERJUST_STANDARD"
msgid "Vertical alignment default"
msgstr "Vertikālā līdzināšana pēc noklusējuma"
#. xy2FG
-#: editeng/inc/strings.hrc:29
+#: editeng/inc/strings.hrc:31
msgctxt "RID_SVXITEMS_VERJUST_TOP"
msgid "Align to top"
msgstr "Līdzināt pie augšas"
#. UjmWt
-#: editeng/inc/strings.hrc:30
+#: editeng/inc/strings.hrc:32
msgctxt "RID_SVXITEMS_VERJUST_CENTER"
msgid "Centered vertically"
msgstr "Centrēts vertikāli"
#. G3X9R
-#: editeng/inc/strings.hrc:31
+#: editeng/inc/strings.hrc:33
msgctxt "RID_SVXITEMS_VERJUST_BOTTOM"
msgid "Align to bottom"
msgstr "Līdzināt pie apakšas"
#. 3jGFq
-#: editeng/inc/strings.hrc:32
+#: editeng/inc/strings.hrc:34
msgctxt "RID_SVXITEMS_HORJUST_BLOCK"
msgid "Justify vertically"
msgstr "Abpuslīdzināt vertikāli"
#. WQZvF
#. enum SvxCellJustifyMethod ----------------------------------------------------
-#: editeng/inc/strings.hrc:38
+#: editeng/inc/strings.hrc:40
msgctxt "RID_SVXITEMS_JUSTMETHOD_AUTO"
msgid "Automatic Justify"
msgstr "Automātiskā abpuslīdzināšana"
#. o9aJe
-#: editeng/inc/strings.hrc:39
+#: editeng/inc/strings.hrc:41
msgctxt "RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE"
msgid "Distributed Justify"
msgstr "Izkārtotā abpuslīdzināšana"
diff --git a/source/lv/extensions/messages.po b/source/lv/extensions/messages.po
index 231181c3882..cf3dd8b32ee 100644
--- a/source/lv/extensions/messages.po
+++ b/source/lv/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2021-11-27 22:41+0000\n"
"Last-Translator: Tranzistors <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/lv/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1555492410.000000\n"
#. cBx8W
@@ -100,727 +100,727 @@ msgid "_Yes"
msgstr ""
#. hEBQd
-#: extensions/inc/showhide.hrc:29
+#: extensions/inc/showhide.hrc:31
msgctxt "RID_RSC_ENUM_SHOWHIDE"
msgid "Hide"
msgstr "Slēpt"
#. 6NMuP
-#: extensions/inc/showhide.hrc:30
+#: extensions/inc/showhide.hrc:32
msgctxt "RID_RSC_ENUM_SHOWHIDE"
msgid "Show"
msgstr "Rādīt"
#. jtRex
-#: extensions/inc/stringarrays.hrc:27
+#: extensions/inc/stringarrays.hrc:29
msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
msgid "Top"
msgstr "Augšā"
#. dKUAY
-#: extensions/inc/stringarrays.hrc:28
+#: extensions/inc/stringarrays.hrc:30
msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
msgid "Middle"
msgstr "Vidū"
#. zrn8B
-#: extensions/inc/stringarrays.hrc:29
+#: extensions/inc/stringarrays.hrc:31
msgctxt "RID_RSC_ENUM_VERTICAL_ALIGN"
msgid "Bottom"
msgstr "Apakšā"
#. 9sD4A
-#: extensions/inc/stringarrays.hrc:34
+#: extensions/inc/stringarrays.hrc:36
msgctxt "RID_RSC_ENUM_ICONSIZE_TYPE"
msgid "Small"
msgstr "Mazs"
#. Xqy9X
-#: extensions/inc/stringarrays.hrc:35
+#: extensions/inc/stringarrays.hrc:37
msgctxt "RID_RSC_ENUM_ICONSIZE_TYPE"
msgid "Large"
msgstr "Liels"
#. 5ACyV
-#: extensions/inc/stringarrays.hrc:40
+#: extensions/inc/stringarrays.hrc:42
msgctxt "RID_RSC_ENUM_BORDER_TYPE"
msgid "Without frame"
msgstr "Bez ietvara"
#. ozfAi
-#: extensions/inc/stringarrays.hrc:41
+#: extensions/inc/stringarrays.hrc:43
msgctxt "RID_RSC_ENUM_BORDER_TYPE"
msgid "3D look"
msgstr "3D izskats"
#. zv7ER
-#: extensions/inc/stringarrays.hrc:42
+#: extensions/inc/stringarrays.hrc:44
msgctxt "RID_RSC_ENUM_BORDER_TYPE"
msgid "Flat"
msgstr "Plakans"
#. hLCDu
-#: extensions/inc/stringarrays.hrc:47
+#: extensions/inc/stringarrays.hrc:49
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Valuelist"
msgstr "Vērtību saraksts"
#. uEHqn
-#: extensions/inc/stringarrays.hrc:48
+#: extensions/inc/stringarrays.hrc:50
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Table"
msgstr "Tabula"
#. GxEC7
-#: extensions/inc/stringarrays.hrc:49
+#: extensions/inc/stringarrays.hrc:51
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Query"
msgstr "Vaicājums"
#. Espc7
-#: extensions/inc/stringarrays.hrc:50
+#: extensions/inc/stringarrays.hrc:52
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Sql"
msgstr "Sql"
#. GCQne
-#: extensions/inc/stringarrays.hrc:51
+#: extensions/inc/stringarrays.hrc:53
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Sql [Native]"
msgstr "Sql [vietējais]"
#. kMQfy
-#: extensions/inc/stringarrays.hrc:52
+#: extensions/inc/stringarrays.hrc:54
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Tablefields"
msgstr "Tabulas lauki"
#. LXToU
-#: extensions/inc/stringarrays.hrc:57
+#: extensions/inc/stringarrays.hrc:59
msgctxt "RID_RSC_ENUM_ALIGNMENT"
msgid "Left"
msgstr "Pa kreisi"
#. GdfD5
-#: extensions/inc/stringarrays.hrc:58
+#: extensions/inc/stringarrays.hrc:60
msgctxt "RID_RSC_ENUM_ALIGNMENT"
msgid "Center"
msgstr "Vidū"
#. CavSj
-#: extensions/inc/stringarrays.hrc:59
+#: extensions/inc/stringarrays.hrc:61
msgctxt "RID_RSC_ENUM_ALIGNMENT"
msgid "Right"
msgstr "Pa labi"
#. nAV82
-#: extensions/inc/stringarrays.hrc:64
+#: extensions/inc/stringarrays.hrc:66
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "None"
msgstr "Nav"
#. FcKuk
-#: extensions/inc/stringarrays.hrc:65
+#: extensions/inc/stringarrays.hrc:67
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Submit form"
msgstr "Nosūtīt formu"
#. sUzBS
-#: extensions/inc/stringarrays.hrc:66
+#: extensions/inc/stringarrays.hrc:68
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Reset form"
msgstr "Atiestatīt formu"
#. dvtFb
-#: extensions/inc/stringarrays.hrc:67
+#: extensions/inc/stringarrays.hrc:69
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Open document/web page"
msgstr "Atvērt dokumentu/tīmekļa lapu"
#. PfTdk
-#: extensions/inc/stringarrays.hrc:68
+#: extensions/inc/stringarrays.hrc:70
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "First record"
msgstr "Pirmais ieraksts"
#. arZzt
-#: extensions/inc/stringarrays.hrc:69
+#: extensions/inc/stringarrays.hrc:71
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Previous record"
msgstr "Iepriekšējais ieraksts"
#. wBVrm
-#: extensions/inc/stringarrays.hrc:70
+#: extensions/inc/stringarrays.hrc:72
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Next record"
msgstr "Nākamais ieraksts"
#. MeCez
-#: extensions/inc/stringarrays.hrc:71
+#: extensions/inc/stringarrays.hrc:73
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Last record"
msgstr "Pēdējais ieraksts"
#. DRGF8
-#: extensions/inc/stringarrays.hrc:72
+#: extensions/inc/stringarrays.hrc:74
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Save record"
msgstr "Saglabāt ierakstu"
#. qA9DX
-#: extensions/inc/stringarrays.hrc:73
+#: extensions/inc/stringarrays.hrc:75
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Undo data entry"
msgstr "Atsaukt datu ievadi"
#. b6Es8
-#: extensions/inc/stringarrays.hrc:74
+#: extensions/inc/stringarrays.hrc:76
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "New record"
msgstr "Jauns ieraksts"
#. GYDro
-#: extensions/inc/stringarrays.hrc:75
+#: extensions/inc/stringarrays.hrc:77
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Delete record"
msgstr "Dzēst ierakstu"
#. Xr2KA
-#: extensions/inc/stringarrays.hrc:76
+#: extensions/inc/stringarrays.hrc:78
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Atsvaidzināt formu"
#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
msgid "Get"
msgstr "Get"
#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
+#: extensions/inc/stringarrays.hrc:84
msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
msgid "Post"
msgstr "Post"
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Daudzdaļu"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Teksts"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Standarta (īss)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Standarta (īss GG)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Standarta (īss GGGG)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Standarta (garš)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:100
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/GG"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:101
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/GG"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:102
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "GG/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:103
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/GGGG"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/GGGG"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "GGGG/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "GG-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "GGGG-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:115
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "Nav izvēlēts"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Izvēlēts"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:122
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "Nav definēts"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "Visi ieraksti"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Aktīvais ieraksts"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:129
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Pašreizējā lappuse"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Nē"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Jā"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Vecāka forma"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_tukšs"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "_vecāks"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "_pats"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_augša"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Nav"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Vienas rindas"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:151
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Vairākrindu"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:152
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Diapazons"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Horizontāli"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "Vertikāli"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Noklusējuma"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "Labi"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:165
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Atcelt"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:166
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Palīdzība"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "Izvēlētais ieraksts"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:172
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "Izvēlētā ieraksta novietojums"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "Vienas rindas"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:178
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "Vairākrindu"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:179
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "Vairākrindu ar formatējumu"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Nav"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Horizontāli"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:192
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "Vertikāli"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:193
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "Abi"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Plakans"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "Pa kreisi augšā"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Pa kreisi centrēts"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "Pa kreisi apakšā"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "Pa labi augšā"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "Pa labi centrēts"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:209
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "Pa labi apakšā"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:210
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "Pa kreisi virs"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:211
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "Centrēts virs"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:212
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "Pa labi virs"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Pa kreisi zem"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Centrēts zem"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Pa labi zem"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:216
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "Centrēts"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Saglabāt"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Aizstāt"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:223
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Sakļaut"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Nē"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Saglabāt malu attiecību"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:230
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Ietilpināt izmērā"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "No kreisās uz labo"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "No labās uz kreiso"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:237
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Izmantot virsobjekta iestatījumus"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Nekad"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "Kad fokusēts"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Vienmēr"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:249
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "Pie rindkopas"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Kā rakstzīme"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "Pie lappuses"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:252
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "Pie ietvara"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:253
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "Pie rakstzīmes"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:258
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "Pie lappuses"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:259
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "Pie šūnas"
@@ -3174,10 +3174,10 @@ msgctxt "datasourcepage|available"
msgid "Make this address book available to all modules in %PRODUCTNAME."
msgstr "Ļaut piekļūt šai adrešu grāmatai no visiem %PRODUCTNAME moduļiem."
-#. F3UzV
+#. iPwFJ
#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:134
msgctxt "datasourcepage|extended_tip|available"
-msgid "Registers the newly created database file in %PRODUCTNAME. The database will then be listed in the Data sources pane (Ctrl+Shift+F4). If this check box is cleared, the database will be available only by opening the database file."
+msgid "Registers the newly created database file in the office suite. The database will then be listed in the Data sources pane (Ctrl+Shift+F4). If this check box is cleared, the database will be available only by opening the database file."
msgstr ""
#. jbrum
@@ -3487,16 +3487,16 @@ msgstr ""
"Izvēlētais ārējais datu avots satur vairāk kā vienu adrešu grāmatu.\n"
"Lūdzu, izvēlieties vienu, ar kuru jūs pārsvarā strādājat:"
-#. YkkV4
+#. 2aTdA
#: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:77
msgctxt "selecttablepage|extended_tip|table"
-msgid "Specifies the table that is to serve as the address book for the %PRODUCTNAME templates."
+msgid "Specifies the table that is to serve as the address book for the office suite templates."
msgstr ""
-#. F6ySC
+#. K8W3u
#: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:90
msgctxt "selecttablepage|extended_tip|SelectTablePage"
-msgid "Specifies a table from the Seamonkey / Netscape address book source that is used as the address book in %PRODUCTNAME."
+msgid "Specifies a table from the Seamonkey / Netscape address book source that is used as the address book in the office suite."
msgstr ""
#. bCndk
@@ -3589,10 +3589,10 @@ msgctxt "selecttypepage|other"
msgid "Other external data source"
msgstr "Cits ārējs datu avots"
-#. xvf2d
+#. XHBju
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:171
msgctxt "selecttypepage|extended_tip|other"
-msgid "Select this option if you want to register another data source as address book in %PRODUCTNAME."
+msgid "Select this option if you want to register another data source as address book in the office suite."
msgstr ""
#. HyBth
@@ -3601,10 +3601,10 @@ msgctxt "selecttypepage|label1"
msgid "Select the type of your external address book:"
msgstr "Izvēlieties ārējās adrešu grāmatas tipu:"
-#. xdzuR
+#. zEGmu
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:207
msgctxt "selecttypepage|extended_tip|SelectTypePage"
-msgid "This wizard registers an existing address book as a data source in %PRODUCTNAME."
+msgid "This wizard registers an existing address book as a data source in the office suite."
msgstr ""
#. f33Eh
diff --git a/source/lv/filter/messages.po b/source/lv/filter/messages.po
index 4778d04b89f..919388a8cf8 100644
--- a/source/lv/filter/messages.po
+++ b/source/lv/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2021-11-29 04:12+0000\n"
"Last-Translator: Tranzistors <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/lv/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565444751.000000\n"
#. 5AQgJ
@@ -744,10 +744,10 @@ msgctxt "pdfgeneralpage|emptypages"
msgid "Exp_ort automatically inserted blank pages"
msgstr "Eksp_ortēt automātiski ievietotās tukšās lappuses"
-#. ZkGWy
+#. Drp3w
#: filter/uiconfig/ui/pdfgeneralpage.ui:871
msgctxt "pdfgeneralpage|extended_tip|emptypages"
-msgid "If switched on, automatically inserted blank pages are exported to the PDF file. This is best if you are printing the pdf file double-sided. Example: In a book a chapter paragraph style is set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to export that even numbered page or not."
+msgid "If switched on, automatically inserted blank pages are exported to the PDF file. This is best if you are printing the pdf file double-sided. Example: In a book a chapter paragraph style is set to always start with an odd numbered page. If the previous chapter ends on an odd page, then an even numbered blank page is normally automatically inserted. This option controls whether to export that even numbered page or not."
msgstr ""
#. sHqKP
@@ -1753,13 +1753,13 @@ msgid "Tests the XSLT stylesheets used by the selected XML filter."
msgstr ""
#. DEJXN
-#: filter/uiconfig/ui/warnpdfdialog.ui:19
+#: filter/uiconfig/ui/warnpdfdialog.ui:18
msgctxt "warnpdfdialog|WarnPDFDialog"
msgid "Problems During PDF Export"
msgstr "Problēmas, eksportējot PDF"
#. 2BpUz
-#: filter/uiconfig/ui/warnpdfdialog.ui:26
+#: filter/uiconfig/ui/warnpdfdialog.ui:25
msgctxt "warnpdfdialog|WarnPDFDialog"
msgid "During PDF export the following problems occurred:"
msgstr "Eksportējot PDF, gadījās sekojošās problēmas:"
@@ -1914,10 +1914,10 @@ msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
msgstr ""
-#. yTwyU
+#. Tbmcc
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. %PRODUCTNAME uses the file extension to determine which filter to use."
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
msgstr ""
#. fZvBA
diff --git a/source/lv/filter/source/config/fragments/filters.po b/source/lv/filter/source/config/fragments/filters.po
index c6632020a68..131d8134ef1 100644
--- a/source/lv/filter/source/config/fragments/filters.po
+++ b/source/lv/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:20+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2020-07-02 14:00+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <https://weblate.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsfilters/lv/>\n"
@@ -1286,6 +1286,16 @@ msgctxt ""
msgid "Microsoft Visio 2000-2013"
msgstr "Microsoft Visio 2000-2013"
+#. XqQUq
+#: WEBP___WebP.xcu
+msgctxt ""
+"WEBP___WebP.xcu\n"
+"WEBP - WebP\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
#. zUxn7
#: WMF___MS_Windows_Metafile.xcu
msgctxt ""
@@ -1526,6 +1536,16 @@ msgctxt ""
msgid "SVG - Scalable Vector Graphics"
msgstr "SVG - mērogojamā vektorgrafika"
+#. xAURF
+#: calc_webp_Export.xcu
+msgctxt ""
+"calc_webp_Export.xcu\n"
+"calc_webp_Export\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
#. ASgi2
#: chart8.xcu
msgctxt ""
@@ -1706,6 +1726,16 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - birku attēlu datnes formāts"
+#. zoHw3
+#: draw_webp_Export.xcu
+msgctxt ""
+"draw_webp_Export.xcu\n"
+"draw_webp_Export\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
#. RgBSz
#: draw_wmf_Export.xcu
msgctxt ""
@@ -1936,6 +1966,16 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - birku attēlu datnes formāts"
+#. RRsQE
+#: impress_webp_Export.xcu
+msgctxt ""
+"impress_webp_Export.xcu\n"
+"impress_webp_Export\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
#. 3yHCC
#: impress_wmf_Export.xcu
msgctxt ""
@@ -2166,6 +2206,26 @@ msgctxt ""
msgid "PNG - Portable Network Graphics"
msgstr ""
+#. SyN4Q
+#: writer_web_webp_Export.xcu
+msgctxt ""
+"writer_web_webp_Export.xcu\n"
+"writer_web_webp_Export\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
+#. DxENG
+#: writer_webp_Export.xcu
+msgctxt ""
+"writer_webp_Export.xcu\n"
+"writer_webp_Export\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
#. iRPFB
#: writerglobal8.xcu
msgctxt ""
diff --git a/source/lv/filter/source/config/fragments/internalgraphicfilters.po b/source/lv/filter/source/config/fragments/internalgraphicfilters.po
index f61fc9d2845..cac41c6326a 100644
--- a/source/lv/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/lv/filter/source/config/fragments/internalgraphicfilters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:20+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2019-02-25 12:27+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -356,6 +356,26 @@ msgctxt ""
msgid "TIFF - Tagged Image File Format"
msgstr "TIFF - Tagged Image File Format"
+#. NCR2v
+#: webp_Export.xcu
+msgctxt ""
+"webp_Export.xcu\n"
+"webp_Export\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
+#. ZABzk
+#: webp_Import.xcu
+msgctxt ""
+"webp_Import.xcu\n"
+"webp_Import\n"
+"UIName\n"
+"value.text"
+msgid "WEBP - WebP Image"
+msgstr ""
+
#. fUdGf
#: wmf_Export.xcu
msgctxt ""
diff --git a/source/lv/formula/messages.po b/source/lv/formula/messages.po
index 7677da98c49..82bdb4b4890 100644
--- a/source/lv/formula/messages.po
+++ b/source/lv/formula/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2021-10-18 06:08+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/lv/>\n"
@@ -13,2366 +13,2366 @@ 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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1555493273.000000\n"
#. YfKFn
-#: formula/inc/core_resource.hrc:2277
+#: formula/inc/core_resource.hrc:2278
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IF"
msgstr "IF"
#. EgqkZ
-#: formula/inc/core_resource.hrc:2278
+#: formula/inc/core_resource.hrc:2279
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IFERROR"
msgstr "IFERROR"
#. Vowev
-#: formula/inc/core_resource.hrc:2279
+#: formula/inc/core_resource.hrc:2280
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IFNA"
msgstr "IFNA"
#. LcdBW
-#: formula/inc/core_resource.hrc:2280
+#: formula/inc/core_resource.hrc:2281
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHOOSE"
msgstr "CHOOSE"
#. nMD3h
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2282
+#: formula/inc/core_resource.hrc:2283
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#All"
msgstr "#Visi"
#. tuvMu
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2284
+#: formula/inc/core_resource.hrc:2285
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Headers"
msgstr "#Galvenes"
#. amt53
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2286
+#: formula/inc/core_resource.hrc:2287
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Data"
msgstr "#Dati"
#. 8z4ov
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2288
+#: formula/inc/core_resource.hrc:2289
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Totals"
msgstr "#Kopsummas"
#. ZF2Pc
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2290
+#: formula/inc/core_resource.hrc:2291
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#This Row"
msgstr "#Šī rinda"
#. kHXXq
-#: formula/inc/core_resource.hrc:2291
+#: formula/inc/core_resource.hrc:2292
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AND"
msgstr "AND"
#. wUQor
-#: formula/inc/core_resource.hrc:2292
+#: formula/inc/core_resource.hrc:2293
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "OR"
msgstr "OR"
#. P5Wdb
-#: formula/inc/core_resource.hrc:2293
+#: formula/inc/core_resource.hrc:2294
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "XOR"
msgstr "XOR"
#. BhVsr
-#: formula/inc/core_resource.hrc:2294
+#: formula/inc/core_resource.hrc:2295
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NOT"
msgstr "NOT"
#. xBKEY
-#: formula/inc/core_resource.hrc:2295
+#: formula/inc/core_resource.hrc:2296
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NEG"
msgstr "NEG"
#. hR3ty
-#: formula/inc/core_resource.hrc:2296
+#: formula/inc/core_resource.hrc:2297
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PI"
msgstr "PI"
#. HyFVg
#. ???
-#: formula/inc/core_resource.hrc:2297
+#: formula/inc/core_resource.hrc:2298
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RAND"
msgstr "RAND"
#. FJXfC
-#: formula/inc/core_resource.hrc:2298
+#: formula/inc/core_resource.hrc:2299
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRUE"
msgstr "PATIESS"
#. SRUmC
-#: formula/inc/core_resource.hrc:2299
+#: formula/inc/core_resource.hrc:2300
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FALSE"
msgstr "APLAMS"
#. o5Qoc
-#: formula/inc/core_resource.hrc:2300
+#: formula/inc/core_resource.hrc:2301
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TODAY"
msgstr "TODAY"
#. AbGu2
-#: formula/inc/core_resource.hrc:2301
+#: formula/inc/core_resource.hrc:2302
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NOW"
msgstr "NOW"
#. 3SbN6
-#: formula/inc/core_resource.hrc:2302
+#: formula/inc/core_resource.hrc:2303
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NA"
msgstr "NA"
#. XMVcP
-#: formula/inc/core_resource.hrc:2303
+#: formula/inc/core_resource.hrc:2304
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CURRENT"
msgstr "CURRENT"
#. csFkg
-#: formula/inc/core_resource.hrc:2304
+#: formula/inc/core_resource.hrc:2305
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DEGREES"
msgstr "DEGREES"
#. jupWo
-#: formula/inc/core_resource.hrc:2305
+#: formula/inc/core_resource.hrc:2306
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RADIANS"
msgstr "RADIANS"
#. on6aZ
-#: formula/inc/core_resource.hrc:2306
+#: formula/inc/core_resource.hrc:2307
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SIN"
msgstr "SIN"
#. LEVGF
-#: formula/inc/core_resource.hrc:2307
+#: formula/inc/core_resource.hrc:2308
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COS"
msgstr "COS"
#. rYeEc
-#: formula/inc/core_resource.hrc:2308
+#: formula/inc/core_resource.hrc:2309
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TAN"
msgstr "TAN"
#. sUchi
-#: formula/inc/core_resource.hrc:2309
+#: formula/inc/core_resource.hrc:2310
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COT"
msgstr "COT"
#. 2wT6v
-#: formula/inc/core_resource.hrc:2310
+#: formula/inc/core_resource.hrc:2311
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ASIN"
msgstr "ASIN"
#. gP8uF
-#: formula/inc/core_resource.hrc:2311
+#: formula/inc/core_resource.hrc:2312
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOS"
msgstr "ACOS"
#. Dh9Sj
-#: formula/inc/core_resource.hrc:2312
+#: formula/inc/core_resource.hrc:2313
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ATAN"
msgstr "ATAN"
#. EdF3d
-#: formula/inc/core_resource.hrc:2313
+#: formula/inc/core_resource.hrc:2314
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOT"
msgstr "ACOT"
#. 2EsXj
-#: formula/inc/core_resource.hrc:2314
+#: formula/inc/core_resource.hrc:2315
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SINH"
msgstr "SINH"
#. AawuL
-#: formula/inc/core_resource.hrc:2315
+#: formula/inc/core_resource.hrc:2316
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COSH"
msgstr "COSH"
#. ziyn3
-#: formula/inc/core_resource.hrc:2316
+#: formula/inc/core_resource.hrc:2317
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TANH"
msgstr "TANH"
#. HD5CF
-#: formula/inc/core_resource.hrc:2317
+#: formula/inc/core_resource.hrc:2318
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COTH"
msgstr "COTH"
#. gLCtP
-#: formula/inc/core_resource.hrc:2318
+#: formula/inc/core_resource.hrc:2319
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ASINH"
msgstr "ASINH"
#. yYGWp
-#: formula/inc/core_resource.hrc:2319
+#: formula/inc/core_resource.hrc:2320
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOSH"
msgstr "ACOSH"
#. hxEdg
-#: formula/inc/core_resource.hrc:2320
+#: formula/inc/core_resource.hrc:2321
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ATANH"
msgstr "ATANH"
#. rPpEs
-#: formula/inc/core_resource.hrc:2321
+#: formula/inc/core_resource.hrc:2322
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOTH"
msgstr "ACOTH"
#. 4zZ7F
-#: formula/inc/core_resource.hrc:2322
+#: formula/inc/core_resource.hrc:2323
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CSC"
msgstr "CSC"
#. Wt7bF
-#: formula/inc/core_resource.hrc:2323
+#: formula/inc/core_resource.hrc:2324
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SEC"
msgstr "SEC"
#. FAKWX
-#: formula/inc/core_resource.hrc:2324
+#: formula/inc/core_resource.hrc:2325
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CSCH"
msgstr "CSCH"
#. aaj9f
-#: formula/inc/core_resource.hrc:2325
+#: formula/inc/core_resource.hrc:2326
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SECH"
msgstr "SECH"
#. WksHp
-#: formula/inc/core_resource.hrc:2326
+#: formula/inc/core_resource.hrc:2327
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXP"
msgstr "EXP"
#. jvQxZ
-#: formula/inc/core_resource.hrc:2327
+#: formula/inc/core_resource.hrc:2328
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LN"
msgstr "LN"
#. uMYFB
-#: formula/inc/core_resource.hrc:2328
+#: formula/inc/core_resource.hrc:2329
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SQRT"
msgstr "SQRT"
#. pWWMs
-#: formula/inc/core_resource.hrc:2329
+#: formula/inc/core_resource.hrc:2330
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FACT"
msgstr "FACT"
#. E77CE
-#: formula/inc/core_resource.hrc:2330
+#: formula/inc/core_resource.hrc:2331
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "YEAR"
msgstr "YEAR"
#. pyoEq
-#: formula/inc/core_resource.hrc:2331
+#: formula/inc/core_resource.hrc:2332
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MONTH"
msgstr "MONTH"
#. hNQAF
-#: formula/inc/core_resource.hrc:2332
+#: formula/inc/core_resource.hrc:2333
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAY"
msgstr "DAY"
#. EGzo7
-#: formula/inc/core_resource.hrc:2333
+#: formula/inc/core_resource.hrc:2334
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HOUR"
msgstr "HOUR"
#. Qo346
-#: formula/inc/core_resource.hrc:2334
+#: formula/inc/core_resource.hrc:2335
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINUTE"
msgstr "MINUTE"
#. UQsEw
-#: formula/inc/core_resource.hrc:2335
+#: formula/inc/core_resource.hrc:2336
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SECOND"
msgstr "SECOND"
#. PE9Eb
-#: formula/inc/core_resource.hrc:2336
+#: formula/inc/core_resource.hrc:2337
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SIGN"
msgstr "SIGN"
#. svANJ
-#: formula/inc/core_resource.hrc:2337
+#: formula/inc/core_resource.hrc:2338
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ABS"
msgstr "ABS"
#. FATD5
-#: formula/inc/core_resource.hrc:2338
+#: formula/inc/core_resource.hrc:2339
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INT"
msgstr "INT"
#. gQnYU
-#: formula/inc/core_resource.hrc:2339
+#: formula/inc/core_resource.hrc:2340
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PHI"
msgstr "PHI"
#. Qhk4a
-#: formula/inc/core_resource.hrc:2340
+#: formula/inc/core_resource.hrc:2341
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAUSS"
msgstr "GAUSS"
#. B3Abo
-#: formula/inc/core_resource.hrc:2341
+#: formula/inc/core_resource.hrc:2342
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISBLANK"
msgstr "ISBLANK"
#. QDbkj
-#: formula/inc/core_resource.hrc:2342
+#: formula/inc/core_resource.hrc:2343
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISTEXT"
msgstr "ISTEXT"
#. 7cwz3
-#: formula/inc/core_resource.hrc:2343
+#: formula/inc/core_resource.hrc:2344
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISNONTEXT"
msgstr "ISNONTEXT"
#. Sf78G
-#: formula/inc/core_resource.hrc:2344
+#: formula/inc/core_resource.hrc:2345
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISLOGICAL"
msgstr "ISLOGICAL"
#. cp5XL
-#: formula/inc/core_resource.hrc:2345
+#: formula/inc/core_resource.hrc:2346
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TYPE"
msgstr "TYPE"
#. TosDP
-#: formula/inc/core_resource.hrc:2346
+#: formula/inc/core_resource.hrc:2347
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CELL"
msgstr "CELL"
#. CEEAs
-#: formula/inc/core_resource.hrc:2347
+#: formula/inc/core_resource.hrc:2348
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISREF"
msgstr "ISREF"
#. oYFSL
-#: formula/inc/core_resource.hrc:2348
+#: formula/inc/core_resource.hrc:2349
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISNUMBER"
msgstr "ISNUMBER"
#. KtYgY
-#: formula/inc/core_resource.hrc:2349
+#: formula/inc/core_resource.hrc:2350
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISFORMULA"
msgstr "ISFORMULA"
#. JmCq7
-#: formula/inc/core_resource.hrc:2350
+#: formula/inc/core_resource.hrc:2351
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISNA"
msgstr "ISNA"
#. eSL6y
-#: formula/inc/core_resource.hrc:2351
+#: formula/inc/core_resource.hrc:2352
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISERR"
msgstr "ISERR"
#. XUgnE
-#: formula/inc/core_resource.hrc:2352
+#: formula/inc/core_resource.hrc:2353
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISERROR"
msgstr "ISERROR"
#. CgkSX
-#: formula/inc/core_resource.hrc:2353
+#: formula/inc/core_resource.hrc:2354
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISEVEN"
msgstr "ISEVEN"
#. NF3DL
-#: formula/inc/core_resource.hrc:2354
+#: formula/inc/core_resource.hrc:2355
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISODD"
msgstr "ISODD"
#. zWjQ2
-#: formula/inc/core_resource.hrc:2355
+#: formula/inc/core_resource.hrc:2356
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "N"
msgstr "N"
#. Rpyy9
-#: formula/inc/core_resource.hrc:2356
+#: formula/inc/core_resource.hrc:2357
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DATEVALUE"
msgstr "DATEVALUE"
#. YoZ86
-#: formula/inc/core_resource.hrc:2357
+#: formula/inc/core_resource.hrc:2358
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TIMEVALUE"
msgstr "TIMEVALUE"
#. u9Cq2
-#: formula/inc/core_resource.hrc:2358
+#: formula/inc/core_resource.hrc:2359
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CODE"
msgstr "CODE"
#. Tfa7V
-#: formula/inc/core_resource.hrc:2359
+#: formula/inc/core_resource.hrc:2360
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRIM"
msgstr "TRIM"
#. DTAHH
-#: formula/inc/core_resource.hrc:2360
+#: formula/inc/core_resource.hrc:2361
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "UPPER"
msgstr "UPPER"
#. B8s34
-#: formula/inc/core_resource.hrc:2361
+#: formula/inc/core_resource.hrc:2362
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PROPER"
msgstr "PROPER"
#. DDm7q
-#: formula/inc/core_resource.hrc:2362
+#: formula/inc/core_resource.hrc:2363
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOWER"
msgstr "LOWER"
#. nKRuv
-#: formula/inc/core_resource.hrc:2363
+#: formula/inc/core_resource.hrc:2364
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LEN"
msgstr "LEN"
#. L2QYN
-#: formula/inc/core_resource.hrc:2364
+#: formula/inc/core_resource.hrc:2365
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T"
msgstr "T"
#. WR2P5
-#: formula/inc/core_resource.hrc:2365
+#: formula/inc/core_resource.hrc:2366
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VALUE"
msgstr "VALUE"
#. scQDa
-#: formula/inc/core_resource.hrc:2366
+#: formula/inc/core_resource.hrc:2367
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CLEAN"
msgstr "CLEAN"
#. vn5fL
-#: formula/inc/core_resource.hrc:2367
+#: formula/inc/core_resource.hrc:2368
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHAR"
msgstr "CHAR"
#. D5tnq
-#: formula/inc/core_resource.hrc:2368
+#: formula/inc/core_resource.hrc:2369
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "JIS"
msgstr "JIS"
#. fjcZG
-#: formula/inc/core_resource.hrc:2369
+#: formula/inc/core_resource.hrc:2370
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ASC"
msgstr "ASC"
#. FLCLC
-#: formula/inc/core_resource.hrc:2370
+#: formula/inc/core_resource.hrc:2371
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "UNICODE"
msgstr "UNICODE"
#. AYPzA
-#: formula/inc/core_resource.hrc:2371
+#: formula/inc/core_resource.hrc:2372
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "UNICHAR"
msgstr "UNICHAR"
#. 6D3EV
-#: formula/inc/core_resource.hrc:2372
+#: formula/inc/core_resource.hrc:2373
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOG10"
msgstr "LOG10"
#. BHS3K
-#: formula/inc/core_resource.hrc:2373
+#: formula/inc/core_resource.hrc:2374
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EVEN"
msgstr "EVEN"
#. kTKKZ
-#: formula/inc/core_resource.hrc:2374
+#: formula/inc/core_resource.hrc:2375
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ODD"
msgstr "ODD"
#. s3xj3
-#: formula/inc/core_resource.hrc:2375
+#: formula/inc/core_resource.hrc:2376
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMSDIST"
msgstr "NORMSDIST"
#. iXthM
-#: formula/inc/core_resource.hrc:2376
+#: formula/inc/core_resource.hrc:2377
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.S.DIST"
msgstr "NORM.S.DIST"
#. CADmA
-#: formula/inc/core_resource.hrc:2377
+#: formula/inc/core_resource.hrc:2378
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FISHER"
msgstr "FISHER"
#. isCQ3
-#: formula/inc/core_resource.hrc:2378
+#: formula/inc/core_resource.hrc:2379
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FISHERINV"
msgstr "FISHERINV"
#. BaYfe
-#: formula/inc/core_resource.hrc:2379
+#: formula/inc/core_resource.hrc:2380
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMSINV"
msgstr "NORMSINV"
#. pCD9f
-#: formula/inc/core_resource.hrc:2380
+#: formula/inc/core_resource.hrc:2381
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.S.INV"
msgstr "NORM.S.INV"
#. 6MkED
-#: formula/inc/core_resource.hrc:2381
+#: formula/inc/core_resource.hrc:2382
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMALN"
msgstr "GAMMALN"
#. 7CNvA
-#: formula/inc/core_resource.hrc:2382
+#: formula/inc/core_resource.hrc:2383
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMALN.PRECISE"
msgstr "GAMMALN.PRECISE"
#. uq6bt
-#: formula/inc/core_resource.hrc:2383
+#: formula/inc/core_resource.hrc:2384
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERRORTYPE"
msgstr "ERRORTYPE"
#. VvyBc
-#: formula/inc/core_resource.hrc:2384
+#: formula/inc/core_resource.hrc:2385
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERROR.TYPE"
msgstr "ERROR.TYPE"
#. hA6t7
-#: formula/inc/core_resource.hrc:2385
+#: formula/inc/core_resource.hrc:2386
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORMULA"
msgstr "FORMULA"
#. vNCQC
-#: formula/inc/core_resource.hrc:2386
+#: formula/inc/core_resource.hrc:2387
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ARABIC"
msgstr "ARABIC"
#. EQ5yx
-#: formula/inc/core_resource.hrc:2387
+#: formula/inc/core_resource.hrc:2388
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ATAN2"
msgstr "ATAN2"
#. Gw9Fm
-#: formula/inc/core_resource.hrc:2388
+#: formula/inc/core_resource.hrc:2389
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.MATH"
msgstr "CEILING.MATH"
#. MCSCn
-#: formula/inc/core_resource.hrc:2389
+#: formula/inc/core_resource.hrc:2390
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING"
msgstr "CEILING"
#. scaZA
-#: formula/inc/core_resource.hrc:2390
+#: formula/inc/core_resource.hrc:2391
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.XCL"
msgstr "CEILING.XCL"
#. WvaBc
-#: formula/inc/core_resource.hrc:2391
+#: formula/inc/core_resource.hrc:2392
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.PRECISE"
msgstr "CEILING.PRECISE"
#. rEus7
-#: formula/inc/core_resource.hrc:2392
+#: formula/inc/core_resource.hrc:2393
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISO.CEILING"
msgstr "ISO.CEILING"
#. Q8bBZ
-#: formula/inc/core_resource.hrc:2393
+#: formula/inc/core_resource.hrc:2394
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR"
msgstr "FLOOR"
#. AmYrj
-#: formula/inc/core_resource.hrc:2394
+#: formula/inc/core_resource.hrc:2395
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.XCL"
msgstr "FLOOR.XCL"
#. wALpZ
-#: formula/inc/core_resource.hrc:2395
+#: formula/inc/core_resource.hrc:2396
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.MATH"
msgstr "FLOOR.MATH"
#. rKCyS
-#: formula/inc/core_resource.hrc:2396
+#: formula/inc/core_resource.hrc:2397
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.PRECISE"
msgstr "FLOOR.PRECISE"
#. WHtuv
-#: formula/inc/core_resource.hrc:2397
+#: formula/inc/core_resource.hrc:2398
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUND"
msgstr "ROUND"
#. TZEFs
-#: formula/inc/core_resource.hrc:2398
+#: formula/inc/core_resource.hrc:2399
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDUP"
msgstr "ROUNDUP"
#. 3tjA5
-#: formula/inc/core_resource.hrc:2399
+#: formula/inc/core_resource.hrc:2400
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDDOWN"
msgstr "ROUNDDOWN"
#. XBWFh
-#: formula/inc/core_resource.hrc:2400
+#: formula/inc/core_resource.hrc:2401
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRUNC"
msgstr "TRUNC"
#. LKBqy
-#: formula/inc/core_resource.hrc:2401
+#: formula/inc/core_resource.hrc:2402
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOG"
msgstr "LOG"
#. Asn3C
-#: formula/inc/core_resource.hrc:2402
+#: formula/inc/core_resource.hrc:2403
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "POWER"
msgstr "POWER"
#. fNofY
-#: formula/inc/core_resource.hrc:2403
+#: formula/inc/core_resource.hrc:2404
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GCD"
msgstr "GCD"
#. aTzGm
-#: formula/inc/core_resource.hrc:2404
+#: formula/inc/core_resource.hrc:2405
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LCM"
msgstr "LCM"
#. HqKX8
-#: formula/inc/core_resource.hrc:2405
+#: formula/inc/core_resource.hrc:2406
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MOD"
msgstr "MOD"
#. 4pDQY
-#: formula/inc/core_resource.hrc:2406
+#: formula/inc/core_resource.hrc:2407
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMPRODUCT"
msgstr "SUMPRODUCT"
#. iYnCx
-#: formula/inc/core_resource.hrc:2407
+#: formula/inc/core_resource.hrc:2408
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMSQ"
msgstr "SUMSQ"
#. TCmLs
-#: formula/inc/core_resource.hrc:2408
+#: formula/inc/core_resource.hrc:2409
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMX2MY2"
msgstr "SUMX2MY2"
#. 3CA6E
-#: formula/inc/core_resource.hrc:2409
+#: formula/inc/core_resource.hrc:2410
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMX2PY2"
msgstr "SUMX2PY2"
#. yE6FJ
-#: formula/inc/core_resource.hrc:2410
+#: formula/inc/core_resource.hrc:2411
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMXMY2"
msgstr "SUMXMY2"
#. Kq3Fv
-#: formula/inc/core_resource.hrc:2411
+#: formula/inc/core_resource.hrc:2412
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DATE"
msgstr "DATE"
#. 7daHs
-#: formula/inc/core_resource.hrc:2412
+#: formula/inc/core_resource.hrc:2413
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TIME"
msgstr "TIME"
#. XMgdw
-#: formula/inc/core_resource.hrc:2413
+#: formula/inc/core_resource.hrc:2414
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAYS"
msgstr "DAYS"
#. GmFrk
-#: formula/inc/core_resource.hrc:2414
+#: formula/inc/core_resource.hrc:2415
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAYS360"
msgstr "DAYS360"
#. ryXRy
-#: formula/inc/core_resource.hrc:2415
+#: formula/inc/core_resource.hrc:2416
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DATEDIF"
msgstr "DATEDIF"
#. hfE7B
-#: formula/inc/core_resource.hrc:2416
+#: formula/inc/core_resource.hrc:2417
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MIN"
msgstr "MIN"
#. AnAVr
-#: formula/inc/core_resource.hrc:2417
+#: formula/inc/core_resource.hrc:2418
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINA"
msgstr "MINA"
#. Gix6E
-#: formula/inc/core_resource.hrc:2418
+#: formula/inc/core_resource.hrc:2419
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MAX"
msgstr "MAX"
#. Y6F2B
-#: formula/inc/core_resource.hrc:2419
+#: formula/inc/core_resource.hrc:2420
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MAXA"
msgstr "MAXA"
#. CZXHr
-#: formula/inc/core_resource.hrc:2420
+#: formula/inc/core_resource.hrc:2421
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUM"
msgstr "SUM"
#. 4KA5C
-#: formula/inc/core_resource.hrc:2421
+#: formula/inc/core_resource.hrc:2422
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PRODUCT"
msgstr "PRODUCT"
#. qpU73
-#: formula/inc/core_resource.hrc:2422
+#: formula/inc/core_resource.hrc:2423
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGE"
msgstr "AVERAGE"
#. sHZ7d
-#: formula/inc/core_resource.hrc:2423
+#: formula/inc/core_resource.hrc:2424
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGEA"
msgstr "AVERAGEA"
#. CFSpv
-#: formula/inc/core_resource.hrc:2424
+#: formula/inc/core_resource.hrc:2425
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNT"
msgstr "COUNT"
#. JYFiS
-#: formula/inc/core_resource.hrc:2425
+#: formula/inc/core_resource.hrc:2426
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTA"
msgstr "COUNTA"
#. JjXDM
-#: formula/inc/core_resource.hrc:2426
+#: formula/inc/core_resource.hrc:2427
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NPV"
msgstr "NPV"
#. YjgAC
-#: formula/inc/core_resource.hrc:2427
+#: formula/inc/core_resource.hrc:2428
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IRR"
msgstr "IRR"
#. BYTjL
-#: formula/inc/core_resource.hrc:2428
+#: formula/inc/core_resource.hrc:2429
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MIRR"
msgstr "MIRR"
#. v9GAT
-#: formula/inc/core_resource.hrc:2429
+#: formula/inc/core_resource.hrc:2430
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISPMT"
msgstr "ISPMT"
#. K7EeP
-#: formula/inc/core_resource.hrc:2430
+#: formula/inc/core_resource.hrc:2431
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VAR"
msgstr "VAR"
#. CXPNH
-#: formula/inc/core_resource.hrc:2431
+#: formula/inc/core_resource.hrc:2432
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VARA"
msgstr "VARA"
#. zYRiw
-#: formula/inc/core_resource.hrc:2432
+#: formula/inc/core_resource.hrc:2433
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VARP"
msgstr "VARP"
#. 38coa
-#: formula/inc/core_resource.hrc:2433
+#: formula/inc/core_resource.hrc:2434
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VARPA"
msgstr "VARPA"
#. 9ofpD
-#: formula/inc/core_resource.hrc:2434
+#: formula/inc/core_resource.hrc:2435
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VAR.P"
msgstr "VAR.P"
#. CmJnc
-#: formula/inc/core_resource.hrc:2435
+#: formula/inc/core_resource.hrc:2436
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VAR.S"
msgstr "VAR.S"
#. Fn4hd
-#: formula/inc/core_resource.hrc:2436
+#: formula/inc/core_resource.hrc:2437
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEV"
msgstr "STDEV"
#. bzGrU
-#: formula/inc/core_resource.hrc:2437
+#: formula/inc/core_resource.hrc:2438
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEVA"
msgstr "STDEVA"
#. u4EE9
-#: formula/inc/core_resource.hrc:2438
+#: formula/inc/core_resource.hrc:2439
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEVP"
msgstr "STDEVP"
#. qcdgn
-#: formula/inc/core_resource.hrc:2439
+#: formula/inc/core_resource.hrc:2440
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEVPA"
msgstr "STDEVPA"
#. wJefG
-#: formula/inc/core_resource.hrc:2440
+#: formula/inc/core_resource.hrc:2441
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEV.P"
msgstr "STDEV.P"
#. ZQKhp
-#: formula/inc/core_resource.hrc:2441
+#: formula/inc/core_resource.hrc:2442
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEV.S"
msgstr "STDEV.S"
#. dnFm9
-#: formula/inc/core_resource.hrc:2442
+#: formula/inc/core_resource.hrc:2443
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "B"
msgstr "B"
#. vSS7A
-#: formula/inc/core_resource.hrc:2443
+#: formula/inc/core_resource.hrc:2444
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMDIST"
msgstr "NORMDIST"
#. ZmN24
-#: formula/inc/core_resource.hrc:2444
+#: formula/inc/core_resource.hrc:2445
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.DIST"
msgstr "NORM.DIST"
#. ZotkE
-#: formula/inc/core_resource.hrc:2445
+#: formula/inc/core_resource.hrc:2446
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXPONDIST"
msgstr "EXPONDIST"
#. QR4X5
-#: formula/inc/core_resource.hrc:2446
+#: formula/inc/core_resource.hrc:2447
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXPON.DIST"
msgstr "EXPON.DIST"
#. rj7xi
-#: formula/inc/core_resource.hrc:2447
+#: formula/inc/core_resource.hrc:2448
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BINOMDIST"
msgstr "BINOMDIST"
#. 3DUoC
-#: formula/inc/core_resource.hrc:2448
+#: formula/inc/core_resource.hrc:2449
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BINOM.DIST"
msgstr "BINOM.DIST"
#. 5PEVt
-#: formula/inc/core_resource.hrc:2449
+#: formula/inc/core_resource.hrc:2450
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "POISSON"
msgstr "POISSON"
#. 3KDHP
-#: formula/inc/core_resource.hrc:2450
+#: formula/inc/core_resource.hrc:2451
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "POISSON.DIST"
msgstr "POISSON.DIST"
#. TJ2Am
-#: formula/inc/core_resource.hrc:2451
+#: formula/inc/core_resource.hrc:2452
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COMBIN"
msgstr "COMBIN"
#. uooUA
-#: formula/inc/core_resource.hrc:2452
+#: formula/inc/core_resource.hrc:2453
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COMBINA"
msgstr "COMBINA"
#. YAwK5
-#: formula/inc/core_resource.hrc:2453
+#: formula/inc/core_resource.hrc:2454
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERMUT"
msgstr "PERMUT"
#. cBPLT
-#: formula/inc/core_resource.hrc:2454
+#: formula/inc/core_resource.hrc:2455
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERMUTATIONA"
msgstr "PERMUTATIONA"
#. t93rk
-#: formula/inc/core_resource.hrc:2455
+#: formula/inc/core_resource.hrc:2456
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PV"
msgstr "PV"
#. tKLfE
-#: formula/inc/core_resource.hrc:2456
+#: formula/inc/core_resource.hrc:2457
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SYD"
msgstr "SYD"
#. 7BwE3
-#: formula/inc/core_resource.hrc:2457
+#: formula/inc/core_resource.hrc:2458
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DDB"
msgstr "DDB"
#. C536Y
-#: formula/inc/core_resource.hrc:2458
+#: formula/inc/core_resource.hrc:2459
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DB"
msgstr "DB"
#. rpLvw
-#: formula/inc/core_resource.hrc:2459
+#: formula/inc/core_resource.hrc:2460
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VDB"
msgstr "VDB"
#. GCfAw
-#: formula/inc/core_resource.hrc:2460
+#: formula/inc/core_resource.hrc:2461
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PDURATION"
msgstr "PDURATION"
#. i6LFt
-#: formula/inc/core_resource.hrc:2461
+#: formula/inc/core_resource.hrc:2462
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SLN"
msgstr "SLN"
#. CvELN
-#: formula/inc/core_resource.hrc:2462
+#: formula/inc/core_resource.hrc:2463
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PMT"
msgstr "PMT"
#. sbNXE
-#: formula/inc/core_resource.hrc:2463
+#: formula/inc/core_resource.hrc:2464
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COLUMNS"
msgstr "COLUMNS"
#. UrxAN
-#: formula/inc/core_resource.hrc:2464
+#: formula/inc/core_resource.hrc:2465
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROWS"
msgstr "ROWS"
#. 6JRiQ
-#: formula/inc/core_resource.hrc:2465
+#: formula/inc/core_resource.hrc:2466
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SHEETS"
msgstr "SHEETS"
#. FYiZp
-#: formula/inc/core_resource.hrc:2466
+#: formula/inc/core_resource.hrc:2467
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COLUMN"
msgstr "COLUMN"
#. W2Dnn
-#: formula/inc/core_resource.hrc:2467
+#: formula/inc/core_resource.hrc:2468
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROW"
msgstr "ROW"
#. CrPhx
-#: formula/inc/core_resource.hrc:2468
+#: formula/inc/core_resource.hrc:2469
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SHEET"
msgstr "SHEET"
#. u57Dj
-#: formula/inc/core_resource.hrc:2469
+#: formula/inc/core_resource.hrc:2470
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RRI"
msgstr "RRI"
#. EyAQF
-#: formula/inc/core_resource.hrc:2470
+#: formula/inc/core_resource.hrc:2471
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FV"
msgstr "FV"
#. EaLTQ
-#: formula/inc/core_resource.hrc:2471
+#: formula/inc/core_resource.hrc:2472
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NPER"
msgstr "NPER"
#. LGUbb
-#: formula/inc/core_resource.hrc:2472
+#: formula/inc/core_resource.hrc:2473
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RATE"
msgstr "RATE"
#. AGdL3
-#: formula/inc/core_resource.hrc:2473
+#: formula/inc/core_resource.hrc:2474
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IPMT"
msgstr "IPMT"
#. vpLQh
-#: formula/inc/core_resource.hrc:2474
+#: formula/inc/core_resource.hrc:2475
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PPMT"
msgstr "PPMT"
#. ABfAb
-#: formula/inc/core_resource.hrc:2475
+#: formula/inc/core_resource.hrc:2476
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CUMIPMT"
msgstr "CUMIPMT"
#. aCEVC
-#: formula/inc/core_resource.hrc:2476
+#: formula/inc/core_resource.hrc:2477
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CUMPRINC"
msgstr "CUMPRINC"
#. KNTdw
-#: formula/inc/core_resource.hrc:2477
+#: formula/inc/core_resource.hrc:2478
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EFFECT"
msgstr "EFFECT"
#. fovF4
-#: formula/inc/core_resource.hrc:2478
+#: formula/inc/core_resource.hrc:2479
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NOMINAL"
msgstr "NOMINAL"
#. bxEkk
-#: formula/inc/core_resource.hrc:2479
+#: formula/inc/core_resource.hrc:2480
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUBTOTAL"
msgstr "SUBTOTAL"
#. nggfn
-#: formula/inc/core_resource.hrc:2480
+#: formula/inc/core_resource.hrc:2481
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DSUM"
msgstr "DSUM"
#. u6fWB
-#: formula/inc/core_resource.hrc:2481
+#: formula/inc/core_resource.hrc:2482
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DCOUNT"
msgstr "DCOUNT"
#. Gg8SK
-#: formula/inc/core_resource.hrc:2482
+#: formula/inc/core_resource.hrc:2483
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DCOUNTA"
msgstr "DCOUNTA"
#. 3SNxX
-#: formula/inc/core_resource.hrc:2483
+#: formula/inc/core_resource.hrc:2484
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAVERAGE"
msgstr "DAVERAGE"
#. bc6DT
-#: formula/inc/core_resource.hrc:2484
+#: formula/inc/core_resource.hrc:2485
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DGET"
msgstr "DGET"
#. isoy2
-#: formula/inc/core_resource.hrc:2485
+#: formula/inc/core_resource.hrc:2486
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DMAX"
msgstr "DMAX"
#. AW7vP
-#: formula/inc/core_resource.hrc:2486
+#: formula/inc/core_resource.hrc:2487
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DMIN"
msgstr "DMIN"
#. pGgvo
-#: formula/inc/core_resource.hrc:2487
+#: formula/inc/core_resource.hrc:2488
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DPRODUCT"
msgstr "DPRODUCT"
#. ZyFwP
-#: formula/inc/core_resource.hrc:2488
+#: formula/inc/core_resource.hrc:2489
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DSTDEV"
msgstr "DSTDEV"
#. oC55j
-#: formula/inc/core_resource.hrc:2489
+#: formula/inc/core_resource.hrc:2490
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DSTDEVP"
msgstr "DSTDEVP"
#. yGRGB
-#: formula/inc/core_resource.hrc:2490
+#: formula/inc/core_resource.hrc:2491
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DVAR"
msgstr "DVAR"
#. yoXqK
-#: formula/inc/core_resource.hrc:2491
+#: formula/inc/core_resource.hrc:2492
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DVARP"
msgstr "DVARP"
#. 2Lt4B
-#: formula/inc/core_resource.hrc:2492
+#: formula/inc/core_resource.hrc:2493
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INDIRECT"
msgstr "INDIRECT"
#. hoG6e
-#: formula/inc/core_resource.hrc:2493
+#: formula/inc/core_resource.hrc:2494
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ADDRESS"
msgstr "ADDRESS"
#. oC9GV
-#: formula/inc/core_resource.hrc:2494
+#: formula/inc/core_resource.hrc:2495
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MATCH"
msgstr "MATCH"
#. xuDNa
-#: formula/inc/core_resource.hrc:2495
+#: formula/inc/core_resource.hrc:2496
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTBLANK"
msgstr "COUNTBLANK"
#. Zqz6p
-#: formula/inc/core_resource.hrc:2496
+#: formula/inc/core_resource.hrc:2497
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTIF"
msgstr "COUNTIF"
#. DtDEf
-#: formula/inc/core_resource.hrc:2497
+#: formula/inc/core_resource.hrc:2498
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMIF"
msgstr "SUMIF"
#. PLSLe
-#: formula/inc/core_resource.hrc:2498
+#: formula/inc/core_resource.hrc:2499
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGEIF"
msgstr "AVERAGEIF"
#. gBitk
-#: formula/inc/core_resource.hrc:2499
+#: formula/inc/core_resource.hrc:2500
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMIFS"
msgstr "SUMIFS"
#. eoVP4
-#: formula/inc/core_resource.hrc:2500
+#: formula/inc/core_resource.hrc:2501
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGEIFS"
msgstr "AVERAGEIFS"
#. EFZv9
-#: formula/inc/core_resource.hrc:2501
+#: formula/inc/core_resource.hrc:2502
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTIFS"
msgstr "COUNTIFS"
#. FRVEu
-#: formula/inc/core_resource.hrc:2502
+#: formula/inc/core_resource.hrc:2503
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOOKUP"
msgstr "LOOKUP"
#. ZzCnC
-#: formula/inc/core_resource.hrc:2503
+#: formula/inc/core_resource.hrc:2504
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VLOOKUP"
msgstr "VLOOKUP"
#. Exee6
-#: formula/inc/core_resource.hrc:2504
+#: formula/inc/core_resource.hrc:2505
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HLOOKUP"
msgstr "HLOOKUP"
#. dTotR
-#: formula/inc/core_resource.hrc:2505
+#: formula/inc/core_resource.hrc:2506
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MULTIRANGE"
msgstr "MULTIRANGE"
#. ui5BC
#. legacy for range list (union)
-#: formula/inc/core_resource.hrc:2506
+#: formula/inc/core_resource.hrc:2507
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "OFFSET"
msgstr "OFFSET"
#. j43Ns
-#: formula/inc/core_resource.hrc:2507
+#: formula/inc/core_resource.hrc:2508
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INDEX"
msgstr "INDEX"
#. DpRD2
#. ?? first character = I ??
-#: formula/inc/core_resource.hrc:2508
+#: formula/inc/core_resource.hrc:2509
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AREAS"
msgstr "AREAS"
#. BBMGS
-#: formula/inc/core_resource.hrc:2509
+#: formula/inc/core_resource.hrc:2510
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DOLLAR"
msgstr "DOLLAR"
#. dL3Bf
-#: formula/inc/core_resource.hrc:2510
+#: formula/inc/core_resource.hrc:2511
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REPLACE"
msgstr "REPLACE"
#. UZak8
-#: formula/inc/core_resource.hrc:2511
+#: formula/inc/core_resource.hrc:2512
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FIXED"
msgstr "FIXED"
#. 8t8KR
-#: formula/inc/core_resource.hrc:2512
+#: formula/inc/core_resource.hrc:2513
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FIND"
msgstr "FIND"
#. oDxoA
-#: formula/inc/core_resource.hrc:2513
+#: formula/inc/core_resource.hrc:2514
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXACT"
msgstr "EXACT"
#. dqyCD
-#: formula/inc/core_resource.hrc:2514
+#: formula/inc/core_resource.hrc:2515
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LEFT"
msgstr "LEFT"
#. 5Cmkf
-#: formula/inc/core_resource.hrc:2515
+#: formula/inc/core_resource.hrc:2516
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RIGHT"
msgstr "RIGHT"
#. eoXGy
-#: formula/inc/core_resource.hrc:2516
+#: formula/inc/core_resource.hrc:2517
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SEARCH"
msgstr "SEARCH"
#. BAmDj
-#: formula/inc/core_resource.hrc:2517
+#: formula/inc/core_resource.hrc:2518
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MID"
msgstr "MID"
#. CcD9A
-#: formula/inc/core_resource.hrc:2518
+#: formula/inc/core_resource.hrc:2519
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LENB"
msgstr "LENB"
#. LNZ8z
-#: formula/inc/core_resource.hrc:2519
+#: formula/inc/core_resource.hrc:2520
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RIGHTB"
msgstr "RIGHTB"
#. WtUCd
-#: formula/inc/core_resource.hrc:2520
+#: formula/inc/core_resource.hrc:2521
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LEFTB"
msgstr "LEFTB"
#. hMJEw
-#: formula/inc/core_resource.hrc:2521
+#: formula/inc/core_resource.hrc:2522
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REPLACEB"
msgstr "REPLACEB"
#. KAutM
-#: formula/inc/core_resource.hrc:2522
+#: formula/inc/core_resource.hrc:2523
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MIDB"
msgstr "MIDB"
#. 5ouAE
-#: formula/inc/core_resource.hrc:2523
+#: formula/inc/core_resource.hrc:2524
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TEXT"
msgstr "TEXT"
#. EVEza
-#: formula/inc/core_resource.hrc:2524
+#: formula/inc/core_resource.hrc:2525
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUBSTITUTE"
msgstr "SUBSTITUTE"
#. i3GvS
-#: formula/inc/core_resource.hrc:2525
+#: formula/inc/core_resource.hrc:2526
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REPT"
msgstr "REPT"
#. 2ai5X
-#: formula/inc/core_resource.hrc:2526
+#: formula/inc/core_resource.hrc:2527
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONCATENATE"
msgstr "CONCATENATE"
#. BUBLF
-#: formula/inc/core_resource.hrc:2527
+#: formula/inc/core_resource.hrc:2528
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONCAT"
msgstr "CONCAT"
#. 5iLsv
-#: formula/inc/core_resource.hrc:2528
+#: formula/inc/core_resource.hrc:2529
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TEXTJOIN"
msgstr "TEXTJOIN"
#. XFAVk
-#: formula/inc/core_resource.hrc:2529
+#: formula/inc/core_resource.hrc:2530
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IFS"
msgstr "IFS"
#. mqNA5
-#: formula/inc/core_resource.hrc:2530
+#: formula/inc/core_resource.hrc:2531
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SWITCH"
msgstr "SWITCH"
#. adC5v
-#: formula/inc/core_resource.hrc:2531
+#: formula/inc/core_resource.hrc:2532
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINIFS"
msgstr "MINIFS"
#. cXh5s
-#: formula/inc/core_resource.hrc:2532
+#: formula/inc/core_resource.hrc:2533
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MAXIFS"
msgstr "MAXIFS"
#. 6DKDF
-#: formula/inc/core_resource.hrc:2533
+#: formula/inc/core_resource.hrc:2534
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MVALUE"
msgstr "MVALUE"
#. oo8ci
-#: formula/inc/core_resource.hrc:2534
+#: formula/inc/core_resource.hrc:2535
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MDETERM"
msgstr "MDETERM"
#. ApX8N
-#: formula/inc/core_resource.hrc:2535
+#: formula/inc/core_resource.hrc:2536
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINVERSE"
msgstr "MINVERSE"
#. tyjoM
-#: formula/inc/core_resource.hrc:2536
+#: formula/inc/core_resource.hrc:2537
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MMULT"
msgstr "MMULT"
#. KmpNP
-#: formula/inc/core_resource.hrc:2537
+#: formula/inc/core_resource.hrc:2538
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRANSPOSE"
msgstr "TRANSPOSE"
#. Q2ER4
-#: formula/inc/core_resource.hrc:2538
+#: formula/inc/core_resource.hrc:2539
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MUNIT"
msgstr "MUNIT"
#. kmGD3
-#: formula/inc/core_resource.hrc:2539
+#: formula/inc/core_resource.hrc:2540
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GOALSEEK"
msgstr "GOALSEEK"
#. i7qgX
-#: formula/inc/core_resource.hrc:2540
+#: formula/inc/core_resource.hrc:2541
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HYPGEOMDIST"
msgstr "HYPGEOMDIST"
#. oUBqZ
-#: formula/inc/core_resource.hrc:2541
+#: formula/inc/core_resource.hrc:2542
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HYPGEOM.DIST"
msgstr "HYPGEOM.DIST"
#. XWa2D
-#: formula/inc/core_resource.hrc:2542
+#: formula/inc/core_resource.hrc:2543
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGNORMDIST"
msgstr "LOGNORMDIST"
#. g2ozv
-#: formula/inc/core_resource.hrc:2543
+#: formula/inc/core_resource.hrc:2544
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGNORM.DIST"
msgstr "LOGNORM.DIST"
#. bWRCD
-#: formula/inc/core_resource.hrc:2544
+#: formula/inc/core_resource.hrc:2545
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TDIST"
msgstr "TDIST"
#. fEd5s
-#: formula/inc/core_resource.hrc:2545
+#: formula/inc/core_resource.hrc:2546
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.DIST.2T"
msgstr "T.DIST.2T"
#. F5Pfo
-#: formula/inc/core_resource.hrc:2546
+#: formula/inc/core_resource.hrc:2547
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.DIST"
msgstr "T.DIST"
#. BVPMN
-#: formula/inc/core_resource.hrc:2547
+#: formula/inc/core_resource.hrc:2548
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.DIST.RT"
msgstr "T.DIST.RT"
#. CHDLb
-#: formula/inc/core_resource.hrc:2548
+#: formula/inc/core_resource.hrc:2549
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FDIST"
msgstr "FDIST"
#. XBqcu
-#: formula/inc/core_resource.hrc:2549
+#: formula/inc/core_resource.hrc:2550
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.DIST"
msgstr "F.DIST"
#. P9uGQ
-#: formula/inc/core_resource.hrc:2550
+#: formula/inc/core_resource.hrc:2551
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.DIST.RT"
msgstr "F.DIST.RT"
#. 9iTFp
-#: formula/inc/core_resource.hrc:2551
+#: formula/inc/core_resource.hrc:2552
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHIDIST"
msgstr "CHIDIST"
#. 4bU9E
-#: formula/inc/core_resource.hrc:2552
+#: formula/inc/core_resource.hrc:2553
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.DIST.RT"
msgstr "CHISQ.DIST.RT"
#. CA3gq
-#: formula/inc/core_resource.hrc:2553
+#: formula/inc/core_resource.hrc:2554
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEIBULL"
msgstr "WEIBULL"
#. cfK8c
-#: formula/inc/core_resource.hrc:2554
+#: formula/inc/core_resource.hrc:2555
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEIBULL.DIST"
msgstr "WEIBULL.DIST"
#. BuVL2
-#: formula/inc/core_resource.hrc:2555
+#: formula/inc/core_resource.hrc:2556
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NEGBINOMDIST"
msgstr "NEGBINOMDIST"
#. JDW2e
-#: formula/inc/core_resource.hrc:2556
+#: formula/inc/core_resource.hrc:2557
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NEGBINOM.DIST"
msgstr "NEGBINOM.DIST"
#. WGm4P
-#: formula/inc/core_resource.hrc:2557
+#: formula/inc/core_resource.hrc:2558
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CRITBINOM"
msgstr "CRITBINOM"
#. GJqSo
-#: formula/inc/core_resource.hrc:2558
+#: formula/inc/core_resource.hrc:2559
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BINOM.INV"
msgstr "BINOM.INV"
#. HXdvV
-#: formula/inc/core_resource.hrc:2559
+#: formula/inc/core_resource.hrc:2560
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "KURT"
msgstr "KURT"
#. gVato
-#: formula/inc/core_resource.hrc:2560
+#: formula/inc/core_resource.hrc:2561
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HARMEAN"
msgstr "HARMEAN"
#. UWQAS
-#: formula/inc/core_resource.hrc:2561
+#: formula/inc/core_resource.hrc:2562
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GEOMEAN"
msgstr "GEOMEAN"
#. tpAGN
-#: formula/inc/core_resource.hrc:2562
+#: formula/inc/core_resource.hrc:2563
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STANDARDIZE"
msgstr "STANDARDIZE"
#. xZDRE
-#: formula/inc/core_resource.hrc:2563
+#: formula/inc/core_resource.hrc:2564
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVEDEV"
msgstr "AVEDEV"
#. jFsMN
-#: formula/inc/core_resource.hrc:2564
+#: formula/inc/core_resource.hrc:2565
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SKEW"
msgstr "SKEW"
#. pENWD
-#: formula/inc/core_resource.hrc:2565
+#: formula/inc/core_resource.hrc:2566
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SKEWP"
msgstr "SKEWP"
#. DWBTD
-#: formula/inc/core_resource.hrc:2566
+#: formula/inc/core_resource.hrc:2567
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DEVSQ"
msgstr "DEVSQ"
#. mGW7t
-#: formula/inc/core_resource.hrc:2567
+#: formula/inc/core_resource.hrc:2568
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MEDIAN"
msgstr "MEDIAN"
#. an6ST
-#: formula/inc/core_resource.hrc:2568
+#: formula/inc/core_resource.hrc:2569
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MODE"
msgstr "MODE"
#. unFXZ
-#: formula/inc/core_resource.hrc:2569
+#: formula/inc/core_resource.hrc:2570
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MODE.SNGL"
msgstr "MODE.SNGL"
#. MUvgH
-#: formula/inc/core_resource.hrc:2570
+#: formula/inc/core_resource.hrc:2571
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MODE.MULT"
msgstr "MODE.MULT"
#. DYFQo
-#: formula/inc/core_resource.hrc:2571
+#: formula/inc/core_resource.hrc:2572
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ZTEST"
msgstr "ZTEST"
#. QLThG
-#: formula/inc/core_resource.hrc:2572
+#: formula/inc/core_resource.hrc:2573
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "Z.TEST"
msgstr "Z.TEST"
#. uG2Uy
-#: formula/inc/core_resource.hrc:2573
+#: formula/inc/core_resource.hrc:2574
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AGGREGATE"
msgstr "AGGREGATE"
#. ky6Cc
-#: formula/inc/core_resource.hrc:2574
+#: formula/inc/core_resource.hrc:2575
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TTEST"
msgstr "TTEST"
#. FR8fD
-#: formula/inc/core_resource.hrc:2575
+#: formula/inc/core_resource.hrc:2576
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.TEST"
msgstr "T.TEST"
#. YbRDQ
-#: formula/inc/core_resource.hrc:2576
+#: formula/inc/core_resource.hrc:2577
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RANK"
msgstr "RANK"
#. zDE8s
-#: formula/inc/core_resource.hrc:2577
+#: formula/inc/core_resource.hrc:2578
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTILE"
msgstr "PERCENTILE"
#. zFA3A
-#: formula/inc/core_resource.hrc:2578
+#: formula/inc/core_resource.hrc:2579
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTRANK"
msgstr "PERCENTRANK"
#. eRFHC
-#: formula/inc/core_resource.hrc:2579
+#: formula/inc/core_resource.hrc:2580
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTILE.INC"
msgstr "PERCENTILE.INC"
#. L7s3h
-#: formula/inc/core_resource.hrc:2580
+#: formula/inc/core_resource.hrc:2581
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTRANK.INC"
msgstr "PERCENTRANK.INC"
#. wNGXD
-#: formula/inc/core_resource.hrc:2581
+#: formula/inc/core_resource.hrc:2582
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "QUARTILE.INC"
msgstr "QUARTILE.INC"
#. 29rpM
-#: formula/inc/core_resource.hrc:2582
+#: formula/inc/core_resource.hrc:2583
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RANK.EQ"
msgstr "RANK.EQ"
#. yEcqx
-#: formula/inc/core_resource.hrc:2583
+#: formula/inc/core_resource.hrc:2584
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTILE.EXC"
msgstr "PERCENTILE.EXC"
#. AEPUL
-#: formula/inc/core_resource.hrc:2584
+#: formula/inc/core_resource.hrc:2585
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTRANK.EXC"
msgstr "PERCENTRANK.EXC"
#. gFk6s
-#: formula/inc/core_resource.hrc:2585
+#: formula/inc/core_resource.hrc:2586
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "QUARTILE.EXC"
msgstr "QUARTILE.EXC"
#. TDAAm
-#: formula/inc/core_resource.hrc:2586
+#: formula/inc/core_resource.hrc:2587
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RANK.AVG"
msgstr "RANK.AVG"
#. gK7Lz
-#: formula/inc/core_resource.hrc:2587
+#: formula/inc/core_resource.hrc:2588
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LARGE"
msgstr "LARGE"
#. 4HcBe
-#: formula/inc/core_resource.hrc:2588
+#: formula/inc/core_resource.hrc:2589
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SMALL"
msgstr "SMALL"
#. HBgVF
-#: formula/inc/core_resource.hrc:2589
+#: formula/inc/core_resource.hrc:2590
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FREQUENCY"
msgstr "FREQUENCY"
#. F7gC7
-#: formula/inc/core_resource.hrc:2590
+#: formula/inc/core_resource.hrc:2591
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "QUARTILE"
msgstr "QUARTILE"
#. s6cqj
-#: formula/inc/core_resource.hrc:2591
+#: formula/inc/core_resource.hrc:2592
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMINV"
msgstr "NORMINV"
#. CABJF
-#: formula/inc/core_resource.hrc:2592
+#: formula/inc/core_resource.hrc:2593
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.INV"
msgstr "NORM.INV"
#. vd2Tg
-#: formula/inc/core_resource.hrc:2593
+#: formula/inc/core_resource.hrc:2594
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONFIDENCE"
msgstr "CONFIDENCE"
#. 3jWj2
-#: formula/inc/core_resource.hrc:2594
+#: formula/inc/core_resource.hrc:2595
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONFIDENCE.NORM"
msgstr "CONFIDENCE.NORM"
#. JqE2i
-#: formula/inc/core_resource.hrc:2595
+#: formula/inc/core_resource.hrc:2596
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONFIDENCE.T"
msgstr "CONFIDENCE.T"
#. ADALA
-#: formula/inc/core_resource.hrc:2596
+#: formula/inc/core_resource.hrc:2597
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FTEST"
msgstr "FTEST"
#. xBfc3
-#: formula/inc/core_resource.hrc:2597
+#: formula/inc/core_resource.hrc:2598
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.TEST"
msgstr "F.TEST"
#. gqjR4
-#: formula/inc/core_resource.hrc:2598
+#: formula/inc/core_resource.hrc:2599
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRIMMEAN"
msgstr "TRIMMEAN"
#. TrtZc
-#: formula/inc/core_resource.hrc:2599
+#: formula/inc/core_resource.hrc:2600
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PROB"
msgstr "PROB"
#. JkPA6
-#: formula/inc/core_resource.hrc:2600
+#: formula/inc/core_resource.hrc:2601
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CORREL"
msgstr "CORREL"
#. jiAKA
-#: formula/inc/core_resource.hrc:2601
+#: formula/inc/core_resource.hrc:2602
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COVAR"
msgstr "COVAR"
#. yFdKv
-#: formula/inc/core_resource.hrc:2602
+#: formula/inc/core_resource.hrc:2603
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COVARIANCE.P"
msgstr "COVARIANCE.P"
#. X9QM6
-#: formula/inc/core_resource.hrc:2603
+#: formula/inc/core_resource.hrc:2604
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COVARIANCE.S"
msgstr "COVARIANCE.S"
#. 735GD
-#: formula/inc/core_resource.hrc:2604
+#: formula/inc/core_resource.hrc:2605
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PEARSON"
msgstr "PEARSON"
#. DSNju
-#: formula/inc/core_resource.hrc:2605
+#: formula/inc/core_resource.hrc:2606
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RSQ"
msgstr "RSQ"
#. VPked
-#: formula/inc/core_resource.hrc:2606
+#: formula/inc/core_resource.hrc:2607
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STEYX"
msgstr "STEYX"
#. oAAm2
-#: formula/inc/core_resource.hrc:2607
+#: formula/inc/core_resource.hrc:2608
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SLOPE"
msgstr "SLOPE"
#. H5rVZ
-#: formula/inc/core_resource.hrc:2608
+#: formula/inc/core_resource.hrc:2609
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INTERCEPT"
msgstr "INTERCEPT"
#. Gj8xf
-#: formula/inc/core_resource.hrc:2609
+#: formula/inc/core_resource.hrc:2610
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TREND"
msgstr "TREND"
#. PNYCG
-#: formula/inc/core_resource.hrc:2610
+#: formula/inc/core_resource.hrc:2611
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GROWTH"
msgstr "GROWTH"
#. xFQTH
-#: formula/inc/core_resource.hrc:2611
+#: formula/inc/core_resource.hrc:2612
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LINEST"
msgstr "LINEST"
#. EYFD6
-#: formula/inc/core_resource.hrc:2612
+#: formula/inc/core_resource.hrc:2613
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGEST"
msgstr "LOGEST"
#. b6Dkz
-#: formula/inc/core_resource.hrc:2613
+#: formula/inc/core_resource.hrc:2614
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST"
msgstr "FORECAST"
#. gBGyu
-#: formula/inc/core_resource.hrc:2614
+#: formula/inc/core_resource.hrc:2615
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.ADD"
msgstr "FORECAST.ETS.ADD"
#. CgCME
-#: formula/inc/core_resource.hrc:2615
+#: formula/inc/core_resource.hrc:2616
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.SEASONALITY"
msgstr "FORECAST.ETS.SEASONALITY"
#. Ea5Fw
-#: formula/inc/core_resource.hrc:2616
+#: formula/inc/core_resource.hrc:2617
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.MULT"
msgstr "FORECAST.ETS.MULT"
#. WSLPQ
-#: formula/inc/core_resource.hrc:2617
+#: formula/inc/core_resource.hrc:2618
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.PI.ADD"
msgstr "FORECAST.ETS.PI.ADD"
#. Qb7FC
-#: formula/inc/core_resource.hrc:2618
+#: formula/inc/core_resource.hrc:2619
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.PI.MULT"
msgstr "FORECAST.ETS.PI.MULT"
#. CqQHS
-#: formula/inc/core_resource.hrc:2619
+#: formula/inc/core_resource.hrc:2620
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.STAT.ADD"
msgstr "FORECAST.ETS.STAT.ADD"
#. tHMWM
-#: formula/inc/core_resource.hrc:2620
+#: formula/inc/core_resource.hrc:2621
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.STAT.MULT"
msgstr "FORECAST.ETS.STAT.MULT"
#. 2DtCt
-#: formula/inc/core_resource.hrc:2621
+#: formula/inc/core_resource.hrc:2622
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.LINEAR"
msgstr "FORECAST.LINEAR"
#. pid8Q
-#: formula/inc/core_resource.hrc:2622
+#: formula/inc/core_resource.hrc:2623
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHIINV"
msgstr "CHIINV"
#. W4s9c
-#: formula/inc/core_resource.hrc:2623
+#: formula/inc/core_resource.hrc:2624
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.INV.RT"
msgstr "CHISQ.INV.RT"
#. FAYGA
-#: formula/inc/core_resource.hrc:2624
+#: formula/inc/core_resource.hrc:2625
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMADIST"
msgstr "GAMMADIST"
#. hDsw2
-#: formula/inc/core_resource.hrc:2625
+#: formula/inc/core_resource.hrc:2626
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMA.DIST"
msgstr "GAMMA.DIST"
#. YnUod
-#: formula/inc/core_resource.hrc:2626
+#: formula/inc/core_resource.hrc:2627
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMAINV"
msgstr "GAMMAINV"
#. UsH9F
-#: formula/inc/core_resource.hrc:2627
+#: formula/inc/core_resource.hrc:2628
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMA.INV"
msgstr "GAMMA.INV"
#. uVsmG
-#: formula/inc/core_resource.hrc:2628
+#: formula/inc/core_resource.hrc:2629
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TINV"
msgstr "TINV"
#. BARyo
-#: formula/inc/core_resource.hrc:2629
+#: formula/inc/core_resource.hrc:2630
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.INV.2T"
msgstr "T.INV.2T"
#. QEgDG
-#: formula/inc/core_resource.hrc:2630
+#: formula/inc/core_resource.hrc:2631
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.INV"
msgstr "T.INV"
#. GyiqD
-#: formula/inc/core_resource.hrc:2631
+#: formula/inc/core_resource.hrc:2632
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FINV"
msgstr "FINV"
#. vxU5e
-#: formula/inc/core_resource.hrc:2632
+#: formula/inc/core_resource.hrc:2633
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.INV"
msgstr "F.INV"
#. zQB8F
-#: formula/inc/core_resource.hrc:2633
+#: formula/inc/core_resource.hrc:2634
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.INV.RT"
msgstr "F.INV.RT"
#. DduFG
-#: formula/inc/core_resource.hrc:2634
+#: formula/inc/core_resource.hrc:2635
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHITEST"
msgstr "CHITEST"
#. 8RNiE
-#: formula/inc/core_resource.hrc:2635
+#: formula/inc/core_resource.hrc:2636
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.TEST"
msgstr "CHISQ.TEST"
#. SHLfw
-#: formula/inc/core_resource.hrc:2636
+#: formula/inc/core_resource.hrc:2637
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGINV"
msgstr "LOGINV"
#. CEKRG
-#: formula/inc/core_resource.hrc:2637
+#: formula/inc/core_resource.hrc:2638
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGNORM.INV"
msgstr "LOGNORM.INV"
#. EVF8A
-#: formula/inc/core_resource.hrc:2638
+#: formula/inc/core_resource.hrc:2639
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MULTIPLE.OPERATIONS"
msgstr "MULTIPLE.OPERATIONS"
#. 2A5ui
-#: formula/inc/core_resource.hrc:2639
+#: formula/inc/core_resource.hrc:2640
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETADIST"
msgstr "BETADIST"
#. mALNC
-#: formula/inc/core_resource.hrc:2640
+#: formula/inc/core_resource.hrc:2641
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETAINV"
msgstr "BETAINV"
#. LKwJS
-#: formula/inc/core_resource.hrc:2641
+#: formula/inc/core_resource.hrc:2642
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETA.DIST"
msgstr "BETA.DIST"
#. psoXo
-#: formula/inc/core_resource.hrc:2642
+#: formula/inc/core_resource.hrc:2643
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETA.INV"
msgstr "BETA.INV"
#. yg6Em
-#: formula/inc/core_resource.hrc:2643
+#: formula/inc/core_resource.hrc:2644
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEEKNUM"
msgstr "WEEKNUM"
#. AQAu7
-#: formula/inc/core_resource.hrc:2644
+#: formula/inc/core_resource.hrc:2645
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISOWEEKNUM"
msgstr "ISOWEEKNUM"
#. iN85u
-#: formula/inc/core_resource.hrc:2645
+#: formula/inc/core_resource.hrc:2646
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEEKNUM_OOO"
msgstr "WEEKNUM_OOO"
#. SWHk4
-#: formula/inc/core_resource.hrc:2646
+#: formula/inc/core_resource.hrc:2647
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EASTERSUNDAY"
msgstr "EASTERSUNDAY"
#. TFPFc
-#: formula/inc/core_resource.hrc:2647
+#: formula/inc/core_resource.hrc:2648
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEEKDAY"
msgstr "WEEKDAY"
#. aGkBh
-#: formula/inc/core_resource.hrc:2648
+#: formula/inc/core_resource.hrc:2649
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NETWORKDAYS"
msgstr "NETWORKDAYS"
#. KUR7o
-#: formula/inc/core_resource.hrc:2649
+#: formula/inc/core_resource.hrc:2650
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NETWORKDAYS.INTL"
msgstr "NETWORKDAYS.INTL"
#. QAzUk
-#: formula/inc/core_resource.hrc:2650
+#: formula/inc/core_resource.hrc:2651
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WORKDAY.INTL"
msgstr "WORKDAY.INTL"
#. CFhSp
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2652
+#: formula/inc/core_resource.hrc:2653
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NAME!"
msgstr "#NAME!"
#. LQhGc
-#: formula/inc/core_resource.hrc:2653
+#: formula/inc/core_resource.hrc:2654
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STYLE"
msgstr "STYLE"
#. Xvnfv
-#: formula/inc/core_resource.hrc:2654
+#: formula/inc/core_resource.hrc:2655
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DDE"
msgstr "DDE"
#. UDgRG
-#: formula/inc/core_resource.hrc:2655
+#: formula/inc/core_resource.hrc:2656
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BASE"
msgstr "BASE"
#. PXCbM
-#: formula/inc/core_resource.hrc:2656
+#: formula/inc/core_resource.hrc:2657
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DECIMAL"
msgstr "DECIMAL"
#. 7D826
-#: formula/inc/core_resource.hrc:2657
+#: formula/inc/core_resource.hrc:2658
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONVERT_OOO"
msgstr "CONVERT_OOO"
#. Pdt6b
-#: formula/inc/core_resource.hrc:2658
+#: formula/inc/core_resource.hrc:2659
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROMAN"
msgstr "ROMAN"
#. EAFPL
-#: formula/inc/core_resource.hrc:2659
+#: formula/inc/core_resource.hrc:2660
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HYPERLINK"
msgstr "HYPERLINK"
#. nGCAP
-#: formula/inc/core_resource.hrc:2660
+#: formula/inc/core_resource.hrc:2661
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INFO"
msgstr "INFO"
#. AnDA3
-#: formula/inc/core_resource.hrc:2661
+#: formula/inc/core_resource.hrc:2662
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BAHTTEXT"
msgstr "BAHTTEXT"
#. AUXa8
-#: formula/inc/core_resource.hrc:2662
+#: formula/inc/core_resource.hrc:2663
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GETPIVOTDATA"
msgstr "GETPIVOTDATA"
#. ByRr8
-#: formula/inc/core_resource.hrc:2663
+#: formula/inc/core_resource.hrc:2664
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EUROCONVERT"
msgstr "EUROCONVERT"
#. WAGGZ
-#: formula/inc/core_resource.hrc:2664
+#: formula/inc/core_resource.hrc:2665
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NUMBERVALUE"
msgstr "NUMBERVALUE"
#. TxAAw
-#: formula/inc/core_resource.hrc:2665
+#: formula/inc/core_resource.hrc:2666
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMA"
msgstr "GAMMA"
#. ash3y
-#: formula/inc/core_resource.hrc:2666
+#: formula/inc/core_resource.hrc:2667
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQDIST"
msgstr "CHISQDIST"
#. N57in
-#: formula/inc/core_resource.hrc:2667
+#: formula/inc/core_resource.hrc:2668
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.DIST"
msgstr "CHISQ.DIST"
#. XA6Hg
-#: formula/inc/core_resource.hrc:2668
+#: formula/inc/core_resource.hrc:2669
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQINV"
msgstr "CHISQINV"
#. RAQNt
-#: formula/inc/core_resource.hrc:2669
+#: formula/inc/core_resource.hrc:2670
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.INV"
msgstr "CHISQ.INV"
#. B7QQq
-#: formula/inc/core_resource.hrc:2670
+#: formula/inc/core_resource.hrc:2671
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITAND"
msgstr "BITAND"
#. wgJLF
-#: formula/inc/core_resource.hrc:2671
+#: formula/inc/core_resource.hrc:2672
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITOR"
msgstr "BITOR"
#. xFRAb
-#: formula/inc/core_resource.hrc:2672
+#: formula/inc/core_resource.hrc:2673
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITXOR"
msgstr "BITXOR"
#. kuvCF
-#: formula/inc/core_resource.hrc:2673
+#: formula/inc/core_resource.hrc:2674
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITRSHIFT"
msgstr "BITRSHIFT"
#. KntNH
-#: formula/inc/core_resource.hrc:2674
+#: formula/inc/core_resource.hrc:2675
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITLSHIFT"
msgstr "BITLSHIFT"
@@ -2381,7 +2381,7 @@ msgstr "BITLSHIFT"
#. BEGIN defined ERROR.TYPE() values.
#. ERROR.TYPE( #NULL! ) == 1
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2678
+#: formula/inc/core_resource.hrc:2679
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NULL!"
msgstr "#NULL!"
@@ -2389,7 +2389,7 @@ msgstr "#NULL!"
#. 8HAoC
#. ERROR.TYPE( #DIV/0! ) == 2
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2681
+#: formula/inc/core_resource.hrc:2682
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#DIV/0!"
msgstr "#DIV/0!"
@@ -2397,7 +2397,7 @@ msgstr "#DIV/0!"
#. rADeJ
#. ERROR.TYPE( #VALUE! ) == 3
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2684
+#: formula/inc/core_resource.hrc:2685
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#VALUE!"
msgstr "#VALUE!"
@@ -2405,7 +2405,7 @@ msgstr "#VALUE!"
#. GwFUm
#. ERROR.TYPE( #REF! ) == 4
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2687
+#: formula/inc/core_resource.hrc:2688
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#REF!"
msgstr "#REF!"
@@ -2413,7 +2413,7 @@ msgstr "#REF!"
#. aMvVe
#. ERROR.TYPE( #NAME! ) == 5
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2690
+#: formula/inc/core_resource.hrc:2691
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NAME?"
msgstr "#NAME?"
@@ -2421,7 +2421,7 @@ msgstr "#NAME?"
#. cqeXG
#. ERROR.TYPE( #NUM! ) == 6
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2693
+#: formula/inc/core_resource.hrc:2694
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NUM!"
msgstr "#NUM!"
@@ -2429,92 +2429,92 @@ msgstr "#NUM!"
#. tXNHL
#. ERROR.TYPE( #N/A ) == 7
#. L10n: preserve the leading '#' hash character in translations.
-#: formula/inc/core_resource.hrc:2696
+#: formula/inc/core_resource.hrc:2697
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#N/A"
msgstr "#N/A"
#. bfyEe
#. END defined ERROR.TYPE() values.
-#: formula/inc/core_resource.hrc:2699
+#: formula/inc/core_resource.hrc:2700
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FILTERXML"
msgstr "FILTERXML"
#. KNiFR
-#: formula/inc/core_resource.hrc:2700
+#: formula/inc/core_resource.hrc:2701
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COLOR"
msgstr "COLOR"
#. ufFAa
-#: formula/inc/core_resource.hrc:2701
+#: formula/inc/core_resource.hrc:2702
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEBSERVICE"
msgstr "WEBSERVICE"
#. ftd3C
-#: formula/inc/core_resource.hrc:2702
+#: formula/inc/core_resource.hrc:2703
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERF.PRECISE"
msgstr "ERF.PRECISE"
#. Gz4Zt
-#: formula/inc/core_resource.hrc:2703
+#: formula/inc/core_resource.hrc:2704
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERFC.PRECISE"
msgstr "ERFC.PRECISE"
#. ywAMF
-#: formula/inc/core_resource.hrc:2704
+#: formula/inc/core_resource.hrc:2705
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ENCODEURL"
msgstr "ENCODEURL"
#. kQW77
-#: formula/inc/core_resource.hrc:2705
+#: formula/inc/core_resource.hrc:2706
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RAWSUBTRACT"
msgstr "RAWSUBTRACT"
#. DgyUW
-#: formula/inc/core_resource.hrc:2706
+#: formula/inc/core_resource.hrc:2707
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDSIG"
msgstr "ROUNDSIG"
#. nAvYh
-#: formula/inc/core_resource.hrc:2707
+#: formula/inc/core_resource.hrc:2708
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FINDB"
msgstr "FINDB"
#. 8FkJr
-#: formula/inc/core_resource.hrc:2708
+#: formula/inc/core_resource.hrc:2709
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SEARCHB"
msgstr "SEARCHB"
#. tNMTu
-#: formula/inc/core_resource.hrc:2709
+#: formula/inc/core_resource.hrc:2710
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REGEX"
msgstr "REGEX"
#. FWYvN
-#: formula/inc/core_resource.hrc:2710
+#: formula/inc/core_resource.hrc:2711
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FOURIER"
msgstr "FOURIER"
#. RJfcx
-#: formula/inc/core_resource.hrc:2711
+#: formula/inc/core_resource.hrc:2712
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RAND.NV"
msgstr "RAND.NV"
#. uYSAT
-#: formula/inc/core_resource.hrc:2712
+#: formula/inc/core_resource.hrc:2713
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RANDBETWEEN.NV"
msgstr "RANDBETWEEN.NV"
diff --git a/source/lv/helpcontent2/source/text/sbasic/guide.po b/source/lv/helpcontent2/source/text/sbasic/guide.po
index 4226a1a63c4..a3c3f1e88d1 100644
--- a/source/lv/helpcontent2/source/text/sbasic/guide.po
+++ b/source/lv/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2019-02-27 12:06+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1645,13 +1645,13 @@ msgctxt ""
msgid "Global Function for Loading Dialogs"
msgstr "Globālā funkcija dialogu ielādēšanai"
-#. uCCWG
+#. uREk8
#: sample_code.xhp
msgctxt ""
"sample_code.xhp\n"
"par_id3153032\n"
"help.text"
-msgid "<literal>LoadDialog</literal> function is stored in <literal>Tools.ModuleControls</literal> available from %PRODUCTNAME Macros and Dialogs."
+msgid "<literal>LoadDialog</literal> function is stored in <literal>Tools.ModuleControls</literal> available from Application Macros and Dialogs."
msgstr ""
#. kBLFU
diff --git a/source/lv/helpcontent2/source/text/sbasic/python.po b/source/lv/helpcontent2/source/text/sbasic/python.po
index 1a55a5999a2..6b1de1bf9ae 100644
--- a/source/lv/helpcontent2/source/text/sbasic/python.po
+++ b/source/lv/helpcontent2/source/text/sbasic/python.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:20+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2019-02-27 15:23+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -79,13 +79,13 @@ msgctxt ""
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 ""
-#. g2dUC
+#. nytCF
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
"par_id131568902936659\n"
"help.text"
-msgid "The %PRODUCTNAME scripting framework for Python is optional on some GNU/Linux distributions. If it is installed, selecting <menuitem>Tools - Macros - Run Macro</menuitem> and checking <literal>%PRODUCTNAME Macros</literal> for the presence of <literal>HelloWorld – HelloWorldPython</literal> macro is sufficient. If absent, please refer to your distribution documentation in order to install the %PRODUCTNAME scripting framework for Python."
+msgid "The %PRODUCTNAME scripting framework for Python is optional on some GNU/Linux distributions. If it is installed, selecting <menuitem>Tools - Macros - Run Macro</menuitem> and checking <literal>Application Macros</literal> for the presence of <literal>HelloWorld – HelloWorldPython</literal> macro is sufficient. If absent, please refer to your distribution documentation in order to install the %PRODUCTNAME scripting framework for Python."
msgstr ""
#. naZBV
@@ -403,22 +403,22 @@ msgctxt ""
msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
-#. WAuH7
+#. MZJA9
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"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."
+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 (Application 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 ""
-#. BNxEA
+#. AbdfS
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0338\n"
"help.text"
-msgid "My Macros or %PRODUCTNAME Macros dialogs"
+msgid "My Macros or Application Macros dialogs"
msgstr ""
#. pcUEy
@@ -2230,13 +2230,13 @@ msgctxt ""
msgid "<emph>My Macros:</emph> personal macros available for the %PRODUCTNAME user"
msgstr ""
-#. BB8K2
+#. VGmNv
#: python_locations.xhp
msgctxt ""
"python_locations.xhp\n"
"par_id471636114847530\n"
"help.text"
-msgid "<emph>%PRODUCTNAME Macros:</emph> system macros distributed with LibreOffice for every computer user"
+msgid "<emph>Application Macros:</emph> system macros distributed with LibreOffice for every computer user"
msgstr ""
#. kVY4C
@@ -2266,13 +2266,13 @@ msgctxt ""
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 ""
-#. 2NPrE
+#. GDrUs
#: python_locations.xhp
msgctxt ""
"python_locations.xhp\n"
"hd_id591544049572647\n"
"help.text"
-msgid "%PRODUCTNAME Macros"
+msgid "Application Macros"
msgstr ""
#. xBzRT
diff --git a/source/lv/helpcontent2/source/text/sbasic/shared.po b/source/lv/helpcontent2/source/text/sbasic/shared.po
index 903f52fa94a..49a291658bb 100644
--- a/source/lv/helpcontent2/source/text/sbasic/shared.po
+++ b/source/lv/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:20+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\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"
@@ -538,13 +538,13 @@ msgctxt ""
msgid "Open <item type=\"menuitem\">Tools - Macros - Organize Dialogs</item> and select <item type=\"menuitem\">%PRODUCTNAME Dialogs</item> container."
msgstr ""
-#. C3yvQ
+#. QFmDV
#: 00000003.xhp
msgctxt ""
"00000003.xhp\n"
"par_id631529000528928\n"
"help.text"
-msgid "Open <item type=\"menuitem\">Tools - Macros - %PRODUCTNAME Basic - Edit</item> and select <item type=\"menuitem\">%PRODUCTNAME Macros</item> container."
+msgid "Open <item type=\"menuitem\">Tools - Macros - %PRODUCTNAME Basic - Edit</item> and select <item type=\"menuitem\">Application Macros</item> container."
msgstr ""
#. 7wPgQ
@@ -2041,13 +2041,13 @@ msgctxt ""
msgid "Using Variables"
msgstr "Mainīgo lietošana"
-#. Wdrgx
+#. gaCJC
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"bm_id3149346\n"
"help.text"
-msgid "<bookmark_value>names of variables</bookmark_value> <bookmark_value>variables; using</bookmark_value> <bookmark_value>types of variables</bookmark_value> <bookmark_value>declaring variables</bookmark_value> <bookmark_value>values;of variables</bookmark_value> <bookmark_value>literals;date</bookmark_value> <bookmark_value>literals;integer</bookmark_value> <bookmark_value>literals;hexadecimal</bookmark_value> <bookmark_value>literals;integer</bookmark_value> <bookmark_value>literals;octal</bookmark_value> <bookmark_value>literals;&h notation</bookmark_value> <bookmark_value>literals;&o notation</bookmark_value> <bookmark_value>literals;floating-point</bookmark_value> <bookmark_value>constants</bookmark_value> <bookmark_value>arrays;declaring</bookmark_value> <bookmark_value>defining;constants</bookmark_value>"
+msgid "<bookmark_value>names of variables</bookmark_value> <bookmark_value>variables; using</bookmark_value> <bookmark_value>types of variables</bookmark_value> <bookmark_value>declaring variables</bookmark_value> <bookmark_value>values;of variables</bookmark_value> <bookmark_value>literals;date</bookmark_value> <bookmark_value>literals;integer</bookmark_value> <bookmark_value>literals;integer</bookmark_value> <bookmark_value>literals;floating point</bookmark_value> <bookmark_value>constants</bookmark_value> <bookmark_value>arrays;declaring</bookmark_value> <bookmark_value>defining;constants</bookmark_value>"
msgstr ""
#. VAkCC
@@ -2581,6 +2581,15 @@ msgctxt ""
msgid "Date variables can only contain dates and time values stored in an internal format. Values assigned to Date variables with <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> or <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> are automatically converted to the internal format. Date-variables are converted to normal numbers by using the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function. The internal format enables a comparison of date/time values by calculating the difference between two numbers. These variables can only be declared with the key word <emph>Date</emph>."
msgstr ""
+#. RzVub
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"bm_id3150669\n"
+"help.text"
+msgid "<bookmark_value>ampersand symbol; in literal notation</bookmark_value> <bookmark_value>literals;hexadecimal</bookmark_value> <bookmark_value>literals;octal</bookmark_value> <bookmark_value>literals;&h notation</bookmark_value> <bookmark_value>literals;&o notation</bookmark_value>"
+msgstr ""
+
#. x883R
#: 01020100.xhp
msgctxt ""
@@ -4039,13 +4048,13 @@ msgctxt ""
msgid "%PRODUCTNAME Basic libraries can be stored in 3 different containers:"
msgstr ""
-#. HYjJE
+#. dAbrb
#: 01030400.xhp
msgctxt ""
"01030400.xhp\n"
"par_id571574079618609\n"
"help.text"
-msgid "<emph>%PRODUCTNAME Macros</emph>: libraries stored in this container are available for all users of the computer and are managed by the computer administrator. The container is located in the %PRODUCTNAME installation directory."
+msgid "<emph>Application Macros</emph>: libraries stored in this container are available for all users of the computer and are managed by the computer administrator. The container is located in the %PRODUCTNAME installation directory."
msgstr ""
#. UG2dG
@@ -4066,13 +4075,13 @@ msgctxt ""
msgid "<emph>Document</emph>: libraries stored in the document container are only available for the document and are accessible only when the document is open. You cannot access macros of a document from another document."
msgstr ""
-#. GCWxT
+#. fP4ya
#: 01030400.xhp
msgctxt ""
"01030400.xhp\n"
"par_id881574081445896\n"
"help.text"
-msgid "To access macros stored in libraries of <emph>%PRODUCTNAME Macros</emph> or <emph>My Macros</emph> from another container, including the document container, use the <link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope specifier</link>."
+msgid "To access macros stored in libraries of <emph>Application Macros</emph> or <emph>My Macros</emph> from another container, including the document container, use the <link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope specifier</link>."
msgstr ""
#. bGzjL
@@ -4111,13 +4120,13 @@ msgctxt ""
msgid "Click the <emph>Libraries</emph> tab."
msgstr "Klikšķiniet <emph>Bibliotēkas</emph> cilni."
-#. 4ERU5
+#. htC8c
#: 01030400.xhp
msgctxt ""
"01030400.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
+msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select Application Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
msgstr ""
#. PCjRC
@@ -4156,13 +4165,13 @@ msgctxt ""
msgid "Click the <emph>Libraries</emph> tab."
msgstr "Klikšķiniet <emph>Bibliotēkas</emph> cilni."
-#. 5jXQ8
+#. 7w5hH
#: 01030400.xhp
msgctxt ""
"01030400.xhp\n"
"par_id3145640\n"
"help.text"
-msgid "Select to where you want to import the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be imported to this document and only available from there."
+msgid "Select to where you want to import the library in the <emph>Location</emph> list. If you select Application Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be imported to this document and only available from there."
msgstr ""
#. dUvoX
@@ -8800,23 +8809,14 @@ msgctxt ""
msgid "Returns the blue component of the specified composite color code."
msgstr ""
-#. VLvxx
-#: 03010301.xhp
-msgctxt ""
-"03010301.xhp\n"
-"hd_id3149670\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#. 6NsAv
+#. qNGaq
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
-"hd_id3149656\n"
+"par_id3149457\n"
"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
+msgid "Blue (Color As Long)"
+msgstr ""
#. vGp8m
#: 03010301.xhp
@@ -8827,15 +8827,6 @@ msgctxt ""
msgid "Integer"
msgstr "Vesels skaitlis"
-#. GiJXy
-#: 03010301.xhp
-msgctxt ""
-"03010301.xhp\n"
-"hd_id3156423\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parametrs:"
-
#. JY6Z8
#: 03010301.xhp
msgctxt ""
@@ -8845,14 +8836,14 @@ msgctxt ""
msgid "<emph>Color value</emph>: Long integer expression that specifies any composite color code for which to return the blue component."
msgstr ""
-#. roGL5
+#. NEqxG
#: 03010301.xhp
msgctxt ""
"03010301.xhp\n"
-"hd_id3153091\n"
+"par_id671639922129017\n"
"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
+msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the function Blue() is incompatible with VBA colors, when color from previous call to <link href=\"text/sbasic/shared/03010306.xhp\" name=\"linkrgbvba\"><literal>function RGB [VBA]</literal></link> is passed."
+msgstr ""
#. a3s7N
#: 03010301.xhp
@@ -8926,23 +8917,14 @@ msgctxt ""
msgid "Returns the Green component of the given composite color code."
msgstr ""
-#. qAgBp
+#. yGCYn
#: 03010302.xhp
msgctxt ""
"03010302.xhp\n"
-"hd_id3154140\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#. q3DPS
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3154124\n"
+"par_id3153969\n"
"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
+msgid "Green (Color As Long)"
+msgstr ""
#. wbFdA
#: 03010302.xhp
@@ -8953,15 +8935,6 @@ msgctxt ""
msgid "Integer"
msgstr "Vesels skaitlis"
-#. rGUxM
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3154909\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parametrs:"
-
#. YKcLU
#: 03010302.xhp
msgctxt ""
@@ -8971,15 +8944,6 @@ msgctxt ""
msgid "<emph>Color</emph>: Long integer expression that specifies a composite color code for which to return the Green component."
msgstr ""
-#. DBLfM
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"hd_id3149664\n"
-"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
-
#. 6vcEb
#: 03010302.xhp
msgctxt ""
@@ -9052,23 +9016,14 @@ msgctxt ""
msgid "Returns the Red component of the specified composite color code."
msgstr ""
-#. YSmcx
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3148799\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#. nbbWR
+#. 3nHCU
#: 03010303.xhp
msgctxt ""
"03010303.xhp\n"
-"hd_id3151042\n"
+"par_id3150448\n"
"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
+msgid "Red (ColorNumber As Long)"
+msgstr ""
#. XD3jj
#: 03010303.xhp
@@ -9079,15 +9034,6 @@ msgctxt ""
msgid "Integer"
msgstr "Vesels skaitlis"
-#. HzvQ6
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3154685\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parametrs:"
-
#. 8TeVm
#: 03010303.xhp
msgctxt ""
@@ -9097,23 +9043,23 @@ msgctxt ""
msgid "<emph>ColorNumber</emph>: Long integer expression that specifies any composite color code for which to return the Red component."
msgstr ""
-#. iiUNB
+#. YDBFF
#: 03010303.xhp
msgctxt ""
"03010303.xhp\n"
-"par_id961588421825749\n"
+"par_id671639922129017\n"
"help.text"
-msgid "The <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">color picker dialog</link> details the red, green and blue components of a composite color code, as well as its hexadecimal expression. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
+msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the function Red() is incompatible with VBA colors, when color from previous call to <link href=\"text/sbasic/shared/03010306.xhp\" name=\"linkrgbvba\"><literal>function RGB [VBA]</literal></link> is passed."
msgstr ""
-#. DsCGZ
+#. iiUNB
#: 03010303.xhp
msgctxt ""
"03010303.xhp\n"
-"hd_id3148575\n"
+"par_id961588421825749\n"
"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
+msgid "The <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">color picker dialog</link> details the red, green and blue components of a composite color code, as well as its hexadecimal expression. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
+msgstr ""
#. 4txDN
#: 03010303.xhp
@@ -9187,32 +9133,14 @@ msgctxt ""
msgid "Returns the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> color code of the color passed as a color value through an older MS-DOS based programming system."
msgstr ""
-#. sAgxm
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3154140\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#. 32yR4
+#. scoHN
#: 03010304.xhp
msgctxt ""
"03010304.xhp\n"
-"hd_id3145172\n"
-"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
-
-#. Z9k2a
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3156560\n"
+"par_id3151042\n"
"help.text"
-msgid "Parameter:"
-msgstr "Parametrs:"
+msgid "QBColor (ColorNumber As Integer)"
+msgstr ""
#. pTA5y
#: 03010304.xhp
@@ -9385,15 +9313,6 @@ msgctxt ""
msgid "This function is used only to convert from older MS-DOS based BASIC applications that use the above color codes. The function returns a long integer value indicating the color to be used in the $[officename] IDE."
msgstr ""
-#. a9cbE
-#: 03010304.xhp
-msgctxt ""
-"03010304.xhp\n"
-"hd_id3148406\n"
-"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
-
#. GPDgr
#: 03010304.xhp
msgctxt ""
@@ -9439,32 +9358,14 @@ msgctxt ""
msgid "Returns a <literal>Long</literal> integer color value consisting of red, green, and blue components."
msgstr ""
-#. MiCPe
+#. rd647
#: 03010305.xhp
msgctxt ""
"03010305.xhp\n"
-"hd_id3147229\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#. T8jX4
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3156442\n"
-"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
-
-#. FRE8M
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"hd_id3154013\n"
+"par_id3155132\n"
"help.text"
-msgid "Parameter:"
-msgstr "Parametrs:"
+msgid "RGB (Red, Green, Blue)"
+msgstr ""
#. QM73e
#: 03010305.xhp
@@ -9493,23 +9394,32 @@ msgctxt ""
msgid "<emph>blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
msgstr ""
-#. cFpDD
+#. c4KCL
#: 03010305.xhp
msgctxt ""
"03010305.xhp\n"
-"par_id211587653651037\n"
+"par_id101639922410794\n"
"help.text"
-msgid "The <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">color picker dialog</link> helps computing red, green and blue components of a composite color. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
+msgid "The resulting <literal>Long</literal> value is calculated with the following formula:<br/><literal>Result = red×65536 + green×256 + blue</literal>."
msgstr ""
-#. Vn6Jr
+#. iDgoc
#: 03010305.xhp
msgctxt ""
"03010305.xhp\n"
-"hd_id3147435\n"
+"par_id671639922129017\n"
"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
+msgid "Under VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the <literal>Long</literal> value is calculated as<br/><literal>Result = red + green×256 + blue×65536</literal><br/>See <link href=\"text/sbasic/shared/03010306.xhp\" name=\"rgbvba\">RGB Function [VBA]</link>"
+msgstr ""
+
+#. cFpDD
+#: 03010305.xhp
+msgctxt ""
+"03010305.xhp\n"
+"par_id211587653651037\n"
+"help.text"
+msgid "The <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">color picker dialog</link> helps computing red, green and blue components of a composite color. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
+msgstr ""
#. GWhFy
#: 03010305.xhp
@@ -9547,6 +9457,60 @@ msgctxt ""
msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
msgstr ""
+#. 4pPor
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"tit\n"
+"help.text"
+msgid "RGB Function [VBA]"
+msgstr ""
+
+#. JbDc8
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"bm_id851576768070903\n"
+"help.text"
+msgid "<bookmark_value>RGB function [VBA]</bookmark_value>"
+msgstr ""
+
+#. RSnVb
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"hd_id3150792\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function\">RGB Function [VBA]</link>"
+msgstr ""
+
+#. ZMjZi
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"par_id3150447\n"
+"help.text"
+msgid "Returns a <literal>Long</literal> integer color value consisting of red, green, and blue components, according to VBA color formula."
+msgstr ""
+
+#. LNVC5
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"par_id671639922129017\n"
+"help.text"
+msgid "Because of the VBA compatibility mode (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), the <literal>Long</literal> value is calculated as<br/><literal>Result = red + green×256 + blue×65536</literal>."
+msgstr ""
+
+#. cDKcg
+#: 03010306.xhp
+msgctxt ""
+"03010306.xhp\n"
+"par_id621639924528952\n"
+"help.text"
+msgid "Print lVar; ' returns 13107328"
+msgstr ""
+
#. kpKGV
#: 03020000.xhp
msgctxt ""
@@ -9646,6 +9610,15 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/Close_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Close Statement diagram</alt></image>"
msgstr ""
+#. FEDAa
+#: 03020101.xhp
+msgctxt ""
+"03020101.xhp\n"
+"par_id3147265\n"
+"help.text"
+msgid "Close [[#]fileNum [, [#]fileNum2 [,...]]]"
+msgstr ""
+
#. gdqMu
#: 03020101.xhp
msgctxt ""
@@ -10015,6 +9988,15 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/Get_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Get Statement diagram</alt></image>"
msgstr ""
+#. xBhKA
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3150792\n"
+"help.text"
+msgid "Get [#]fileNum, [recordNum|filePos], variable"
+msgstr ""
+
#. UM9CG
#: 03020201.xhp
msgctxt ""
@@ -10438,6 +10420,15 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/Put_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Put Statement diagram</alt></image>"
msgstr ""
+#. RBpeh
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3155132\n"
+"help.text"
+msgid "Put [#]fileNum, [recordNum|filePos], variable"
+msgstr ""
+
#. bSFd2
#: 03020204.xhp
msgctxt ""
@@ -10645,6 +10636,15 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr ""
+#. KmauZ
+#: 03020301.xhp
+msgctxt ""
+"03020301.xhp\n"
+"par_id3147399\n"
+"help.text"
+msgid "Eof (intexpression As Integer)"
+msgstr ""
+
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10717,6 +10717,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. K5Bo8
+#: 03020302.xhp
+msgctxt ""
+"03020302.xhp\n"
+"par_id3150768\n"
+"help.text"
+msgid "Loc(FileNumber)"
+msgstr ""
+
#. 2TN73
#: 03020302.xhp
msgctxt ""
@@ -10798,6 +10807,15 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr ""
+#. 43MqD
+#: 03020303.xhp
+msgctxt ""
+"03020303.xhp\n"
+"par_id3150359\n"
+"help.text"
+msgid "Lof (FileNumber)"
+msgstr ""
+
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -10888,6 +10906,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. kDJUc
+#: 03020304.xhp
+msgctxt ""
+"03020304.xhp\n"
+"par_id3145365\n"
+"help.text"
+msgid "Seek (FileNumber)"
+msgstr ""
+
#. CPK2A
#: 03020304.xhp
msgctxt ""
@@ -10978,6 +11005,15 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/Seek_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Seek Statement diagram</alt></image>"
msgstr ""
+#. PjcAp
+#: 03020305.xhp
+msgctxt ""
+"03020305.xhp\n"
+"par_id3145273\n"
+"help.text"
+msgid "Seek [#]filePos, {filePos|recordNum}"
+msgstr ""
+
#. vwzuK
#: 03020305.xhp
msgctxt ""
@@ -11653,6 +11689,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. LnQdV
+#: 03020406.xhp
+msgctxt ""
+"03020406.xhp\n"
+"par_id3146957\n"
+"help.text"
+msgid "FileCopy TextFrom As String, TextTo As String"
+msgstr ""
+
#. CjRbT
#: 03020406.xhp
msgctxt ""
@@ -11743,6 +11788,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. CPCBG
+#: 03020407.xhp
+msgctxt ""
+"03020407.xhp\n"
+"par_id3154124\n"
+"help.text"
+msgid "FileDateTime (Text As String)"
+msgstr "FileDateTime (Teksts As String)"
+
#. meGd2
#: 03020407.xhp
msgctxt ""
@@ -11824,6 +11878,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. MoBSd
+#: 03020408.xhp
+msgctxt ""
+"03020408.xhp\n"
+"par_id3149656\n"
+"help.text"
+msgid "FileLen (Text As String)"
+msgstr "FileLen (Teksts As String)"
+
#. LVwBo
#: 03020408.xhp
msgctxt ""
@@ -11914,6 +11977,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. 45fLv
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3150359\n"
+"help.text"
+msgid "GetAttr (Text As String)"
+msgstr "GetAttr (Teksts As String)"
+
#. mBMu7
#: 03020409.xhp
msgctxt ""
@@ -12400,6 +12472,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. AUhBt
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
+"par_id3153381\n"
+"help.text"
+msgid "Name OldName As String As NewName As String"
+msgstr ""
+
#. 7AwQo
#: 03020412.xhp
msgctxt ""
@@ -12481,6 +12562,15 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/RmDir_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">RmDir Statement diagram</alt></image>"
msgstr ""
+#. uE7FC
+#: 03020413.xhp
+msgctxt ""
+"03020413.xhp\n"
+"par_id3154367\n"
+"help.text"
+msgid "RmDir Text As String"
+msgstr "RmDir Teksts As String"
+
#. 2mpBg
#: 03020413.xhp
msgctxt ""
@@ -12544,6 +12634,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. CrLq9
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3154365\n"
+"help.text"
+msgid "SetAttr FileName As String, Attribute As Integer"
+msgstr ""
+
#. 7arWD
#: 03020414.xhp
msgctxt ""
@@ -12706,6 +12805,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. Tvkos
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"par_id3154685\n"
+"help.text"
+msgid "FileExists(FileName As String | DirectoryName As String)"
+msgstr ""
+
#. iTkt5
#: 03020415.xhp
msgctxt ""
@@ -12859,6 +12967,15 @@ msgctxt ""
msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
msgstr ""
+#. 5G7kZ
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "DateSerial (year, month, day)"
+msgstr "DateSerial (gads, mēnesis, diena)"
+
#. xroUB
#: 03030101.xhp
msgctxt ""
@@ -12976,40 +13093,76 @@ msgctxt ""
msgid "<variable id=\"DateValue_H1\"><link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function\">DateValue Function</link></variable>"
msgstr ""
-#. K3nhZ
+#. CDPDz
#: 03030102.xhp
msgctxt ""
"03030102.xhp\n"
"par_id3150542\n"
"help.text"
-msgid "Returns a date value from a date string. The date string is a complete date in a single numeric value. You can also use this serial number to determine the difference between two dates."
+msgid "Returns a <emph>Date</emph> object from a string representing a date."
+msgstr ""
+
+#. Svwc6
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"par_id671643046319326\n"
+"help.text"
+msgid "The returned object is represented internally as a single numeric value corresponding to the specified date. This value can be used to calculate the number of days between two dates."
msgstr ""
-#. PxEGo
+#. DCJAK
#: 03030102.xhp
msgctxt ""
"03030102.xhp\n"
"par_id3154910\n"
"help.text"
-msgid "DateValue(date)"
+msgid "DateValue(date As String)"
msgstr ""
-#. vxxyq
+#. rK8mE
#: 03030102.xhp
msgctxt ""
"03030102.xhp\n"
"par_id3153770\n"
"help.text"
-msgid "<emph>Date</emph>: String expression that contains the date that you want to calculate. In contrast to the DateSerial function that passes years, months and days as separate numeric values, the DateValue function requests the date string to be according to either one of the date acceptance patterns defined for your locale setting (see <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language Settings - Languages</menuitem>) or to ISO date format (momentarily, only the ISO format with hyphens, e.g. \"2012-12-31\" is accepted)."
+msgid "<emph>date</emph>: A string that contains the date that will be converted to a <emph>Date</emph> object."
msgstr ""
-#. KmwFZ
+#. fAM5v
#: 03030102.xhp
msgctxt ""
"03030102.xhp\n"
-"par_id3153194\n"
+"par_id841643046880968\n"
+"help.text"
+msgid "The string passed to <literal>DateValue</literal> must be expressed in one of the date formats defined by your locale setting (see <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language Settings - Languages</menuitem>) or using the ISO date format \"yyyy-mm-dd\" (year, month and day separated by hyphens)."
+msgstr ""
+
+#. aGJzN
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"bas_id461643047301827\n"
"help.text"
-msgid "The computed date."
+msgid "' Prints the localized date"
+msgstr ""
+
+#. tSeu3
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"bas_id616430473023063\n"
+"help.text"
+msgid "' Extracts the year, month and day from the date object"
+msgstr ""
+
+#. NkfKq
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"bas_id601643047303420\n"
+"help.text"
+msgid "' Prints the numeric value corresponding to the date (as Long type)"
msgstr ""
#. wDviP
@@ -14308,6 +14461,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. cPRUh
+#: 03030111.xhp
+msgctxt ""
+"03030111.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateToUnoDate(aDate)"
+msgstr ""
+
#. iGwfJ
#: 03030111.xhp
msgctxt ""
@@ -14488,6 +14650,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. ABYMv
+#: 03030113.xhp
+msgctxt ""
+"03030113.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateToUnoTime(aDate)"
+msgstr ""
+
#. N7qeB
#: 03030113.xhp
msgctxt ""
@@ -14578,6 +14749,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. EQoqi
+#: 03030114.xhp
+msgctxt ""
+"03030114.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateFromUnoTime(aTime)"
+msgstr ""
+
#. QreGF
#: 03030114.xhp
msgctxt ""
@@ -14668,6 +14848,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. TMAGP
+#: 03030115.xhp
+msgctxt ""
+"03030115.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateToUnoDateTime(aDate)"
+msgstr ""
+
#. 9vAhc
#: 03030115.xhp
msgctxt ""
@@ -14758,6 +14947,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. qhgq3
+#: 03030116.xhp
+msgctxt ""
+"03030116.xhp\n"
+"par_id3149497\n"
+"help.text"
+msgid "CDateFromUnoDateTime(aDateTime)"
+msgstr ""
+
#. kjYF8
#: 03030116.xhp
msgctxt ""
@@ -14839,6 +15037,15 @@ msgctxt ""
msgid "Returns the number of date or time intervals between two given date values."
msgstr ""
+#. AzmeS
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
+"par_idN10648\n"
+"help.text"
+msgid "DateDiff (interval As String, date1 As Date, date2 As Date [, firstDayOfWeek As Integer [, firstWeekOfYear As Integer]]) As Double"
+msgstr ""
+
#. BPDH8
#: 03030120.xhp
msgctxt ""
@@ -15181,6 +15388,15 @@ msgctxt ""
msgid "The DatePart function returns a specified part of a date."
msgstr ""
+#. GWMCJ
+#: 03030130.xhp
+msgctxt ""
+"03030130.xhp\n"
+"par_idN105E8\n"
+"help.text"
+msgid "DatePart (interval As String, date As Date [, firstDayOfWeek As Integer [, firstWeekOfYear As Integer]]) As Long"
+msgstr ""
+
#. wi5B9
#: 03030130.xhp
msgctxt ""
@@ -15739,6 +15955,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. rBHrY
+#: 03030205.xhp
+msgctxt ""
+"03030205.xhp\n"
+"par_id3150792\n"
+"help.text"
+msgid "TimeSerial (hour, minute, second)"
+msgstr ""
+
#. mCg7g
#: 03030205.xhp
msgctxt ""
@@ -15937,6 +16162,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. WPuDv
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3156282\n"
+"help.text"
+msgid "TimeValue (Text As String)"
+msgstr "TimeValue (Teksts As String)"
+
#. NQV5A
#: 03030206.xhp
msgctxt ""
@@ -17197,6 +17431,15 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/On-Error_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">On Error Statement diagram</alt></image>"
msgstr ""
+#. CKJJr
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
+"par_id3145173\n"
+"help.text"
+msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
+msgstr ""
+
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17269,14 +17512,14 @@ msgctxt ""
msgid "Logical Operators"
msgstr "Loģiskie operatori"
-#. R8Yqr
+#. 8jdra
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"hd_id3147559\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Loģiskie operatori\">Loģiskie operatori</link>"
+msgid "<variable id=\"BoolOper_h1\"><link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link></variable>"
+msgstr ""
#. E9c8W
#: 03060000.xhp
@@ -17341,6 +17584,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. jairQ
+#: 03060100.xhp
+msgctxt ""
+"03060100.xhp\n"
+"par_id3156344\n"
+"help.text"
+msgid "Result = Expression1 And Expression2"
+msgstr "Rezultats = Izteiksme1 And Izteiksme2"
+
#. Nfu49
#: 03060100.xhp
msgctxt ""
@@ -17494,6 +17746,15 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
+#. m9bM6
+#: 03060200.xhp
+msgctxt ""
+"03060200.xhp\n"
+"par_id3154910\n"
+"help.text"
+msgid "Result = Expression1 Eqv Expression2"
+msgstr "Rezultats = Izteiksme1 Eqv Izteiksme2"
+
#. 7fkPv
#: 03060200.xhp
msgctxt ""
@@ -18160,14 +18421,14 @@ msgctxt ""
msgid "Mathematical Operators"
msgstr "Matemātiskie operatori"
-#. e5AQV
+#. LGC5F
#: 03070000.xhp
msgctxt ""
"03070000.xhp\n"
"hd_id3149234\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Matemātiskie operatori\">Matemātiskie operatori</link>"
+msgid "<variable id=\"MathOper_h1\"><link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link></variable>"
+msgstr ""
#. YBZiW
#: 03070000.xhp
@@ -18826,6 +19087,114 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
msgstr ""
+#. zzEFW
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"tit\n"
+"help.text"
+msgid "\"\\\" Operator"
+msgstr ""
+
+#. wFv3P
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"hd_id3150669\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03070700.xhp\">\"\\\" Operator</link>"
+msgstr ""
+
+#. tUDMG
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id3149670\n"
+"help.text"
+msgid "Performs the integer division on two numbers and returns the result."
+msgstr ""
+
+#. azS7k
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"bm_id3150669\n"
+"help.text"
+msgid "<bookmark_value>Operators;Integer division (\\)</bookmark_value> <bookmark_value>\"\\\" operator (mathematical)</bookmark_value>"
+msgstr ""
+
+#. KDgG2
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id3153360\n"
+"help.text"
+msgid "result = expression1 \\ expression2"
+msgstr ""
+
+#. jSHq3
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id3154141\n"
+"help.text"
+msgid "<emph>result</emph>: A numerical value that contains the result of the integer division."
+msgstr ""
+
+#. K3YrU
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id3150448\n"
+"help.text"
+msgid "<emph>expression1, expression2</emph>: Dividend and diviser operands of the integer division."
+msgstr ""
+
+#. 8WPwU
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_id951642689912087\n"
+"help.text"
+msgid "Before integer division, both operands are rounded to the nearest integer down. The fractional part of the result is dropped."
+msgstr ""
+
+#. nDd3u
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_idm1341471776\n"
+"help.text"
+msgid "Print 15 / 4 ' prints 3.75"
+msgstr ""
+
+#. GMudb
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_idm1341471777\n"
+"help.text"
+msgid "Print -15 \\ 4 ' prints -3"
+msgstr ""
+
+#. D9q99
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_idm1341471778\n"
+"help.text"
+msgid "Print 16.9 / 5.6 ' prints 3.017857114"
+msgstr ""
+
+#. SNhKe
+#: 03070700.xhp
+msgctxt ""
+"03070700.xhp\n"
+"par_idm1341471779\n"
+"help.text"
+msgid "Print 16.9 \\ -5.6 ' prints -3"
+msgstr ""
+
#. cFFCi
#: 03080000.xhp
msgctxt ""
@@ -18943,15 +19312,6 @@ msgctxt ""
msgid "Atn (Number As Double) As Double"
msgstr ""
-#. nnJyb
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
-"par_id3150359\n"
-"help.text"
-msgid "Double"
-msgstr "Dubulta"
-
#. rLBjg
#: 03080101.xhp
msgctxt ""
@@ -19114,15 +19474,6 @@ msgctxt ""
msgid "Cos (Number As Double) As Double"
msgstr ""
-#. 5SNwE
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3150449\n"
-"help.text"
-msgid "Double"
-msgstr "Dubulta"
-
#. jbCKb
#: 03080102.xhp
msgctxt ""
@@ -19285,15 +19636,6 @@ msgctxt ""
msgid "Sin (Number As Double) As Double"
msgstr ""
-#. q3Gct
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3150870\n"
-"help.text"
-msgid "Double"
-msgstr "Dubulta"
-
#. VeDqk
#: 03080103.xhp
msgctxt ""
@@ -19456,15 +19798,6 @@ msgctxt ""
msgid "Tan (Number As Double) As Double"
msgstr ""
-#. XMyAh
-#: 03080104.xhp
-msgctxt ""
-"03080104.xhp\n"
-"par_id3156281\n"
-"help.text"
-msgid "Double"
-msgstr "Dubulta"
-
#. BJjuJ
#: 03080104.xhp
msgctxt ""
@@ -19654,15 +19987,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. fxbBA
-#: 03080201.xhp
-msgctxt ""
-"03080201.xhp\n"
-"par_id3149670\n"
-"help.text"
-msgid "Double"
-msgstr "Dubulta"
-
#. ohN8G
#: 03080201.xhp
msgctxt ""
@@ -19762,15 +20086,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. K67vi
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3150791\n"
-"help.text"
-msgid "Double"
-msgstr "Dubulta"
-
#. fCeUd
#: 03080202.xhp
msgctxt ""
@@ -20041,15 +20356,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. Ge9kH
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3154365\n"
-"help.text"
-msgid "Double"
-msgstr "Dubulta"
-
#. 4W4JJ
#: 03080302.xhp
msgctxt ""
@@ -20212,15 +20518,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. ToCoX
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"par_id3156343\n"
-"help.text"
-msgid "Double"
-msgstr "Dubulta"
-
#. RB3SF
#: 03080401.xhp
msgctxt ""
@@ -20329,15 +20626,6 @@ msgctxt ""
msgid "Fix (Expression)"
msgstr "Fix (Izteiksme)"
-#. XGeET
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
-"par_id3148947\n"
-"help.text"
-msgid "Double"
-msgstr "Dubulta"
-
#. T274X
#: 03080501.xhp
msgctxt ""
@@ -20437,15 +20725,6 @@ msgctxt ""
msgid "Int (Number)"
msgstr "Int (Skaitlis)"
-#. x8Eh5
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3150400\n"
-"help.text"
-msgid "Double"
-msgstr "Dubulta"
-
#. byiBG
#: 03080502.xhp
msgctxt ""
@@ -20698,15 +20977,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. Egjc2
-#: 03080601.xhp
-msgctxt ""
-"03080601.xhp\n"
-"par_id3149670\n"
-"help.text"
-msgid "Double"
-msgstr "Dubulta"
-
#. Duhzt
#: 03080601.xhp
msgctxt ""
@@ -20860,15 +21130,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. xpsBz
-#: 03080701.xhp
-msgctxt ""
-"03080701.xhp\n"
-"par_id3150359\n"
-"help.text"
-msgid "Integer"
-msgstr "Vesels skaitlis"
-
#. hBAHj
#: 03080701.xhp
msgctxt ""
@@ -20887,13 +21148,13 @@ msgctxt ""
msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
msgstr "<emph>Skaitlis:</emph> skaitliska izteiksme, kura nosaka funkcijas atgriezto vērtību."
-#. xdxDc
+#. R8M7A
#: 03080701.xhp
msgctxt ""
"03080701.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "NumExpression"
+msgid "Number"
msgstr ""
#. ZhDdh
@@ -22984,13 +23245,13 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parametri:"
-#. m7HGU
+#. XzZKD
#: 03090402.xhp
msgctxt ""
"03090402.xhp\n"
"par_id3148664\n"
"help.text"
-msgid "<emph>Index:</emph> A numeric expression that specifies the value to return."
+msgid "<emph>Index:</emph> Integer value starting at 1 that specifies which of the possible choices to return."
msgstr ""
#. NBqbi
@@ -23002,13 +23263,13 @@ msgctxt ""
msgid "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
msgstr ""
-#. nFWBz
+#. EnHLY
#: 03090402.xhp
msgctxt ""
"03090402.xhp\n"
"par_id3151043\n"
"help.text"
-msgid "The <emph>Choose</emph> function returns a value from the list of expressions based on the index value. If Index = 1, the function returns the first expression in the list, if index i= 2, it returns the second expression, and so on."
+msgid "The <emph>Choose</emph> function returns a value from the list of expressions based on the index value. If <emph>Index = 1</emph>, the function returns the first expression in the list, if <emph>Index = 2</emph>, it returns the second expression, and so on."
msgstr ""
#. FovWL
@@ -23650,15 +23911,6 @@ msgctxt ""
msgid "Specifies that a program line is a comment."
msgstr ""
-#. CBchn
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
-"par_id3154141\n"
-"help.text"
-msgid "Rem Text"
-msgstr "Rem Teksts"
-
#. P5CAo
#: 03090407.xhp
msgctxt ""
@@ -23929,15 +24181,6 @@ msgctxt ""
msgid "Example:"
msgstr "Piemērs:"
-#. ubwpM
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3149579\n"
-"help.text"
-msgid "sGender = GetGenderIndex( \"John\" )"
-msgstr ""
-
#. wjCDQ
#: 03090410.xhp
msgctxt ""
@@ -24289,13 +24532,13 @@ msgctxt ""
msgid "<bookmark_value>CCur function</bookmark_value>"
msgstr "<bookmark_value>CCur funkcija</bookmark_value>"
-#. FbuTr
+#. dj5DM
#: 03100050.xhp
msgctxt ""
"03100050.xhp\n"
"par_idN10541\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function</link>"
+msgid "<variable id=\"CCur_h1\"><link href=\"text/sbasic/shared/03100050.xhp\">CCur Function</link></variable>"
msgstr ""
#. iR5VT
@@ -24307,32 +24550,14 @@ msgctxt ""
msgid "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols."
msgstr ""
-#. 8ZHR9
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#. qHMVC
+#. 4E7mH
#: 03100050.xhp
msgctxt ""
"03100050.xhp\n"
"par_idN105E8\n"
"help.text"
-msgid "CCur(Expression)"
-msgstr "CCur(Izteiksme)"
-
-#. F5gzk
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105EB\n"
-"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
+msgid "CCur(Expression As Variant) As Currency"
+msgstr ""
#. R6AfV
#: 03100050.xhp
@@ -24343,22 +24568,13 @@ msgctxt ""
msgid "Currency"
msgstr "Valūta"
-#. M8Tpx
-#: 03100050.xhp
-msgctxt ""
-"03100050.xhp\n"
-"par_idN105F2\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parametrs:"
-
-#. YRdHq
+#. FnhL7
#: 03100050.xhp
msgctxt ""
"03100050.xhp\n"
-"par_idN105F6\n"
+"par_id3145068\n"
"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
+msgid "<emph>Expression</emph>: Any string or a numeric expression that you want to convert to a number. <br/><literal>CCur(EMPTY)</literal> returns 0."
msgstr ""
#. KyDFD
@@ -24649,121 +24865,112 @@ msgctxt ""
msgid "<bookmark_value>CBool function</bookmark_value>"
msgstr "<bookmark_value>CBool funkcija</bookmark_value>"
-#. 8cv5m
+#. wkGF9
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
"hd_id3150616\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function\">CBool Function</link>"
+msgid "<variable id=\"CBool_h1\"><link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function\">CBool Function</link></variable>"
msgstr ""
-#. LbrGN
+#. fENzo
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
"par_id3145136\n"
"help.text"
-msgid "Converts a string comparison or numeric comparison to a Boolean expression, or converts a single numeric expression to a Boolean expression."
+msgid "Converts an expression or a set of expressions into a boolean. An expression is composed of strings, numbers and operators. Comparison, logical or mathematical operators are allowed inside expressions."
msgstr ""
-#. 4ZGU9
+#. VXn7B
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"hd_id3153345\n"
+"par_id681638266349216\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
+msgid "<literal>expression</literal> can be a number or a set of combined expressions."
+msgstr ""
-#. gALnc
+#. EDCrC
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"par_id3149514\n"
+"par_id3155419\n"
"help.text"
-msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
+msgid "Boolean"
msgstr ""
-#. aFAKM
+#. ZqnCA
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"hd_id3156152\n"
+"par_id791636986444058\n"
"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
-
-#. DciQf
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3155419\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool"
+msgid "<emph>expression</emph>: A logical expression, a mathematical formula, a numeric expression or a set of expressions combined with operators. During expression evaluation <link href=\"text/sbasic/shared/03060000.xhp\" name=\"logical operators\">logical operators</link> take preceedence over <link href=\"text/sbasic/shared/03110100.xhp\" name=\"comparison operators\">comparison operators</link>, which in turn take preceedence over <link href=\"text/sbasic/shared/03070000.xhp\" name=\"mathematical operators\">mathematical operators</link>."
+msgstr ""
-#. E8Bpf
+#. LEuzF
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"hd_id3147530\n"
+"par_id1001638264728895\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "The <literal>expression</literal> can be a number or mathematical formula. When equals to 0, <literal>False</literal> is returned, otherwise <literal>True</literal> is returned."
+msgstr ""
-#. nsCwH
+#. 4jZzA
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"par_id3156344\n"
+"par_id3149655\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any string or numeric expressions that you want to compare. If the expressions match, the <emph>CBool</emph> function returns <emph>True</emph>, otherwise <emph>False</emph> is returned."
+msgid "Multiple expressions such as <input>expr1 [[{operator] expr2]..]</input> can be combined. <input>expr1</input> and <input>expr2</input> can be any string or numeric expressions that you want to evaluate. <literal>CBool</literal> combines the expressions and returns either <literal>True</literal> or <literal>False</literal>. <input>operator</input> can be a <link href=\"text/sbasic/shared/03070000.xhp\" name=\"mathematical operator\">mathematical operator</link>, <link href=\"text/sbasic/shared/03060000.xhp\" name=\"logical operator\">logical operator</link> or <link href=\"text/sbasic/shared/03110100.xhp\" name=\"comparison operator\">comparison operator</link>."
msgstr ""
-#. hQiDG
+#. wMSZE
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"par_id3149655\n"
+"par_id3145171\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to convert. If the expression equals 0, <emph>False</emph> is returned, otherwise <emph>True</emph> is returned."
+msgid "The following examples computes a logical expression and a mathematical formula. It uses the <literal>CBool</literal> function to evaluate the value that is returned by the <literal>Instr</literal> function. The function checks if the word \"and\" is found in the sentence that was entered by the user."
msgstr ""
-#. ybBL2
+#. 2SpGu
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"par_id3145171\n"
+"bas_id961636989038747\n"
"help.text"
-msgid "The following example uses the <emph>CBool</emph> function to evaluate the value that is returned by the <emph>Instr</emph> function. The function checks if the word \"and\" is found in the sentence that was entered by the user."
+msgid "Print CBool( 1>2 Xor 44 ) ' computes to True"
msgstr ""
-#. WAM8E
+#. bjPRQ
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
-"hd_id3156212\n"
+"bas_id991636996682074\n"
"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
+msgid "Print CBool( expression := 15 /2 -7.5 ) ' displays False as expression equals 0"
+msgstr ""
-#. 2yvsi
+#. xxrvS
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
"par_id3155132\n"
"help.text"
-msgid "sText = InputBox(\"Please enter a short sentence:\")"
+msgid "txt = InputBox(\"Please enter a short sentence:\")"
msgstr ""
-#. Aq5CG
+#. FPJDk
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
"par_id3155855\n"
"help.text"
-msgid "' Proof if the word »and« appears in the sentence."
+msgid "' Proof if the character \"a\" appears in the sentence."
msgstr ""
#. GFk66
@@ -24775,15 +24982,6 @@ msgctxt ""
msgid "' Instead of the command line"
msgstr ""
-#. WQ7VE
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3148576\n"
-"help.text"
-msgid "' If Instr(Input, \"and\")<>0 Then..."
-msgstr ""
-
#. fCMAJ
#: 03100100.xhp
msgctxt ""
@@ -24793,22 +24991,13 @@ msgctxt ""
msgid "' the CBool function is applied as follows:"
msgstr ""
-#. DXRy4
-#: 03100100.xhp
-msgctxt ""
-"03100100.xhp\n"
-"par_id3155413\n"
-"help.text"
-msgid "If CBool(Instr(sText, \"and\")) Then"
-msgstr ""
-
-#. FKuLf
+#. TgisK
#: 03100100.xhp
msgctxt ""
"03100100.xhp\n"
"par_id3152940\n"
"help.text"
-msgid "MsgBox \"The word »and« appears in the sentence you entered!\""
+msgid "MsgBox \"The character »a« appears in the sentence you entered!\""
msgstr ""
#. 8FnUJ
@@ -24865,15 +25054,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. 9g6CX
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3159414\n"
-"help.text"
-msgid "Date"
-msgstr "Datums"
-
#. 3E4Gd
#: 03100300.xhp
msgctxt ""
@@ -24955,15 +25135,6 @@ msgctxt ""
msgid "Return value"
msgstr "Atgrieztā vērtība"
-#. Pypm7
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"par_id3145068\n"
-"help.text"
-msgid "Double"
-msgstr "Dubulta"
-
#. LM9Ye
#: 03100400.xhp
msgctxt ""
@@ -25054,15 +25225,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. oLemu
-#: 03100500.xhp
-msgctxt ""
-"03100500.xhp\n"
-"par_id3147560\n"
-"help.text"
-msgid "Integer"
-msgstr "Vesels skaitlis"
-
#. a2YC7
#: 03100500.xhp
msgctxt ""
@@ -25225,15 +25387,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. WbDFK
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"par_id3153897\n"
-"help.text"
-msgid "Long"
-msgstr "Long"
-
#. pC3ZX
#: 03100600.xhp
msgctxt ""
@@ -25513,15 +25666,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. jtGVk
-#: 03100900.xhp
-msgctxt ""
-"03100900.xhp\n"
-"par_id3153750\n"
-"help.text"
-msgid "Single"
-msgstr "Viena"
-
#. cSsM4
#: 03100900.xhp
msgctxt ""
@@ -25612,15 +25756,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. FhYA8
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153897\n"
-"help.text"
-msgid "String"
-msgstr "Virkne"
-
#. cHP4B
#: 03101000.xhp
msgctxt ""
@@ -25648,15 +25783,6 @@ msgctxt ""
msgid "Expression Types and Conversion Returns"
msgstr ""
-#. gA73v
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153192\n"
-"help.text"
-msgid "Boolean :"
-msgstr ""
-
#. wjcDB
#: 03101000.xhp
msgctxt ""
@@ -25666,15 +25792,6 @@ msgctxt ""
msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
msgstr ""
-#. yuw3Z
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3147287\n"
-"help.text"
-msgid "Date :"
-msgstr ""
-
#. CrwVu
#: 03101000.xhp
msgctxt ""
@@ -25684,15 +25801,6 @@ msgctxt ""
msgid "String that contains the date and time."
msgstr ""
-#. QE5bi
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3147428\n"
-"help.text"
-msgid "Null :"
-msgstr ""
-
#. ZATnW
#: 03101000.xhp
msgctxt ""
@@ -25702,15 +25810,6 @@ msgctxt ""
msgid "Run-time error."
msgstr ""
-#. DWkQW
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3153953\n"
-"help.text"
-msgid "Empty :"
-msgstr ""
-
#. SfQUa
#: 03101000.xhp
msgctxt ""
@@ -25720,15 +25819,6 @@ msgctxt ""
msgid "String without any characters."
msgstr ""
-#. rmvhR
-#: 03101000.xhp
-msgctxt ""
-"03101000.xhp\n"
-"par_id3149260\n"
-"help.text"
-msgid "Any :"
-msgstr ""
-
#. vzaXy
#: 03101000.xhp
msgctxt ""
@@ -26872,15 +26962,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. mBAAA
-#: 03102200.xhp
-msgctxt ""
-"03102200.xhp\n"
-"par_id3154685\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool"
-
#. 4tEeP
#: 03102200.xhp
msgctxt ""
@@ -26971,15 +27052,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. 7vqAp
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3147560\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool"
-
#. D758U
#: 03102300.xhp
msgctxt ""
@@ -27007,24 +27079,6 @@ msgctxt ""
msgid "Example:"
msgstr "Piemērs:"
-#. ymgXU
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3150869\n"
-"help.text"
-msgid "Print IsDate(sDateVar) ' Returns True"
-msgstr ""
-
-#. oxti5
-#: 03102300.xhp
-msgctxt ""
-"03102300.xhp\n"
-"par_id3147288\n"
-"help.text"
-msgid "Print IsDate(sDateVar) ' Returns False"
-msgstr ""
-
#. pVhKT
#: 03102400.xhp
msgctxt ""
@@ -27088,15 +27142,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. EdFoX
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3156344\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool"
-
#. BrRWw
#: 03102400.xhp
msgctxt ""
@@ -27124,15 +27169,6 @@ msgctxt ""
msgid "Example:"
msgstr "Piemērs:"
-#. EmyBP
-#: 03102400.xhp
-msgctxt ""
-"03102400.xhp\n"
-"par_id3154863\n"
-"help.text"
-msgid "Print IsEmpty(sVar) ' Returns True"
-msgstr ""
-
#. dr2Py
#: 03102450.xhp
msgctxt ""
@@ -27277,15 +27313,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. f4EB6
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3145609\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool"
-
#. 2r2f2
#: 03102600.xhp
msgctxt ""
@@ -27385,15 +27412,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. FRiSB
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3148944\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool"
-
#. doi6A
#: 03102700.xhp
msgctxt ""
@@ -27421,24 +27439,6 @@ msgctxt ""
msgid "Example:"
msgstr "Piemērs:"
-#. FWWbs
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3147230\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns False"
-msgstr ""
-
-#. F4fqG
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3154910\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns True"
-msgstr ""
-
#. vieWA
#: 03102800.xhp
msgctxt ""
@@ -27700,15 +27700,6 @@ msgctxt ""
msgid "UBound (ArrayName [, Dimension])"
msgstr ""
-#. xVQ87
-#: 03103000.xhp
-msgctxt ""
-"03103000.xhp\n"
-"par_id3149670\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
#. Svuit
#: 03103000.xhp
msgctxt ""
@@ -27727,42 +27718,6 @@ msgctxt ""
msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary for. If no value is specified, the boundary of the first dimension is returned."
msgstr ""
-#. HPb5a
-#: 03103000.xhp
-msgctxt ""
-"03103000.xhp\n"
-"par_idm1206768352\n"
-"help.text"
-msgid "Print LBound(v()) ' returns 10"
-msgstr ""
-
-#. aaaDh
-#: 03103000.xhp
-msgctxt ""
-"03103000.xhp\n"
-"par_id3145365\n"
-"help.text"
-msgid "Print LBound(t), UBound(t()) ' returns 10 20"
-msgstr ""
-
-#. fqeRG
-#: 03103000.xhp
-msgctxt ""
-"03103000.xhp\n"
-"par_id3149665\n"
-"help.text"
-msgid "Print LBound(t(),2) ' returns - 5"
-msgstr ""
-
-#. TBxHC
-#: 03103000.xhp
-msgctxt ""
-"03103000.xhp\n"
-"par_id3159154\n"
-"help.text"
-msgid "Print UBound(t,2) ' returns 70"
-msgstr ""
-
#. QHhrj
#: 03103100.xhp
msgctxt ""
@@ -28321,15 +28276,6 @@ msgctxt ""
msgid "TypeName (Variable) / VarType (Variable)"
msgstr ""
-#. gaAwa
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3148947\n"
-"help.text"
-msgid "String; Integer"
-msgstr ""
-
#. CmbDF
#: 03103600.xhp
msgctxt ""
@@ -28339,13 +28285,13 @@ msgctxt ""
msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
msgstr ""
-#. oxuiK
+#. AJ9RG
#: 03103600.xhp
msgctxt ""
"03103600.xhp\n"
"par_id3145171\n"
"help.text"
-msgid "keyword"
+msgid "Keyword"
msgstr ""
#. EAezL
@@ -28357,15 +28303,6 @@ msgctxt ""
msgid "Named constant"
msgstr ""
-#. rJXbZ
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3156212\n"
-"help.text"
-msgid "VarType"
-msgstr ""
-
#. ZyZMD
#: 03103600.xhp
msgctxt ""
@@ -29032,14 +28969,14 @@ msgctxt ""
msgid "Returns the type Variant with a data field."
msgstr ""
-#. hVxRf
+#. XYnnC
#: 03104200.xhp
msgctxt ""
"03104200.xhp\n"
"par_id3153126\n"
"help.text"
-msgid "Array ( Argument list)"
-msgstr "Array ( Argumentu saraksts)"
+msgid "Array (ArgumentList)"
+msgstr ""
#. EuCLG
#: 03104200.xhp
@@ -29050,22 +28987,13 @@ msgctxt ""
msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
msgstr "Skatiet arī <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
-#. ZsSRT
+#. VXL3Y
#: 03104200.xhp
msgctxt ""
"03104200.xhp\n"
"par_id3145609\n"
"help.text"
-msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
-msgstr ""
-
-#. EhDw8
-#: 03104200.xhp
-msgctxt ""
-"03104200.xhp\n"
-"par_id3153525\n"
-"help.text"
-msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
+msgid "<emph>ArgumentList:</emph> A list of any number of arguments that are separated by commas."
msgstr ""
#. 2d2eF
@@ -29113,14 +29041,14 @@ msgctxt ""
msgid "Syntax:"
msgstr "Sintakse:"
-#. f4XPA
+#. D2Tbd
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
"par_id3148473\n"
"help.text"
-msgid "DimArray ( Argument list)"
-msgstr "DimArray ( Argumentu saraksts)"
+msgid "DimArray (ArgumentList)"
+msgstr ""
#. xfuoC
#: 03104300.xhp
@@ -29149,13 +29077,13 @@ msgctxt ""
msgid "Parameters:"
msgstr "Parametri:"
-#. 8cqdA
+#. B7CBa
#: 03104300.xhp
msgctxt ""
"03104300.xhp\n"
"par_id3159414\n"
"help.text"
-msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+msgid "<emph>ArgumentList:</emph> A list of any number of arguments that are separated by commas."
msgstr ""
#. wCCAj
@@ -29230,15 +29158,6 @@ msgctxt ""
msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
msgstr ""
-#. TCBDe
-#: 03104400.xhp
-msgctxt ""
-"03104400.xhp\n"
-"par_id3148538\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool"
-
#. qxagP
#: 03104400.xhp
msgctxt ""
@@ -29302,15 +29221,6 @@ msgctxt ""
msgid "IsUnoStruct( Uno type )"
msgstr ""
-#. MDtGg
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_id3145315\n"
-"help.text"
-msgid "Bool"
-msgstr "Bool"
-
#. uXjgH
#: 03104500.xhp
msgctxt ""
@@ -29554,77 +29464,50 @@ msgctxt ""
msgid "Comparison Operators"
msgstr ""
-#. HvC8D
+#. eBuGF
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
"bm_id3150682\n"
"help.text"
-msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value> <bookmark_value>operators;comparisons</bookmark_value>"
+msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value> <bookmark_value>Operators;comparison</bookmark_value> <bookmark_value>Operators;equal sign (=)</bookmark_value> <bookmark_value>Operators;greater than (>)</bookmark_value> <bookmark_value>Operators;greater than or equal to (>=)</bookmark_value> <bookmark_value>Operators;less than (<>)</bookmark_value> <bookmark_value>Operators;less than or equal to (<=)</bookmark_value> <bookmark_value>Operators;not equal to (<>)</bookmark_value>"
msgstr ""
-#. ABXhw
+#. k9nDv
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
"hd_id3150682\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
+msgid "<variable id=\"CompOper_h1\"><link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators\">Comparison Operators</link></variable>"
msgstr ""
-#. Xi8Hg
+#. vzC53
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
"par_id3156042\n"
"help.text"
-msgid "Comparison operators compare two expressions. The result is returned as a Boolean expression that determines if the comparison is True (-1) or False (0)."
+msgid "Comparison operators compare two expressions. The result is returned as a boolean expression that determines if the comparison is <literal>True</literal> (-1) or <literal>False</literal> (0)."
msgstr ""
-#. eCMr5
-#: 03110100.xhp
-msgctxt ""
-"03110100.xhp\n"
-"hd_id3147291\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#. rzJup
-#: 03110100.xhp
-msgctxt ""
-"03110100.xhp\n"
-"par_id3149177\n"
-"help.text"
-msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
-msgstr ""
-
-#. Grmm6
-#: 03110100.xhp
-msgctxt ""
-"03110100.xhp\n"
-"hd_id3145316\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
-#. CoGtG
+#. ikYGG
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
"par_id3147573\n"
"help.text"
-msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
+msgid "<emph>result</emph>: Boolean that specifies the result of the comparison (<literal>True</literal>, or <literal>False</literal>)"
msgstr ""
-#. djWb8
+#. GYpPy
#: 03110100.xhp
msgctxt ""
"03110100.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
-msgstr "<emph>Izteiksme1, Izteiksme2:</emph> jebkuras skaitliskas vērtības vai virknes, kuras jūs vēlaties salīdzināt."
+msgid "<emph>expression1, expression2</emph>: Any numeric values or strings that you want to compare."
+msgstr ""
#. VeMGA
#: 03110100.xhp
@@ -29689,15 +29572,6 @@ msgctxt ""
msgid "<> : Not equal to"
msgstr "<> : Nav vienāds ar"
-#. 2whHT
-#: 03110100.xhp
-msgctxt ""
-"03110100.xhp\n"
-"hd_id3154686\n"
-"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
-
#. 4F32A
#: 03110100.xhp
msgctxt ""
@@ -29896,31 +29770,31 @@ msgctxt ""
msgid "Returns the character that corresponds to the specified character code."
msgstr ""
-#. cR5b8
+#. Q8gEU
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
-"par_id3150669\n"
+"bas_id91642668171601\n"
"help.text"
-msgid "Chr[$](expression As Integer) As String"
+msgid "Chr[$](charcode As Integer) As String"
msgstr ""
-#. 4nv5b
+#. 6bDTr
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
"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. (To support expressions with a nominally negative argument like <emph>Chr(&H8000)</emph> in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.)"
+msgid "<emph>charcode</emph>: a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value. (To support expressions with a nominally negative argument like <emph>Chr(&H8000)</emph> in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.)"
msgstr ""
-#. RKtSB
+#. Xyjgr
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
"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."
+msgid "When VBA compatibility mode is enabled (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>Option VBASupport 1</literal></link>), <literal>charcode</literal> is a numeric expression that represents a valid 8-bit ASCII value (0-255) only."
msgstr ""
#. sw8rF
@@ -29950,13 +29824,13 @@ msgctxt ""
msgid "' This example inserts quotation marks (ASCII value 34) in a string."
msgstr ""
-#. PpQfe
+#. rTCjE
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
"par_id3151380\n"
"help.text"
-msgid "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr(34)+\" trip.\""
+msgid "MsgBox \"A \" + Chr$(34) + \"short\" + Chr(34) + \" trip.\""
msgstr ""
#. iCsGw
@@ -29968,6 +29842,15 @@ msgctxt ""
msgid "' The printout appears in the dialog as: A \"short\" trip."
msgstr ""
+#. TeaSB
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
+"bas_id481642668824226\n"
+"help.text"
+msgid "MsgBox Chr(charcode := 64) ' \"@\" sign"
+msgstr ""
+
#. bzZDz
#: 03120103.xhp
msgctxt ""
@@ -29986,95 +29869,122 @@ msgctxt ""
msgid "<bookmark_value>Str function</bookmark_value>"
msgstr "<bookmark_value>Str funkcija</bookmark_value>"
-#. vHDFf
+#. 29Gzu
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
"hd_id3143272\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function\">Str Function</link>"
+msgid "<variable id=\"Str_h1\"><link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function\">Str Function</link></variable>"
msgstr ""
-#. sMBFZ
+#. Z8JfH
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
"par_id3155100\n"
"help.text"
-msgid "Converts a numeric expression into a string."
+msgid "The <literal>Str</literal> function converts the contents of variables into a string. It handles numeric values, dates, strings and currency values."
msgstr ""
-#. AtDCX
+#. Zxy4r
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
-"hd_id3109850\n"
+"par_id3146958\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
+msgid "Positive numbers are preceded by a blank space. Negative numbers are preceded by a minus sign."
+msgstr ""
-#. FCB5S
+#. A5Fyi
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
-"par_id3149497\n"
+"par_id331641237252390\n"
"help.text"
-msgid "Str (Expression)"
-msgstr "Str (Izteiksme)"
+msgid "For numeric values the string returned by the <literal>Str</literal> function is locale-independent. Hence the dot is used as the decimal separator when needed."
+msgstr ""
-#. euwuq
+#. HjAty
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
-"hd_id3150040\n"
+"par_id601641237849695\n"
"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
+msgid "If a string is passed as argument, it is returned without any changes."
+msgstr ""
-#. GFLxD
+#. nfPG2
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
-"par_id3146117\n"
+"par_id231641251937406\n"
"help.text"
-msgid "String"
-msgstr "Virkne"
+msgid "Dates are converted into locale-dependent strings."
+msgstr ""
-#. gC8ux
+#. NEAum
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
-"hd_id3155805\n"
+"par_id3149497\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "Str (Value As Variant)"
+msgstr ""
-#. MUTuz
+#. BPCDW
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
"par_id3149178\n"
"help.text"
-msgid "<emph>Expression: </emph>Any numeric expression."
+msgid "<emph>Value:</emph> Any value to be converted into a string."
msgstr ""
-#. i56aX
+#. hHwSa
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
-"par_id3146958\n"
+"par_id401641251970766\n"
"help.text"
-msgid "The <emph>Str</emph> function converts a numeric variable, or the result of a calculation into a string. Negative numbers are preceded by a minus sign. Positive numbers are preceded by a space (instead of the plus sign)."
+msgid "Below are some numeric examples using the <literal>Str</literal> function."
msgstr ""
-#. Ewk3i
+#. viBgo
#: 03120103.xhp
msgctxt ""
"03120103.xhp\n"
-"hd_id3155419\n"
+"bas_id831641238784987\n"
"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
+msgid "' Note the blank space at the beginning of the returned strings"
+msgstr ""
+
+#. A8Cbc
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"bas_id991641238830710\n"
+"help.text"
+msgid "' Strings passed as arguments are left unchanged"
+msgstr ""
+
+#. kjJa8
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"par_id601641238259787\n"
+"help.text"
+msgid "Use the <literal>LTrim</literal> function to remove the blank space at the beginning of the returned string."
+msgstr ""
+
+#. FDMfX
+#: 03120103.xhp
+msgctxt ""
+"03120103.xhp\n"
+"par_id881641252036753\n"
+"help.text"
+msgid "The <literal>Str</literal> function can also handle <literal>Date</literal> variables."
+msgstr ""
#. vYQmG
#: 03120104.xhp
@@ -30094,32 +30004,32 @@ msgctxt ""
msgid "<bookmark_value>Val function</bookmark_value>"
msgstr "<bookmark_value>Val funkcija</bookmark_value>"
-#. qLhSm
+#. h82YR
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
"hd_id3149205\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function\">Val Function</link>"
+msgid "<variable id=\"Val_h1\"><link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function\">Val Function</link></variable>"
msgstr ""
-#. BCyui
+#. VDZFx
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
"par_id3153345\n"
"help.text"
-msgid "Converts a string to a numeric expression."
+msgid "Use the <literal>Val</literal> function to convert a string that represents a number into numeric data type."
msgstr ""
-#. 4Jho2
+#. aQ5EY
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
-"hd_id3159157\n"
+"par_id281641235880765\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
+msgid "The string passed to the <literal>Val</literal> function is locale-independent. This means that commas are interpreted as thousands separators and a dot is used as the decimal separator."
+msgstr ""
#. Rk6u2
#: 03120104.xhp
@@ -30130,59 +30040,59 @@ msgctxt ""
msgid "Val (Text As String)"
msgstr "Val (Teksts As String)"
-#. ZBgwS
+#. Gi4Ag
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
-"hd_id3150669\n"
+"par_id3143228\n"
"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
+msgid "Double"
+msgstr "Dubulta"
-#. Gi4Ag
+#. DmE2F
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
-"par_id3143228\n"
+"par_id3154348\n"
"help.text"
-msgid "Double"
-msgstr "Dubulta"
+msgid "<emph>Text:</emph> String that represents a number."
+msgstr ""
-#. 9YWca
+#. e9c9u
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
-"hd_id3156024\n"
+"par_id3149670\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers then <literal>Val</literal> returns 0."
+msgstr ""
-#. DmE2F
+#. JLvDd
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
-"par_id3154348\n"
+"bas_id131641236938068\n"
"help.text"
-msgid "<emph>Text:</emph> String that represents a number."
+msgid "' Below 123,1 is interpreted as 1231 since \",\" is the thousands separator"
msgstr ""
-#. 9ZYpb
+#. qMAhh
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
-"par_id3149670\n"
+"bas_id681641252873197\n"
"help.text"
-msgid "Using the Val function, you can convert a string that represents numbers into numeric expressions. This is the inverse of the <emph>Str</emph> function. If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers, the <emph>Val</emph> function returns the value 0."
+msgid "' All numbers are considered until a non-numeric character is reached"
msgstr ""
-#. zEtva
+#. i9otK
#: 03120104.xhp
msgctxt ""
"03120104.xhp\n"
-"hd_id3154365\n"
+"bas_id911641237027667\n"
"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
+msgid "' The example below returns 0 (zero) since the string provided does not start with a number"
+msgstr ""
#. MeApW
#: 03120105.xhp
@@ -30202,76 +30112,49 @@ msgctxt ""
msgid "<bookmark_value>CByte function</bookmark_value>"
msgstr "<bookmark_value>CByte funkcija</bookmark_value>"
-#. MBuSG
+#. VkMAp
#: 03120105.xhp
msgctxt ""
"03120105.xhp\n"
"hd_id3156027\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function\">CByte Function</link>"
+msgid "<variable id=\"CByte_h1\"><link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function\">CByte Function</link></variable>"
msgstr ""
-#. WtRZK
+#. qP4eK
#: 03120105.xhp
msgctxt ""
"03120105.xhp\n"
"par_id3143267\n"
"help.text"
-msgid "Converts a string or a numeric expression to the type Byte."
+msgid "Converts a string or a numeric expression to the <literal>Byte</literal> type."
msgstr ""
-#. KBtph
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3149811\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#. y5eP6
+#. 8h2Wu
#: 03120105.xhp
msgctxt ""
"03120105.xhp\n"
"par_id3147573\n"
"help.text"
-msgid "Cbyte( expression )"
-msgstr "Cbyte( izteiksme )"
-
-#. c9ZeV
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"hd_id3145315\n"
-"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
-
-#. uBqQC
-#: 03120105.xhp
-msgctxt ""
-"03120105.xhp\n"
-"par_id3148473\n"
-"help.text"
-msgid "Byte"
-msgstr "Baits"
+msgid "Cbyte( expression As Variant) As Byte"
+msgstr ""
-#. y52Yv
+#. 4vJi5
#: 03120105.xhp
msgctxt ""
"03120105.xhp\n"
-"hd_id3147530\n"
+"par_id3145068\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "<emph>Expression</emph>: Any string or a numeric expression that can be evaluated to a number. Decimal values are rounded to the nearest tenth. Valid values range from 0 to 256."
+msgstr ""
-#. YE4pG
+#. dfezQ
#: 03120105.xhp
msgctxt ""
"03120105.xhp\n"
-"par_id3145068\n"
+"bas_id941637751110886\n"
"help.text"
-msgid "<emph>Expression:</emph> A string or a numeric expression."
+msgid "' Above expressions are computed as 16, 0 and 3"
msgstr ""
#. svGqi
@@ -30391,15 +30274,6 @@ msgctxt ""
msgid "Returns the Unicode character that corresponds to the specified character code."
msgstr ""
-#. X2EkR
-#: 03120112.xhp
-msgctxt ""
-"03120112.xhp\n"
-"par_id3150669\n"
-"help.text"
-msgid "ChrW(Expression As Integer) As String"
-msgstr ""
-
#. mA9x6
#: 03120112.xhp
msgctxt ""
@@ -30409,13 +30283,13 @@ msgctxt ""
msgid "String"
msgstr ""
-#. WzBnm
+#. iFApG
#: 03120112.xhp
msgctxt ""
"03120112.xhp\n"
"par_id3149295\n"
"help.text"
-msgid "<emph>Expression:</emph> Numeric variables that represent a valid 16 bit Unicode value (0-65535). (To support expressions with a nominally negative argument like <emph>ChrW(&H8000)</emph> in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.) An empty value returns error code 5. A value out of the range [0,65535] returns error code 6."
+msgid "<emph>charcode</emph>: Numeric expression that represent a valid 16 bit Unicode value (0-65535). (To support expressions with a nominally negative argument like <emph>ChrW(&H8000)</emph> in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.) An empty value returns error code 5. A value out of the range [0 to 65535] returns error code 6."
msgstr ""
#. 8DF8a
@@ -30427,13 +30301,13 @@ msgctxt ""
msgid "' This example inserts the Greek letters alpha and omega in a string."
msgstr ""
-#. AGZSD
+#. ZtgsJ
#: 03120112.xhp
msgctxt ""
"03120112.xhp\n"
"par_id3151380\n"
"help.text"
-msgid "MsgBox \"From \"+ ChrW(913)+\" to \" + ChrW(937)"
+msgid "MsgBox \"From \" + ChrW(913) + \" to \" + ChrW(937)"
msgstr ""
#. zPJDa
@@ -30445,6 +30319,15 @@ msgctxt ""
msgid "' The printout appears in the dialog as: From Α to Ω"
msgstr ""
+#. eE9Nq
+#: 03120112.xhp
+msgctxt ""
+"03120112.xhp\n"
+"bas_id181642669411658\n"
+"help.text"
+msgid "MsgBox ChrW(charcode := 116) ' \"t\" lowercase T letter"
+msgstr ""
+
#. E7Eoi
#: 03120200.xhp
msgctxt ""
@@ -30634,15 +30517,6 @@ msgctxt ""
msgid "Editing String Contents"
msgstr "Virkņu satura rediģēšana"
-#. 5nF4q
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"bm_id7499008\n"
-"help.text"
-msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
-msgstr ""
-
#. qvgJA
#: 03120300.xhp
msgctxt ""
@@ -30652,13 +30526,22 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Editing String Contents</link>"
msgstr "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Virkņu satura rediģēšana\">Virkņu satura rediģēšana</link>"
-#. hU6eu
+#. pHEcz
#: 03120300.xhp
msgctxt ""
"03120300.xhp\n"
"par_id3149178\n"
"help.text"
-msgid "The following functions edit, format, and align the contents of strings. Use the & operator to concatenate strings."
+msgid "The following functions edit, format, and align the contents of strings. Use the <literal>&</literal> or <literal>+</literal> operators to concatenate strings."
+msgstr ""
+
+#. PG2TT
+#: 03120300.xhp
+msgctxt ""
+"03120300.xhp\n"
+"bm_id3150669\n"
+"help.text"
+msgid "<bookmark_value>ampersand symbol; in string handling</bookmark_value> <bookmark_value>Operators;concatenation (& or +)</bookmark_value> <bookmark_value>\"& or +\" concatenation (strings)</bookmark_value>"
msgstr ""
#. hAn8q
@@ -31075,15 +30958,6 @@ msgctxt ""
msgid "LCase (Text As String)"
msgstr "LCase (Teksts As String)"
-#. 8RHAp
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3144760\n"
-"help.text"
-msgid "String"
-msgstr "Virkne"
-
#. 2dpqA
#: 03120302.xhp
msgctxt ""
@@ -31093,24 +30967,6 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression that you want to convert."
msgstr "<emph>Teksts:</emph> jebkura virknes izteiksme, kuru jūs vēlaties pārveidot."
-#. HcFTs
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3146121\n"
-"help.text"
-msgid "Print LCase(sVar) ' Returns \"las vegas\""
-msgstr ""
-
-#. F9rGM
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"par_id3146986\n"
-"help.text"
-msgid "Print UCase(sVar) ' Returns \"LAS VEGAS\""
-msgstr ""
-
#. UGH3C
#: 03120303.xhp
msgctxt ""
@@ -31363,15 +31219,6 @@ msgctxt ""
msgid "LTrim (Text As String)"
msgstr "LTrim (Teksts As String)"
-#. LyUCE
-#: 03120305.xhp
-msgctxt ""
-"03120305.xhp\n"
-"par_id3151056\n"
-"help.text"
-msgid "String"
-msgstr "Virkne"
-
#. x85WJ
#: 03120305.xhp
msgctxt ""
@@ -31795,15 +31642,6 @@ msgctxt ""
msgid "RTrim (Text As String)"
msgstr "RTrim (Teksts As String)"
-#. awasf
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"par_id3153381\n"
-"help.text"
-msgid "String"
-msgstr "Virkne"
-
#. UW5Fx
#: 03120309.xhp
msgctxt ""
@@ -31867,15 +31705,6 @@ msgctxt ""
msgid "UCase (Text As String)"
msgstr "UCase (Teksts As String)"
-#. 8fcKn
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3146795\n"
-"help.text"
-msgid "String"
-msgstr "Virkne"
-
#. TgevM
#: 03120310.xhp
msgctxt ""
@@ -31885,24 +31714,6 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression that you want to convert."
msgstr "<emph>Teksts:</emph> jebkura virknes izteiksme, kuru jūs vēlaties pārveidot."
-#. MmcFn
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3149204\n"
-"help.text"
-msgid "Print LCase(sVar) ' returns \"las vegas\""
-msgstr ""
-
-#. dNrts
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3156280\n"
-"help.text"
-msgid "Print UCase(sVar) ' returns \"LAS VEGAS\""
-msgstr ""
-
#. 9APfU
#: 03120311.xhp
msgctxt ""
@@ -31948,15 +31759,6 @@ msgctxt ""
msgid "Trim( Text As String )"
msgstr "Trim( Teksts kā virkne )"
-#. f9pGG
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"par_id3143228\n"
-"help.text"
-msgid "String"
-msgstr "Virkne"
-
#. kLdYS
#: 03120311.xhp
msgctxt ""
@@ -32011,31 +31813,13 @@ msgctxt ""
msgid "ConvertToURL(filename)"
msgstr ""
-#. V6WhB
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3147530\n"
-"help.text"
-msgid "String"
-msgstr "Virkne"
-
-#. Dka3U
+#. ycPs6
#: 03120312.xhp
msgctxt ""
"03120312.xhp\n"
"par_id3148947\n"
"help.text"
-msgid "<emph>Filename:</emph> A file name as string."
-msgstr ""
-
-#. AHBLc
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3150792\n"
-"help.text"
-msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
+msgid "<emph>filename:</emph> A file name as string."
msgstr ""
#. Fgfbo
@@ -32083,22 +31867,13 @@ msgctxt ""
msgid "ConvertFromURL(filename)"
msgstr ""
-#. ESx7C
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3150669\n"
-"help.text"
-msgid "String"
-msgstr "Virkne"
-
-#. 8R25b
+#. HRYNv
#: 03120313.xhp
msgctxt ""
"03120313.xhp\n"
"par_id3156023\n"
"help.text"
-msgid "<emph>Filename:</emph> A file name as a string."
+msgid "<emph>filename:</emph> A file name as a string."
msgstr ""
#. b5PSp
@@ -32227,15 +32002,6 @@ msgctxt ""
msgid "Join (Text As String Array, delimiter)"
msgstr ""
-#. Sx96w
-#: 03120315.xhp
-msgctxt ""
-"03120315.xhp\n"
-"par_id3150359\n"
-"help.text"
-msgid "String"
-msgstr "Virkne"
-
#. sEXB3
#: 03120315.xhp
msgctxt ""
@@ -32353,15 +32119,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. g3ECS
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3149763\n"
-"help.text"
-msgid "Integer"
-msgstr "Vesels skaitlis"
-
#. AHBXf
#: 03120401.xhp
msgctxt ""
@@ -32425,24 +32182,6 @@ msgctxt ""
msgid "Example:"
msgstr "Piemērs:"
-#. 6BbAy
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3144760\n"
-"help.text"
-msgid "sInput = \"Office\""
-msgstr ""
-
-#. 97MNg
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3154125\n"
-"help.text"
-msgid "iPos = Instr(sInput,\"c\")"
-msgstr ""
-
#. ZG3QS
#: 03120402.xhp
msgctxt ""
@@ -32506,15 +32245,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. t6pbk
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"par_id3143270\n"
-"help.text"
-msgid "Long"
-msgstr "Long"
-
#. FyaMN
#: 03120402.xhp
msgctxt ""
@@ -32542,15 +32272,6 @@ msgctxt ""
msgid "Example:"
msgstr "Piemērs:"
-#. PDnri
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"par_id3156214\n"
-"help.text"
-msgid "MsgBox Len(sText) REM Returns 9"
-msgstr ""
-
#. pCc2y
#: 03120403.xhp
msgctxt ""
@@ -32614,15 +32335,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. PhXU3
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3156152\n"
-"help.text"
-msgid "Integer"
-msgstr "Vesels skaitlis"
-
#. swgoh
#: 03120403.xhp
msgctxt ""
@@ -32758,15 +32470,6 @@ msgctxt ""
msgid "InStrRev (Text1 As String, Text2 As String [,Start As Long] [, Compare As Integer])"
msgstr ""
-#. Mirn4
-#: 03120411.xhp
-msgctxt ""
-"03120411.xhp\n"
-"par_id3149763\n"
-"help.text"
-msgid "Long"
-msgstr ""
-
#. aUMEF
#: 03120411.xhp
msgctxt ""
@@ -32830,42 +32533,24 @@ msgctxt ""
msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
msgstr ""
-#. yABaM
-#: 03120411.xhp
-msgctxt ""
-"03120411.xhp\n"
-"par_id3144760\n"
-"help.text"
-msgid "sInput = \"The book is on the table\""
-msgstr ""
-
-#. z9KNH
+#. GExuT
#: 03120411.xhp
msgctxt ""
"03120411.xhp\n"
-"par_id3154125\n"
+"par_id31541255547\n"
"help.text"
msgid "iPos = InStrRev(sInput,\"the\",10,1) ' Returns 1, search is case-insensitive"
msgstr ""
-#. caoEj
+#. Yxhru
#: 03120411.xhp
msgctxt ""
"03120411.xhp\n"
-"par_id051920170322141162\n"
+"par_id05192017032\n"
"help.text"
msgid "iPos = InStrRev(sInput,\"the\",10,0) ' Returns 0, search is case-sensitive"
msgstr ""
-#. HSqzK
-#: 03120411.xhp
-msgctxt ""
-"03120411.xhp\n"
-"par_id051920170316395065\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120401.xhp\">InStr</link>"
-msgstr ""
-
#. YWCD7
#: 03120412.xhp
msgctxt ""
@@ -32911,15 +32596,6 @@ msgctxt ""
msgid "StrReverse (Text1 As String)"
msgstr ""
-#. 2YT7g
-#: 03120412.xhp
-msgctxt ""
-"03120412.xhp\n"
-"par_id3149763\n"
-"help.text"
-msgid "String"
-msgstr ""
-
#. x74Dw
#: 03120412.xhp
msgctxt ""
@@ -33415,15 +33091,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. 2Yv2V
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"par_id3149762\n"
-"help.text"
-msgid "Long"
-msgstr "Long"
-
#. FmsU2
#: 03130700.xhp
msgctxt ""
@@ -33514,15 +33181,6 @@ msgctxt ""
msgid "Return value:"
msgstr "Atgrieztā vērtība:"
-#. 4DpFE
-#: 03130800.xhp
-msgctxt ""
-"03130800.xhp\n"
-"par_id3148473\n"
-"help.text"
-msgid "String"
-msgstr "Virkne"
-
#. 5aaU3
#: 03130800.xhp
msgctxt ""
@@ -34099,15 +33757,6 @@ msgctxt ""
msgid "' display \"live\" dialog"
msgstr ""
-#. GkzVk
-#: 03131900.xhp
-msgctxt ""
-"03131900.xhp\n"
-"tit\n"
-"help.text"
-msgid "GlobalScope"
-msgstr ""
-
#. Rdvas
#: 03131900.xhp
msgctxt ""
@@ -34126,13 +33775,13 @@ msgctxt ""
msgid "<variable id=\"GlobalScope_h1\"><link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope specifier</link></variable>"
msgstr ""
-#. BKWJA
+#. Bp3q2
#: 03131900.xhp
msgctxt ""
"03131900.xhp\n"
"par_id991572457387308\n"
"help.text"
-msgid "To manage personal or shared library containers (<emph>%PRODUCTNAME Macros</emph> or <emph>My Macros</emph>) from within a document, use the <literal>GlobalScope</literal> specifier."
+msgid "To manage personal or shared library containers (<emph>Application Macros</emph> or <emph>My Macros</emph>) from within a document, use the <literal>GlobalScope</literal> specifier."
msgstr ""
#. Jz8ET
@@ -34180,13 +33829,13 @@ msgctxt ""
msgid "Dialog libraries and dialogs can be managed with the <literal>DialogLibraries</literal> object. <link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog\">Opening a Dialog With Basic</link> illustrates how to display %PRODUCTNAME shared dialogs."
msgstr ""
-#. eBUEF
+#. XUR24
#: 03131900.xhp
msgctxt ""
"03131900.xhp\n"
"par_id3150543\n"
"help.text"
-msgid "<literal>BasicLibraries</literal> and <literal>DialogLibraries</literal> containers exist at application level and within every document. Document's library containers do not need the <literal>GlobalScope</literal> specifier to be managed. If you want to call a global library container (located in <emph>%PRODUCTNAME Macros</emph> or <emph>My Macros</emph>) from within a document, you must use the <literal>GlobalScope</literal> specifier."
+msgid "<literal>BasicLibraries</literal> and <literal>DialogLibraries</literal> containers exist at application level and within every document. Document's library containers do not need the <literal>GlobalScope</literal> specifier to be managed. If you want to call a global library container (located in <emph>Application Macros</emph> or <emph>My Macros</emph>) from within a document, you must use the <literal>GlobalScope</literal> specifier."
msgstr ""
#. BDRji
@@ -34342,15 +33991,6 @@ msgctxt ""
msgid "In this example, the Listener-Interface uses the following methods:"
msgstr ""
-#. miuA2
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3151176\n"
-"help.text"
-msgid "disposing:"
-msgstr ""
-
#. yK2Er
#: 03132000.xhp
msgctxt ""
@@ -34360,15 +34000,6 @@ msgctxt ""
msgid "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
msgstr ""
-#. 2HzDU
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3156212\n"
-"help.text"
-msgid "elementInserted:"
-msgstr ""
-
#. MrmiF
#: 03132000.xhp
msgctxt ""
@@ -34378,15 +34009,6 @@ msgctxt ""
msgid "Method of the com.sun.star.container.XContainerListener interface"
msgstr ""
-#. TjuCT
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3147287\n"
-"help.text"
-msgid "elementRemoved:"
-msgstr ""
-
#. RDU7w
#: 03132000.xhp
msgctxt ""
@@ -34396,15 +34018,6 @@ msgctxt ""
msgid "Method of the com.sun.star.container.XContainerListener interface"
msgstr ""
-#. tkbYn
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153951\n"
-"help.text"
-msgid "elementReplaced:"
-msgstr ""
-
#. SusGE
#: 03132000.xhp
msgctxt ""
@@ -34423,42 +34036,6 @@ msgctxt ""
msgid "In this example, the prefix is ContListener_. The following subroutines must therefore be implemented in Basic:"
msgstr ""
-#. SGZEE
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3155411\n"
-"help.text"
-msgid "ContListener_disposing"
-msgstr ""
-
-#. 6mUaL
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3146923\n"
-"help.text"
-msgid "ContListener_elementInserted"
-msgstr ""
-
-#. qpmso
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3147318\n"
-"help.text"
-msgid "ContListener_elementRemoved"
-msgstr ""
-
-#. nSKDC
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3152578\n"
-"help.text"
-msgid "ContListener_elementReplaced"
-msgstr ""
-
#. DkGAT
#: 03132000.xhp
msgctxt ""
@@ -34468,42 +34045,6 @@ msgctxt ""
msgid "An event structure type that contains information about an event exists for every Listener type. When a Listener method is called, an instance of this event is passed to the method as a parameter. Basic Listener methods can also call these event objects, so long as the appropriate parameter is passed in the Sub declaration. For example:"
msgstr ""
-#. 2KgyV
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153876\n"
-"help.text"
-msgid "MsgBox \"disposing\""
-msgstr ""
-
-#. VexRZ
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154098\n"
-"help.text"
-msgid "MsgBox \"elementInserted\""
-msgstr ""
-
-#. nDpha
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153947\n"
-"help.text"
-msgid "MsgBox \"elementRemoved\""
-msgstr ""
-
-#. LAA8q
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3148915\n"
-"help.text"
-msgid "MsgBox \"elementReplaced\""
-msgstr ""
-
#. LEsCM
#: 03132000.xhp
msgctxt ""
@@ -38428,13 +37969,13 @@ msgctxt ""
msgid "' Always use the function name in English"
msgstr ""
-#. x87Fg
+#. TDuCT
#: calc_functions.xhp
msgctxt ""
"calc_functions.xhp\n"
"par_id241629988142878\n"
"help.text"
-msgid "The macro below presents an example of how the <literal>MyVlook</literal> function can be called. If first creates a 5-by-2 data array and then calls the function <literal>MyVlook</literal> and shows the returned value using <literal>MsgBox</literal>."
+msgid "The macro below presents an example of how the <literal>MyVlook</literal> function can be called. It first creates a 5-by-2 data array and then calls the function <literal>MyVlook</literal> and shows the returned value using <literal>MsgBox</literal>."
msgstr ""
#. XincG
@@ -38563,13 +38104,13 @@ msgctxt ""
msgid "Calling Add-In Calc Functions in BASIC"
msgstr ""
-#. ufZSW
+#. q7CYD
#: calc_functions.xhp
msgctxt ""
"calc_functions.xhp\n"
"par_id261592359338681\n"
"help.text"
-msgid "The Calc Add-In functions are in service <literal>com.sun.star.sheet.addin.Analysis</literal>."
+msgid "The Calc Add-In functions are in the UNO services <link href=\"text/sbasic/shared/calc_functions.xhp#analysis\" name=\"analysis\"><literal>com.sun.star.sheet.addin.Analysis</literal></link>, <link href=\"text/sbasic/shared/calc_functions.xhp#dates\" name=\"dates\"><literal>com.sun.star.sheet.addin.DateFunctions</literal></link> and <link href=\"text/sbasic/shared/calc_functions.xhp#pricing\" name=\"pricing\"><literal>com.sun.star.sheet.addin.PricingFunctions</literal></link>."
msgstr ""
#. 94wim
@@ -38635,22 +38176,40 @@ msgctxt ""
msgid "REM Cell A1 displays the localized function name"
msgstr ""
-#. mYEEy
+#. gtxdC
#: calc_functions.xhp
msgctxt ""
"calc_functions.xhp\n"
"hd_id661632676716180\n"
"help.text"
-msgid "Add-In Functions UNO service Names"
+msgid "UNO Service Names for Analysis Add-In Functions"
msgstr ""
-#. PsFhU
+#. SBEpf
#: calc_functions.xhp
msgctxt ""
"calc_functions.xhp\n"
"par_id651629988674793\n"
"help.text"
-msgid "The table below presents a list of all Calc Add-In functions and their respective UNO service names."
+msgid "The table below presents a list of all Calc Analysis Add-In functions and their respective UNO service names."
+msgstr ""
+
+#. 2NxGD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id511592356505781\n"
+"help.text"
+msgid "Calc Function name"
+msgstr ""
+
+#. b2FSD
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id471592356505782\n"
+"help.text"
+msgid "UNO service name"
msgstr ""
#. emGWD
@@ -39562,22 +39121,265 @@ msgctxt ""
msgid "YIELDMAT"
msgstr ""
-#. MqMrx
-#: classmodule.xhp
+#. 9EfRH
+#: calc_functions.xhp
msgctxt ""
-"classmodule.xhp\n"
-"tit\n"
+"calc_functions.xhp\n"
+"hd_id661632676736180\n"
"help.text"
-msgid "Option ClassModule"
+msgid "UNO Service Names for Date Add-In Functions"
msgstr ""
-#. HFQ4r
-#: classmodule.xhp
+#. QMryg
+#: calc_functions.xhp
msgctxt ""
-"classmodule.xhp\n"
-"N0082\n"
+"calc_functions.xhp\n"
+"par_id751629988674793\n"
+"help.text"
+msgid "The table below presents a list of all Calc Date Add-In functions and their respective UNO service names."
+msgstr ""
+
+#. dcQK3
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id511593356505781\n"
+"help.text"
+msgid "Calc Function name"
+msgstr ""
+
+#. TEzJG
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id471593356505782\n"
+"help.text"
+msgid "UNO service name"
+msgstr ""
+
+#. J6Jdh
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id721593355432992\n"
+"help.text"
+msgid "DAYSINMONTH"
+msgstr ""
+
+#. yW5C5
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id761641413741892\n"
+"help.text"
+msgid "DAYSINYEAR"
+msgstr ""
+
+#. 377AZ
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id361641413741893\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.DateFunctions.getDaysInMonth"
+msgstr ""
+
+#. vXhZ9
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id11641413916930\n"
+"help.text"
+msgid "MONTHS"
+msgstr ""
+
+#. ug6Q2
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id261641413916931\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.DateFunctions.getDiffMonths"
+msgstr ""
+
+#. gWTY8
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id761641413962003\n"
+"help.text"
+msgid "WEEKS"
+msgstr ""
+
+#. EEsD8
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id811641413962004\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.DateFunctions.getDiffWeeks"
+msgstr ""
+
+#. DjCEK
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id71641413988924\n"
+"help.text"
+msgid "YEARS"
+msgstr ""
+
+#. 2bFJG
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id401641413988926\n"
"help.text"
-msgid "<bookmark_value>Option ClassModule</bookmark_value>"
+msgid "com.sun.star.sheet.addin.DateFunctions.getDiffYears"
+msgstr ""
+
+#. bNKK9
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id341641414018758\n"
+"help.text"
+msgid "ROT13"
+msgstr ""
+
+#. XPK2a
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id831641414018760\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.DateFunctions.getRot13"
+msgstr ""
+
+#. A7nYJ
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id171641414040589\n"
+"help.text"
+msgid "WEEKSINYEAR"
+msgstr ""
+
+#. sQKRo
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id391641414040590\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.DateFunctions.getWeeksInYear"
+msgstr ""
+
+#. qqkuj
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"hd_id661632676732180\n"
+"help.text"
+msgid "UNO Service Names for Pricing Add-In Functions"
+msgstr ""
+
+#. ErZSq
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id751629983674793\n"
+"help.text"
+msgid "The table below presents a list of all Calc Pricing Add-In functions and their respective UNO service names."
+msgstr ""
+
+#. mwzeA
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id511593356506781\n"
+"help.text"
+msgid "Calc Function name"
+msgstr ""
+
+#. TRZn5
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id471593356505762\n"
+"help.text"
+msgid "UNO service name"
+msgstr ""
+
+#. rQJPp
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id701641414383401\n"
+"help.text"
+msgid "OPT_BARRIER"
+msgstr ""
+
+#. F3AGd
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id761641414383403\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.PrincingFunctions.getOptBarrier"
+msgstr ""
+
+#. zF653
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id131641414493411\n"
+"help.text"
+msgid "OPT_PROB_HIT"
+msgstr ""
+
+#. NCqSi
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id191641414493413\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.PrincingFunctions.getOptProbHit"
+msgstr ""
+
+#. 2xAys
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id81641414542294\n"
+"help.text"
+msgid "OPT_PROB_INMONEY"
+msgstr ""
+
+#. GwG8J
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id861641414542296\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.PrincingFunctions.getOptProbInMoney"
+msgstr ""
+
+#. WKVoC
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id711641414594816\n"
+"help.text"
+msgid "OPT_TOUCH"
+msgstr ""
+
+#. kRZEk
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"par_id561641414594817\n"
+"help.text"
+msgid "com.sun.star.sheet.addin.PrincingFunctions.getOptTouch"
msgstr ""
#. WS3B9
@@ -39607,15 +39409,6 @@ msgctxt ""
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 ""
-#. dmcDt
-#: classmodule.xhp
-msgctxt ""
-"classmodule.xhp\n"
-"N0086\n"
-"help.text"
-msgid "Option ClassModule"
-msgstr ""
-
#. UoERn
#: classmodule.xhp
msgctxt ""
@@ -39697,15 +39490,6 @@ msgctxt ""
msgid "Multiple thorough class examples are available from <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link>."
msgstr ""
-#. Z2Mg6
-#: code-stubs.xhp
-msgctxt ""
-"code-stubs.xhp\n"
-"tit\n"
-"help.text"
-msgid "BasicCodeStubs"
-msgstr ""
-
#. vSapF
#: collection.xhp
msgctxt ""
@@ -40075,13 +39859,13 @@ msgctxt ""
msgid "<variable id=\"compatibilitymodeh1\"><link href=\"text/sbasic/shared/compatibilitymode.xhp\" name=\"CompatibilityMode\">CompatibilityMode() Function</link></variable>"
msgstr ""
-#. KwAAR
+#. ipFPG
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"N0120\n"
"help.text"
-msgid "<literal>CompatibilityMode()</literal> function is controlling runtime mode and affects all code executed after setting or resetting the mode."
+msgid "<literal>CompatibilityMode()</literal> function controls runtime mode and affects all code executed after setting or resetting the mode."
msgstr ""
#. YSokk
@@ -40138,6 +39922,15 @@ msgctxt ""
msgid "Changing behavior of Basic <literal>Dir</literal> command. The directory flag (16) for the <literal>Dir</literal> command means that only directories are returned in %PRODUCTNAME Basic, while in VBA normal files and directories are returned."
msgstr ""
+#. DMpTx
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id901639929393688\n"
+"help.text"
+msgid "Color components calculation with the <link href=\"text/sbasic/shared/03010303.xhp\" name=\"linkred\"><literal>Red</literal></link> and <link href=\"text/sbasic/shared/03010301.xhp\" name=\"linkblue\"><literal>Blue</literal></link> functions which <emph>are interchanged</emph> (The <link href=\"text/sbasic/shared/03010302.xhp\" name=\"linkgreen\"><literal>Green</literal></link> function is not affected)."
+msgstr ""
+
#. piCTC
#: compatibilitymode.xhp
msgctxt ""
@@ -40201,22 +39994,13 @@ msgctxt ""
msgid "Variables scope modification in <link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link> with <literal>CompatibilityMode()</literal> function."
msgstr ""
-#. 8pEXC
-#: compatible.xhp
-msgctxt ""
-"compatible.xhp\n"
-"tit\n"
-"help.text"
-msgid "Option Compatible"
-msgstr ""
-
-#. NVDrC
+#. YwBF4
#: compatible.xhp
msgctxt ""
"compatible.xhp\n"
"N0103\n"
"help.text"
-msgid "<bookmark_value>Option Compatible</bookmark_value> <bookmark_value>VBA compatibility option</bookmark_value>"
+msgid "<bookmark_value>VBA compatibility option</bookmark_value>"
msgstr ""
#. imVdb
diff --git a/source/lv/helpcontent2/source/text/sbasic/shared/03.po b/source/lv/helpcontent2/source/text/sbasic/shared/03.po
index 094c8145271..45179c5f898 100644
--- a/source/lv/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/lv/helpcontent2/source/text/sbasic/shared/03.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:20+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-07-12 14:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1078,13 +1078,13 @@ msgctxt ""
msgid "<variable id=\"ArrayService\"><link href=\"text/sbasic/shared/03/sf_array.xhp\" name=\"ScriptForge.Array Service\"><literal>ScriptForge</literal>.<literal>Array</literal> service</link></variable>"
msgstr ""
-#. SyLSL
+#. jMjFA
#: sf_array.xhp
msgctxt ""
"sf_array.xhp\n"
"par_id991582454416549\n"
"help.text"
-msgid "Provides a collection of methods for manipulating and transforming arrays of one dimension (vectors) and arrays of two dimensions (matrices). This includes set operations, sorting, importing to and exporting from text files."
+msgid "Provides a collection of methods for manipulating and transforming arrays of one dimension (vectors) and arrays of two dimensions (matrices). This includes set operations, sorting, importing from and exporting to text files."
msgstr ""
#. WjgHr
@@ -1708,6 +1708,33 @@ msgctxt ""
msgid "Consider the CSV file \"myFile.csv\" with the following contents:"
msgstr ""
+#. T6E8L
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id281626980354105\n"
+"help.text"
+msgid "<input>Name,DateOfBirth,Address,City</input>"
+msgstr ""
+
+#. FRZKB
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id301626980648833\n"
+"help.text"
+msgid "<input>Anna,2002/03/31,\"Rue de l'église, 21\",Toulouse</input>"
+msgstr ""
+
+#. g2r8f
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"par_id881626980658900\n"
+"help.text"
+msgid "<input>Fred,1998/05/04,\"Rue Albert Einstein, 113A\",Carcassonne</input>"
+msgstr ""
+
#. xNCNA
#: sf_array.xhp
msgctxt ""
@@ -1717,6 +1744,78 @@ msgctxt ""
msgid "The examples below in Basic and Python read the contents of the CSV file into an <literal>Array</literal> object."
msgstr ""
+#. F4yYB
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id531585561482408\n"
+"help.text"
+msgid "arr = SF_Array.ImportFromCSVFile(\"C:\\Temp\\myFile.csv\", DateFormat := \"YYYY/MM/DD\")"
+msgstr ""
+
+#. wyEqv
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id621585561482783\n"
+"help.text"
+msgid "MsgBox arr(0, 3) ' City"
+msgstr ""
+
+#. tDMNL
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id21585564425349\n"
+"help.text"
+msgid "MsgBox arr(1, 2) ' Rue de l'église, 21"
+msgstr ""
+
+#. SBfVW
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"bas_id831585564433851\n"
+"help.text"
+msgid "MsgBox arr(1, 3) ' Toulouse"
+msgstr ""
+
+#. DpxfS
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"pyc_id511626979992999\n"
+"help.text"
+msgid "arr = svc.ImportFromCSVFile(r\"C:\\Temp\\myFile.csv\", dateformat = \"YYYY/MM/DD\")"
+msgstr ""
+
+#. asqiD
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"pyc_id211626979993191\n"
+"help.text"
+msgid "bas.MsgBox(arr[0][3]) # City"
+msgstr ""
+
+#. 2gFXA
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"pyc_id671626979993408\n"
+"help.text"
+msgid "bas.MsgBox(arr[1][2]) # Rue de l'église, 21"
+msgstr ""
+
+#. kYfmG
+#: sf_array.xhp
+msgctxt ""
+"sf_array.xhp\n"
+"pyc_id481626979993648\n"
+"help.text"
+msgid "bas.MsgBox(arr[1][3]) # Toulouse"
+msgstr ""
+
#. xCx7D
#: sf_array.xhp
msgctxt ""
@@ -2644,13 +2743,13 @@ msgctxt ""
msgid "' ... Run queries, SQL statements, ..."
msgstr ""
-#. DA8ob
+#. eRmFK
#: sf_base.xhp
msgctxt ""
"sf_base.xhp\n"
"pyc_id351623104861223\n"
"help.text"
-msgid "' ... Run queries, SQL statements, ..."
+msgid "# ... Run queries, SQL statements, ..."
msgstr ""
#. mBphD
@@ -4786,13 +4885,13 @@ msgctxt ""
msgid "If only <literal>sheetname</literal> is specified, an zero-based array of strings containing the names of all charts is returned."
msgstr ""
-#. pGvVW
+#. CLbLn
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id371635438509045\n"
"help.text"
-msgid "If a <literal>chartname</literal> is provided, than a single object corresponding to the desired chart is returned. The specified chart must exist."
+msgid "If a <literal>chartname</literal> is provided, then a single object corresponding to the desired chart is returned. The specified chart must exist."
msgstr ""
#. T2e3d
@@ -5587,13 +5686,13 @@ msgctxt ""
msgid "The language is English/US, which implies that the decimal separator is \".\" and the thousands separator is \",\"."
msgstr ""
-#. TX82d
+#. tDYGo
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id531611757154931\n"
"help.text"
-msgid "To learn more about the CSV Filter Options, refer to the <link href=\"https://wiki.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Filter_Options#Filter_Options_for_the_CSV_Filter\" name=\"Filter Options\">Filter Options Wiki page</link>."
+msgid "To learn more about the CSV Filter Options, refer to the <link href=\"text/shared/guide/csv_params.xhp\" name=\"CSV Filter Options\">CSV Filter Options help page</link>."
msgstr ""
#. vPPYx
@@ -6460,13 +6559,13 @@ msgctxt ""
msgid "Moves a given range of cells downwards by inserting empty rows. The current selection is not affected."
msgstr ""
-#. VTxxB
+#. 5qm5w
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801637929435655\n"
"help.text"
-msgid "Depending on the value of the <literal>wholerows</literal> argument the inserted rows can either span the width of the specified range or span all columns in the row."
+msgid "Depending on the value of the <literal>wholerow</literal> argument the inserted rows can either span the width of the specified range or span all columns in the row."
msgstr ""
#. uvH4j
@@ -6559,13 +6658,13 @@ msgctxt ""
msgid "Deletes the leftmost columns of a given range and moves to the left all cells to the right of the affected range. The current selection is not affected."
msgstr ""
-#. iawBn
+#. EzzWo
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801637929460261\n"
"help.text"
-msgid "Depending on the value of the <literal>wholecolumns</literal> argument the deleted columns can either span the height of the specified range or span all rows in the column."
+msgid "Depending on the value of the <literal>wholecolumn</literal> argument the deleted columns can either span the height of the specified range or span all rows in the column."
msgstr ""
#. BXEkG
@@ -6640,13 +6739,13 @@ msgctxt ""
msgid "Deletes the topmost rows of a given range and moves upwards all cells below the affected range. The current selection is not affected."
msgstr ""
-#. kb5h3
+#. zkYo7
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801637929435361\n"
"help.text"
-msgid "Depending on the value of the <literal>wholerows</literal> argument the deleted rows can either span the width of the specified range or span all columns in the row."
+msgid "Depending on the value of the <literal>wholerow</literal> argument the deleted rows can either span the width of the specified range or span all columns in the row."
msgstr ""
#. s9Nfb
@@ -6721,13 +6820,13 @@ msgctxt ""
msgid "Moves a given range of cells to the right by inserting empty columns. The current selection is not affected."
msgstr ""
-#. RxvcF
+#. CDi3E
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801637929335255\n"
"help.text"
-msgid "Depending on the value of the <literal>wholecolumns</literal> argument the inserted columns can either span the height of the specified range or span all rows in the column."
+msgid "Depending on the value of the <literal>wholecolumn</literal> argument the inserted columns can either span the height of the specified range or span all rows in the column."
msgstr ""
#. Fh33o
@@ -6883,22 +6982,22 @@ msgctxt ""
msgid "'Sort range based on columns A (ascending) and C (descending)"
msgstr ""
-#. rGNeZ
+#. HyPhE
#: sf_chart.xhp
msgctxt ""
"sf_chart.xhp\n"
"tit\n"
"help.text"
-msgid "ScriptForge.Chart service"
+msgid "SFDocuments.Chart service"
msgstr ""
-#. UFBLD
+#. bv49k
#: sf_chart.xhp
msgctxt ""
"sf_chart.xhp\n"
"bm_id681600788076499\n"
"help.text"
-msgid "<variable id=\"ChartService\"><link href=\"text/sbasic/shared/03/sf_chart.xhp\" name=\"Chart service\"><literal>ScriptForge</literal>.<literal>Chart</literal> service</link></variable>"
+msgid "<variable id=\"ChartService\"><link href=\"text/sbasic/shared/03/sf_chart.xhp\" name=\"Chart service\"><literal>SFDocuments</literal>.<literal>Chart</literal> service</link></variable>"
msgstr ""
#. nPHDK
@@ -10843,13 +10942,13 @@ msgctxt ""
msgid "<emph>alignments</emph>: Defines the alignment in each column as a string in which each character can be \"L\" (Left), \"C\" (Center), \"R\" (Right) or \" \" (whitespace, default, meaning left for strings and right for numeric values). If the length of the string is shorter than the number of columns in the table, then the last character in the string is used to define the alignment of the remaining columns."
msgstr ""
-#. FCNEg
+#. CK6RC
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id381638569172413\n"
"help.text"
-msgid "The following example assumes that the dialog <literal>myDialog</literal> has a <literal>TableControl</literal> named <literal>Grid1</literal> with \"Show header row\" and \"Show column row\" properties set to \"Yes\"."
+msgid "The following example assumes that the dialog <literal>myDialog</literal> has a <literal>TableControl</literal> named <literal>Grid1</literal> with \"Show row header\" and \"Show column header\" properties set to \"Yes\"."
msgstr ""
#. N9Byz
@@ -10879,15 +10978,6 @@ msgctxt ""
msgid "MsgBox \"Row \" & oTable.ListIndex & \" is selected.\""
msgstr ""
-#. yyATt
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"pyc_id111638569958471\n"
-"help.text"
-msgid "dlg = CreateScriptService(\"Dialog\", \"GlobalScope\", \"Standard\", \"myDialog\")"
-msgstr ""
-
#. HNmmm
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -11347,13 +11437,13 @@ msgctxt ""
msgid "Note in the example below that a Python dictionary needs to be passed as the second argument of the <literal>CreateScriptService</literal> method."
msgstr ""
-#. wTUQt
+#. oZEpN
#: sf_dictionary.xhp
msgctxt ""
"sf_dictionary.xhp\n"
"par_id421610393306916\n"
"help.text"
-msgid "Many services and methods in the UNO library take in parameters represented using the <literal>PropertyValue</literal> struct, which is part of the LibreOffice API."
+msgid "Many services and methods in the UNO library take in parameters represented using the <literal>PropertyValue</literal> struct, which is part of the %PRODUCTNAME API."
msgstr ""
#. 3afLF
@@ -11455,13 +11545,13 @@ msgctxt ""
msgid "Inserts the contents of an array of <literal>PropertyValue</literal> objects into the current dictionary. <literal>PropertyValue</literal> Names are used as Keys in the dictionary, whereas Values contain the corresponding values. Returns <literal>True</literal> if successful."
msgstr ""
-#. 95A5W
+#. BQybf
#: sf_dictionary.xhp
msgctxt ""
"sf_dictionary.xhp\n"
"par_id751588941968522\n"
"help.text"
-msgid "<emph>propertyvalues</emph>: A zero-based 1-dimensional array containing <literal>com.sun.star.beans.PropertyValue</literal> objects. This parameter may also be a single <literal>propertyvalue</literal> object not contained in an Array."
+msgid "<emph>propertyvalues</emph>: A zero-based 1-dimensional array containing <literal>com.sun.star.beans.PropertyValue</literal> objects. This parameter may also be a single <literal>PropertyValue</literal> object not contained in an Array."
msgstr ""
#. g5bHm
@@ -11491,13 +11581,13 @@ msgctxt ""
msgid "Retrieves an existing dictionary entry based on its key. Returns the value of the item if successful, otherwise returns <literal>Empty</literal>."
msgstr ""
-#. CGLFi
+#. MV7Wq
#: sf_dictionary.xhp
msgctxt ""
"sf_dictionary.xhp\n"
"par_id551582890399669\n"
"help.text"
-msgid "<emph>key</emph>: Not case-sensitive. Must exist in the dictionary, otherwise an <literal>UNKNOWNKEYERROR</literal> error is raised."
+msgid "<emph>key</emph>: Not case-sensitive. If it does not exist, <literal>Empty</literal> value is returned."
msgstr ""
#. rGqyT
@@ -12085,6 +12175,105 @@ msgctxt ""
msgid "<emph>saveask</emph> : If <literal>True</literal> (default), the user is invited to confirm if the changes should be written on disk. This argument is ignored if the document was not modified."
msgstr ""
+#. RhAbC
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id651589200121080\n"
+"help.text"
+msgid "Creates a new menu entry in the menubar of a given document window."
+msgstr ""
+
+#. A7owo
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id981611149616155\n"
+"help.text"
+msgid "This method returns an instance of the <link href=\"text/sbasic/shared/03/sf_menu.xhp\" name=\"Menu_link1\"><input>SFWidgets.Menu</input></link> service."
+msgstr ""
+
+#. GKeq5
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id721643121487974\n"
+"help.text"
+msgid "The menu created is only available during the current %PRODUCTNAME session and is not saved neither in the document nor in the global application settings. Hence closing the document window will make the menu disappear. It will only reappear when the macro that creates the menu is executed again."
+msgstr ""
+
+#. szVYB
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id361589200120316\n"
+"help.text"
+msgid "<emph>menuheader</emph>: The toplevel name of the new menu."
+msgstr ""
+
+#. iCSZE
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id361589200129686\n"
+"help.text"
+msgid "<emph>before</emph>: The name (as a string) or position (as an integer starting at 1) of an existing menu before which the new menu will be placed. If no value is defined for this argument, the menu will be created at the last position in the menubar."
+msgstr ""
+
+#. LX4b9
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id361589200122507\n"
+"help.text"
+msgid "<emph>submenuchar</emph>: The delimiter used to create menu trees when calling methods as <literal>AddItem</literal> from the <literal>Menu</literal> service. The default value is \">\"."
+msgstr ""
+
+#. FhwFZ
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id751622827903865\n"
+"help.text"
+msgid "Set oMenu = oDoc.CreateMenu(\"My Menu\")"
+msgstr ""
+
+#. iDefE
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id391643120224507\n"
+"help.text"
+msgid "' Add items to the menu"
+msgstr ""
+
+#. t4cXb
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id100164312025160\n"
+"help.text"
+msgid "' After creating the menu, the service instance can be disposed of"
+msgstr ""
+
+#. WuNHU
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"pyc_id221622827943208\n"
+"help.text"
+msgid "menu = doc.CreateMenu(\"My Menu\")"
+msgstr ""
+
+#. Jx4RF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id271643139068194\n"
+"help.text"
+msgid "Refer to the <link href=\"text/sbasic/shared/03/sf_menu.xhp\" name=\"Menu_link2\"><input>SFWidgets.Menu</input></link> help page to learn more about how to create/remove menus in %PRODUCTNAME document windows."
+msgstr ""
+
#. CGKZA
#: sf_document.xhp
msgctxt ""
@@ -12211,6 +12400,60 @@ msgctxt ""
msgid "<emph>copies</emph>: The number of copies. Default is 1."
msgstr ""
+#. VDMiZ
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id651589200165470\n"
+"help.text"
+msgid "Removes a toplevel menu from the menubar of a given document window."
+msgstr ""
+
+#. wfDbr
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id981611149610695\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the specified menu could be removed. If the specified menu does not exist, the method returns <literal>False</literal>."
+msgstr ""
+
+#. eNVDJ
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id571643121106014\n"
+"help.text"
+msgid "This method can be used to remove any menu entry from the document window, including default menus. However, none of these changes in the menubar are saved to the document or to the application settings. To restore the menubar to the default settings, simply close and reopen the document window."
+msgstr ""
+
+#. E6ahL
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id361589200121156\n"
+"help.text"
+msgid "<emph>menuheader</emph>: The toplevel name of the menu to be removed."
+msgstr ""
+
+#. yRoDW
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id391643120223147\n"
+"help.text"
+msgid "oDoc.RemoveMenu(\"My Menu\")"
+msgstr ""
+
+#. BnmiF
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"pyc_id221622827946338\n"
+"help.text"
+msgid "doc.RemoveMenu(\"My Menu\")"
+msgstr ""
+
#. Nmwv9
#: sf_document.xhp
msgctxt ""
@@ -18925,6 +19168,681 @@ msgctxt ""
msgid "Consider the following code is running on a %PRODUCTNAME installation with locale set to \"es-ES\". Additionally, there is a file \"es-ES.po\" inside the specified folder that translates the string passed to the <literal>GetText</literal> method:"
msgstr ""
+#. yD78g
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFWidgets.Menu service"
+msgstr ""
+
+#. F5KPb
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bm_id681600788076499\n"
+"help.text"
+msgid "<variable id=\"MenuService\"><link href=\"text/sbasic/shared/03/sf_menu.xhp\" name=\"Menu service\"><literal>SFWidgets</literal>.<literal>Menu</literal> service</link></variable>"
+msgstr ""
+
+#. FqGPg
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id181600788076612\n"
+"help.text"
+msgid "The <literal>Menu</literal> service can be used to create and remove menus from the menubar of a %PRODUCTNAME document window. Each menu entry can be associated with a script or with a UNO command. This service provides the following capabilities:"
+msgstr ""
+
+#. UYDdv
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id301600788076785\n"
+"help.text"
+msgid "Creation of menus with custom entries, checkboxes, radio buttons and separators."
+msgstr ""
+
+#. KB9XF
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id1001600788076848\n"
+"help.text"
+msgid "Decoration of menu items with icons and tooltips."
+msgstr ""
+
+#. JSwJW
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id581643133675012\n"
+"help.text"
+msgid "Menus created with this service are available only for a specified document window. They are not saved into the document or as application settings. Closing and opening the document will restore the default menubar settings."
+msgstr ""
+
+#. FEfWE
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id291643224925643\n"
+"help.text"
+msgid "When OLE objects such as Math formulas or Calc charts are edited from within a document, %PRODUCTNAME reconfigures the menubar according to the object. When this happens, the menus created with the <literal>Menu</literal> service are removed and are not be restored after editing the OLE object."
+msgstr ""
+
+#. GftK9
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"hd_id281600788076359\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. DzDmt
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id321614902851541\n"
+"help.text"
+msgid "The <literal>Menu</literal> service is instantiated by calling the <link href=\"text/sbasic/shared/03/sf_document.xhp#CreateMenu\" name=\"CreateMenu_link\"><literal>CreateMenu</literal></link> method from the <literal>Document</literal> service. The code snippet below creates a menu named <emph>My Menu</emph> in the current document window with two entries <emph>Item A</emph> and <emph>Item B</emph>."
+msgstr ""
+
+#. pf7FV
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id261643134374056\n"
+"help.text"
+msgid "Set oMenu = oDoc.CreateMenu(\"My Menu\")"
+msgstr ""
+
+#. Hoh4Q
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id431643134582213\n"
+"help.text"
+msgid ".AddItem(\"Item A\", Command := \"About\")"
+msgstr ""
+
+#. u52BY
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id571643134582396\n"
+"help.text"
+msgid ".AddItem(\"Item B\", Script := \"vnd.sun.star.script:Standard.Module1.ItemB_Listener?language=Basic&location=application\")"
+msgstr ""
+
+#. nd5od
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id371643135157996\n"
+"help.text"
+msgid "After creating the menu, it is recommended to call the <literal>Dispose</literal> method to free the resources used by the <literal>Menu</literal> service instance."
+msgstr ""
+
+#. 2VDkD
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id341636718182262\n"
+"help.text"
+msgid "In the example above, <emph>Item A</emph> is associated with the UNO command <literal>.uno:About</literal> whereas <emph>Item B</emph> is associated with the script <literal>ItemB_Listener</literal> defined in <literal>Module1</literal> of the <literal>Standard</literal> library of the <literal>My Macros</literal> container."
+msgstr ""
+
+#. 9G7de
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id851635274721129\n"
+"help.text"
+msgid "The following example defines <literal>ItemB_Listener</literal> that will be called when <emph>Item B</emph> is clicked. This listener simply splits the argument string passed to the <literal>Sub</literal> and shows them in a message box."
+msgstr ""
+
+#. AFHBG
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id716431354225603\n"
+"help.text"
+msgid "' Process the argument string passed to the listener"
+msgstr ""
+
+#. GzLwF
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id901643135423012\n"
+"help.text"
+msgid "MsgBox \"Menu name: \" & sArgs(0) & Chr(13) & _"
+msgstr ""
+
+#. qGB7L
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id301643136028263\n"
+"help.text"
+msgid "\"Menu item: \" & sArgs(1) & Chr(13) & _"
+msgstr ""
+
+#. wFTww
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id181643136028557\n"
+"help.text"
+msgid "\"Item ID: \" & sArgs(2) & Chr(13) & _"
+msgstr ""
+
+#. 9SGVd
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id561643136028710\n"
+"help.text"
+msgid "\"Item status: \" & sArgs(3)"
+msgstr ""
+
+#. MQJ7M
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id531636493797707\n"
+"help.text"
+msgid "As shown in the example above, menu entries associated with a script receive a comma-separated string argument with the following values:"
+msgstr ""
+
+#. uprfo
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id921643136489994\n"
+"help.text"
+msgid "The toplevel name of the menu."
+msgstr ""
+
+#. 7Jxz9
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id611643136491059\n"
+"help.text"
+msgid "The string ID of the selected menu entry."
+msgstr ""
+
+#. hENoG
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id961643136491491\n"
+"help.text"
+msgid "The numeric ID of the selected menu entry."
+msgstr ""
+
+#. nYABy
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id381643136494580\n"
+"help.text"
+msgid "The current state of the menu item. This is useful for checkboxes and radio buttons. If the item is checked, the value \"1\" is returned, otherwise \"0\" is returned."
+msgstr ""
+
+#. HHjiV
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id131635275172617\n"
+"help.text"
+msgid "The examples above can be written in Python as follows:"
+msgstr ""
+
+#. ENT7Q
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id981636717957632\n"
+"help.text"
+msgid "msg = f\"Menu item: {s_args[0]}\\n\""
+msgstr ""
+
+#. 8MYNj
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id851636718008427\n"
+"help.text"
+msgid "msg += f\"Menu name: {s_args[1]}\\n\""
+msgstr ""
+
+#. EfEaE
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id331636727047102\n"
+"help.text"
+msgid "msg += f\"Item ID: {s_args[2]}\\n\""
+msgstr ""
+
+#. FPzcf
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id71643137333404\n"
+"help.text"
+msgid "msg += f\"Item status: {s_args[3]}\""
+msgstr ""
+
+#. XxChZ
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"hd_id711600788076834\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. 98USM
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id461600788076917\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. fT8mQ
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id221600788076591\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. DGBgA
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id761600788076328\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 2EE9k
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id67160078807636\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. qnRDA
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id49160078807654\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. LE27e
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id81600788076419\n"
+"help.text"
+msgid "Character used to define the access key of a menu item. The default character is \"~\"."
+msgstr ""
+
+#. GSJAG
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id311600788076756\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. fb3iG
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id441600788076826\n"
+"help.text"
+msgid "Character or string that defines how menu items are nested. The default character is \">\"."
+msgstr ""
+
+#. bDCZ8
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"hd_id181636719707892\n"
+"help.text"
+msgid "Menu and Submenus"
+msgstr ""
+
+#. YE5FL
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id741636719725402\n"
+"help.text"
+msgid "To create a menu with submenus, use the character defined in the <literal>SubmenuCharacter</literal> property while creating the menu entry to define where it will be placed. For instance, consider the following menu/submenu hierarchy."
+msgstr ""
+
+#. Y4ETY
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id211636720111489\n"
+"help.text"
+msgid "The code below uses the default submenu character \">\" to create the menu/submenu hierarchy defined above:"
+msgstr ""
+
+#. WkCis
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id121636721243578\n"
+"help.text"
+msgid "The string \"---\" is used to define line separators in menus or submenus."
+msgstr ""
+
+#. CYbLC
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"hd_id501582887473754\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. Lofgb
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the Menu Service"
+msgstr ""
+
+#. aDqJH
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id93158919969864\n"
+"help.text"
+msgid "Inserts a check box in the menu. Returns an integer value that identifies the inserted item."
+msgstr ""
+
+#. T8Fkq
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203996\n"
+"help.text"
+msgid "<emph>menuitem:</emph> Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character."
+msgstr ""
+
+#. SkMmC
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203116\n"
+"help.text"
+msgid "<emph>name:</emph> String value used to identify the menu item. By default, the last component of the menu hierarchy is used."
+msgstr ""
+
+#. 7zhpM
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203133\n"
+"help.text"
+msgid "<emph>status:</emph> Defines whether the item is selected when the menu is created (Default = <literal>False</literal>)."
+msgstr ""
+
+#. JPboo
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653313\n"
+"help.text"
+msgid "<emph>icon:</emph> Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used."
+msgstr ""
+
+#. YzJwB
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653208\n"
+"help.text"
+msgid "<emph>tooltip:</emph> Text to be displayed as tooltip."
+msgstr ""
+
+#. 3WPXT
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653328\n"
+"help.text"
+msgid "<emph>command:</emph> The name of a UNO command without the <literal>.uno:</literal> prefix. If the command name does not exist, nothing happens."
+msgstr ""
+
+#. LaF26
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653107\n"
+"help.text"
+msgid "<emph>script:</emph> The URI for a Basic or Python script that will be executed when the item is clicked."
+msgstr ""
+
+#. PTXhK
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id31643198954204\n"
+"help.text"
+msgid "The arguments <literal>command</literal> and <literal>script</literal> are mutually exclusive, hence only one of them can be set for each menu item."
+msgstr ""
+
+#. 7fb2n
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id31643148484084\n"
+"help.text"
+msgid "Read <link href=\"https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification\" name=\"URI_Notation\">Scripting Framework URI Specification</link> to learn more about the URI syntax used in the <literal>script</literal> argument."
+msgstr ""
+
+#. Aj8cF
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id191643306748853\n"
+"help.text"
+msgid "' Menu entry associated with the .uno:Paste command"
+msgstr ""
+
+#. gQCkK
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id271643147793320\n"
+"help.text"
+msgid "' Runs the Basic script Standard.Module1.MyListener stored in the document"
+msgstr ""
+
+#. zSD5u
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id801643306742620\n"
+"help.text"
+msgid "' Runs the Python script MysListener located in file myScripts.py in the user scripts folder"
+msgstr ""
+
+#. uAbp9
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id93158919963364\n"
+"help.text"
+msgid "Inserts a label entry in the menu. Returns an integer value that identifies the inserted item."
+msgstr ""
+
+#. tCHcD
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203021\n"
+"help.text"
+msgid "<emph>menuitem:</emph> Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character."
+msgstr ""
+
+#. yFQns
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203026\n"
+"help.text"
+msgid "<emph>name:</emph> String value to be returned when the item is clicked. By default, the last component of the menu hierarchy is used."
+msgstr ""
+
+#. DMEeJ
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721652886\n"
+"help.text"
+msgid "<emph>icon:</emph> Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used."
+msgstr ""
+
+#. aZPNP
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653118\n"
+"help.text"
+msgid "<emph>tooltip:</emph> Text to be displayed as tooltip."
+msgstr ""
+
+#. 23fax
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653314\n"
+"help.text"
+msgid "<emph>command:</emph> The name of a UNO command without the <literal>.uno:</literal> prefix. If the command name does not exist, nothing happens."
+msgstr ""
+
+#. wysyV
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721652057\n"
+"help.text"
+msgid "<emph>script:</emph> The URI for a Basic or Python script that will be executed when the item is clicked."
+msgstr ""
+
+#. QYzCL
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"bas_id41158919969106\n"
+"help.text"
+msgid "oMenu.AddItem(\"Item A\", Tooltip := \"A descriptive message\")"
+msgstr ""
+
+#. dxYAv
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"pyc_id321621534170554\n"
+"help.text"
+msgid "oMenu.AddItem(\"Item A\", tooltip = \"A descriptive message\")"
+msgstr ""
+
+#. qB7zU
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id93158919969399\n"
+"help.text"
+msgid "Inserts a radio button entry in the menu. Returns an integer value that identifies the inserted item."
+msgstr ""
+
+#. FTrvY
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203501\n"
+"help.text"
+msgid "<emph>menuitem:</emph> Defines the text to be displayed in the menu. This argument also defines the hierarchy of the item inside the menu by using the submenu character."
+msgstr ""
+
+#. syjtC
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631228716\n"
+"help.text"
+msgid "<emph>name:</emph> String value to be returned when the item is clicked. By default, the last component of the menu hierarchy is used."
+msgstr ""
+
+#. 7WBgE
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id821591631203643\n"
+"help.text"
+msgid "<emph>status:</emph> Defines whether the item is selected when the menu is created (Default = <literal>False</literal>)."
+msgstr ""
+
+#. 4uxXA
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653228\n"
+"help.text"
+msgid "<emph>icon:</emph> Path and name of the icon to be displayed without the leading path separator. The actual icon shown depends on the icon set being used."
+msgstr ""
+
+#. ZfFDR
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653114\n"
+"help.text"
+msgid "<emph>tooltip:</emph> Text to be displayed as tooltip."
+msgstr ""
+
+#. Sx9Bm
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721653447\n"
+"help.text"
+msgid "<emph>command:</emph> The name of a UNO command without the <literal>.uno:</literal> prefix. If the command name does not exist, nothing happens."
+msgstr ""
+
+#. AEnA6
+#: sf_menu.xhp
+msgctxt ""
+"sf_menu.xhp\n"
+"par_id11636721652598\n"
+"help.text"
+msgid "<emph>script:</emph> The URI for a Basic or Python script that will be executed when the item is clicked."
+msgstr ""
+
#. yYNtX
#: sf_methods.xhp
msgctxt ""
@@ -19582,22 +20500,22 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060104.xhp#bm_id3691824\" name=\"Calc_Info\">Platform information with INFO(\"system\") Calc formula</link>"
msgstr ""
-#. 3RZGR
+#. h6atN
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
"tit\n"
"help.text"
-msgid "ScriptForge.PopupMenu service"
+msgid "SFWidgets.PopupMenu service"
msgstr ""
-#. NWwqN
+#. QADne
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
"bm_id681600788076499\n"
"help.text"
-msgid "<variable id=\"PopupMenuService\"><link href=\"text/sbasic/shared/03/sf_popupmenu.xhp\" name=\"PopupMenu service\"><literal>ScriptForge</literal>.<literal>PopupMenu</literal> service</link></variable>"
+msgid "<variable id=\"PopupMenuService\"><link href=\"text/sbasic/shared/03/sf_popupmenu.xhp\" name=\"PopupMenu service\"><literal>SFWidgets</literal>.<literal>PopupMenu</literal> service</link></variable>"
msgstr ""
#. DGbZ3
@@ -19789,40 +20707,40 @@ msgctxt ""
msgid "Description"
msgstr ""
-#. G2c6G
+#. qnMK2
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
-"par_id311600788076756\n"
+"par_id49160078807654\n"
"help.text"
msgid "No"
msgstr ""
-#. bcd7a
+#. zYGVp
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
-"par_id441600788076826\n"
+"par_id81600788076419\n"
"help.text"
-msgid "Character or string that defines how menu items are nested. The default character is \">\"."
+msgid "Character used to define the access key of a menu item. The default character is \"~\"."
msgstr ""
-#. qnMK2
+#. G2c6G
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
-"par_id49160078807654\n"
+"par_id311600788076756\n"
"help.text"
msgid "No"
msgstr ""
-#. zYGVp
+#. bcd7a
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
-"par_id81600788076419\n"
+"par_id441600788076826\n"
"help.text"
-msgid "Character used to define the access key of a menu item. The default character is \"~\"."
+msgid "Character or string that defines how menu items are nested. The default character is \">\"."
msgstr ""
#. drBFS
@@ -19870,13 +20788,13 @@ msgctxt ""
msgid "Using icons"
msgstr ""
-#. ddHxQ
+#. UKLV5
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
"par_id981636723485402\n"
"help.text"
-msgid "Items in the popup menu can have icons, which are specified as arguments in the <literal>AddCheckBox</literal>, <literal>AddItem</literal> and <literal>AddRadioButton</literal> methods."
+msgid "Items in the menu can have icons, which are specified as arguments in the <literal>AddCheckBox</literal>, <literal>AddItem</literal> and <literal>AddRadioButton</literal> methods."
msgstr ""
#. TLDpD
@@ -20050,13 +20968,13 @@ msgctxt ""
msgid "myPopup.AddItem(\"Item A\", Tooltip := \"A descriptive message\")"
msgstr ""
-#. 4euLD
+#. VDLFK
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
"pyc_id321621534170554\n"
"help.text"
-msgid "myPopup.AddItem(\"Item A\", tooltip = \"A descriptive message\")"
+msgid "my_popup.AddItem(\"Item A\", tooltip = \"A descriptive message\")"
msgstr ""
#. U2vBb
@@ -20122,13 +21040,13 @@ msgctxt ""
msgid "Displays the popup menu and waits for a user action. Returns the item clicked by the user."
msgstr ""
-#. GruyE
+#. qwwKx
#: sf_popupmenu.xhp
msgctxt ""
"sf_popupmenu.xhp\n"
"par_id101636726249788\n"
"help.text"
-msgid "If the user clicks outside the popup menu ou presses the <keycode>Esc</keycode> key, then no item is selected. In such cases, the returned value depends on the <literal>returnid</literal> parameter. If <literal>returnid = True</literal> and no item is selected, then the value 0 (zero) is returned. Otherwise an empty string \"\" is returned."
+msgid "If the user clicks outside the popup menu or presses the <keycode>Esc</keycode> key, then no item is selected. In such cases, the returned value depends on the <literal>returnid</literal> parameter. If <literal>returnid = True</literal> and no item is selected, then the value 0 (zero) is returned. Otherwise an empty string \"\" is returned."
msgstr ""
#. EFriZ
@@ -21598,6 +22516,15 @@ msgctxt ""
msgid "You can use the properties above to identify or insert the corresponding characters inside strings. For example, the Linefeed can be replaced by <literal>SF_String.sfLF</literal>."
msgstr ""
+#. DDXd3
+#: sf_string.xhp
+msgctxt ""
+"sf_string.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the String Service"
+msgstr ""
+
#. TFfR3
#: sf_string.xhp
msgctxt ""
@@ -25207,15 +26134,6 @@ msgctxt ""
msgid "Some methods are generic for all types of documents and are inherited from the <literal>SF_Document</literal> module, whereas other methods that are specific for Writer documents are defined in the <literal>SF_Writer</literal> module."
msgstr ""
-#. ojZFF
-#: sf_writer.xhp
-msgctxt ""
-"sf_writer.xhp\n"
-"par_id591589189364267\n"
-"help.text"
-msgid "The <literal>SF_Writer</literal> module is focused on:"
-msgstr ""
-
#. LTpqJ
#: sf_writer.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/scalc/00.po b/source/lv/helpcontent2/source/text/scalc/00.po
index 3c0be972dfc..fc214469b66 100644
--- a/source/lv/helpcontent2/source/text/scalc/00.po
+++ b/source/lv/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-27 19:09+0200\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -286,6 +286,15 @@ msgctxt ""
msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break</emph>.</variable>"
msgstr ""
+#. YeaFw
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id3155383\n"
+"help.text"
+msgid "<variable id=\"functionlist\">Choose <menuitem>View - Function List</menuitem>.</variable>"
+msgstr ""
+
#. yDXA6
#: 00000404.xhp
msgctxt ""
@@ -583,15 +592,6 @@ msgctxt ""
msgid "<variable id=\"addinana\"><emph>Insert - Function</emph> - Category <emph>Add-In</emph></variable>"
msgstr "<variable id=\"addinana\"><emph>Ievietot - Funkcija</emph> - Kategorija <emph>Papildinājumu</emph></variable>"
-#. g8EoH
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3155383\n"
-"help.text"
-msgid "<variable id=\"funktionsliste\">Choose <menuitem>Insert - Function List</menuitem>.</variable>"
-msgstr ""
-
#. UQGrR
#: 00000404.xhp
msgctxt ""
@@ -601,13 +601,13 @@ msgctxt ""
msgid "<variable id=\"einamen\">Choose <menuitem>Insert - Named Range or Expression</menuitem>.</variable>"
msgstr ""
-#. VLxrw
+#. mQLYV
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3146776\n"
"help.text"
-msgid "<variable id=\"eiextdata\">Choose <menuitem>Sheet - Link to External Data</menuitem>.</variable>"
+msgid "<variable id=\"eiextdata\">Choose <menuitem>Sheet - External Links</menuitem>.</variable>"
msgstr ""
#. ECgNS
diff --git a/source/lv/helpcontent2/source/text/scalc/01.po b/source/lv/helpcontent2/source/text/scalc/01.po
index 707f2ba65d4..df61cfabb5e 100644
--- a/source/lv/helpcontent2/source/text/scalc/01.po
+++ b/source/lv/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:20+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2019-02-27 15:24+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8278,13 +8278,13 @@ msgctxt ""
msgid "Always \"Windows (32-bit) NT 5.01\", for compatibility reasons"
msgstr ""
-#. WNv2d
+#. cFWJe
#: 04060104.xhp
msgctxt ""
"04060104.xhp\n"
"par_id9841608\n"
"help.text"
-msgid "The type of the operating system: <br/>\"AIX\" for Advanced Interactive Executive IBM computer operating systems<br/>\"ANDROID\" for Google mobile operating system<br/>\"DRAGONFLY\" for DragonFly operating system forked from FreeBSD<br/>\"EMSCRIPTEM\" for browser WebAssembly system<br/>\"FREEBSD\", \"OPENBSD\" or \"NETBSD\" for operating systems based on the Berkeley Software Distribution (BSD)<br/>\"HAIKU\" for BeOS compatible operating system<br/>\"iOS\" for Apple mobile operating system <br/>\"LINUX\" for GNU/Linux based operating systems<br/>\"MACOSX\" for Apple Mac OS X<br/>\"SOLARIS\" for Oracle Solaris operating system<br/>\"WNT\" for Microsoft Windows"
+msgid "The type of the operating system: <br/>\"AIX\" for Advanced Interactive Executive IBM computer operating systems<br/>\"ANDROID\" for Google mobile operating system<br/>\"DRAGONFLY\" for DragonFly operating system forked from FreeBSD<br/>\"EMSCRIPTEN\" for browser WebAssembly system<br/>\"FREEBSD\", \"OPENBSD\" or \"NETBSD\" for operating systems based on the Berkeley Software Distribution (BSD)<br/>\"HAIKU\" for BeOS compatible operating system<br/>\"iOS\" for Apple mobile operating system <br/>\"LINUX\" for GNU/Linux based operating systems<br/>\"MACOSX\" for Apple Mac OS X<br/>\"SOLARIS\" for Oracle Solaris operating system<br/>\"WNT\" for Microsoft Windows"
msgstr ""
#. zcvAx
@@ -10951,14 +10951,14 @@ msgctxt ""
msgid "<bookmark_value>mathematical functions</bookmark_value> <bookmark_value>Function Wizard; mathematical</bookmark_value> <bookmark_value>functions; mathematical functions</bookmark_value> <bookmark_value>trigonometric functions</bookmark_value>"
msgstr ""
-#. 9umC6
+#. BJjDo
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"hd_id3147124\n"
"help.text"
-msgid "Mathematical Functions"
-msgstr "Matemātiskās funkcijas"
+msgid "<variable id=\"math_functions_h1\"><link href=\"text/scalc/01/04060106.xhp\" name=\"math_link\">Mathematical Functions</link></variable>"
+msgstr ""
#. jjDha
#: 04060106.xhp
@@ -12832,103 +12832,13 @@ msgctxt ""
msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
msgstr "<item type=\"input\">=COMBINA(3;2)</item> atgriež 6."
-#. qUACJ
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"bm_id3156086\n"
-"help.text"
-msgid "<bookmark_value>TRUNC function</bookmark_value> <bookmark_value>decimal places;cutting off</bookmark_value>"
-msgstr "<bookmark_value>NORMDIST funkcija</bookmark_value><bookmark_value>blīvuma funkcija</bookmark_value>"
-
-#. mD8uc
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3156086\n"
-"help.text"
-msgid "TRUNC"
-msgstr "TRUNC"
-
-#. svW2j
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3157866\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KUERZEN\">Truncates a number by removing decimal places.</ahelp>"
-msgstr ""
-
-#. MNndx
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3148511\n"
-"help.text"
-msgid "TRUNC(Number[; Count])"
-msgstr ""
-
-#. TXm3Z
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150796\n"
-"help.text"
-msgid "Returns <emph>Number</emph> with at most <emph>Count</emph> decimal places. Excess decimal places are simply removed, irrespective of sign."
-msgstr ""
-
-#. XA6JV
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3150816\n"
-"help.text"
-msgid "<item type=\"literal\">TRUNC(Number; 0)</item> behaves as <item type=\"literal\">INT(Number)</item> for positive numbers, but effectively rounds towards zero for negative numbers."
-msgstr ""
-
-#. SyxhC
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"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 ""
-
-#. grGeQ
+#. ABMYW
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3152569\n"
+"hd_id561641930400206\n"
"help.text"
-msgid "<item type=\"input\">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost."
-msgstr ""
-
-#. DJRaY
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id7050080\n"
-"help.text"
-msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost."
-msgstr ""
-
-#. wGT5E
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id441635243969504\n"
-"help.text"
-msgid "<input>=TRUNC(-45.67)</input> returns -45. The default value for <emph>Count</emph> is 0."
-msgstr ""
-
-#. gMj5a
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id151635245092041\n"
-"help.text"
-msgid "Refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/TRUNC\" name=\"TRUNC_Wiki\">TRUNC</link> wiki page for more details about this function."
+msgid "<link href=\"text/scalc/01/func_trunc.xhp\" name=\"trunc_link\">TRUNC</link>"
msgstr ""
#. MQVNf
@@ -13777,96 +13687,15 @@ msgctxt ""
msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
msgstr "<item type=\"input\">=ROUND(987.65;-2)</item> atgriež 1000."
-#. igSF4
+#. 6qDk5
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"bm_id3145991\n"
+"hd_id561641930400105\n"
"help.text"
-msgid "<bookmark_value>ROUNDDOWN function</bookmark_value>"
-msgstr "<bookmark_value>ROUNDDOWN funkcija</bookmark_value>"
-
-#. pGdu6
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"hd_id3145991\n"
-"help.text"
-msgid "ROUNDDOWN"
-msgstr "ROUNDDOWN"
-
-#. 8CrTA
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3146020\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
+msgid "<link href=\"text/scalc/01/func_rounddown.xhp\" name=\"rounddown_link\">ROUNDDOWN</link>"
msgstr ""
-#. MnKJo
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3146051\n"
-"help.text"
-msgid "ROUNDDOWN(Number [; Count])"
-msgstr ""
-
-#. EXn4P
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3146064\n"
-"help.text"
-msgid "Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc."
-msgstr ""
-
-#. nFwPP
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id2188787\n"
-"help.text"
-msgid "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
-msgstr ""
-
-#. ZpuBm
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3163178\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> returns 1.23."
-msgstr "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> atgriež 1.23."
-
-#. DGvAw
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id5833307\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> returns 45."
-msgstr "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> atgriež 45."
-
-#. H6KYd
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id7726676\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(-45.67)</item> returns -45."
-msgstr "<item type=\"input\">=ROUNDDOWN(-45.67)</item> atgriež -45."
-
-#. hYEdB
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id3729361\n"
-"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> returns 900."
-msgstr "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> atgriež 900."
-
#. HBbDL
#: 04060106.xhp
msgctxt ""
@@ -19789,13 +19618,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_HYPERLINK\">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp>"
msgstr ""
-#. 8js8d
+#. ciAoA
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN11800\n"
"help.text"
-msgid "If you use the optional <emph>CellText</emph> parameter, the formula locates the URL, and then displays the text or number."
+msgid "If you use the optional <emph>CellValue</emph> parameter, the formula locates the URL, and then displays the text or number."
msgstr ""
#. 7DGBz
@@ -19807,22 +19636,22 @@ msgctxt ""
msgid "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>."
msgstr ""
-#. BzM9o
+#. YFNSo
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN1180E\n"
"help.text"
-msgid "HYPERLINK(\"URL\" [; \"CellText\"])"
+msgid "HYPERLINK(\"URL\" [; CellValue])"
msgstr ""
-#. UbAEY
+#. weY4K
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN11811\n"
"help.text"
-msgid "<emph>URL</emph> specifies the link target. The optional <emph>CellText</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellText</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
+msgid "<emph>URL</emph> specifies the link target. The optional <emph>CellValue</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellValue</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
msgstr ""
#. GdBa8
@@ -23047,31 +22876,103 @@ msgctxt ""
msgid "WEEKS(StartDate; EndDate; Type)"
msgstr ""
-#. DGrw3
+#. uwhoB
#: 04060111.xhp
msgctxt ""
"04060111.xhp\n"
"par_id3151387\n"
"help.text"
-msgid "<emph>StartDate</emph> is the first date"
-msgstr "<emph>SākumaDatums</emph> ir pirmais datums"
+msgid "<emph>StartDate</emph> is the start date in the interval."
+msgstr ""
-#. VLEPK
+#. AGYKD
#: 04060111.xhp
msgctxt ""
"04060111.xhp\n"
"par_id3146324\n"
"help.text"
-msgid "<emph>EndDate</emph> is the second date"
-msgstr "<emph>BeiguDatums</emph> ir otrais datums"
+msgid "<emph>EndDate</emph> is the end date in the interval. The end date must be greater than the start date, or else an error is returned."
+msgstr ""
-#. YHupv
+#. PcBbC
#: 04060111.xhp
msgctxt ""
"04060111.xhp\n"
"par_id3166467\n"
"help.text"
-msgid "<emph>Type</emph> calculates the type of difference. The possible values are 0 (interval) and 1 (in numbers of weeks)."
+msgid "<emph>Type</emph> specifies the type of difference to be calculated. Possible values are 0 (time interval) or 1 (calendar weeks)."
+msgstr ""
+
+#. QaW6B
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id81641990941192\n"
+"help.text"
+msgid "If <emph>Type = 0</emph> the function will assume that 7 days is equivalent to one week without considering any specific day to mark the beginning of a week."
+msgstr ""
+
+#. geCV7
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id31641991010650\n"
+"help.text"
+msgid "If <emph>Type = 1</emph> the function will consider Monday to be the first day of the week. Therefore, except for the start date, each occurrence of a Monday in the interval is counted as an additional week."
+msgstr ""
+
+#. CF4K3
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id971641990480242\n"
+"help.text"
+msgid "This function considers Monday to be the first day of the week regardless of the current locale settings."
+msgstr ""
+
+#. H2Gpc
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id671641994821992\n"
+"help.text"
+msgid "In the following examples, dates are passed as strings. However, they can also be stored in separate cells and be passed as references."
+msgstr ""
+
+#. SyEBP
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id71641991391639\n"
+"help.text"
+msgid "<input>=WEEKS(\"01/12/2022\",\"01/17/2022\",0)</input> returns 0 because <emph>Type</emph> was set to 0 and there are only 5 days in the interval."
+msgstr ""
+
+#. zVfY3
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id71641991390039\n"
+"help.text"
+msgid "<input>=WEEKS(\"01/12/2022\",\"01/19/2022\",0)</input> returns 1 because <emph>Type</emph> was set to 0 and there are 7 days in the interval."
+msgstr ""
+
+#. rABLZ
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id71641991391123\n"
+"help.text"
+msgid "<input>=WEEKS(\"01/12/2022\",\"01/17/2022\",1)</input> returns 1 because <emph>Type</emph> was set to 1 and the interval contains a Monday, since 01/12/2022 is a Wednesday and 01/17/2022 is a Monday."
+msgstr ""
+
+#. AxokT
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id71641991332523\n"
+"help.text"
+msgid "<input>=WEEKS(\"01/10/2022\",\"01/15/2022\",1)</input> returns 0 because <emph>Type</emph> was set to 1 and the interval does not contain any Mondays, except for the start date."
msgstr ""
#. 94JhK
@@ -33154,186 +33055,6 @@ msgctxt ""
msgid "<emph>DataE</emph> is the range of the expected values."
msgstr ""
-#. KmntJ
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3154096\n"
-"help.text"
-msgid "Data_B (observed)"
-msgstr ""
-
-#. ByU5t
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3152948\n"
-"help.text"
-msgid "Data_E (expected)"
-msgstr ""
-
-#. jFpGp
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3152876\n"
-"help.text"
-msgid "1"
-msgstr ""
-
-#. yVGtC
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3159279\n"
-"help.text"
-msgid "<item type=\"input\">195</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#. ZGbzD
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149105\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. ZiBjZ
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149922\n"
-"help.text"
-msgid "2"
-msgstr ""
-
-#. zDgpW
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148621\n"
-"help.text"
-msgid "<item type=\"input\">151</item>"
-msgstr "<item type=\"input\">151</item>"
-
-#. RVD5R
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148987\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. FbArc
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149417\n"
-"help.text"
-msgid "3"
-msgstr ""
-
-#. BzCPW
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148661\n"
-"help.text"
-msgid "<item type=\"input\">148</item>"
-msgstr "<item type=\"input\">148</item>"
-
-#. FMqUi
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3151128\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. SnMGY
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3148467\n"
-"help.text"
-msgid "4"
-msgstr ""
-
-#. pMLAc
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149237\n"
-"help.text"
-msgid "<item type=\"input\">189</item>"
-msgstr "<item type=\"input\">189</item>"
-
-#. MSsKd
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3145304\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. HztMb
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3149927\n"
-"help.text"
-msgid "5"
-msgstr ""
-
-#. 9cTzf
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150630\n"
-"help.text"
-msgid "<item type=\"input\">183</item>"
-msgstr "<item type=\"input\">183</item>"
-
-#. 4XAhh
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3150423\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. bZFnZ
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3143275\n"
-"help.text"
-msgid "6"
-msgstr ""
-
-#. P6GPe
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3144750\n"
-"help.text"
-msgid "<item type=\"input\">154</item>"
-msgstr "<item type=\"input\">154</item>"
-
-#. WpLSG
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id3153947\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
#. rEABj
#: 04060181.xhp
msgctxt ""
@@ -33424,168 +33145,6 @@ msgctxt ""
msgid "Data_E (expected)"
msgstr ""
-#. M2NhH
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2952876\n"
-"help.text"
-msgid "1"
-msgstr ""
-
-#. mEBPP
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2959279\n"
-"help.text"
-msgid "<item type=\"input\">195</item>"
-msgstr "<item type=\"input\">195</item>"
-
-#. dToZL
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2949105\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. EWS97
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2949922\n"
-"help.text"
-msgid "2"
-msgstr ""
-
-#. DWkBk
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2948621\n"
-"help.text"
-msgid "<item type=\"input\">151</item>"
-msgstr "<item type=\"input\">151</item>"
-
-#. DEGVA
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2948987\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. Wwt2C
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2949417\n"
-"help.text"
-msgid "3"
-msgstr ""
-
-#. 7qHtk
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2948661\n"
-"help.text"
-msgid "<item type=\"input\">148</item>"
-msgstr "<item type=\"input\">148</item>"
-
-#. Ked6Y
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2951128\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. BSjh8
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2948467\n"
-"help.text"
-msgid "4"
-msgstr ""
-
-#. te7qv
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2949237\n"
-"help.text"
-msgid "<item type=\"input\">189</item>"
-msgstr "<item type=\"input\">189</item>"
-
-#. HHXxw
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2945304\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. wEAU9
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2949927\n"
-"help.text"
-msgid "5"
-msgstr ""
-
-#. 5PwZu
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2950630\n"
-"help.text"
-msgid "<item type=\"input\">183</item>"
-msgstr "<item type=\"input\">183</item>"
-
-#. GCF9s
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2950423\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
-#. 4mWE7
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2943275\n"
-"help.text"
-msgid "6"
-msgstr ""
-
-#. BkDtt
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2944750\n"
-"help.text"
-msgid "<item type=\"input\">154</item>"
-msgstr "<item type=\"input\">154</item>"
-
-#. a278z
-#: 04060181.xhp
-msgctxt ""
-"04060181.xhp\n"
-"par_id2953947\n"
-"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "<item type=\"input\">170</item>"
-
#. CCSNU
#: 04060181.xhp
msgctxt ""
@@ -42973,14 +42532,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/scalc/ui/functionpanel/insert\">Inserts the selected function into the document.</ahelp>"
msgstr ""
-#. CHa3i
+#. fMNek
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
"tit\n"
"help.text"
-msgid "Link to External Data"
-msgstr "Saite uz ārējiem datiem"
+msgid "External Links"
+msgstr ""
#. Fnwpz
#: 04090000.xhp
@@ -42991,14 +42550,14 @@ msgctxt ""
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 ""
-#. kcfuM
+#. rGHoi
#: 04090000.xhp
msgctxt ""
"04090000.xhp\n"
"hd_id3145785\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Link to External Data</link>"
-msgstr "<link href=\"text/scalc/01/04090000.xhp\" name=\"Ārējie dati\">Saite uz ārējiem datiem</link>"
+msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">External Links</link>"
+msgstr ""
#. SaAut
#: 04090000.xhp
@@ -45358,22 +44917,31 @@ msgctxt ""
msgid "Conditional Formatting"
msgstr "Formatēšana ar nosacījumu"
-#. wjrDJ
+#. qb52L
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "<variable id=\"bedingtetext\"><ahelp hid=\".\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. There are several types of conditional formatting that can be used."
+msgid "<variable id=\"bedingtetext\"><ahelp hid=\".\">Use <emph>Conditional Formatting</emph> to define range-based conditions that determine which cell style will be applied to each cell in a given range based on its contents.</ahelp></variable> The cell style corresponding to the first condition that evaluates to <emph>true</emph> is applied. Cell styles applied through Conditional Formatting override cell styles applied manually using the <link href=\"text/scalc/main0202.xhp\" name=\"FormattingBar_link\"><emph>Formatting Bar</emph></link> or the <emph>Styles</emph> sidebar."
msgstr ""
-#. aG8CH
+#. 2GWTv
#: 05120000.xhp
msgctxt ""
"05120000.xhp\n"
"par_id3163711\n"
"help.text"
-msgid "You can enter several conditions that query the contents of cell values or formulas. The conditions are evaluated from the first to the last. If the condition 1 matches the condition, the defined style will be used. Otherwise, condition 2 is evaluated, and its defined style is used. If this style does not match, then the next condition is evaluated and so on."
+msgid "You can enter several conditions that query the cell values or results of formulas. The conditions are evaluated from first to the last. If <emph>Condition 1</emph> is true based on the current cell contents, the corresponding cell style is applied. Otherwise, <emph>Condition 2</emph> is evaluated to determine if its corresponding style will be applied. If none of the conditions match cell contents, then no changes are made to the cell format."
+msgstr ""
+
+#. GNdvU
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id431642031216368\n"
+"help.text"
+msgid "Conditional formats do no overwrite cell styles and direct formatting applied manually. They remain saved as cell properties and are applied when the cell matches no conditions or when you remove all conditional formats."
msgstr ""
#. AMXCn
@@ -53161,6 +52729,132 @@ msgctxt ""
msgid "<ahelp hid=\".\">Commands to calculate formula cells.</ahelp>"
msgstr ""
+#. 9AbDs
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"tit\n"
+"help.text"
+msgid "Calculation Accuracy"
+msgstr ""
+
+#. 8Bv3f
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"bm_id741642020503366\n"
+"help.text"
+msgid "<bookmark_value>calculation;accuracy</bookmark_value> <bookmark_value>precision;calculation</bookmark_value>"
+msgstr ""
+
+#. 4gPte
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"hd_id961642017927878\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/calculation_accuracy.xhp\" name=\"accuracy\">%PRODUCTNAME Calculation Accuracy</link>"
+msgstr ""
+
+#. sW5fH
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"hd_id941642017968835\n"
+"help.text"
+msgid "Inherent Accuracy Problem"
+msgstr ""
+
+#. hov7p
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id541642018071800\n"
+"help.text"
+msgid "%PRODUCTNAME Calc, just like most other spreadsheet software, uses floating-point math capabilities available on hardware. Given that most contemporary hardware uses binary floating-point arithmetic with limited precision defined in <link href=\"https://en.wikipedia.org/wiki/IEEE_754\" name=\"IEEE754\">IEEE 754</link> standard, many decimal numbers - including as simple as 0.1 - cannot be precisely represented in %PRODUCTNAME Calc (which uses 64-bit double-precision numbers internally)."
+msgstr ""
+
+#. YPbto
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id191642019423811\n"
+"help.text"
+msgid "Calculations with those numbers necessarily <link href=\"https://en.wikipedia.org/wiki/Floating-point_arithmetic#Accuracy_problems\" name=\"wpediaaccuracy\">results in rounding errors</link>, and those accumulate with every calculation."
+msgstr ""
+
+#. dvRFz
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id221642019437175\n"
+"help.text"
+msgid "This is not a bug, but is expected and currently unavoidable without using complex calculations in software, which would incur inappropriate performance penalties, and thus is out of question. Users need to account for that, and use rounding and comparisons with <link href=\"https://en.wikipedia.org/wiki/Machine_epsilon\" name=\"macnie_epsilon\">machine epsilon (or unit roundoff)</link> as necessary."
+msgstr ""
+
+#. ncGy5
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id801642019531438\n"
+"help.text"
+msgid "An example with numbers:"
+msgstr ""
+
+#. BpnPy
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id761642018318896\n"
+"help.text"
+msgid "This will result in -999.129999999997 in A3, instead of expected -999.13 (you might need to increase shown decimal places in cell format to see this)."
+msgstr ""
+
+#. kDcn9
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id221642020132399\n"
+"help.text"
+msgid "An example with dates and times:"
+msgstr ""
+
+#. aWCYz
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id801642018326882\n"
+"help.text"
+msgid "Due to the specific of time representation in Calc, this also applies to all calculations involving times. For example, the cells A1 and A2 below show the date and time data as entered (in ISO 8601 format):"
+msgstr ""
+
+#. rcuhc
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id101643312991679\n"
+"help.text"
+msgid "Cell A3 will show 00:10:00 if the default formatting [HH]:MM:SS is applied to the cell. However, cell A3 will show 00:09:59.999999 instead of expected 00:10:00.000000 if formatted using [HH]:MM:SS.000000 format string. This happens despite only whole numbers of hours and minutes were used, because internally, any time is a fraction of a day, 12:00 (noon) being represented as 0.5."
+msgstr ""
+
+#. EZjhJ
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id921642020011065\n"
+"help.text"
+msgid "The data in A1 is represented internally as 43934.5125, and in A2 as 43934.5055555555591126903891563 (which is not exact representation of the entered datetime, which would be 43934.505555555555555555...)."
+msgstr ""
+
+#. QY6Ti
+#: calculation_accuracy.xhp
+msgctxt ""
+"calculation_accuracy.xhp\n"
+"par_id801642020017858\n"
+"help.text"
+msgid "Their subtraction results in 0.00694444443287037, a value slightly less than expected 0.00694444444444..., which is 10 minutes."
+msgstr ""
+
#. J8xZD
#: cell_styles.xhp
msgctxt ""
@@ -53215,6 +52909,24 @@ msgctxt ""
msgid "Examples"
msgstr ""
+#. XAFa7
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"hd_id301640873452726\n"
+"help.text"
+msgid "Technical information"
+msgstr ""
+
+#. 7AVhU
+#: common_func.xhp
+msgctxt ""
+"common_func.xhp\n"
+"par_id251640873774457\n"
+"help.text"
+msgid "This function is not part of the <emph>Open Document Format for Office Applications (OpenDocument) Version 1.3. Part 4: Recalculated Formula (OpenFormula) Format</emph> standard. The name space is"
+msgstr ""
+
#. STMGF
#: common_func.xhp
msgctxt ""
@@ -54376,22 +54088,22 @@ msgctxt ""
msgid "<emph>values (mandatory):</emph> A numeric array or range. <emph>values</emph> are the historical values, for which you want to forecast the next points."
msgstr ""
-#. qBdZB
+#. S6DPQ
#: exponsmooth_embd.xhp
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id0403201618594553\n"
"help.text"
-msgid "<emph>timeline (mandatory):</emph> A numeric array or range. The time line (x-value) range for the historical values."
+msgid "<emph>timeline (mandatory):</emph> A numeric array or range. The timeline (x-value) range for the historical values."
msgstr ""
-#. wE7cv
+#. Re7Cm
#: exponsmooth_embd.xhp
msgctxt ""
"exponsmooth_embd.xhp\n"
"par_id040320161859450\n"
"help.text"
-msgid "The time line doesn't have to to be sorted, the functions will sort it for calculations. <br/>The time line values must have a consistent step between them. <br/>If a constant step can't be identified in the sorted time line, the functions will return the #NUM! error. <br/>If the ranges of the time line and historical values aren't of same size, the functions will return the #N/A error.<br/>If the time line contains less than 2 periods of data, the functions will return the #VALUE! Error."
+msgid "The timeline does not have to be sorted, the functions will sort it for calculations.<br/>The timeline values must have a consistent step between them.<br/>If a constant step cannot be identified in the sorted timeline, the functions will return the #NUM! error.<br/>If the ranges of both the timeline and the historical values are not the same size, the functions will return the #N/A error.<br/>If the timeline contains fewer than 2 data periods, the functions will return the #VALUE! error."
msgstr ""
#. AbNWD
@@ -58057,6 +57769,15 @@ msgctxt ""
msgid "Torr"
msgstr ""
+#. CNDuZ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id911641306487164\n"
+"help.text"
+msgid "1 - The \"at\" unit is deprecated. Use \"atm\" instead."
+msgstr ""
+
#. vWzBh
#: func_convert.xhp
msgctxt ""
@@ -58606,6 +58327,15 @@ msgctxt ""
msgid "Cubic yard"
msgstr ""
+#. EsueL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id671641306535516\n"
+"help.text"
+msgid "2 - These units are not part of the <emph>Open Document Format for Office Applications (OpenDocument) Version 1.3. Part 4: Recalculated Formula (OpenFormula) Format</emph> standard for the CONVERT function. They are preserved for backward compatibility."
+msgstr ""
+
#. ej2DE
#: func_convert.xhp
msgctxt ""
@@ -59020,13 +58750,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_DATEDIF\">This function returns the number of whole days, months or years between Start date and End date.</ahelp>"
msgstr ""
-#. hDLZF
+#. zRWUX
#: func_datedif.xhp
msgctxt ""
"func_datedif.xhp\n"
-"par_id3150474\n"
+"par_id531642776283977\n"
"help.text"
-msgid "DATEDIF(Start date; End date; Interval)"
+msgid "<input>DATEDIF(Start date; End date; Interval)</input>"
msgstr ""
#. CMjse
@@ -59047,13 +58777,13 @@ msgctxt ""
msgid "<emph>End date</emph> is the date until the calculation is carried out. End date must be later, than Start date."
msgstr ""
-#. FH5g5
+#. PZGXK
#: func_datedif.xhp
msgctxt ""
"func_datedif.xhp\n"
"par_id3153183\n"
"help.text"
-msgid "<emph>Interval</emph> is a string, accepted values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
+msgid "<emph>Interval</emph> is a string that determines how the difference will be calculated. Possible values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\" regardless of the current language settings."
msgstr ""
#. Lxgdp
@@ -60676,14 +60406,14 @@ msgctxt ""
msgid "<bookmark_value>FORECAST.ETS.MULT function</bookmark_value>"
msgstr "<bookmark_value>FORECAST.ETS.MULT funkcija</bookmark_value>"
-#. GByS5
+#. LnXao
#: func_forecastetsmult.xhp
msgctxt ""
"func_forecastetsmult.xhp\n"
"hd_id0603201610022291\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_forecastetsmult.xhp\"> FORECAST.ETS.MULT Function</link>"
-msgstr "<link href=\"text/scalc/01/func_forecastetsmult.xhp\">FORECAST.ETS.MULT funkcija</link>"
+msgid "<link href=\"text/scalc/01/func_forecastetsmult.xhp\">FORECAST.ETS.MULT Function</link>"
+msgstr ""
#. tYAjY
#: func_forecastetsmult.xhp
@@ -64150,13 +63880,13 @@ msgctxt ""
msgid "<bookmark_value>rawsubtract;subtraction</bookmark_value> <bookmark_value>RAWSUBTRACT function</bookmark_value>"
msgstr ""
-#. fYK6C
+#. e3VEx
#: func_rawsubtract.xhp
msgctxt ""
"func_rawsubtract.xhp\n"
"hd_2016112109231\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_rawsubtract.xhp\">RAWSUBTRACT</link>"
+msgid "<variable id=\"rawsubtracth1\"><link href=\"text/scalc/01/func_rawsubtract.xhp\">RAWSUBTRACT</link></variable>"
msgstr ""
#. CoCx7
@@ -64609,6 +64339,132 @@ msgctxt ""
msgid "<input>=ROMAN(0)</input> returns \"\" (empty text)."
msgstr ""
+#. aU68a
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"tit\n"
+"help.text"
+msgid "ROUNDDOWN function"
+msgstr ""
+
+#. riRPe
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"bm_id3156384\n"
+"help.text"
+msgid "<bookmark_value>ROUNDDOWN function</bookmark_value> <bookmark_value>numbers;rounding down</bookmark_value>"
+msgstr ""
+
+#. sroq5
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"hd_id601641846107898\n"
+"help.text"
+msgid "<variable id=\"rounddown_h1\"><link href=\"text/scalc/01/func_rounddown.xhp\" name=\"rounddown_link\">ROUNDDOWN function</link></variable>"
+msgstr ""
+
+#. dFaB6
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id841641927277474\n"
+"help.text"
+msgid "Rounds down a number while keeping a specified number of decimal digits."
+msgstr ""
+
+#. gchGZ
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id701642530512560\n"
+"help.text"
+msgid "This function is equivalent to the <link href=\"text/scalc/01/func_trunc.xhp\" name=\"TRUNC_link\">TRUNC function</link>."
+msgstr ""
+
+#. soLKp
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id341641927560587\n"
+"help.text"
+msgid "<input>ROUNDDOWN(Number [; Count])</input>"
+msgstr ""
+
+#. zMhAG
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id11641927688319\n"
+"help.text"
+msgid "<emph>Number:</emph> The number to be rounded down."
+msgstr ""
+
+#. CkVAE
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id861641927715672\n"
+"help.text"
+msgid "<emph>Count:</emph> Optional parameter that defines the number of decimal places to be kept. The default value is 0 (zero)."
+msgstr ""
+
+#. rJEFs
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id911641928545976\n"
+"help.text"
+msgid "Use negative values for <emph>Count</emph> to round the integer part of the original <emph>Number</emph>. For example, -1 will round down the first integer number before the decimal separator, -2 will round down the two integer numbers before the decimal separator, and so forth."
+msgstr ""
+
+#. WfEbN
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id181641929609906\n"
+"help.text"
+msgid "In %PRODUCTNAME the <emph>Count</emph> parameter is optional whereas in MS Excel this parameter is mandatory. When an ODS file contains a call to ROUNDDOWN without the <emph>Count</emph> parameter and the file is exported to XLS or XLSX formats, the missing argument will automatically be added with value zero to maintain compatibility."
+msgstr ""
+
+#. BCmT8
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id901641928192870\n"
+"help.text"
+msgid "<input>=ROUNDDOWN(21.89)</input> returns 21. Note that this example uses the default value for <emph>Count</emph> which is 0."
+msgstr ""
+
+#. aGJYK
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id901641928192110\n"
+"help.text"
+msgid "<input>=ROUNDDOWN(103.37,1)</input> returns 103.3."
+msgstr ""
+
+#. bzN7A
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id171641928456743\n"
+"help.text"
+msgid "<input>=ROUNDDOWN(0.664,2)</input> returns 0.66."
+msgstr ""
+
+#. e4fx9
+#: func_rounddown.xhp
+msgctxt ""
+"func_rounddown.xhp\n"
+"par_id641641928712287\n"
+"help.text"
+msgid "<input>=ROUNDDOWN(214.2,-1)</input> returns 210. Note the negative value for <emph>Count</emph>, which causes the first integer value before the decimal separator to be rounded towards zero."
+msgstr ""
+
#. E7heY
#: func_roundsig.xhp
msgctxt ""
@@ -64627,13 +64483,13 @@ msgctxt ""
msgid "<bookmark_value>ROUNDSIG Function</bookmark_value>"
msgstr ""
-#. jcZEL
+#. UCpWh
#: func_roundsig.xhp
msgctxt ""
"func_roundsig.xhp\n"
"hd_id351519154702177\n"
"help.text"
-msgid "<link href=\"text/scalc/01/func_roundsig.xhp\" name=\"command name\">ROUNDSIG</link>"
+msgid "<link href=\"text/scalc/01/func_roundsig.xhp\" name=\"function roundsig\">ROUNDSIG</link>"
msgstr ""
#. jJKBA
@@ -65725,6 +65581,132 @@ msgctxt ""
msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
msgstr ""
+#. Y2uYG
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"tit\n"
+"help.text"
+msgid "TRUNC function"
+msgstr ""
+
+#. UkBEB
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"bm_id3156384\n"
+"help.text"
+msgid "<bookmark_value>TRUNC function</bookmark_value> <bookmark_value>decimal places;cutting off</bookmark_value> <bookmark_value>numbers;truncate</bookmark_value>"
+msgstr ""
+
+#. CQ5Zg
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"hd_id601641846107898\n"
+"help.text"
+msgid "<variable id=\"trunc_h1\"><link href=\"text/scalc/01/func_trunc.xhp\" name=\"trunc_link\">TRUNC function</link></variable>"
+msgstr ""
+
+#. dkTrh
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id841641927277474\n"
+"help.text"
+msgid "Truncates a number while keeping a specified number of decimal digits."
+msgstr ""
+
+#. Hxed7
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id701642530512560\n"
+"help.text"
+msgid "This function is equivalent to the <link href=\"text/scalc/01/func_rounddown.xhp\" name=\"ROUNDDOWN_link\">ROUNDDOWN function</link>."
+msgstr ""
+
+#. oZAWU
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id321641927458888\n"
+"help.text"
+msgid "The rounding method used by this function is known as <emph>rounding towards zero</emph>. The resulting number will always be smaller than or equal to the original number."
+msgstr ""
+
+#. SqCQv
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id341641927560587\n"
+"help.text"
+msgid "<input>TRUNC(Number [; Count])</input>"
+msgstr ""
+
+#. RryDW
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id11641927688319\n"
+"help.text"
+msgid "<emph>Number:</emph> The number to be truncated."
+msgstr ""
+
+#. Hg6mt
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id861641927715672\n"
+"help.text"
+msgid "<emph>Count:</emph> Optional parameter that defines the number of decimal places to be kept. The default value is 0 (zero)."
+msgstr ""
+
+#. HKrSh
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id911641928545976\n"
+"help.text"
+msgid "Use negative values for <emph>Count</emph> to round the integer part of the original <emph>Number</emph>. For example, -1 will round down the first integer number before the decimal separator, -2 will round down the two integer numbers before the decimal separator, and so forth."
+msgstr ""
+
+#. EJFZd
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id901641928192870\n"
+"help.text"
+msgid "<input>=TRUNC(21.89)</input> returns 21. Note that this example uses the default value for <emph>Count</emph> which is 0."
+msgstr ""
+
+#. ccEGa
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id901641928192110\n"
+"help.text"
+msgid "<input>=TRUNC(103.37,1)</input> returns 103.3."
+msgstr ""
+
+#. jJvgo
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id171641928456743\n"
+"help.text"
+msgid "<input>=TRUNC(0.664,2)</input> returns 0.66."
+msgstr ""
+
+#. Qf3R9
+#: func_trunc.xhp
+msgctxt ""
+"func_trunc.xhp\n"
+"par_id641641928712287\n"
+"help.text"
+msgid "<input>=TRUNC(214.2,-1)</input> returns 210. Note the negative value for <emph>Count</emph>, which causes the first integer value before the decimal separator to be rounded towards zero."
+msgstr ""
+
#. w86Dm
#: func_value.xhp
msgctxt ""
@@ -67363,13 +67345,157 @@ msgctxt ""
msgid "<ahelp hid=\".\"><variable id=\"streams_desc\">Create live data streams for spreadsheets.</variable></ahelp>"
msgstr ""
-#. Zsu3z
+#. GmNXG
#: live_data_stream.xhp
msgctxt ""
"live_data_stream.xhp\n"
"par_id240920171007389295\n"
"help.text"
-msgid "Menu <menuitem>Data – Streams...</menuitem>"
+msgid "Choose <menuitem>Data – Streams</menuitem>"
+msgstr ""
+
+#. aV8Lc
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id221641995264796\n"
+"help.text"
+msgid "Data streaming is the continuous flow of data generated by various sources. In %PRODUCTNAME Calc, data streams can be processed, stored, analyzed, and acted upon as it's generated in real-time."
+msgstr ""
+
+#. KANFG
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id831641996045238\n"
+"help.text"
+msgid "Some real-life examples of streaming data include use cases in every industry, including real-time stock trades, up-to-the-minute retail inventory management, social media feeds, multiplayer game interactions, and ride-sharing apps."
+msgstr ""
+
+#. sWHpE
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id791641995257145\n"
+"help.text"
+msgid "Source stream"
+msgstr ""
+
+#. dyVdA
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id931641998122172\n"
+"help.text"
+msgid "URL"
+msgstr ""
+
+#. oYvgF
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id31641995269740\n"
+"help.text"
+msgid "URL of the source document in the local file system or internet."
+msgstr ""
+
+#. 3Bdbh
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id811641996480534\n"
+"help.text"
+msgid "Interpret stream data as"
+msgstr ""
+
+#. QpvTc
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id591641996318461\n"
+"help.text"
+msgid "<emph>value1,value2,...,valueN, and fill into range</emph>:"
+msgstr ""
+
+#. iB5Fv
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id441641996322078\n"
+"help.text"
+msgid "<emph>address,value</emph>:"
+msgstr ""
+
+#. JYyrF
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id241641998151807\n"
+"help.text"
+msgid "Empty lines trigger UI refresh"
+msgstr ""
+
+#. CEui4
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id341641995330350\n"
+"help.text"
+msgid "When new data arrives"
+msgstr ""
+
+#. snU6R
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id731641995339462\n"
+"help.text"
+msgid "There are three features of this option:"
+msgstr ""
+
+#. GLs5t
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id471641995370002\n"
+"help.text"
+msgid "<emph>Move existing data down</emph>: the existing data is moved down in index and the empty space is filled by arriving data. In short, we deal in fix range of indexes."
+msgstr ""
+
+#. nfgHU
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id841641995386510\n"
+"help.text"
+msgid "<emph>Move the range down</emph>: the arriving data is appended at the end of existing data and range of indexes to be processed is shifted."
+msgstr ""
+
+#. 4zg6F
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id1001641996559358\n"
+"help.text"
+msgid "<emph>Overwrite existing data</emph>: the arriving data overrides the existing data."
+msgstr ""
+
+#. ZHiEZ
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"hd_id121641995404922\n"
+"help.text"
+msgid "Maximal Amount of Rows"
+msgstr ""
+
+#. GTkWu
+#: live_data_stream.xhp
+msgctxt ""
+"live_data_stream.xhp\n"
+"par_id961641995414472\n"
+"help.text"
+msgid "Limit the maximum numbers of rows to a specified value or leave undefined, but limited to the %PRODUCTNAME Calc row limit."
msgstr ""
#. k7H5Y
diff --git a/source/lv/helpcontent2/source/text/scalc/05.po b/source/lv/helpcontent2/source/text/scalc/05.po
index c85aef35c45..d456f8284c9 100644
--- a/source/lv/helpcontent2/source/text/scalc/05.po
+++ b/source/lv/helpcontent2/source/text/scalc/05.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-27 12:31+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-09-03 13:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -430,13 +430,13 @@ msgctxt ""
msgid "519<br/>#VALUE!"
msgstr ""
-#. ESdqW
+#. c9Gyw
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3155954\n"
"help.text"
-msgid "No result (instead of Err:519 cell displays #VALUE!)"
+msgid "No value (instead of Err:519 cell displays #VALUE!)"
msgstr ""
#. cf6oh
@@ -529,13 +529,13 @@ msgctxt ""
msgid "524<br/>#REF!"
msgstr ""
-#. ioqDF
+#. aHB3e
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3154634\n"
"help.text"
-msgid "invalid references (instead of Err:524 cell displays #REF!)"
+msgid "Not a valid reference (instead of Err:524 cell displays #REF!)"
msgstr ""
#. iGGQE
diff --git a/source/lv/helpcontent2/source/text/scalc/guide.po b/source/lv/helpcontent2/source/text/scalc/guide.po
index 3008be6d22c..db57c398691 100644
--- a/source/lv/helpcontent2/source/text/scalc/guide.po
+++ b/source/lv/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-25 12:48+0200\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1870,13 +1870,13 @@ msgctxt ""
msgid "Area Selection"
msgstr "Apgabala izvēle"
-#. CB8nY
+#. y55CS
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
"par_id2011780\n"
"help.text"
-msgid "Use drag-and-drop to select the area where you want to input values. But start dragging from the last cell of the area and release the mouse button when you have selected the first cell. Now you can start to input values. Always press the Tab key to advance to the next cell. You will not leave the selected area."
+msgid "Select the area where you want to input values. Now you can start to input values from the cursor position in the selected area. Press the <keycode>Tab</keycode> key to advance to the next cell or <keycode>Shift</keycode> + <keycode>Tab</keycode> to move backward. At the edges of the selected area the tab key jumps inside the selected area. You will not leave the selected area."
msgstr ""
#. HbCtq
@@ -1888,13 +1888,13 @@ msgctxt ""
msgid "<image id=\"img_id2811365\" src=\"media/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">area selection</alt></image>"
msgstr ""
-#. Lgtau
+#. CCcpp
#: cell_enter.xhp
msgctxt ""
"cell_enter.xhp\n"
"par_id3232520\n"
"help.text"
-msgid "Select the area from E7 to B3. Now B3 is waiting for your input. Press Tab to advance to the next cell within the selected area."
+msgid "Select the area from B3 to E7. Now B3 is waiting for your input. Press <keycode>Tab</keycode> to advance to the next cell within the selected area."
msgstr ""
#. pbEDF
@@ -2635,13 +2635,13 @@ msgctxt ""
msgid "In a $[officename] Calc document, position the cursor in the cell into which you want to insert the external data."
msgstr ""
-#. HRaaG
+#. 5JKBf
#: cellreferences_url.xhp
msgctxt ""
"cellreferences_url.xhp\n"
"par_id3145384\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Sheet - Link to External Data</item>. The <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">External Data</item></link> dialog appears."
+msgid "Choose <item type=\"menuitem\">Sheet - External Links</item>. The <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">External Data</item></link> dialog appears."
msgstr ""
#. EQzxX
@@ -13363,13 +13363,13 @@ msgctxt ""
msgid "Set the cell cursor at the cell where the new content will be inserted."
msgstr ""
-#. AFBCH
+#. SCn3P
#: webquery.xhp
msgctxt ""
"webquery.xhp\n"
"par_id3145750\n"
"help.text"
-msgid "Choose <emph>Sheet - Link to External Data</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
+msgid "Choose <emph>Sheet - External Links</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
msgstr ""
#. AGj3g
diff --git a/source/lv/helpcontent2/source/text/sdatabase.po b/source/lv/helpcontent2/source/text/sdatabase.po
index 86748e23fa2..6102fa4fb68 100644
--- a/source/lv/helpcontent2/source/text/sdatabase.po
+++ b/source/lv/helpcontent2/source/text/sdatabase.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-19 15:44+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2785,13 +2785,13 @@ msgctxt ""
msgid "Natural"
msgstr ""
-#. 44FEn
+#. jNw6g
#: 02010101.xhp
msgctxt ""
"02010101.xhp\n"
"par_id0305200912031977\n"
"help.text"
-msgid "<ahelp hid=\".\">In a natural join, the keyword NATURAL in inserted into the SQL statement that defines the relation. The relation joins all columns that have the same column name in both tables. The resulting joined table contains only one column for each pair of equally named columns.</ahelp>"
+msgid "<ahelp hid=\".\">In a natural join, the keyword NATURAL is inserted into the SQL statement that defines the relation. The relation joins all columns that have the same column name in both tables. The resulting joined table contains only one column for each pair of equally named columns.</ahelp>"
msgstr ""
#. pK6MV
@@ -7825,15 +7825,6 @@ msgctxt ""
msgid "<link href=\"text/sdatabase/dabawiz02access.xhp\">Set up Microsoft Access or Microsoft Access 2007 connection</link>"
msgstr ""
-#. NCWx8
-#: dabawiz01.xhp
-msgctxt ""
-"dabawiz01.xhp\n"
-"par_idN1063A\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">Set up LDAP connection</link>"
-msgstr ""
-
#. 6qgTE
#: dabawiz01.xhp
msgctxt ""
@@ -9067,6 +9058,150 @@ msgctxt ""
msgid "<link href=\"text/sdatabase/dabawiz03auth.xhp\">Authentication</link>"
msgstr ""
+#. MBZfJ
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"tit\n"
+"help.text"
+msgid "PostgreSQL Connection"
+msgstr ""
+
+#. JBJjz
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"bm_id861587404584956\n"
+"help.text"
+msgid "<bookmark_value>PostgreSQL settings (Base)</bookmark_value>"
+msgstr ""
+
+#. e9apS
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"hd_id971643043442131\n"
+"help.text"
+msgid "<variable id=\"pgsqlh1\"><link href=\"text/sdatabase/dabawiz02pgsql.xhp\" name=\"pgconnection\">PostgreSQL Connection</link></variable>"
+msgstr ""
+
+#. mReEM
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id811643043442133\n"
+"help.text"
+msgid "Specifies the options for connecting to PostgreSQL databases."
+msgstr ""
+
+#. Chhvj
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"hd_id321643044241406\n"
+"help.text"
+msgid "DBMS/driver-specific connection string"
+msgstr ""
+
+#. Tb6Ng
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id341643044249556\n"
+"help.text"
+msgid "Enter the driver specific connection string. The connection string is sequence of keyword/value pairs separated by spaces. For example"
+msgstr ""
+
+#. wHmxd
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id471643044279530\n"
+"help.text"
+msgid "<literal>dbname=MyDatabase host=myHost port=5432</literal>"
+msgstr ""
+
+#. HCUdA
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id301643045873140\n"
+"help.text"
+msgid "where"
+msgstr ""
+
+#. okKGB
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id511643044303340\n"
+"help.text"
+msgid "<emph>dbname</emph>: the name of the database hosted in the DBMS server."
+msgstr ""
+
+#. 4GHUU
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id331643044364699\n"
+"help.text"
+msgid "<emph>host</emph>: the fully qualified name of the RDBMS server"
+msgstr ""
+
+#. 2gktB
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id931643044367236\n"
+"help.text"
+msgid "<emph>port</emph>: the server port. The default port for PostgreSQL is 5432."
+msgstr ""
+
+#. GYeTa
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id421643049901759\n"
+"help.text"
+msgid "You can also enter the connection string as"
+msgstr ""
+
+#. qAHKg
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id51643050033680\n"
+"help.text"
+msgid "<literal>postgresql://myHost:port/MyDatabase</literal>."
+msgstr ""
+
+#. J8uHf
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id71643046088031\n"
+"help.text"
+msgid "Refer to the database server administrator for the correct values of the keywords passed in the connection string. Values for <emph>user=</emph> and <emph>password=</emph> are ignored but will be requested at connection time."
+msgstr ""
+
+#. bsUA3
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id131643048856194\n"
+"help.text"
+msgid "The connection string is displayed in the %PRODUCTNAME Base status bar."
+msgstr ""
+
+#. FupET
+#: dabawiz02pgsql.xhp
+msgctxt ""
+"dabawiz02pgsql.xhp\n"
+"par_id571643046067450\n"
+"help.text"
+msgid "List of all keyword/value pairs for <link href=\"https://www.postgresql.org/docs/13/libpq-connect.html#LIBPQ-PARAMKEYWORDS\" name=\"PG13keywords\">PostgreSQL 13</link> connection string. Not every pair is handled by the %PRODUCTNAME driver manager."
+msgstr ""
+
#. XoiBM
#: dabawiz02spreadsheet.xhp
msgctxt ""
@@ -10201,13 +10336,13 @@ msgctxt ""
msgid "Report"
msgstr ""
-#. MT4CQ
+#. jiTyY
#: menuinsert.xhp
msgctxt ""
"menuinsert.xhp\n"
"par_idN1058F\n"
"help.text"
-msgid "<ahelp hid=\".\">Starts the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> window for the selected table, view, or query.</ahelp>"
+msgid "<ahelp hid=\".\">Starts the <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link> window for the selected table, view, or query.</ahelp>"
msgstr ""
#. 99GPr
@@ -10705,6 +10840,2931 @@ msgctxt ""
msgid "<ahelp hid=\".\">Refreshes the tables. </ahelp>"
msgstr ""
+#. kyYMn
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"tit\n"
+"help.text"
+msgid "Migrate Macros"
+msgstr ""
+
+#. KDtEB
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"bm_id6009095\n"
+"help.text"
+msgid "<bookmark_value>wizards;macros (Base)</bookmark_value> <bookmark_value>Macro Wizard (Base)</bookmark_value> <bookmark_value>macros;attaching new (Base)</bookmark_value> <bookmark_value>migrating macros (Base)</bookmark_value>"
+msgstr ""
+
+#. tjLuE
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"hd_id0112200902353472\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/migrate_macros.xhp\">Migrate Macros</link>"
+msgstr ""
+
+#. xMVrd
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0112200902353466\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Database Document Macro Migration Wizard moves existing macros from sub-documents of an old Base file into the new Base file's macro storage area.</ahelp>"
+msgstr ""
+
+#. ajASD
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0224200911454780\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose a location and file name to save the new database file. By default, the new file gets the same name as the old file, while the old file gets renamed with the string \"backup\" in the name.</ahelp>"
+msgstr ""
+
+#. M7aSL
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id022420091145472\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">The list shows all changes that were applied to the database file.</ahelp>"
+msgstr ""
+
+#. hee9q
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0112200902353542\n"
+"help.text"
+msgid "Previously, macros have been allowed to reside only in the text sub-documents of forms and reports. Now macros can also be stored in the Base file itself. This means that macros in Base files can be called now from any of its sub-components: forms, reports, table design, query design, relation design, table data view."
+msgstr ""
+
+#. DhC2o
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0112200903075865\n"
+"help.text"
+msgid "However, it is technically not possible to store macros both in a Base file and in its sub-documents at the same time. So, if you want to attach some new macros to the Base file, while retaining any existing old macros that were stored in the sub-documents, you must move the existing old macros up to the Base file's macro storage area."
+msgstr ""
+
+#. mtCb7
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0112200903075830\n"
+"help.text"
+msgid "The Database Document Macro Migration Wizard can move the macros up into the Base file's storage area. You can then examine the macros and edit them as needed."
+msgstr ""
+
+#. RJUfX
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0112200903075951\n"
+"help.text"
+msgid "For example, it is possible that macros from the sub-documents had the same module names and macro names. After you moved the macros into one common macro storage area, you must edit the macros to make the names unique. The wizard cannot do this."
+msgstr ""
+
+#. pSFRn
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0112200903075915\n"
+"help.text"
+msgid "The wizard can backup the Base file to another folder of your choice. The wizard changes the original Base file. The backup remains unchanged."
+msgstr ""
+
+#. WCGZK
+#: migrate_macros.xhp
+msgctxt ""
+"migrate_macros.xhp\n"
+"par_id0112200902353554\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Macros_in_Database_Documents\" name=\"wiki.documentfoundation.org Macros in Database Documents\">An in depth explanation by the developers (Wiki).</link>"
+msgstr ""
+
+#. WG9NH
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"tit\n"
+"help.text"
+msgid "User Name and Password Required"
+msgstr ""
+
+#. WekVB
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"par_idN10541\n"
+"help.text"
+msgid "User Name and Password Required"
+msgstr ""
+
+#. LCLTp
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"par_idN1054D\n"
+"help.text"
+msgid "User name"
+msgstr ""
+
+#. Rx3tD
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"par_idN10551\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the user name to connect to the data source.</ahelp>"
+msgstr ""
+
+#. dQH7s
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "Password"
+msgstr ""
+
+#. dqjRr
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"par_idN1056C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the password to connect to the data source.</ahelp>"
+msgstr ""
+
+#. TudyG
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"par_idN10583\n"
+"help.text"
+msgid "Remember password till end of session"
+msgstr ""
+
+#. KYrgJ
+#: password.xhp
+msgctxt ""
+"password.xhp\n"
+"par_idN10587\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to use the same user name and password without further dialog, when you connect again to the same data source in the current %PRODUCTNAME session.</ahelp>"
+msgstr ""
+
+#. EWAYC
+#: querywizard00.xhp
+msgctxt ""
+"querywizard00.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard"
+msgstr ""
+
+#. VGUsH
+#: querywizard00.xhp
+msgctxt ""
+"querywizard00.xhp\n"
+"par_idN1054C\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard00.xhp\">Query Wizard</link>"
+msgstr ""
+
+#. 7eeqf
+#: querywizard00.xhp
+msgctxt ""
+"querywizard00.xhp\n"
+"par_idN1055C\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Query Wizard helps you to design a database query.</ahelp> The saved query can be called later, either from the graphical user interface, or using the automatically created SQL language command."
+msgstr ""
+
+#. SCN34
+#: querywizard00.xhp
+msgctxt ""
+"querywizard00.xhp\n"
+"par_idN105D2\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard01.xhp\" name=\"Query Wizard - Field Selection\">Query Wizard - Field selection</link>"
+msgstr ""
+
+#. qKgrF
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Field Selection"
+msgstr ""
+
+#. ago2e
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"par_idN10546\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard01.xhp\">Query Wizard - Field Selection</link>"
+msgstr ""
+
+#. zvnWy
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Specifies the table to create the query, and specifies which fields you wish to include in the query."
+msgstr ""
+
+#. bjRCe
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"par_idN10559\n"
+"help.text"
+msgid "Tables"
+msgstr ""
+
+#. RBgge
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"par_idN1055D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the table for which the query is to be created.</ahelp>"
+msgstr ""
+
+#. BFXtZ
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"par_idN10590\n"
+"help.text"
+msgid "Fields in the Query"
+msgstr ""
+
+#. n6cwc
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"par_idN10594\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays all fields that will be included in the new query.</ahelp>"
+msgstr ""
+
+#. MJBo8
+#: querywizard01.xhp
+msgctxt ""
+"querywizard01.xhp\n"
+"par_idN10597\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard02.xhp\" name=\"Query Wizard - Sorting order\">Query Wizard - Sorting order</link>"
+msgstr ""
+
+#. T7jwS
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Sorting Order"
+msgstr ""
+
+#. 6jtTb
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN10543\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard02.xhp\">Query Wizard - Sorting Order</link>"
+msgstr ""
+
+#. hv6wL
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN10553\n"
+"help.text"
+msgid "Specifies the sorting order for the data records in your query."
+msgstr ""
+
+#. eVr57
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Sort by"
+msgstr ""
+
+#. CRtP3
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN105B2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the field by which the created query is sorted.</ahelp>"
+msgstr ""
+
+#. xUjcF
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN1055C\n"
+"help.text"
+msgid "Ascending"
+msgstr ""
+
+#. aSXt6
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN105BF\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to sort in alphabetically or numerically ascending order.</ahelp>"
+msgstr ""
+
+#. pR3aG
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN10562\n"
+"help.text"
+msgid "Descending"
+msgstr ""
+
+#. 9BtoZ
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN105CC\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to sort in alphabetically or numerically descending order.</ahelp>"
+msgstr ""
+
+#. 6U4wS
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "And then by"
+msgstr ""
+
+#. CqmF3
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN105D9\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies additional fields by which the created query is sorted, if previous sort fields are equal.</ahelp>"
+msgstr ""
+
+#. pEGB3
+#: querywizard02.xhp
+msgctxt ""
+"querywizard02.xhp\n"
+"par_idN1056E\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard03.xhp\" name=\"Query Wizard - Search conditions\">Query Wizard - Search conditions</link>"
+msgstr ""
+
+#. Ezdjv
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Search Conditions"
+msgstr ""
+
+#. usSAE
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN10543\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard03.xhp\">Query Wizard - Search Conditions</link>"
+msgstr ""
+
+#. Axn74
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN10553\n"
+"help.text"
+msgid "Specifies the search conditions to filter the query."
+msgstr ""
+
+#. MBS9h
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Match all of the following"
+msgstr ""
+
+#. eGvAt
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN105B2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to filter the query by all the conditions using a logical AND.</ahelp>"
+msgstr ""
+
+#. mowq3
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN1055C\n"
+"help.text"
+msgid "Match any of the following"
+msgstr ""
+
+#. m9DAv
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN105BF\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to filter the query by any of the conditions using a logical OR.</ahelp>"
+msgstr ""
+
+#. YzKAZ
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN10562\n"
+"help.text"
+msgid "Field"
+msgstr ""
+
+#. zJBqq
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN105CC\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the field name for the filter condition.</ahelp>"
+msgstr ""
+
+#. cpBwd
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "Condition"
+msgstr ""
+
+#. FRFQM
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN105D9\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the condition for the filter.</ahelp>"
+msgstr ""
+
+#. dF2FF
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN1056E\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. ZKEEw
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN105E6\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the value for the filter condition.</ahelp>"
+msgstr ""
+
+#. huAnr
+#: querywizard03.xhp
+msgctxt ""
+"querywizard03.xhp\n"
+"par_idN10574\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard04.xhp\" name=\"Query Wizard - Detail or Summary\">Query Wizard - Detail or summary</link>"
+msgstr ""
+
+#. AFtfc
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Detail or Summary"
+msgstr ""
+
+#. He5oE
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN10543\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard04.xhp\">Query Wizard - Detail or Summary</link>"
+msgstr ""
+
+#. pvdAU
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN10553\n"
+"help.text"
+msgid "Specifies whether to display all records of the query, or only the results of aggregate functions."
+msgstr ""
+
+#. GNBdc
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "This page is only displayed when there are numerical fields in the query that allow the use of aggregate functions."
+msgstr ""
+
+#. LAhTk
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN10559\n"
+"help.text"
+msgid "Detailed query"
+msgstr ""
+
+#. aXtmP
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105BD\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to show all records of the query.</ahelp>"
+msgstr ""
+
+#. h7yp9
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105C2\n"
+"help.text"
+msgid "Summary query"
+msgstr ""
+
+#. 4VMFu
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105C8\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to show only results of aggregate functions.</ahelp>"
+msgstr ""
+
+#. CEC9y
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105D7\n"
+"help.text"
+msgid "Select the aggregate function and the field name of the numeric field in the list box. You can enter as many aggregate functions as you want, one in each row of controls."
+msgstr ""
+
+#. QCySK
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN1055D\n"
+"help.text"
+msgid "Aggregate function"
+msgstr ""
+
+#. H3vuB
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105E4\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the aggregate function.</ahelp>"
+msgstr ""
+
+#. 7VBHB
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105DD\n"
+"help.text"
+msgid "Field name"
+msgstr ""
+
+#. DhcSj
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN10656\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the numeric field name.</ahelp>"
+msgstr ""
+
+#. 2fBzx
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105E7\n"
+"help.text"
+msgid "+"
+msgstr ""
+
+#. hM5kP
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105FE\n"
+"help.text"
+msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
+msgstr ""
+
+#. psHk4
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN105F1\n"
+"help.text"
+msgid "−"
+msgstr ""
+
+#. MYCN9
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN1060B\n"
+"help.text"
+msgid "<ahelp hid=\".\">Removes the last row of controls.</ahelp>"
+msgstr ""
+
+#. 95hsW
+#: querywizard04.xhp
+msgctxt ""
+"querywizard04.xhp\n"
+"par_idN1060E\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard05.xhp\" name=\"Query Wizard - Grouping\">Query Wizard - Grouping</link>"
+msgstr ""
+
+#. d4Arr
+#: querywizard05.xhp
+msgctxt ""
+"querywizard05.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Grouping"
+msgstr ""
+
+#. kwKJA
+#: querywizard05.xhp
+msgctxt ""
+"querywizard05.xhp\n"
+"par_idN10546\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard05.xhp\">Query Wizard - Grouping</link>"
+msgstr ""
+
+#. yimYQ
+#: querywizard05.xhp
+msgctxt ""
+"querywizard05.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Specifies whether to group the query. The data source must support the SQL statement \"Group by clauses\" to enable this page of the Wizard."
+msgstr ""
+
+#. BEcEC
+#: querywizard05.xhp
+msgctxt ""
+"querywizard05.xhp\n"
+"par_idN10589\n"
+"help.text"
+msgid "Group by"
+msgstr ""
+
+#. XSPcc
+#: querywizard05.xhp
+msgctxt ""
+"querywizard05.xhp\n"
+"par_idN1058D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays all fields that are to be used to group the query.</ahelp>"
+msgstr ""
+
+#. bebrL
+#: querywizard05.xhp
+msgctxt ""
+"querywizard05.xhp\n"
+"par_idN10590\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard06.xhp\" name=\"Query Wizard - Grouping conditions\">Query Wizard - Grouping conditions</link>"
+msgstr ""
+
+#. FJyRe
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Grouping Conditions"
+msgstr ""
+
+#. rvBec
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10546\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard06.xhp\">Query Wizard - Grouping Conditions</link>"
+msgstr ""
+
+#. isYHF
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Specifies the conditions to group the query. The data source must support the SQL statement \"Group by clauses\" to enable this page of the Wizard."
+msgstr ""
+
+#. E2hjZ
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10559\n"
+"help.text"
+msgid "Match all of the following"
+msgstr ""
+
+#. tsdNz
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN1055D\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to group the query by all the conditions using a logical AND.</ahelp>"
+msgstr ""
+
+#. vG7ub
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10560\n"
+"help.text"
+msgid "Match any of the following"
+msgstr ""
+
+#. H4kNz
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10564\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to group the query by any of the conditions using a logical OR.</ahelp>"
+msgstr ""
+
+#. CRQPr
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10567\n"
+"help.text"
+msgid "Field name"
+msgstr ""
+
+#. AUDUW
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN1056B\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the field name for the grouping condition.</ahelp>"
+msgstr ""
+
+#. vYSzM
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN1056E\n"
+"help.text"
+msgid "Condition"
+msgstr ""
+
+#. VHAhf
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10572\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the condition for the grouping.</ahelp>"
+msgstr ""
+
+#. LYZYG
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10575\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. GBywN
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN10579\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the value for the grouping condition.</ahelp>"
+msgstr ""
+
+#. tg3CC
+#: querywizard06.xhp
+msgctxt ""
+"querywizard06.xhp\n"
+"par_idN1057C\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard07.xhp\" name=\"Query Wizard - Aliases\">Query Wizard - Aliases</link>"
+msgstr ""
+
+#. LGziG
+#: querywizard07.xhp
+msgctxt ""
+"querywizard07.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Aliases"
+msgstr ""
+
+#. dCG5v
+#: querywizard07.xhp
+msgctxt ""
+"querywizard07.xhp\n"
+"par_idN10543\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard07.xhp\">Query Wizard - Aliases</link>"
+msgstr ""
+
+#. 8qMru
+#: querywizard07.xhp
+msgctxt ""
+"querywizard07.xhp\n"
+"par_idN10553\n"
+"help.text"
+msgid "Assigns aliases to field names. Aliases are optional, and can provide more user-friendly names, which are displayed in place of field names. For example, an alias can be used when fields from different tables have the same name."
+msgstr ""
+
+#. GKQBZ
+#: querywizard07.xhp
+msgctxt ""
+"querywizard07.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Alias"
+msgstr ""
+
+#. TiaDt
+#: querywizard07.xhp
+msgctxt ""
+"querywizard07.xhp\n"
+"par_idN1055A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the alias for the field name.</ahelp>"
+msgstr ""
+
+#. cHhQS
+#: querywizard07.xhp
+msgctxt ""
+"querywizard07.xhp\n"
+"par_idN1055D\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard08.xhp\" name=\"Query Wizard - Overview\">Query Wizard - Overview</link>"
+msgstr ""
+
+#. ZD37L
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Wizard - Overview"
+msgstr ""
+
+#. eZifq
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN10543\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard08.xhp\">Query Wizard - Overview</link>"
+msgstr ""
+
+#. Eugc7
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN10553\n"
+"help.text"
+msgid "Enter a name of the query, and specify whether you want to display or to modify the query after the Wizard is finished."
+msgstr ""
+
+#. zjCxf
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN10556\n"
+"help.text"
+msgid "Name of the query"
+msgstr ""
+
+#. ZLJYh
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN1055A\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the name of the query.</ahelp>"
+msgstr ""
+
+#. uC9Qc
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN1055D\n"
+"help.text"
+msgid "Display query"
+msgstr ""
+
+#. BJa3G
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN10561\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to save and display the query.</ahelp>"
+msgstr ""
+
+#. yN4FB
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN10564\n"
+"help.text"
+msgid "Modify query"
+msgstr ""
+
+#. VKpNF
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN10568\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select to save the query and open it for editing.</ahelp>"
+msgstr ""
+
+#. 3ww32
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN1056B\n"
+"help.text"
+msgid "Overview"
+msgstr ""
+
+#. SfUBA
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays a summary of the query.</ahelp>"
+msgstr ""
+
+#. 8k8Fx
+#: querywizard08.xhp
+msgctxt ""
+"querywizard08.xhp\n"
+"par_idN10572\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/querywizard00.xhp\" name=\"Query Wizard\">Query Wizard</link>"
+msgstr ""
+
+#. Us2de
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"tit\n"
+"help.text"
+msgid "Date and Time"
+msgstr ""
+
+#. eDaHU
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"hd_id2320932\n"
+"help.text"
+msgid "<variable id=\"rep_datetime\"><link href=\"text/sdatabase/rep_datetime.xhp\">Date and Time</link></variable>"
+msgstr ""
+
+#. DrUB4
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id8638874\n"
+"help.text"
+msgid "<ahelp hid=\".\">You can open the Date and Time dialog of the <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">Insert - Date and Time</item>.</ahelp>"
+msgstr ""
+
+#. tSLyd
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id6278878\n"
+"help.text"
+msgid "Press <item type=\"keycode\">Shift-F1</item> and point with the mouse at an input box to see a help text for this input box."
+msgstr ""
+
+#. ppg4k
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id393078\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enable Include Date to insert a date field into the active area of the report. The date field displays the current date when the report is executed.</ahelp>"
+msgstr ""
+
+#. 6ued5
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id1271401\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a format to display the date.</ahelp>"
+msgstr ""
+
+#. VvPJF
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id8718832\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enable Include Time to insert a time field into the active area of the report. The time field displays the current time when the report is executed.</ahelp>"
+msgstr ""
+
+#. DfCAA
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id8561052\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a format to display the time.</ahelp>"
+msgstr ""
+
+#. cVAzu
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id5992919\n"
+"help.text"
+msgid "Click OK to insert the field."
+msgstr ""
+
+#. WFpF6
+#: rep_datetime.xhp
+msgctxt ""
+"rep_datetime.xhp\n"
+"par_id4320810\n"
+"help.text"
+msgid "You can click the date or time field and drag to another position within the same area, or edit the properties in the Properties window."
+msgstr ""
+
+#. DCjDN
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Fields"
+msgstr ""
+
+#. DiU2a
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"bm_id61540566967968\n"
+"help.text"
+msgid "<bookmark_value>insert fields;in report design</bookmark_value> <bookmark_value>add fields;in report design</bookmark_value> <bookmark_value>report design;add fields to report</bookmark_value>"
+msgstr ""
+
+#. ZSrFy
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"hd_id361540562942432\n"
+"help.text"
+msgid "<variable id=\"addfields\"><link href=\"text/sdatabase/rep_insertfield.xhp\" name=\"Add Fields\">Add fields to report</link></variable>"
+msgstr ""
+
+#. zFCzB
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id3587145\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Add Field window helps you to insert the table entries in the report.</ahelp>"
+msgstr ""
+
+#. dzGbq
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id4503921\n"
+"help.text"
+msgid "The Add Field window is shown automatically when you have selected a table in the Contents box and leave that box."
+msgstr ""
+
+#. hQDBC
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id171540674707522\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">View - Add Field</item>."
+msgstr ""
+
+#. hxBBt
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id991540674901837\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/cmd/lc_addfield.svg\" id=\"img_id621540674901837\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id491540674901837\">Add field icon</alt></image>"
+msgstr ""
+
+#. oEoAE
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id121540674874655\n"
+"help.text"
+msgid "Click the Add Field icon on the toolbar."
+msgstr ""
+
+#. BqWBD
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id141540563922693\n"
+"help.text"
+msgid "Select the field in the Add Field dialog and click <emph>Insert</emph>. You can select multiple fields pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking on the fields name or using the Shift key while pressing the mouse button. Click <emph>Insert</emph> in the toolbar to add the fields to the report."
+msgstr ""
+
+#. BGjjH
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id4051026\n"
+"help.text"
+msgid "Drag and drop the field names one by one from the Add Field window into the Detail area of the report. Position the fields as you like. Use the icons in the toolbars to align the fields."
+msgstr ""
+
+#. Hk568
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id3397320\n"
+"help.text"
+msgid "It is not possible to overlap the fields. If you drop a table field on the Detail area, then a label and a text box are inserted."
+msgstr ""
+
+#. RGprC
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id3059785\n"
+"help.text"
+msgid "You can also insert text that should be the same on every page of the report. Click the Label Field icon <image id=\"img_id5605334\" src=\"media/icon-themes/cmd/lc_addfield.svg\" width=\"0.566cm\" height=\"0.566cm\" localize=\"true\"><alt id=\"alt_id5605334\">Icon</alt></image>, then drag a rectangle in the Page Header or Page Footer area. Edit the Label property to show the text you want."
+msgstr ""
+
+#. VjpkA
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"hd_id251540563929787\n"
+"help.text"
+msgid "Sorting fields names"
+msgstr ""
+
+#. pNfxS
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id651540564204840\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/cmd/sc_sortascending.svg\" id=\"img_id631540564204841\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id141540564204841\">Sort Ascending icon</alt></image>"
+msgstr ""
+
+#. EfMFi
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id401540563992665\n"
+"help.text"
+msgid "Sort names ascending."
+msgstr ""
+
+#. 9jVwk
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id811540564184191\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/cmd/sc_sortdescending.svg\" id=\"img_id391540564184192\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id571540564184192\">Sort descending icon</alt></image>"
+msgstr ""
+
+#. BEcwL
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id401540563942665\n"
+"help.text"
+msgid "Sort names descending,"
+msgstr ""
+
+#. GRKuP
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id851540564212907\n"
+"help.text"
+msgid "<image src=\"media/icon-themes/cmd/lc_removefiltersort.svg\" id=\"img_id41540564212907\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id421540564212908\">Undo sorting icon</alt></image>"
+msgstr ""
+
+#. DVAm8
+#: rep_insertfield.xhp
+msgctxt ""
+"rep_insertfield.xhp\n"
+"par_id401540533942665\n"
+"help.text"
+msgid "Restore original sorting"
+msgstr ""
+
+#. gCECo
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"tit\n"
+"help.text"
+msgid "Report Builder"
+msgstr ""
+
+#. Yyb28
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"bm_id1614429\n"
+"help.text"
+msgid "<bookmark_value>Report Builder</bookmark_value> <bookmark_value>Oracle Report Builder</bookmark_value>"
+msgstr ""
+
+#. DouuB
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"hd_id8773155\n"
+"help.text"
+msgid "<variable id=\"rep_main\"><link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link></variable>"
+msgstr ""
+
+#. tcUx2
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id5248573\n"
+"help.text"
+msgid "The Report Builder is a tool to create your own database reports. Unlike with the <link href=\"text/shared/autopi/01100000.xhp\">Report Wizard</link>, using the Report Builder you can take control to design the report the way you want. The generated report is a Writer document that you can edit, too."
+msgstr ""
+
+#. kCCcM
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7128818\n"
+"help.text"
+msgid "To use the Report Builder, the Java Runtime Environment (JRE) software must be installed, and this software must be selected in %PRODUCTNAME."
+msgstr ""
+
+#. MUFG8
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"hd_id556047\n"
+"help.text"
+msgid "To install the JRE software"
+msgstr ""
+
+#. CTy58
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id4515823\n"
+"help.text"
+msgid "The Report Builder requires an installed Java Runtime Environment (JRE)."
+msgstr ""
+
+#. t42Ud
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id4044312\n"
+"help.text"
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/java.xhp\">Advanced</link>."
+msgstr ""
+
+#. bGABC
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id1369060\n"
+"help.text"
+msgid "Wait up to one minute, while %PRODUCTNAME collects information on installed Java software on your system."
+msgstr ""
+
+#. oxLT3
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id860927\n"
+"help.text"
+msgid "If a recent JRE version is found on your system, you see an entry in the list."
+msgstr ""
+
+#. 87xW7
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id8581804\n"
+"help.text"
+msgid "Click the option button in front of the entry to enable this JRE version for use in %PRODUCTNAME."
+msgstr ""
+
+#. KmqC6
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7730033\n"
+"help.text"
+msgid "Ensure that <emph>Use a Java runtime environment</emph> is enabled."
+msgstr ""
+
+#. oeX8D
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id6317636\n"
+"help.text"
+msgid "If no JRE version is found on your system, open your web browser and download the JRE software from <link href=\"http://www.java.com\">http://www.java.com</link>. Install the JRE software. Then restart %PRODUCTNAME and open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced again."
+msgstr ""
+
+#. 87hJD
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"hd_id9759514\n"
+"help.text"
+msgid "To open the Report Builder"
+msgstr ""
+
+#. TxLZj
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id9076509\n"
+"help.text"
+msgid "Open a Base file or create a new database. The database must contain at least one table with at least one data field and a primary key field."
+msgstr ""
+
+#. NiuEf
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7050691\n"
+"help.text"
+msgid "Click the Reports icon in the Base window, then choose Create Report in Design View."
+msgstr ""
+
+#. u7db8
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7118747\n"
+"help.text"
+msgid "The Report Builder window opens."
+msgstr ""
+
+#. eC7Ku
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id8283639\n"
+"help.text"
+msgid "The Report Builder is divided into three parts. On the top you see the menu, with the toolbars below."
+msgstr ""
+
+#. FZucS
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2291024\n"
+"help.text"
+msgid "On the right you see the Properties window with the property values of the currently selected object."
+msgstr ""
+
+#. 9iUTs
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2100589\n"
+"help.text"
+msgid "The left part of the Report Builder window shows the Report Builder view. The Report Builder view is initially divided into three sections, from top to bottom:"
+msgstr ""
+
+#. bpA2e
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id5022125\n"
+"help.text"
+msgid "<emph>Page Header</emph> - drag control fields with fixed text into the Page Header area"
+msgstr ""
+
+#. TcX6C
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id6844386\n"
+"help.text"
+msgid "<emph>Detail</emph> - drag and drop database fields into the Detail area"
+msgstr ""
+
+#. k3qgL
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7018646\n"
+"help.text"
+msgid "<emph>Page Footer</emph> - drag control fields with fixed text into the Page Footer area"
+msgstr ""
+
+#. GbMdT
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id5857112\n"
+"help.text"
+msgid "To insert an additional <emph>Report Header</emph> and <emph>Report Footer</emph> area choose <item type=\"menuitem\">Edit - Insert Report Header/Footer</item>. These areas contain text that appears at the start and end of the whole report."
+msgstr ""
+
+#. cvEuz
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id6042664\n"
+"help.text"
+msgid "Click the \"-\" icon in front of an area name to collapse that area to one line in the Report Builder view. The \"-\" icon changes to a \"+\" icon, and you can click this to expand the area again."
+msgstr ""
+
+#. NCMdn
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id1589098\n"
+"help.text"
+msgid "You insert database fields by drag-and-drop into the Detail area. See the section \"To insert fields into the report\" below."
+msgstr ""
+
+#. 3dx6B
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id1278420\n"
+"help.text"
+msgid "In addition, you can click the Label Field or Text Box icon in the toolbar, then drag a rectangle in the Page Header or Page Footer area, to define a text that is the same on all pages. You enter the text in the Label box of the corresponding Properties window. You can also add graphics by using the Graphics icon."
+msgstr ""
+
+#. 25GDr
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7479476\n"
+"help.text"
+msgid "To connect the report to a database table"
+msgstr ""
+
+#. TuFVF
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2218390\n"
+"help.text"
+msgid "Move the mouse to the Properties view. You see two tab pages General and Data."
+msgstr ""
+
+#. WdBn9
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7771538\n"
+"help.text"
+msgid "On the Data tab page, click Content to open the combo box."
+msgstr ""
+
+#. UKbEt
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id366527\n"
+"help.text"
+msgid "Select the table for that you want to create the report."
+msgstr ""
+
+#. NzJzg
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7996459\n"
+"help.text"
+msgid "After selecting the table, press the Tab key to leave the Content box."
+msgstr ""
+
+#. vmDAS
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2531815\n"
+"help.text"
+msgid "The <link href=\"text/sdatabase/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window opens automatically and shows all fields of the selected table."
+msgstr ""
+
+#. vsFKB
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7657399\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the left margin of the area.</ahelp>"
+msgstr ""
+
+#. BqG3G
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id8925138\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the right margin of the area.</ahelp>"
+msgstr ""
+
+#. UcCYH
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id5461897\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the top margin of the area.</ahelp>"
+msgstr ""
+
+#. gDxeY
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id8919339\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the bottom margin of the area.</ahelp>"
+msgstr ""
+
+#. nNfGG
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id4634235\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the smallest width.</ahelp>"
+msgstr ""
+
+#. GuD9F
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id1393475\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the smallest height.</ahelp>"
+msgstr ""
+
+#. NAFEu
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id6571550\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the greatest width.</ahelp>"
+msgstr ""
+
+#. ssdFE
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id5376140\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the greatest height.</ahelp>"
+msgstr ""
+
+#. yLQm4
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id9611499\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a horizontal line to the current area.</ahelp>"
+msgstr ""
+
+#. XVFTm
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id6765953\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a vertical line to the current area.</ahelp>"
+msgstr ""
+
+#. 5gYXB
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id0409200922242612\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shrinks the selected section to remove top and bottom empty space.</ahelp>"
+msgstr ""
+
+#. K9bij
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id0409200922242617\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shrinks the selected section to remove top empty space.</ahelp>"
+msgstr ""
+
+#. S4vSt
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id0409200922242661\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shrinks the selected section to remove bottom empty space.</ahelp>"
+msgstr ""
+
+#. bFTYS
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id1511581\n"
+"help.text"
+msgid "After inserting fields in the Detail view, the report is ready for execution."
+msgstr ""
+
+#. j9t2k
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id4881740\n"
+"help.text"
+msgid "To execute a report"
+msgstr ""
+
+#. FtAeF
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id8286385\n"
+"help.text"
+msgid "Click the Execute Report icon on the toolbar."
+msgstr ""
+
+#. QxSrq
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id341642784887818\n"
+"help.text"
+msgid "<image src=\"cmd/sc_executereport.svg\" id=\"img_id181642784887819\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id561642784887821\">Execute Report icon</alt></image>"
+msgstr ""
+
+#. FRApC
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id71642784887822\n"
+"help.text"
+msgid "Execute Report icon"
+msgstr ""
+
+#. EbwoS
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2354197\n"
+"help.text"
+msgid "A Writer document opens and shows the report you have created, which contains all values of the database table which you have insert."
+msgstr ""
+
+#. CCUrN
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2485122\n"
+"help.text"
+msgid "If the database contents did change, execute the report again to update the result report."
+msgstr ""
+
+#. XrBwB
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"hd_id8746910\n"
+"help.text"
+msgid "To edit a report"
+msgstr ""
+
+#. GinFd
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id9636524\n"
+"help.text"
+msgid "First decide if you want to edit the generated report, which is a static Writer document, or if you want to edit the Report Builder view and then generate a new report based on the new design."
+msgstr ""
+
+#. awMUn
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id5941648\n"
+"help.text"
+msgid "The Writer document is opened read-only. To edit the Writer document, click <emph>Edit Document</emph> on the information bar, or choose <emph>Edit - Edit Mode</emph>."
+msgstr ""
+
+#. G2dAA
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id8307138\n"
+"help.text"
+msgid "If you want to edit the Report Builder view, you can change some of its properties."
+msgstr ""
+
+#. XYvED
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7138889\n"
+"help.text"
+msgid "Click in the Details area. Then in the Properties window, change some properties, for example the background color."
+msgstr ""
+
+#. YbHaF
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id9869380\n"
+"help.text"
+msgid "After finishing, click the Execute Report icon to create a new report."
+msgstr ""
+
+#. h2c39
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id12512\n"
+"help.text"
+msgid "If you close the Report Builder, you will be asked if the report should be saved. Click Yes, give the report a name, and click OK."
+msgstr ""
+
+#. T8vuS
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2676168\n"
+"help.text"
+msgid "Sorting the report"
+msgstr ""
+
+#. Cg7RE
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2626422\n"
+"help.text"
+msgid "Without sorting or grouping, the records will be inserted into the report in the order in which they are retrieved from the database."
+msgstr ""
+
+#. ZgBCK
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id1743827\n"
+"help.text"
+msgid "Open the Report Builder view and click the Sorting and Grouping icon on the toolbar. You see the <link href=\"text/sdatabase/rep_sort.xhp\">Sorting and Grouping</link> dialog."
+msgstr ""
+
+#. rZjJB
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id241642785406292\n"
+"help.text"
+msgid "<image id=\"img_id9557786\" src=\"cmd/sc_dbsortingandgrouping.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id9557786\">Icon Sort and Grouping</alt></image>"
+msgstr ""
+
+#. EcCrC
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id81642785406296\n"
+"help.text"
+msgid "Icon Sort and Grouping"
+msgstr ""
+
+#. 35NvQ
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id4331797\n"
+"help.text"
+msgid "In the Groups box, click the field which you want as the first sort field, and set the Sorting property."
+msgstr ""
+
+#. heWc5
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id4191717\n"
+"help.text"
+msgid "Execute the report."
+msgstr ""
+
+#. FoAAB
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id2318796\n"
+"help.text"
+msgid "Grouping"
+msgstr ""
+
+#. gBGNE
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id399182\n"
+"help.text"
+msgid "Open the Report Builder view and click the Sorting and Grouping icon on the toolbar. You see the <link href=\"text/sdatabase/rep_sort.xhp\">Sorting and Grouping</link> dialog."
+msgstr ""
+
+#. zfuDw
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7588732\n"
+"help.text"
+msgid "In the Groups box, open the Group Header list box and select to show a group header."
+msgstr ""
+
+#. 6BQtB
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id95828\n"
+"help.text"
+msgid "Click the Add Field icon to open the Add Field window."
+msgstr ""
+
+#. VbSz2
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id911642785710911\n"
+"help.text"
+msgid "<image id=\"Graphic3\" src=\"cmd/sc_addfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_\">Icon Add Field</alt></image>"
+msgstr ""
+
+#. CKwKa
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id831642785710915\n"
+"help.text"
+msgid "Icon Add Field"
+msgstr ""
+
+#. WyQ6C
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id5675527\n"
+"help.text"
+msgid "Drag-and-drop the field entry that you want to group into the group header section. Then drag-and-drop the remaining fields into the Detail section."
+msgstr ""
+
+#. GscG2
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id3496200\n"
+"help.text"
+msgid "Execute the report. The report shows the grouped records."
+msgstr ""
+
+#. dLiAY
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7599108\n"
+"help.text"
+msgid "If you like to sort and group, open the Report Builder view, then open the Sorting and Grouping dialog. Select to show a Group Header for the fields that you want to group, and select to hide the Group Header for the fields that you want to be sorted. Close the Sorting and Grouping window and execute the report."
+msgstr ""
+
+#. WGFAC
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id888698\n"
+"help.text"
+msgid "Updating and printing your data"
+msgstr ""
+
+#. 9CfYU
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id3394573\n"
+"help.text"
+msgid "When you insert some new data or edit data in the table, a new report will show the updated data."
+msgstr ""
+
+#. WBEpS
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id7594225\n"
+"help.text"
+msgid "Click the Reports icon and double-click your last saved report. A new Writer document will be created which shows the new data."
+msgstr ""
+
+#. UFpr2
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id191642785888796\n"
+"help.text"
+msgid "<image id=\"img_id4678487\" src=\"dbaccess/res/reports_32.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id4678487\">Icon Reports</alt></image>"
+msgstr ""
+
+#. DseWN
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id701642785888800\n"
+"help.text"
+msgid "Icon Reports"
+msgstr ""
+
+#. Kp54P
+#: rep_main.xhp
+msgctxt ""
+"rep_main.xhp\n"
+"par_id8147221\n"
+"help.text"
+msgid "To print a report, choose <item type=\"menuitem\">File - Print</item> from the Writer document."
+msgstr ""
+
+#. AnAta
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"tit\n"
+"help.text"
+msgid "Report Navigator"
+msgstr ""
+
+#. 6utJF
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"bm_id5823847\n"
+"help.text"
+msgid "<bookmark_value>formulas in reports;editing</bookmark_value><bookmark_value>functions in reports;editing</bookmark_value>"
+msgstr ""
+
+#. ruhgL
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"hd_id1821955\n"
+"help.text"
+msgid "<variable id=\"rep_navigator\"><link href=\"text/sdatabase/rep_navigator.xhp\">Report Navigator</link></variable>"
+msgstr ""
+
+#. 7hD99
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id1150852\n"
+"help.text"
+msgid "You can open the Report Navigator window of the <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">View - Report Navigator</item>."
+msgstr ""
+
+#. hBVny
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id1111484\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Report Navigator reveals the structure of the report. You can use the Report Navigator to insert functions into the report.</ahelp>"
+msgstr ""
+
+#. LJxNC
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id8314157\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click an entry in the Report Navigator. The corresponding object or area is selected in the Report Builder view. Right-click an entry to open the context menu.</ahelp>"
+msgstr ""
+
+#. prLAV
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"hd_id2932828\n"
+"help.text"
+msgid "To enter functions to the report"
+msgstr ""
+
+#. CSJFz
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id5091708\n"
+"help.text"
+msgid "<ahelp hid=\".\">In the context menu of the Report Navigator, you see the same commands as in the Report Builder view, plus additional commands to create new functions or to delete them.</ahelp>"
+msgstr ""
+
+#. TVyh8
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id9449446\n"
+"help.text"
+msgid "Functions can be entered using a syntax as specified by the <link href=\"https://en.wikipedia.org/wiki/OpenFormula\" name=\"English Wikipedia: OpenFormula\">OpenFormula</link> proposal."
+msgstr ""
+
+#. 3GfjV
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id4095583\n"
+"help.text"
+msgid "See <link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wiki page about Base</link> for some more help regarding the functions in a report."
+msgstr ""
+
+#. 2spAx
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"hd_id311593\n"
+"help.text"
+msgid "To calculate a sum for each client"
+msgstr ""
+
+#. zGU9C
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id3948789\n"
+"help.text"
+msgid "Open the Report Navigator."
+msgstr ""
+
+#. FSYuv
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id5391399\n"
+"help.text"
+msgid "Open the Groups entry and the group where you want to calculate the cost."
+msgstr ""
+
+#. bP94U
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id6989654\n"
+"help.text"
+msgid "The group has a sub entry called functions."
+msgstr ""
+
+#. FbfyS
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id1803643\n"
+"help.text"
+msgid "Open the context menu (right click) on the functions entry, choose to create a new function, and select it."
+msgstr ""
+
+#. hTbw9
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id868251\n"
+"help.text"
+msgid "In the property browser you see the function."
+msgstr ""
+
+#. KBn87
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id6247749\n"
+"help.text"
+msgid "Change the name to e.g. CostCalc and the formula to [CostCalc] + [enter your cost column name]."
+msgstr ""
+
+#. y2cwk
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id1565904\n"
+"help.text"
+msgid "In the initial value enter 0."
+msgstr ""
+
+#. RkdrZ
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id1569261\n"
+"help.text"
+msgid "Now you can insert a text field and bind it to your [CostCalc] (appears in the data field list box)."
+msgstr ""
+
+#. utdSG
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id9256874\n"
+"help.text"
+msgid "Maybe you have to set the initial value to the value of the field like [field]."
+msgstr ""
+
+#. Hp4tF
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id4601886\n"
+"help.text"
+msgid "If there are blank fields in the cost column, use the following formula to replace the blank fields' content with zero:"
+msgstr ""
+
+#. Dzpam
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id1754509\n"
+"help.text"
+msgid "[SumCost] + IF(ISBLANK([field]);0;[field])"
+msgstr ""
+
+#. tGCiz
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id8122196\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the formula that defines the function. Use OpenFormula syntax.</ahelp>"
+msgstr ""
+
+#. mTZGY
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id9909665\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the initial value for the evaluation of the formula. Often this is set to 0 or to 1.</ahelp>"
+msgstr ""
+
+#. qEtTN
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id9141819\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If Deep traversing is enabled, functions are evaluated considering all lower levels of hierarchy. This would be used for instance for line numbering. If Deep traversing is not enabled, only the first level of hierarchy is evaluated.</ahelp>"
+msgstr ""
+
+#. XGkHa
+#: rep_navigator.xhp
+msgctxt ""
+"rep_navigator.xhp\n"
+"par_id6354869\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If Pre evaluation is enabled, functions are evaluated only when the report is finished.</ahelp>"
+msgstr ""
+
+#. nNgrq
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"tit\n"
+"help.text"
+msgid "Page Numbers"
+msgstr ""
+
+#. nTPmB
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"hd_id3674123\n"
+"help.text"
+msgid "<variable id=\"rep_pagenumbers\"><link href=\"text/sdatabase/rep_pagenumbers.xhp\">Page Numbers</link></variable>"
+msgstr ""
+
+#. oPnyT
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id3424481\n"
+"help.text"
+msgid "<ahelp hid=\".\">You can open the Page Numbers dialog of the <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">Insert - Page Numbers</item>.</ahelp>"
+msgstr ""
+
+#. ygaGw
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id1068758\n"
+"help.text"
+msgid "Press <item type=\"keycode\">Shift-F1</item> and point with the mouse at an input box to see a help text for this input box."
+msgstr ""
+
+#. Cz9Sk
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id1559190\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Page N</ahelp>"
+msgstr ""
+
+#. rcaDS
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id9879146\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Page N of M</ahelp>"
+msgstr ""
+
+#. tDDwG
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id9404278\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Top of Page (Header)</ahelp>"
+msgstr ""
+
+#. dvqcL
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id7626880\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Bottom of Page (Footer)</ahelp>"
+msgstr ""
+
+#. XRZPh
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id6124149\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Alignment</ahelp>"
+msgstr ""
+
+#. horox
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id8257087\n"
+"help.text"
+msgid "Select the format for the page numbers, either \"Page N\" or \"Page N of M\", where N stands for the current page number, and M for the total number of pages in the report."
+msgstr ""
+
+#. 84Dct
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id3479415\n"
+"help.text"
+msgid "Select to show the page numbers in the Page Header area or in the Page Footer area."
+msgstr ""
+
+#. GxdrQ
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id4441663\n"
+"help.text"
+msgid "Select an alignment. By default the page numbers are centered between the left and right margins. You can align the field to the left or right. You can also select Inside to print page number on odd pages on the left side and even page numbers on the right side. Select Outside for the opposite alignment."
+msgstr ""
+
+#. MJV32
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id3012176\n"
+"help.text"
+msgid "When you click OK, a data field for the page numbers is inserted. If no header or footer area exist, the area will be created as needed."
+msgstr ""
+
+#. 6QnRv
+#: rep_pagenumbers.xhp
+msgctxt ""
+"rep_pagenumbers.xhp\n"
+"par_id8532670\n"
+"help.text"
+msgid "You can click the data field and drag to another position within the same area, or edit the properties in the Properties window."
+msgstr ""
+
+#. 7uNv6
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"tit\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. CEY5D
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"hd_id8836939\n"
+"help.text"
+msgid "<variable id=\"rep_prop\"><link href=\"text/sdatabase/rep_prop.xhp\">Properties</link></variable>"
+msgstr ""
+
+#. yQEzY
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id2711264\n"
+"help.text"
+msgid "The Properties window of the <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link> always shows the properties of the currently selected object in the Report Builder view."
+msgstr ""
+
+#. hiDZo
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id1080660\n"
+"help.text"
+msgid "Press Shift-F1 and point with the mouse at an input box to see a help text for this input box."
+msgstr ""
+
+#. WFv9q
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7175817\n"
+"help.text"
+msgid "On first start of the Report Builder, the Properties window shows the <emph>Data</emph> tab page for the whole report."
+msgstr ""
+
+#. khEAx
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id9895931\n"
+"help.text"
+msgid "Select a table from the Contents list, then press Tab or click outside the input box to leave the input box."
+msgstr ""
+
+#. krzKx
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id3587145\n"
+"help.text"
+msgid "<ahelp hid=\".\">The <link href=\"text/sdatabase/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose <item type=\"menuitem\">View - Add Field</item>.</ahelp>"
+msgstr ""
+
+#. 5BJS6
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id6993926\n"
+"help.text"
+msgid "The <emph>General</emph> tab page can be used to change the name of the report, and to disable the Page Header or Page Footer areas, among others."
+msgstr ""
+
+#. eGuih
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id3729361\n"
+"help.text"
+msgid "<ahelp hid=\".\">To display the <emph>Data</emph> or <emph>General</emph> tab page for the whole report, choose <item type=\"menuitem\">Edit - Select All - Select Report</item>.</ahelp>"
+msgstr ""
+
+#. r4tre
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id1768852\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Groups are kept together by page or by column (default). You must enable Keep Together also.</ahelp>"
+msgstr ""
+
+#. PFQYf
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id6304818\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies in which context the page header will be printed: on all pages, or not on pages with a report header or footer.</ahelp>"
+msgstr ""
+
+#. 9rAVD
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id401623\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies in which context the page footer will be printed: on all pages, or not on pages with a report header or footer</ahelp>"
+msgstr ""
+
+#. rMRex
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id2162236\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print repeated values.</ahelp>"
+msgstr ""
+
+#. nCDvW
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7022003\n"
+"help.text"
+msgid "If you click the Page Header or Page Footer area without selecting any object, you see the <emph>General</emph> tab page for that area."
+msgstr ""
+
+#. xACk2
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7004303\n"
+"help.text"
+msgid "You can edit some visual properties for the area."
+msgstr ""
+
+#. hPUHN
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id2561723\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the background color for the selected object, both on screen and for printing.</ahelp>"
+msgstr ""
+
+#. BXnJc
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id1064485\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">An invisible object is not shown in the executed report. It is still visible in the Report Builder view.</ahelp>"
+msgstr ""
+
+#. Xd2SG
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id2356028\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Defines the height of the selected object.</ahelp>"
+msgstr ""
+
+#. GXpuh
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id1404461\n"
+"help.text"
+msgid "<ahelp hid=\".\">If the Conditional Print Expression evaluates to TRUE, the selected object will be printed.</ahelp>"
+msgstr ""
+
+#. jvkXA
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7404705\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the background of the selected object is transparent or opaque.</ahelp>"
+msgstr ""
+
+#. qgLML
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7466963\n"
+"help.text"
+msgid "If you click the <emph>Detail</emph> area without selecting any object, you see the <emph>General</emph> tab page for that area."
+msgstr ""
+
+#. kmEmG
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id3644215\n"
+"help.text"
+msgid "You can specify some properties to fine-tune the way the records are printed."
+msgstr ""
+
+#. cjDLx
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id3148899\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Force New Page specifies whether the current section and/or the next section is printed on a new page.</ahelp>"
+msgstr ""
+
+#. CuyG2
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id6164433\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">New Row Or Column specifies, for a multi-column design, whether the current section and/or the next section will be printed on a new row or column.</ahelp>"
+msgstr ""
+
+#. nHVy2
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7405011\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Keep Together specifies to print the current object starting on top of a new page if it doesn't fit on the current page.</ahelp>"
+msgstr ""
+
+#. FjNyy
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id1536606\n"
+"help.text"
+msgid "Insert some data fields into the Detail area, or insert other control fields into any area. When you select an inserted field, you can set the properties in the Properties window."
+msgstr ""
+
+#. 2LAyX
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id9631641\n"
+"help.text"
+msgid "For a Label field, you can change the displayed text in the Label input box."
+msgstr ""
+
+#. iy4M5
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7749565\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a picture, you can specify to either insert the picture as a link to a file or only as an embedded object in the Base file. The embedded option increases the size of the Base file, while the link option is not as portable to other computers.</ahelp>"
+msgstr ""
+
+#. XKxxX
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id4041871\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the X Position for the selected object</ahelp>"
+msgstr ""
+
+#. bvgTD
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id9930722\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the Y Position for the selected object</ahelp>"
+msgstr ""
+
+#. YGfo2
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id5749687\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the width of the selected object.</ahelp>"
+msgstr ""
+
+#. pwu7Q
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id79348\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the font for the selected text object.</ahelp>"
+msgstr ""
+
+#. r9No9
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id2414014\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Print when group change</ahelp>"
+msgstr ""
+
+#. 25y9K
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id7617114\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Vert. Alignment</ahelp>"
+msgstr ""
+
+#. GXFDE
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id1593676\n"
+"help.text"
+msgid "On the <emph>General</emph> tab page of a data field, you can set the Formatting properties, among others."
+msgstr ""
+
+#. LyTPo
+#: rep_prop.xhp
+msgctxt ""
+"rep_prop.xhp\n"
+"par_id1243629\n"
+"help.text"
+msgid "<ahelp hid=\".\">On the Data tab page, you can change the data contents to be shown.</ahelp>"
+msgstr ""
+
+#. g3CBB
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sorting and Grouping"
+msgstr ""
+
+#. GPUqF
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"hd_id3486434\n"
+"help.text"
+msgid "<variable id=\"rep_sort\"><link href=\"text/sdatabase/rep_sort.xhp\">Sorting and Grouping</link></variable>"
+msgstr ""
+
+#. DCbhT
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id3068636\n"
+"help.text"
+msgid "<ahelp hid=\".\">In the Sorting and Grouping dialog of <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link>, you can define the fields that should be sorted in your report, and the fields that should be kept together to form a group.</ahelp> If you group your report by a certain field, all records with the same value of that field will be kept together in one group."
+msgstr ""
+
+#. KudoP
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id876186\n"
+"help.text"
+msgid "The Groups box shows the fields in an order from top to bottom. You can select any field, then click the Move Up or Move Down button to move this field up or down in the list."
+msgstr ""
+
+#. nG4vM
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id3939634\n"
+"help.text"
+msgid "The sorting and grouping will be applied in the order of the list from top to bottom."
+msgstr ""
+
+#. ZAFvB
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id599688\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the fields that will be used for sorting or grouping. The field at the top has the highest priority, the second field has the second priority, and so on.</ahelp>"
+msgstr ""
+
+#. ETyGL
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id1371501\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to open a list from which you can select a field.</ahelp>"
+msgstr ""
+
+#. kEwPE
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id4661702\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected field up in the list.</ahelp>"
+msgstr ""
+
+#. YmDk5
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id7868892\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected field down in the list.</ahelp>"
+msgstr ""
+
+#. amjzG
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id2188787\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the sorting order.</ahelp>"
+msgstr ""
+
+#. bYX8p
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id5833307\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to show or hide the Group Header.</ahelp>"
+msgstr ""
+
+#. tN76n
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id7726676\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to show or hide the Group Footer.</ahelp>"
+msgstr ""
+
+#. Ez4dt
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id3729361\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to create a new group on each changed value, or on other properties.</ahelp>"
+msgstr ""
+
+#. bd2EW
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id0409200922142041\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Removes the selected field from the list.</ahelp>"
+msgstr ""
+
+#. CjspM
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id3405560\n"
+"help.text"
+msgid "By default a new group is created on every changed value of a record from the selected field. You can change this property depending on the type of field:"
+msgstr ""
+
+#. DD8mt
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id3409527\n"
+"help.text"
+msgid "For fields of type Text, you can select Prefix Characters and enter a number n of characters in the text box below. The records which are identical in the first n characters will be grouped together."
+msgstr ""
+
+#. DFvf2
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id7112338\n"
+"help.text"
+msgid "For fields of type Date/Time, you can group the records by the same year, quarter, month, week, day, hour, or minute. You can additionally specify an interval for weeks and hours: 2 weeks groups data in biweekly groups, 12 hours groups data in half-day groups."
+msgstr ""
+
+#. BBwXv
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id2855616\n"
+"help.text"
+msgid "For fields of type AutoNumber, Currency, or Number, you specify an interval."
+msgstr ""
+
+#. mjbMU
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id7700430\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the group interval value that records are grouped by.</ahelp>"
+msgstr ""
+
+#. XmWsa
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id1180455\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the level of detail by which a group is kept together on the same page.</ahelp>"
+msgstr ""
+
+#. KbCbd
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id2091433\n"
+"help.text"
+msgid "When you specify to keep together some records on the same page, you have three choices:"
+msgstr ""
+
+#. NnDGM
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id5092318\n"
+"help.text"
+msgid "No - page boundaries are not taken into account."
+msgstr ""
+
+#. Zmwag
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id9312417\n"
+"help.text"
+msgid "Whole Group - prints the group header, detail section, and group footer on the same page."
+msgstr ""
+
+#. Bzv5z
+#: rep_sort.xhp
+msgctxt ""
+"rep_sort.xhp\n"
+"par_id9089022\n"
+"help.text"
+msgid "With First Detail - prints the group header on a page only if the first detail record also can be printed on the same page."
+msgstr ""
+
#. eDFFK
#: tablewizard00.xhp
msgctxt ""
@@ -11443,353 +14503,884 @@ msgctxt ""
msgid "<link href=\"text/sdatabase/tablewizard00.xhp\" name=\"Table Wizard\">Table Wizard</link>"
msgstr ""
-#. PAxTq
-#: toolbars.xhp
+#. QjNBA
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_form.xhp\n"
"tit\n"
"help.text"
-msgid "Toolbars"
+msgid "Database Form Toolbar"
msgstr ""
-#. Tzgdb
-#: toolbars.xhp
+#. ViBjA
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10541\n"
+"toolbar_form.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<variable id=\"toolbars\"><link href=\"text/sdatabase/toolbars.xhp\">Toolbars</link></variable>"
+msgid "<variable id=\"DatabaseFormToolbarh1\"><link href=\"text/sdatabase/toolbar_form.xhp\" name=\"Database Form Toolbar\">Database Form Toolbar</link></variable>"
msgstr ""
-#. B3mEW
-#: toolbars.xhp
+#. Ndnbt
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10545\n"
+"toolbar_form.xhp\n"
+"hd_id231642796157552\n"
"help.text"
-msgid "In a database file window, you can see the following toolbars."
+msgid "New database form"
msgstr ""
-#. ZNxCw
-#: toolbars.xhp
+#. g2PCm
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10548\n"
+"toolbar_form.xhp\n"
+"par_id431642796165270\n"
"help.text"
-msgid "Table"
+msgid "<image src=\"cmd/lc_dbnewform.svg\" id=\"img_id311642796165271\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id461642796165272\">Icon New Database Form</alt></image>"
msgstr ""
-#. JWHfj
-#: toolbars.xhp
+#. BmKGp
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10554\n"
+"toolbar_form.xhp\n"
+"par_id321642796165273\n"
"help.text"
-msgid "Open database object"
+msgid "Creates a new database form."
msgstr ""
-#. 4fvFG
-#: toolbars.xhp
+#. 89Xdx
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10558\n"
+"toolbar_form.xhp\n"
+"par_idN10634\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the selected table so you can enter, edit, or delete records.</ahelp>"
+msgid "Open database form"
msgstr ""
-#. LFKBo
-#: toolbars.xhp
+#. TaigW
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN1056F\n"
+"toolbar_form.xhp\n"
+"par_id581642794179327\n"
+"help.text"
+msgid "<image src=\"cmd/lc_open.svg\" id=\"img_id511642794179328\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id11642794179328\">Icon Open Form</alt></image>"
+msgstr ""
+
+#. 8rq4H
+#: toolbar_form.xhp
+msgctxt ""
+"toolbar_form.xhp\n"
+"par_idN10638\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected form so you can enter, edit, or delete records.</ahelp>"
+msgstr ""
+
+#. GF2hM
+#: toolbar_form.xhp
+msgctxt ""
+"toolbar_form.xhp\n"
+"par_idN1064F\n"
"help.text"
msgid "Edit"
msgstr ""
-#. tLLAy
-#: toolbars.xhp
+#. qnKpJ
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10573\n"
+"toolbar_form.xhp\n"
+"par_id1001642794252425\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the selected table so you can change the structure.</ahelp>"
+msgid "<image src=\"cmd/lc_dbformedit.svg\" id=\"img_id671642794252426\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id851642794252426\">Icon Edit Form</alt></image>"
msgstr ""
-#. FEBzp
-#: toolbars.xhp
+#. WE3Eo
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN1058A\n"
+"toolbar_form.xhp\n"
+"par_idN10653\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected form so you can change the layout.</ahelp>"
+msgstr ""
+
+#. dfaAA
+#: toolbar_form.xhp
+msgctxt ""
+"toolbar_form.xhp\n"
+"par_idN1066A\n"
"help.text"
msgid "Delete"
msgstr ""
-#. PDZsk
-#: toolbars.xhp
+#. AfDGM
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN1058E\n"
+"toolbar_form.xhp\n"
+"par_id941642794399538\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected table.</ahelp>"
+msgid "<image src=\"cmd/lc_dbformdelete.svg\" id=\"img_id541642794399538\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id521642794399539\">Icon Delete Form</alt></image>"
msgstr ""
-#. m7BX3
-#: toolbars.xhp
+#. 969sF
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN105A5\n"
+"toolbar_form.xhp\n"
+"par_idN1066E\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected form.</ahelp>"
+msgstr ""
+
+#. E8FTE
+#: toolbar_form.xhp
+msgctxt ""
+"toolbar_form.xhp\n"
+"par_idN10685\n"
"help.text"
msgid "Rename"
msgstr ""
-#. B596w
-#: toolbars.xhp
+#. pE8qg
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN105A9\n"
+"toolbar_form.xhp\n"
+"par_id601642794481349\n"
"help.text"
-msgid "<ahelp hid=\".\">Renames the selected table.</ahelp>"
+msgid "<image src=\"cmd/lc_dbformrename.svg\" id=\"img_id591642794481349\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id751642794481350\">Icon Rename Form</alt></image>"
msgstr ""
-#. LEWCs
-#: toolbars.xhp
+#. eMzAD
+#: toolbar_form.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN105B8\n"
+"toolbar_form.xhp\n"
+"par_idN10689\n"
"help.text"
-msgid "Query"
+msgid "<ahelp hid=\".\">Renames the selected form.</ahelp>"
msgstr ""
-#. VT3EG
-#: toolbars.xhp
+#. Ej7Bx
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_query.xhp\n"
+"tit\n"
+"help.text"
+msgid "Database Query Toolbar"
+msgstr ""
+
+#. MVKFj
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
+"par_idN10548\n"
+"help.text"
+msgid "<variable id=\"DatabaseQueryToolbarh1\"><link href=\"text/sdatabase/toolbar_query.xhp\" name=\"Database Query Toolbar\">Database Query Toolbar</link></variable>"
+msgstr ""
+
+#. bj47W
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
+"hd_id231642796157552\n"
+"help.text"
+msgid "New database query"
+msgstr ""
+
+#. yw8S8
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
+"par_id431642796165270\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbnewquery.svg\" id=\"img_id311642796165271\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id461642796165272\">Icon New Database Query</alt></image>"
+msgstr ""
+
+#. UnzqA
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
+"par_id321642796165273\n"
+"help.text"
+msgid "Creates a new database query."
+msgstr ""
+
+#. zqAQx
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
+"hd_id981642797173950\n"
+"help.text"
+msgid "New Database Query (SQL View)"
+msgstr ""
+
+#. bSoXy
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
+"par_id131642797178876\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbnewquerysql.svg\" id=\"img_id881642797178877\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id811642797178878\">Icon New query (SQL view)</alt></image>"
+msgstr ""
+
+#. CVC97
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
+"par_id911642797178879\n"
+"help.text"
+msgid "Opens the SQL window to edit a query in SQL language."
+msgstr ""
+
+#. G7DB4
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
"par_idN105C4\n"
"help.text"
-msgid "Open database object"
+msgid "Open database query"
msgstr ""
-#. 2cEFv
-#: toolbars.xhp
+#. 35ceG
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_query.xhp\n"
+"par_id791642791781980\n"
+"help.text"
+msgid "<image src=\"cmd/lc_open.svg\" id=\"img_id711642791781980\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id621642791781980\">Icon Open Query Object</alt></image>"
+msgstr ""
+
+#. yrGi6
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
"par_idN105C8\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the selected query so you can enter, edit, or delete records.</ahelp>"
msgstr ""
-#. yVNxZ
-#: toolbars.xhp
+#. Wpcih
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_query.xhp\n"
"par_idN105DF\n"
"help.text"
msgid "Edit"
msgstr ""
-#. kGSTA
-#: toolbars.xhp
+#. peDGL
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_query.xhp\n"
+"par_id291642791910891\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbqueryedit.svg\" id=\"img_id911642791910892\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id1001642791910892\">Icon Edit Query</alt></image>"
+msgstr ""
+
+#. FEN9q
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
"par_idN105E3\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the selected query so you can change the structure.</ahelp>"
msgstr ""
-#. W75xu
-#: toolbars.xhp
+#. 6jGeW
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_query.xhp\n"
"par_idN105FA\n"
"help.text"
msgid "Delete"
msgstr ""
-#. XJQBJ
-#: toolbars.xhp
+#. EHvLX
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_query.xhp\n"
+"par_id651642792045236\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbquerydelete.svg\" id=\"img_id411642792045236\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id211642792045237\">Icon Delete Query</alt></image>"
+msgstr ""
+
+#. Ejm28
+#: toolbar_query.xhp
+msgctxt ""
+"toolbar_query.xhp\n"
"par_idN105FE\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the selected query.</ahelp>"
msgstr ""
-#. bC56u
-#: toolbars.xhp
+#. 9XGHW
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_query.xhp\n"
"par_idN10615\n"
"help.text"
msgid "Rename"
msgstr ""
-#. GDAZR
-#: toolbars.xhp
+#. H78Bh
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10619\n"
+"toolbar_query.xhp\n"
+"par_id561642792121799\n"
"help.text"
-msgid "<ahelp hid=\".\">Renames the selected query.</ahelp>"
+msgid "<image src=\"cmd/lc_dbqueryrename.svg\" id=\"img_id521642792121800\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id531642792121800\">Icon Rename Query</alt></image>"
msgstr ""
-#. mzY5g
-#: toolbars.xhp
+#. xXWqz
+#: toolbar_query.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10628\n"
+"toolbar_query.xhp\n"
+"par_idN10619\n"
"help.text"
-msgid "Form"
+msgid "<ahelp hid=\".\">Renames the selected query.</ahelp>"
msgstr ""
-#. BXrRw
-#: toolbars.xhp
+#. aqUue
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10634\n"
+"toolbar_report.xhp\n"
+"tit\n"
"help.text"
-msgid "Open database object"
+msgid "Database Report Toolbar"
msgstr ""
-#. GJDxB
-#: toolbars.xhp
+#. N5Spv
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10638\n"
+"toolbar_report.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the selected form so you can enter, edit, or delete records.</ahelp>"
+msgid "<variable id=\"DatabaseReportToolbarh1\"><link href=\"text/sdatabase/toolbar_report.xhp\" name=\"Database Report Toolbar\">Database Report Toolbar</link></variable>"
msgstr ""
-#. 7f3E9
-#: toolbars.xhp
+#. TaKok
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN1064F\n"
+"toolbar_report.xhp\n"
+"hd_id231642796157552\n"
"help.text"
-msgid "Edit"
+msgid "New database report"
msgstr ""
-#. ZmiNz
-#: toolbars.xhp
+#. hxRbm
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10653\n"
+"toolbar_report.xhp\n"
+"par_id431642796165270\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the selected form so you can change the layout.</ahelp>"
+msgid "<image src=\"cmd/lc_dbnewreport.svg\" id=\"img_id311642796165271\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id461642796165272\">Icon New Database Report</alt></image>"
msgstr ""
-#. xCBQ3
-#: toolbars.xhp
+#. FzBiP
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN1066A\n"
+"toolbar_report.xhp\n"
+"par_id321642796165273\n"
"help.text"
-msgid "Delete"
+msgid "Creates a new database report."
msgstr ""
-#. p5bD4
-#: toolbars.xhp
+#. DASFx
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN1066E\n"
+"toolbar_report.xhp\n"
+"hd_id261642796491626\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected form.</ahelp>"
+msgid "Database report wizard"
msgstr ""
-#. Jrqh7
-#: toolbars.xhp
+#. wRJAg
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10685\n"
+"toolbar_report.xhp\n"
+"par_id251642796542820\n"
"help.text"
-msgid "Rename"
+msgid "<image src=\"cmd/lc_dbnewreportautopilot.svg\" id=\"img_id811642796542821\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id231642796542822\">Icon Database report wizard</alt></image>"
msgstr ""
-#. CLTV2
-#: toolbars.xhp
+#. Ri9DE
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10689\n"
+"toolbar_report.xhp\n"
+"par_id261642796542823\n"
"help.text"
-msgid "<ahelp hid=\".\">Renames the selected form.</ahelp>"
+msgid "Opens the database report wizard, to guide you in creating a database report."
msgstr ""
-#. tkXGC
-#: toolbars.xhp
+#. VcR6f
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN10698\n"
+"toolbar_report.xhp\n"
+"par_idN106A4\n"
"help.text"
-msgid "Report"
+msgid "Open database report"
msgstr ""
-#. GMWLb
-#: toolbars.xhp
+#. JytE5
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
-"par_idN106A4\n"
+"toolbar_report.xhp\n"
+"par_id321642794819375\n"
"help.text"
-msgid "Open database object"
+msgid "<image src=\"cmd/lc_open.svg\" id=\"img_id511642794179328\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id11642794179328\">Icon Open Report</alt></image>"
msgstr ""
-#. BzwcK
-#: toolbars.xhp
+#. RdAb4
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_report.xhp\n"
"par_idN106A8\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the selected report so you can enter, edit, or delete records.</ahelp>"
msgstr ""
-#. sLPTD
-#: toolbars.xhp
+#. XyYBD
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_report.xhp\n"
"par_idN106BF\n"
"help.text"
msgid "Edit"
msgstr ""
-#. DF32e
-#: toolbars.xhp
+#. mmfdU
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_report.xhp\n"
+"par_id141642794873165\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbreportedit.svg\" id=\"img_id111642794873165\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id811642794873165\">Icon Edit Report</alt></image>"
+msgstr ""
+
+#. 34f7b
+#: toolbar_report.xhp
+msgctxt ""
+"toolbar_report.xhp\n"
"par_idN106C3\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the selected report so you can change the layout.</ahelp>"
msgstr ""
-#. FGuUB
-#: toolbars.xhp
+#. B7hhM
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_report.xhp\n"
"par_idN106DA\n"
"help.text"
msgid "Delete"
msgstr ""
-#. xikUv
-#: toolbars.xhp
+#. frjJR
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_report.xhp\n"
+"par_id51642795131634\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbreportdelete.svg\" id=\"img_id971642795131634\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id531642795131634\">Icon Delete Report</alt></image>"
+msgstr ""
+
+#. rrRCi
+#: toolbar_report.xhp
+msgctxt ""
+"toolbar_report.xhp\n"
"par_idN106DE\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes the selected report.</ahelp>"
msgstr ""
-#. kmUBC
-#: toolbars.xhp
+#. ftpNL
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_report.xhp\n"
"par_idN106F5\n"
"help.text"
msgid "Rename"
msgstr ""
-#. CgE7D
-#: toolbars.xhp
+#. cNjbm
+#: toolbar_report.xhp
msgctxt ""
-"toolbars.xhp\n"
+"toolbar_report.xhp\n"
+"par_id551642795211226\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbreportrename.svg\" id=\"img_id631642795211227\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id551642795211227\">Icon Rename Report</alt></image>"
+msgstr ""
+
+#. EYSpz
+#: toolbar_report.xhp
+msgctxt ""
+"toolbar_report.xhp\n"
"par_idN106F9\n"
"help.text"
msgid "<ahelp hid=\".\">Renames the selected report.</ahelp>"
msgstr ""
+
+#. ezZJj
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"tit\n"
+"help.text"
+msgid "Database Table Toolbar"
+msgstr ""
+
+#. 6DNGE
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN10548\n"
+"help.text"
+msgid "<variable id=\"DatabaseTableToolbarh1\"><link href=\"text/sdatabase/toolbar_table.xhp\" name=\"Database Table Toolbar\">Database Table Toolbar</link></variable>"
+msgstr ""
+
+#. Y57HF
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id461642852368590\n"
+"help.text"
+msgid "Open document"
+msgstr ""
+
+#. pRvid
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id601642852258016\n"
+"help.text"
+msgid "<image src=\"cmd/lc_open.svg\" id=\"img_id941642787914042\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id291642787914043\">Icon Open Document</alt></image>"
+msgstr ""
+
+#. DAEuG
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id981642852258019\n"
+"help.text"
+msgid "Opens a %PRODUCTNAME document."
+msgstr ""
+
+#. Z4JdE
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id981642852403610\n"
+"help.text"
+msgid "Save document"
+msgstr ""
+
+#. EoGU4
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id731642852435520\n"
+"help.text"
+msgid "<image src=\"cmd/lc_save.svg\" id=\"img_id591642852435521\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id871642852435522\">Icon Save database file</alt></image>"
+msgstr ""
+
+#. AgrRB
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id481642852435523\n"
+"help.text"
+msgid "Saves current database file."
+msgstr ""
+
+#. mLNRZ
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id131642852596290\n"
+"help.text"
+msgid "Copy"
+msgstr ""
+
+#. xVmGj
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id381642853541654\n"
+"help.text"
+msgid "<image src=\"cmd/lc_copy.svg\" id=\"img_id21642853541655\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id801642853541656\">Icon copy</alt></image>"
+msgstr ""
+
+#. MSHcj
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id601642853541657\n"
+"help.text"
+msgid "Copies the selection to the clipboard."
+msgstr ""
+
+#. C9Ezf
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id941642852602272\n"
+"help.text"
+msgid "Paste"
+msgstr ""
+
+#. JDAZJ
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id761642853673909\n"
+"help.text"
+msgid "<image src=\"cmd/lc_paste.svg\" id=\"img_id811642853673910\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id951642853673911\">Icon Paste</alt></image>"
+msgstr ""
+
+#. nEsTe
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id321642853673912\n"
+"help.text"
+msgid "Inserts the contents of the clipboard at the location of the cursor, and replaces any selected text or objects."
+msgstr ""
+
+#. Ct5XD
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id1001642852606113\n"
+"help.text"
+msgid "Sort ascending"
+msgstr ""
+
+#. WDeBp
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id991642853830973\n"
+"help.text"
+msgid "<image src=\"cmd/lc_sortascending.svg\" id=\"img_id771642853830974\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id241642853830975\">Icon sort ascending</alt></image>"
+msgstr ""
+
+#. aRGCA
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id621642853830977\n"
+"help.text"
+msgid "Sorts the entries in the detail view in ascending order."
+msgstr ""
+
+#. 542jo
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id441642852616281\n"
+"help.text"
+msgid "Sort descending"
+msgstr ""
+
+#. iL4by
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id511642854313007\n"
+"help.text"
+msgid "<image src=\"cmd/lc_sortdescending.svg\" id=\"img_id531642854313009\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661642854313010\">Icon Sort descending</alt></image>"
+msgstr ""
+
+#. e2A2e
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id81642854313011\n"
+"help.text"
+msgid "Sorts the entries in the detail view in descending order."
+msgstr ""
+
+#. VTRY7
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id231642796152552\n"
+"help.text"
+msgid "New database form"
+msgstr ""
+
+#. 4C7Bi
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id431643796165270\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbnewform.svg\" id=\"img_id311642796165271\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id461642796165272\">Icon New Database Form</alt></image>"
+msgstr ""
+
+#. YAoeV
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id321612796165273\n"
+"help.text"
+msgid "Creates a new database form (default). Use the drop-down toolbar to create a new database object directly."
+msgstr ""
+
+#. KuYJ7
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"hd_id231642796157552\n"
+"help.text"
+msgid "New table design"
+msgstr ""
+
+#. zKJDB
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id431642796165270\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbnewtable.svg\" id=\"img_id311642796165271\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id461642796165272\">Icon New Table design</alt></image>"
+msgstr ""
+
+#. p5PvJ
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id321642796165273\n"
+"help.text"
+msgid "Designs a new database table."
+msgstr ""
+
+#. zoHMV
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN10554\n"
+"help.text"
+msgid "Open database table"
+msgstr ""
+
+#. gptoW
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id521642787914042\n"
+"help.text"
+msgid "<image src=\"cmd/lc_open.svg\" id=\"img_id941642787914042\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id291642787914043\">Icon Open Database Table</alt></image>"
+msgstr ""
+
+#. FiWG5
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN10558\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected table so you can enter, edit, or delete records.</ahelp>"
+msgstr ""
+
+#. 2GZDb
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "Edit"
+msgstr ""
+
+#. GEk85
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id481642788747900\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbtableedit.svg\" id=\"img_id421642788747900\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id911642788747900\">Icon Edit table</alt></image>"
+msgstr ""
+
+#. SpLTj
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN10573\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected table so you can change the structure.</ahelp>"
+msgstr ""
+
+#. Aoqi2
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN1058A\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
+#. qsDuC
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id261642788871011\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbtabledelete.svg\" id=\"img_id521642788871011\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id971642788871011\">Icon Delete Table</alt></image>"
+msgstr ""
+
+#. 7S8xE
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN1058E\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected table.</ahelp>"
+msgstr ""
+
+#. nxeFo
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN105A5\n"
+"help.text"
+msgid "Rename"
+msgstr ""
+
+#. bkFMf
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_id501642788935574\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbtablerename.svg\" id=\"img_id461642788935574\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id571642788935574\">Icon Rename Table</alt></image>"
+msgstr ""
+
+#. Bqa33
+#: toolbar_table.xhp
+msgctxt ""
+"toolbar_table.xhp\n"
+"par_idN105A9\n"
+"help.text"
+msgid "<ahelp hid=\".\">Renames the selected table.</ahelp>"
+msgstr ""
+
+#. PAxTq
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"tit\n"
+"help.text"
+msgid "Toolbars"
+msgstr ""
+
+#. vYRDC
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10541\n"
+"help.text"
+msgid "<variable id=\"toolbars\"><link href=\"text/sdatabase/toolbars.xhp\">Database Toolbars</link> </variable>"
+msgstr ""
+
+#. B3mEW
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10545\n"
+"help.text"
+msgid "In a database file window, you can see the following toolbars."
+msgstr ""
diff --git a/source/lv/helpcontent2/source/text/shared.po b/source/lv/helpcontent2/source/text/shared.po
index 8f671655d2b..92d01529838 100644
--- a/source/lv/helpcontent2/source/text/shared.po
+++ b/source/lv/helpcontent2/source/text/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,6 +16,231 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542197091.000000\n"
+#. fcmzq
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"tit\n"
+"help.text"
+msgid "Find Bar"
+msgstr ""
+
+#. ZBBdy
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"bm_id871641583188415\n"
+"help.text"
+msgid "<bookmark_value>Find toolbar</bookmark_value>"
+msgstr ""
+
+#. WXRY5
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id701641581066778\n"
+"help.text"
+msgid "<link href=\"/text/shared/find_toolbar.xhp\" name=\"Find Bar\">Find Bar</link>"
+msgstr ""
+
+#. X55wK
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id3147762\n"
+"help.text"
+msgid "The <menuitem>Find</menuitem> toolbar can be used to quickly search the contents of %PRODUCTNAME documents."
+msgstr ""
+
+#. wMCEY
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id211641581251728\n"
+"help.text"
+msgid "Use the shortcut <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + F</keycode> to quickly open the <menuitem>Find</menuitem> toolbar."
+msgstr ""
+
+#. DCYmX
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id991641581514302\n"
+"help.text"
+msgid "Find Text"
+msgstr ""
+
+#. 979Nt
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id921641581538352\n"
+"help.text"
+msgid "Enter the text to be searched in the document. Press <keycode>Enter</keycode> to perform the search."
+msgstr ""
+
+#. vYcEW
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id831641581895099\n"
+"help.text"
+msgid "Find Previous"
+msgstr ""
+
+#. e8qFg
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id11641581906556\n"
+"help.text"
+msgid "Moves the cursor and selects the previous match of the search text."
+msgstr ""
+
+#. t33RZ
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id851642423451259\n"
+"help.text"
+msgid "<image src=\"cmd/lc_upsearch.svg\" id=\"img_id171642423451259\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id261642423451259\">Find Previous Icon</alt></image>"
+msgstr ""
+
+#. Tu26F
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id351642423451259\n"
+"help.text"
+msgid "Find Previous Icon"
+msgstr ""
+
+#. CCfcg
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id941641581943416\n"
+"help.text"
+msgid "Find Next"
+msgstr ""
+
+#. gwMV9
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id261641581953287\n"
+"help.text"
+msgid "Moves the cursor and selects the next match of the search text."
+msgstr ""
+
+#. PUsAY
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id111642423456841\n"
+"help.text"
+msgid "<image src=\"cmd/lc_downsearch.svg\" id=\"img_id111642423456841\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id111642423456841\">Find Next Icon</alt></image>"
+msgstr ""
+
+#. kuiD9
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id111642423456842\n"
+"help.text"
+msgid "Find Next Icon"
+msgstr ""
+
+#. 5nZqX
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id81641582044927\n"
+"help.text"
+msgid "Find All"
+msgstr ""
+
+#. DFtSe
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id181641582056429\n"
+"help.text"
+msgid "Highlights all matches in the document."
+msgstr ""
+
+#. xFTTt
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id631641582107024\n"
+"help.text"
+msgid "Match Case"
+msgstr ""
+
+#. 42qsF
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id461641582121199\n"
+"help.text"
+msgid "Choose this option to perform case-sensitive search."
+msgstr ""
+
+#. nhwRU
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id271641582528169\n"
+"help.text"
+msgid "Formatted Display"
+msgstr ""
+
+#. Cd89c
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id571641582522939\n"
+"help.text"
+msgid "Performs the search considering the formatted value in a cell."
+msgstr ""
+
+#. L8K8f
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"hd_id171641582176913\n"
+"help.text"
+msgid "Find and Replace"
+msgstr ""
+
+#. 8GXhw
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id761641582194558\n"
+"help.text"
+msgid "Opens the <link href=\"text/swriter/guide/finding.xhp\" name=\"Find_Replace\">Find and Replace</link> dialog, which provides more options for searching the document."
+msgstr ""
+
+#. rx3mH
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id171641582176913\n"
+"help.text"
+msgid "<image src=\"cmd/lc_searchdialog.svg\" id=\"img_id171641582176913\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171641582176913\">Find and Replace Icon</alt></image>"
+msgstr ""
+
+#. BUQcH
+#: find_toolbar.xhp
+msgctxt ""
+"find_toolbar.xhp\n"
+"par_id171641582176943\n"
+"help.text"
+msgid "Find and Replace Icon"
+msgstr ""
+
#. DBz3U
#: fontwork_toolbar.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/shared/01.po b/source/lv/helpcontent2/source/text/shared/01.po
index 1bc30db40d2..2b0efc74e9f 100644
--- a/source/lv/helpcontent2/source/text/shared/01.po
+++ b/source/lv/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-10 12:21+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9061,15 +9061,6 @@ msgctxt ""
msgid "For a full list of supported metacharacters and syntax, see <link href=\"https://unicode-org.github.io/icu/userguide/strings/regexp.html\" name=\"ICU Regular Expressions documentation\">ICU Regular Expressions documentation</link>"
msgstr ""
-#. HBqoH
-#: 02100001.xhp
-msgctxt ""
-"02100001.xhp\n"
-"par_id141559577104334\n"
-"help.text"
-msgid "Note that currently all named character class terms, [:alpha:] through [:upper:], must be enclosed in parentheses when used in a regular expression, see the examples that follow."
-msgstr ""
-
#. HvC9Q
#: 02100001.xhp
msgctxt ""
@@ -10735,13 +10726,13 @@ msgctxt ""
msgid "<variable id=\"links_text\"><ahelp hid=\".\">You can change or remove each link to external files in the current document. You can also update the content of the current file to the most recently saved version of linked external file. This command does not apply to hyperlinks, and is not available if the current document does not contain links to other files.</ahelp></variable>"
msgstr ""
-#. nGE7F
+#. 5H9Hm
#: 02180000.xhp
msgctxt ""
"02180000.xhp\n"
"par_id271603459179173\n"
"help.text"
-msgid "This command can be used with external file links to <switchinline select=\"appl\"><caseinline select=\"WRITER\">sections (place cursor outside of the section), master documents,</caseinline><caseinline select=\"CALC\">sheets linked with <menuitem>Sheet - Insert Sheet from File</menuitem> or <menuitem>Sheet - Link to External Data</menuitem>, Function WEBSERVICE,</caseinline></switchinline> images and OLE objects (when inserted with a link to an external file)."
+msgid "This command can be used with external file links to <switchinline select=\"appl\"><caseinline select=\"WRITER\">sections (place cursor outside of the section), master documents,</caseinline><caseinline select=\"CALC\">sheets linked with <menuitem>Sheet - Insert Sheet from File</menuitem> or <menuitem>Sheet - External Links</menuitem>, Function WEBSERVICE,</caseinline></switchinline> images and OLE objects (when inserted with a link to an external file)."
msgstr ""
#. g3wLZ
@@ -27709,13 +27700,13 @@ msgctxt ""
msgid "Colors"
msgstr ""
-#. RSPZA
+#. AKar8
#: 05210200.xhp
msgctxt ""
"05210200.xhp\n"
"bm_id37440771\n"
"help.text"
-msgid "<bookmark_value>colors;palette</bookmark_value><bookmark_value>colors;adding</bookmark_value><bookmark_value>colors;delete</bookmark_value>"
+msgid "<bookmark_value>colors;palette</bookmark_value><bookmark_value>palette;document colors</bookmark_value><bookmark_value>colors;adding</bookmark_value><bookmark_value>colors;delete</bookmark_value><bookmark_value>document colors;palette</bookmark_value>"
msgstr ""
#. vay4k
@@ -27772,6 +27763,24 @@ msgctxt ""
msgid "Select the color palette in the list box to pick the color for the selected object. The palette color set displays below."
msgstr ""
+#. EyGbC
+#: 05210200.xhp
+msgctxt ""
+"05210200.xhp\n"
+"par_id441641431603505\n"
+"help.text"
+msgid "The <emph>Theme colors</emph> palette shows the theme colors from the current theme, if the document has any."
+msgstr ""
+
+#. CSCQY
+#: 05210200.xhp
+msgctxt ""
+"05210200.xhp\n"
+"par_id441641431603506\n"
+"help.text"
+msgid "The <emph>Document colors</emph> palette shows the colors used in the current document."
+msgstr ""
+
#. DQAGQ
#: 05210200.xhp
msgctxt ""
@@ -28447,13 +28456,13 @@ msgctxt ""
msgid "Add/Import"
msgstr ""
-#. KS3aG
+#. pkzgJ
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
"par_id3148473\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/imagetabpage/BTN_IMPORT\">Locate the image that you want to import, and then click <emph>Open</emph>. the image is added to the end of the list of available images.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/imagetabpage/BTN_IMPORT\">Locate the image that you want to import, and then click <emph>Open</emph>. The image is added to the end of the list of available images.</ahelp>"
msgstr ""
#. FXqsL
@@ -32398,6 +32407,366 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/textanimtabpage/MTR_FLD_DELAY\">Enter the amount of time to wait before repeating the effect.</ahelp>"
msgstr ""
+#. RRZf4
+#: 05320001.xhp
+msgctxt ""
+"05320001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Text Columns"
+msgstr ""
+
+#. SCszB
+#: 05320001.xhp
+msgctxt ""
+"05320001.xhp\n"
+"hd_id3150014\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05320001.xhp\" name=\"Text Columns\">Text Columns</link>"
+msgstr ""
+
+#. u37pw
+#: 05320001.xhp
+msgctxt ""
+"05320001.xhp\n"
+"par_id3154788\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/textcolumnstabpage/TextColumnsPage\">Adds columns to the text in the selected drawing object.</ahelp>"
+msgstr ""
+
+#. XCeS9
+#: 05320001.xhp
+msgctxt ""
+"05320001.xhp\n"
+"hd_id3152821\n"
+"help.text"
+msgid "Number of columns"
+msgstr ""
+
+#. kEjrF
+#: 05320001.xhp
+msgctxt ""
+"05320001.xhp\n"
+"par_id3144436\n"
+"help.text"
+msgid "Specifies how many columns to use to lay out the drawing object's text."
+msgstr ""
+
+#. yhb4G
+#: 05320001.xhp
+msgctxt ""
+"05320001.xhp\n"
+"hd_id3152822\n"
+"help.text"
+msgid "Spacing"
+msgstr ""
+
+#. EU3yR
+#: 05320001.xhp
+msgctxt ""
+"05320001.xhp\n"
+"par_id3144437\n"
+"help.text"
+msgid "Specifies the amount of space between the columns."
+msgstr ""
+
+#. 8kqou
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Theme"
+msgstr ""
+
+#. a8DFA
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3150014\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05320002.xhp\" name=\"Theme\">Theme</link>"
+msgstr ""
+
+#. CeYvv
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3154788\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/themetabpage/ThemePage\">Adds colors to the selected master page.</ahelp>"
+msgstr ""
+
+#. YiUBW
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152821\n"
+"help.text"
+msgid "General"
+msgstr ""
+
+#. oLtfm
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152822\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. Vn5NP
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144436\n"
+"help.text"
+msgid "Specifies a name for this master page theme."
+msgstr ""
+
+#. Dh64z
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152823\n"
+"help.text"
+msgid "Color Set"
+msgstr ""
+
+#. yvPdS
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152824\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. etPAe
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144437\n"
+"help.text"
+msgid "Specifies a name for this set of colors."
+msgstr ""
+
+#. bQc5u
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152825\n"
+"help.text"
+msgid "Background - Dark 1"
+msgstr ""
+
+#. pnURC
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144438\n"
+"help.text"
+msgid "Specifies the first dark color to be used as dark background, typically black."
+msgstr ""
+
+#. Bfas8
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152826\n"
+"help.text"
+msgid "Text - Light 1"
+msgstr ""
+
+#. 6BJ7P
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144439\n"
+"help.text"
+msgid "Specifies the first light color to be used as light text, typically white."
+msgstr ""
+
+#. v949u
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152827\n"
+"help.text"
+msgid "Background - Dark 2"
+msgstr ""
+
+#. Yn3oE
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144440\n"
+"help.text"
+msgid "Specifies the second dark color to be used as dark background. This is typically dark, but not exactly black."
+msgstr ""
+
+#. wBe5B
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152828\n"
+"help.text"
+msgid "Text - Light 2"
+msgstr ""
+
+#. GEpE7
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144441\n"
+"help.text"
+msgid "Specifies the second light color to be used as light text. This is typically light, but not exactly white."
+msgstr ""
+
+#. 6sCnr
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152829\n"
+"help.text"
+msgid "Accent 1"
+msgstr ""
+
+#. jarvZ
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144442\n"
+"help.text"
+msgid "First custom color. This is typically dark enough that light text is readable when the custom color is used as a background color."
+msgstr ""
+
+#. TBAAu
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152830\n"
+"help.text"
+msgid "Accent 2"
+msgstr ""
+
+#. PhmYV
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144443\n"
+"help.text"
+msgid "Second custom color."
+msgstr ""
+
+#. CoqnB
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152831\n"
+"help.text"
+msgid "Accent 3"
+msgstr ""
+
+#. AApC3
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144444\n"
+"help.text"
+msgid "Third custom color."
+msgstr ""
+
+#. yAJRk
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152832\n"
+"help.text"
+msgid "Accent 4"
+msgstr ""
+
+#. B3ekD
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144445\n"
+"help.text"
+msgid "Fourth custom color."
+msgstr ""
+
+#. DnYuJ
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152833\n"
+"help.text"
+msgid "Accent 5"
+msgstr ""
+
+#. AVEe4
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144446\n"
+"help.text"
+msgid "Fifth custom color."
+msgstr ""
+
+#. gC46v
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152834\n"
+"help.text"
+msgid "Accent 6"
+msgstr ""
+
+#. Fc7BK
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144447\n"
+"help.text"
+msgid "Sixth custom color."
+msgstr ""
+
+#. PhQWg
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152835\n"
+"help.text"
+msgid "Hyperlink"
+msgstr ""
+
+#. sawNC
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144448\n"
+"help.text"
+msgid "Color used for non-followed hyperlinks."
+msgstr ""
+
+#. jyKLz
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"hd_id3152836\n"
+"help.text"
+msgid "Followed Hyperlink"
+msgstr ""
+
+#. sRoPn
+#: 05320002.xhp
+msgctxt ""
+"05320002.xhp\n"
+"par_id3144449\n"
+"help.text"
+msgid "Color used for followed hyperlinks."
+msgstr ""
+
#. A2WXN
#: 05340100.xhp
msgctxt ""
@@ -40768,13 +41137,13 @@ msgctxt ""
msgid "Macros"
msgstr ""
-#. x5Ary
+#. JeUG6
#: 06130030.xhp
msgctxt ""
"06130030.xhp\n"
"par_idN109C2\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/scriptorganizer/ScriptOrganizerDialog\">Select a macro or script from <emph>My Macros</emph>, <emph>%PRODUCTNAME Macros</emph>, or an open document. To view the available macros or scripts, double-click an entry.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/scriptorganizer/ScriptOrganizerDialog\">Select a macro or script from <emph>My Macros</emph>, <emph>Application Macros</emph>, or an open document. To view the available macros or scripts, double-click an entry.</ahelp>"
msgstr ""
#. wxJE3
@@ -45835,6 +46204,42 @@ msgctxt ""
msgid "<ahelp hid=\".\">Removes the selected signature from the list. Removes all subsequent signatures as well, in case of PDF.</ahelp>"
msgstr ""
+#. Yda7b
+#: digitalsignatures.xhp
+msgctxt ""
+"digitalsignatures.xhp\n"
+"hd_id61638092292670\n"
+"help.text"
+msgid "Start Certificate Manager"
+msgstr ""
+
+#. bEk3e
+#: digitalsignatures.xhp
+msgctxt ""
+"digitalsignatures.xhp\n"
+"par_id441638095576834\n"
+"help.text"
+msgid "Opens the installed certificate manager of your system."
+msgstr ""
+
+#. zGF8H
+#: digitalsignatures.xhp
+msgctxt ""
+"digitalsignatures.xhp\n"
+"par_id481638101674763\n"
+"help.text"
+msgid "On macOS, the default certificate manager is <emph>Keychain Access</emph>."
+msgstr ""
+
+#. oENdS
+#: digitalsignatures.xhp
+msgctxt ""
+"digitalsignatures.xhp\n"
+"par_id701638101681340\n"
+"help.text"
+msgid "On Windows systems, the default certificate manager is <emph>Certmgr.msc</emph>, a Microsoft Management Console snap-in using Certmgr.exe, and does not manage OpenPGP certificates. To manage both X509 and OpenPGP certificates install the <emph>gpg4win</emph> tool."
+msgstr ""
+
#. Bsfs2
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -47608,6 +48013,78 @@ msgctxt ""
msgid "<link href=\"https://ask.libreoffice.org/en/question/854/what-video-formats-does-libreoffice-impress-support/\" name=\"askbot\">%PRODUCTNAME Askbot question and answer</link>"
msgstr ""
+#. BfayS
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rename object"
+msgstr ""
+
+#. xBT3n
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"bm_id3147366\n"
+"help.text"
+msgid "<bookmark_value>navigator; rename</bookmark_value> <bookmark_value>rename;objects</bookmark_value>"
+msgstr ""
+
+#. W5LjG
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"hd_id3147366\n"
+"help.text"
+msgid "Rename object"
+msgstr ""
+
+#. DFRqj
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"par_id3147588\n"
+"help.text"
+msgid "<variable id=\"desc\">Renames the object selected in the Navigator.</variable>"
+msgstr ""
+
+#. BJGCb
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"par_id3148833\n"
+"help.text"
+msgid "Open the context menu for the object - Choose <menuitem>Rename</menuitem>."
+msgstr ""
+
+#. KbRdP
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"hd_id3156027\n"
+"help.text"
+msgid "New name"
+msgstr ""
+
+#. CG62C
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"par_id3152924\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the new name of the selected object.</ahelp>"
+msgstr ""
+
+#. wJHoB
+#: nav_rename.xhp
+msgctxt ""
+"nav_rename.xhp\n"
+"par_id661630417737429\n"
+"help.text"
+msgid "Names of objects must be unique in the same document."
+msgstr ""
+
#. FzLmt
#: notebook_bar.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/shared/autopi.po b/source/lv/helpcontent2/source/text/shared/autopi.po
index b0024dcba97..1bb2d5019fb 100644
--- a/source/lv/helpcontent2/source/text/shared/autopi.po
+++ b/source/lv/helpcontent2/source/text/shared/autopi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-14 18:09+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-04-24 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7738,13 +7738,13 @@ msgctxt ""
msgid "<link href=\"text/shared/autopi/01170200.xhp\" name=\"Additional Settings\">Additional Settings</link>"
msgstr ""
-#. FYioz
+#. DFBck
#: 01170200.xhp
msgctxt ""
"01170200.xhp\n"
"par_id3143281\n"
"help.text"
-msgid "<ahelp hid=\".\">Allows you to enter additional settings for LDAP address data and other external data sources.</ahelp>"
+msgid "<ahelp hid=\".\">Allows you to enter additional settings for other external data sources.</ahelp>"
msgstr ""
#. zrAAW
@@ -7765,15 +7765,6 @@ msgctxt ""
msgid "<ahelp hid=\"modules/sabpilot/ui/invokeadminpage/settings\">Calls a dialog in which you can enter additional settings.</ahelp>"
msgstr ""
-#. fsQ4B
-#: 01170200.xhp
-msgctxt ""
-"01170200.xhp\n"
-"par_id3159233\n"
-"help.text"
-msgid "If you selected <emph>LDAP</emph> on the first page, you will see the <link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\" name=\"LDAP\">LDAP</link> page."
-msgstr ""
-
#. 5e2zp
#: 01170300.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/shared/explorer/database.po b/source/lv/helpcontent2/source/text/shared/explorer/database.po
deleted file mode 100644
index 195b3ef9d86..00000000000
--- a/source/lv/helpcontent2/source/text/shared/explorer/database.po
+++ /dev/null
@@ -1,2861 +0,0 @@
-#. extracted from helpcontent2/source/text/shared/explorer/database
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-19 15:44+0100\n"
-"PO-Revision-Date: 2018-11-12 13:52+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: lv\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 != 0 ? 1 : 2);\n"
-"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1542030758.000000\n"
-
-#. kyYMn
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"tit\n"
-"help.text"
-msgid "Migrate Macros"
-msgstr "Migrēt makrosus"
-
-#. KDtEB
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"bm_id6009095\n"
-"help.text"
-msgid "<bookmark_value>wizards;macros (Base)</bookmark_value> <bookmark_value>Macro Wizard (Base)</bookmark_value> <bookmark_value>macros;attaching new (Base)</bookmark_value> <bookmark_value>migrating macros (Base)</bookmark_value>"
-msgstr ""
-
-#. habQL
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"hd_id0112200902353472\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/migrate_macros.xhp\">Migrate Macros</link>"
-msgstr "<link href=\"text/shared/explorer/database/migrate_macros.xhp\">Migrēt makro</link>"
-
-#. xMVrd
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0112200902353466\n"
-"help.text"
-msgid "<ahelp hid=\".\">The Database Document Macro Migration Wizard moves existing macros from sub-documents of an old Base file into the new Base file's macro storage area.</ahelp>"
-msgstr ""
-
-#. ajASD
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0224200911454780\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose a location and file name to save the new database file. By default, the new file gets the same name as the old file, while the old file gets renamed with the string \"backup\" in the name.</ahelp>"
-msgstr ""
-
-#. M7aSL
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id022420091145472\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">The list shows all changes that were applied to the database file.</ahelp>"
-msgstr ""
-
-#. hee9q
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0112200902353542\n"
-"help.text"
-msgid "Previously, macros have been allowed to reside only in the text sub-documents of forms and reports. Now macros can also be stored in the Base file itself. This means that macros in Base files can be called now from any of its sub-components: forms, reports, table design, query design, relation design, table data view."
-msgstr ""
-
-#. DhC2o
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0112200903075865\n"
-"help.text"
-msgid "However, it is technically not possible to store macros both in a Base file and in its sub-documents at the same time. So, if you want to attach some new macros to the Base file, while retaining any existing old macros that were stored in the sub-documents, you must move the existing old macros up to the Base file's macro storage area."
-msgstr ""
-
-#. mtCb7
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0112200903075830\n"
-"help.text"
-msgid "The Database Document Macro Migration Wizard can move the macros up into the Base file's storage area. You can then examine the macros and edit them as needed."
-msgstr ""
-
-#. RJUfX
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0112200903075951\n"
-"help.text"
-msgid "For example, it is possible that macros from the sub-documents had the same module names and macro names. After you moved the macros into one common macro storage area, you must edit the macros to make the names unique. The wizard cannot do this."
-msgstr ""
-
-#. pSFRn
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0112200903075915\n"
-"help.text"
-msgid "The wizard can backup the Base file to another folder of your choice. The wizard changes the original Base file. The backup remains unchanged."
-msgstr ""
-
-#. WCGZK
-#: migrate_macros.xhp
-msgctxt ""
-"migrate_macros.xhp\n"
-"par_id0112200902353554\n"
-"help.text"
-msgid "<link href=\"https://wiki.documentfoundation.org/Macros_in_Database_Documents\" name=\"wiki.documentfoundation.org Macros in Database Documents\">An in depth explanation by the developers (Wiki).</link>"
-msgstr ""
-
-#. WG9NH
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"tit\n"
-"help.text"
-msgid "User Name and Password Required"
-msgstr "Nepieciešams lietotājvārds un parole"
-
-#. WekVB
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"par_idN10541\n"
-"help.text"
-msgid "User Name and Password Required"
-msgstr "Nepieciešams lietotājvārds un parole"
-
-#. LCLTp
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"par_idN1054D\n"
-"help.text"
-msgid "User name"
-msgstr "Lietotāja vārds"
-
-#. Rx3tD
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"par_idN10551\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the user name to connect to the data source.</ahelp>"
-msgstr "<ahelp hid=\".\">Ievadiet lietotāja vārdu, lai pieslēgtos pie datu avota.</ahelp>"
-
-#. dQH7s
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "Password"
-msgstr "Parole"
-
-#. dqjRr
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the password to connect to the data source.</ahelp>"
-msgstr "<ahelp hid=\".\">Ievadiet paroli, lai pieslēgtos pie datu avota.</ahelp>"
-
-#. TudyG
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"par_idN10583\n"
-"help.text"
-msgid "Remember password till end of session"
-msgstr "Atcerēties paroli līdz sesijas beigām"
-
-#. KYrgJ
-#: password.xhp
-msgctxt ""
-"password.xhp\n"
-"par_idN10587\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to use the same user name and password without further dialog, when you connect again to the same data source in the current %PRODUCTNAME session.</ahelp>"
-msgstr ""
-
-#. EWAYC
-#: querywizard00.xhp
-msgctxt ""
-"querywizard00.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard"
-msgstr "Vaicājuma vednis"
-
-#. G8nCc
-#: querywizard00.xhp
-msgctxt ""
-"querywizard00.xhp\n"
-"par_idN1054C\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard00.xhp\">Query Wizard</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard00.xhp\">Vaicājuma vednis</link>"
-
-#. 7eeqf
-#: querywizard00.xhp
-msgctxt ""
-"querywizard00.xhp\n"
-"par_idN1055C\n"
-"help.text"
-msgid "<ahelp hid=\".\">The Query Wizard helps you to design a database query.</ahelp> The saved query can be called later, either from the graphical user interface, or using the automatically created SQL language command."
-msgstr ""
-
-#. Baapm
-#: querywizard00.xhp
-msgctxt ""
-"querywizard00.xhp\n"
-"par_idN105D2\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard01.xhp\" name=\"Query Wizard - Field Selection\">Query Wizard - Field selection</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard03.xhp\" name=\"Vaicājuma vednis - Meklēšanas nosacījumi\">Vaicājuma vednis - Meklēšanas nosacījumi</link>"
-
-#. qKgrF
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Field Selection"
-msgstr ""
-
-#. duo5c
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"par_idN10546\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard01.xhp\">Query Wizard - Field Selection</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard01.xhp\">Vaicājuma vednis - Lauku atlase</link>"
-
-#. zvnWy
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Specifies the table to create the query, and specifies which fields you wish to include in the query."
-msgstr ""
-
-#. bjRCe
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"par_idN10559\n"
-"help.text"
-msgid "Tables"
-msgstr "Tabulas"
-
-#. RBgge
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the table for which the query is to be created.</ahelp>"
-msgstr ""
-
-#. BFXtZ
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Fields in the Query"
-msgstr "Lauki vaicājumā"
-
-#. n6cwc
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "<ahelp hid=\".\">Displays all fields that will be included in the new query.</ahelp>"
-msgstr ""
-
-#. ekG7n
-#: querywizard01.xhp
-msgctxt ""
-"querywizard01.xhp\n"
-"par_idN10597\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard02.xhp\" name=\"Query Wizard - Sorting order\">Query Wizard - Sorting order</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard02.xhp\" name=\"Vaicājuma vednis - Kārtošanas secība\">Vaicājuma vednis - Kārtošanas secība</link>"
-
-#. T7jwS
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Sorting Order"
-msgstr "Vaicājuma vednis - Kārtošanas secība"
-
-#. 5mgru
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN10543\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard02.xhp\">Query Wizard - Sorting Order</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard02.xhp\">Vaicājuma vednis - Kārtošanas secība</link>"
-
-#. hv6wL
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN10553\n"
-"help.text"
-msgid "Specifies the sorting order for the data records in your query."
-msgstr ""
-
-#. eVr57
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Sort by"
-msgstr "Kārtot pēc"
-
-#. CRtP3
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN105B2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the field by which the created query is sorted.</ahelp>"
-msgstr ""
-
-#. xUjcF
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN1055C\n"
-"help.text"
-msgid "Ascending"
-msgstr "Augoši"
-
-#. aSXt6
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN105BF\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to sort in alphabetically or numerically ascending order.</ahelp>"
-msgstr "<ahelp hid=\".\">Klikšķiniet, lai kārtotu alfabētiski vai skaitliski augošā secībā.</ahelp>"
-
-#. pR3aG
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "Descending"
-msgstr "Dilstoši"
-
-#. 9BtoZ
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN105CC\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to sort in alphabetically or numerically descending order.</ahelp>"
-msgstr "<ahelp hid=\".\">Klikšķiniet, lai kārtotu alfabētiski vai skaitliski dilstošā secībā.</ahelp>"
-
-#. 6U4wS
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "And then by"
-msgstr "Un tad pēc"
-
-#. CqmF3
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN105D9\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies additional fields by which the created query is sorted, if previous sort fields are equal.</ahelp>"
-msgstr ""
-
-#. CD7Db
-#: querywizard02.xhp
-msgctxt ""
-"querywizard02.xhp\n"
-"par_idN1056E\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard03.xhp\" name=\"Query Wizard - Search conditions\">Query Wizard - Search conditions</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard03.xhp\" name=\"Vaicājuma vednis - Meklēšanas nosacījumi\">Vaicājuma vednis - Meklēšanas nosacījumi</link>"
-
-#. Ezdjv
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Search Conditions"
-msgstr "Vaicājuma vednis - Meklēšanas nosacījumi"
-
-#. b9Fcz
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN10543\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard03.xhp\">Query Wizard - Search Conditions</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard03.xhp\">Vaicājuma vednis - Meklēšanas nosacījumi</link>"
-
-#. Axn74
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN10553\n"
-"help.text"
-msgid "Specifies the search conditions to filter the query."
-msgstr ""
-
-#. MBS9h
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Match all of the following"
-msgstr "Atbilst visam no šī"
-
-#. eGvAt
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN105B2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to filter the query by all the conditions using a logical AND.</ahelp>"
-msgstr ""
-
-#. mowq3
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN1055C\n"
-"help.text"
-msgid "Match any of the following"
-msgstr "Atbilst jebkam no šī"
-
-#. m9DAv
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN105BF\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to filter the query by any of the conditions using a logical OR.</ahelp>"
-msgstr ""
-
-#. YzKAZ
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "Field"
-msgstr "Lauks"
-
-#. zJBqq
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN105CC\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the field name for the filter condition.</ahelp>"
-msgstr ""
-
-#. cpBwd
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "Condition"
-msgstr "Nosacījums"
-
-#. FRFQM
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN105D9\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the condition for the filter.</ahelp>"
-msgstr ""
-
-#. dF2FF
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN1056E\n"
-"help.text"
-msgid "Value"
-msgstr "Vērtība"
-
-#. ZKEEw
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN105E6\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the value for the filter condition.</ahelp>"
-msgstr ""
-
-#. hZQwL
-#: querywizard03.xhp
-msgctxt ""
-"querywizard03.xhp\n"
-"par_idN10574\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard04.xhp\" name=\"Query Wizard - Detail or Summary\">Query Wizard - Detail or summary</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard04.xhp\" name=\"Vaicājuma vednis - Detaļas vai apkopojums\">Vaicājuma vednis - Detaļas vai apkopojums</link>"
-
-#. AFtfc
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Detail or Summary"
-msgstr "Vaicājuma vednis - Detaļas vai apkopojums"
-
-#. CRU4t
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN10543\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard04.xhp\">Query Wizard - Detail or Summary</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard04.xhp\">Vaicājuma vednis - Detaļas vai apkopojums</link>"
-
-#. pvdAU
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN10553\n"
-"help.text"
-msgid "Specifies whether to display all records of the query, or only the results of aggregate functions."
-msgstr ""
-
-#. GNBdc
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "This page is only displayed when there are numerical fields in the query that allow the use of aggregate functions."
-msgstr ""
-
-#. LAhTk
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN10559\n"
-"help.text"
-msgid "Detailed query"
-msgstr "Detalizēts vaicājums"
-
-#. aXtmP
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105BD\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to show all records of the query.</ahelp>"
-msgstr ""
-
-#. h7yp9
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105C2\n"
-"help.text"
-msgid "Summary query"
-msgstr "Kopsavilkuma vaicājums"
-
-#. 4VMFu
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105C8\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to show only results of aggregate functions.</ahelp>"
-msgstr ""
-
-#. CEC9y
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105D7\n"
-"help.text"
-msgid "Select the aggregate function and the field name of the numeric field in the list box. You can enter as many aggregate functions as you want, one in each row of controls."
-msgstr ""
-
-#. QCySK
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "Aggregate function"
-msgstr "Summējošā funkcija"
-
-#. H3vuB
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105E4\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the aggregate function.</ahelp>"
-msgstr "<ahelp hid=\".\">Atlasiet summējošo funkciju.</ahelp>"
-
-#. 7VBHB
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105DD\n"
-"help.text"
-msgid "Field name"
-msgstr "Lauka nosaukums"
-
-#. DhcSj
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN10656\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the numeric field name.</ahelp>"
-msgstr "<ahelp hid=\".\">Atlasiet skaitļu lauka nosaukumu.</ahelp>"
-
-#. 2fBzx
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105E7\n"
-"help.text"
-msgid "+"
-msgstr "+"
-
-#. hM5kP
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN105FE\n"
-"help.text"
-msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
-msgstr "<ahelp hid=\".\">Pievieno jaunu vadīklu rindu.</ahelp>"
-
-#. MYCN9
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN1060B\n"
-"help.text"
-msgid "<ahelp hid=\".\">Removes the last row of controls.</ahelp>"
-msgstr "<ahelp hid=\".\">Noņem pēdējo vadīklu rindu.</ahelp>"
-
-#. PGYED
-#: querywizard04.xhp
-msgctxt ""
-"querywizard04.xhp\n"
-"par_idN1060E\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard05.xhp\" name=\"Query Wizard - Grouping\">Query Wizard - Grouping</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard05.xhp\" name=\"Vaicājuma vednis - Grupēšana\">Vaicājuma vednis - Grupēšana</link>"
-
-#. d4Arr
-#: querywizard05.xhp
-msgctxt ""
-"querywizard05.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Grouping"
-msgstr "Vaicājuma vednis - Grupēšana"
-
-#. yK7uG
-#: querywizard05.xhp
-msgctxt ""
-"querywizard05.xhp\n"
-"par_idN10546\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard05.xhp\">Query Wizard - Grouping</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard05.xhp\">Vaicājuma vednis - Grupēšana</link>"
-
-#. yimYQ
-#: querywizard05.xhp
-msgctxt ""
-"querywizard05.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Specifies whether to group the query. The data source must support the SQL statement \"Group by clauses\" to enable this page of the Wizard."
-msgstr ""
-
-#. BEcEC
-#: querywizard05.xhp
-msgctxt ""
-"querywizard05.xhp\n"
-"par_idN10589\n"
-"help.text"
-msgid "Group by"
-msgstr "Grupēt pēc"
-
-#. XSPcc
-#: querywizard05.xhp
-msgctxt ""
-"querywizard05.xhp\n"
-"par_idN1058D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Displays all fields that are to be used to group the query.</ahelp>"
-msgstr ""
-
-#. C7sCn
-#: querywizard05.xhp
-msgctxt ""
-"querywizard05.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard06.xhp\" name=\"Query Wizard - Grouping conditions\">Query Wizard - Grouping conditions</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard06.xhp\" name=\"Vaicājuma vednis - Grupēšanas nosacījumi\">Vaicājuma vednis - Grupēšanas nosacījumi</link>"
-
-#. FJyRe
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Grouping Conditions"
-msgstr "Vaicājuma vednis - Grupēšanas nosacījumi"
-
-#. rawpT
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10546\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard06.xhp\">Query Wizard - Grouping Conditions</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard06.xhp\">Vaicājuma vednis - Grupēšanas nosacījumi</link>"
-
-#. isYHF
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Specifies the conditions to group the query. The data source must support the SQL statement \"Group by clauses\" to enable this page of the Wizard."
-msgstr ""
-
-#. E2hjZ
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10559\n"
-"help.text"
-msgid "Match all of the following"
-msgstr "Atbilst visam no šī"
-
-#. tsdNz
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to group the query by all the conditions using a logical AND.</ahelp>"
-msgstr ""
-
-#. vG7ub
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10560\n"
-"help.text"
-msgid "Match any of the following"
-msgstr "Atbilst jebkam no šī"
-
-#. H4kNz
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10564\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to group the query by any of the conditions using a logical OR.</ahelp>"
-msgstr ""
-
-#. CRQPr
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10567\n"
-"help.text"
-msgid "Field name"
-msgstr "Lauka nosaukums"
-
-#. AUDUW
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN1056B\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the field name for the grouping condition.</ahelp>"
-msgstr ""
-
-#. vYSzM
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN1056E\n"
-"help.text"
-msgid "Condition"
-msgstr "Nosacījums"
-
-#. VHAhf
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10572\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the condition for the grouping.</ahelp>"
-msgstr ""
-
-#. LYZYG
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10575\n"
-"help.text"
-msgid "Value"
-msgstr "Vērtība"
-
-#. GBywN
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN10579\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the value for the grouping condition.</ahelp>"
-msgstr ""
-
-#. LM5AB
-#: querywizard06.xhp
-msgctxt ""
-"querywizard06.xhp\n"
-"par_idN1057C\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard07.xhp\" name=\"Query Wizard - Aliases\">Query Wizard - Aliases</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard07.xhp\" name=\"Vaicājuma vednis - Aizstājējvārdi\">Vaicājuma vednis - Aizstājējvārdi</link>"
-
-#. LGziG
-#: querywizard07.xhp
-msgctxt ""
-"querywizard07.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Aliases"
-msgstr "Vaicājuma vednis - Aizstājējvārdi"
-
-#. cEc4Q
-#: querywizard07.xhp
-msgctxt ""
-"querywizard07.xhp\n"
-"par_idN10543\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard07.xhp\">Query Wizard - Aliases</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard07.xhp\">Vaicājuma vednis - Aizstājējvārdi</link>"
-
-#. 8qMru
-#: querywizard07.xhp
-msgctxt ""
-"querywizard07.xhp\n"
-"par_idN10553\n"
-"help.text"
-msgid "Assigns aliases to field names. Aliases are optional, and can provide more user-friendly names, which are displayed in place of field names. For example, an alias can be used when fields from different tables have the same name."
-msgstr ""
-
-#. GKQBZ
-#: querywizard07.xhp
-msgctxt ""
-"querywizard07.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Alias"
-msgstr "Aizstājvārds"
-
-#. TiaDt
-#: querywizard07.xhp
-msgctxt ""
-"querywizard07.xhp\n"
-"par_idN1055A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the alias for the field name.</ahelp>"
-msgstr "<ahelp hid=\".\">Ievadiet aizstājvārdu lauka nosaukumam.</ahelp>"
-
-#. jZ6HM
-#: querywizard07.xhp
-msgctxt ""
-"querywizard07.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard08.xhp\" name=\"Query Wizard - Overview\">Query Wizard - Overview</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard08.xhp\" name=\"Vaicājuma vednis - Pārskats\">Vaicājuma vednis - Pārskats</link>"
-
-#. ZD37L
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Wizard - Overview"
-msgstr "Vaicājuma vednis - Pārskats"
-
-#. DagT5
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN10543\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard08.xhp\">Query Wizard - Overview</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard08.xhp\">Vaicājuma vednis - Pārskats</link>"
-
-#. Eugc7
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN10553\n"
-"help.text"
-msgid "Enter a name of the query, and specify whether you want to display or to modify the query after the Wizard is finished."
-msgstr ""
-
-#. zjCxf
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN10556\n"
-"help.text"
-msgid "Name of the query"
-msgstr "Vaicājuma nosaukums"
-
-#. ZLJYh
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN1055A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the name of the query.</ahelp>"
-msgstr "<ahelp hid=\".\">Ievadiet vaicājuma nosaukumu.</ahelp>"
-
-#. uC9Qc
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "Display query"
-msgstr "Rādīt vaicājumu"
-
-#. BJa3G
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN10561\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to save and display the query.</ahelp>"
-msgstr "<ahelp hid=\".\">Atlasiet, lai saglabātu un attēlotu vaicājumu.</ahelp>"
-
-#. yN4FB
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN10564\n"
-"help.text"
-msgid "Modify query"
-msgstr "Modificēt vaicājumu"
-
-#. VKpNF
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select to save the query and open it for editing.</ahelp>"
-msgstr "<ahelp hid=\".\">Atlasiet, lai saglabātu vaicājumu un atvērtu to rediģēšanai.</ahelp>"
-
-#. 3ww32
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN1056B\n"
-"help.text"
-msgid "Overview"
-msgstr "Pārskats"
-
-#. SfUBA
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Displays a summary of the query.</ahelp>"
-msgstr ""
-
-#. 84Y4U
-#: querywizard08.xhp
-msgctxt ""
-"querywizard08.xhp\n"
-"par_idN10572\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard00.xhp\" name=\"Query Wizard\">Query Wizard</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard00.xhp\" name=\"Vaicājuma vednis\">Vaicājuma vednis</link>"
-
-#. Us2de
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"tit\n"
-"help.text"
-msgid "Date and Time"
-msgstr "Datums un laiks"
-
-#. KYD3y
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"hd_id2320932\n"
-"help.text"
-msgid "<variable id=\"rep_datetime\"><link href=\"text/shared/explorer/database/rep_datetime.xhp\">Date and Time</link></variable>"
-msgstr "<variable id=\"rep_datetime\"><link href=\"text/shared/explorer/database/rep_datetime.xhp\">Datums un laiks</link></variable>"
-
-#. p8Mrd
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id8638874\n"
-"help.text"
-msgid "<ahelp hid=\".\">You can open the Date and Time dialog of the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">Insert - Date and Time</item>.</ahelp>"
-msgstr ""
-
-#. tSLyd
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id6278878\n"
-"help.text"
-msgid "Press <item type=\"keycode\">Shift-F1</item> and point with the mouse at an input box to see a help text for this input box."
-msgstr ""
-
-#. ppg4k
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id393078\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enable Include Date to insert a date field into the active area of the report. The date field displays the current date when the report is executed.</ahelp>"
-msgstr ""
-
-#. 6ued5
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id1271401\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a format to display the date.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Atlasiet formātu, lai attēlotu datumu.</ahelp>"
-
-#. VvPJF
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id8718832\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enable Include Time to insert a time field into the active area of the report. The time field displays the current time when the report is executed.</ahelp>"
-msgstr ""
-
-#. DfCAA
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id8561052\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a format to display the time.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Atlasiet formātu, lai attēlotu laiku.</ahelp>"
-
-#. cVAzu
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id5992919\n"
-"help.text"
-msgid "Click OK to insert the field."
-msgstr "Klikšķiniet Labi, lai ievietotu lauku."
-
-#. WFpF6
-#: rep_datetime.xhp
-msgctxt ""
-"rep_datetime.xhp\n"
-"par_id4320810\n"
-"help.text"
-msgid "You can click the date or time field and drag to another position within the same area, or edit the properties in the Properties window."
-msgstr ""
-
-#. DCjDN
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"tit\n"
-"help.text"
-msgid "Insert Fields"
-msgstr ""
-
-#. DiU2a
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"bm_id61540566967968\n"
-"help.text"
-msgid "<bookmark_value>insert fields;in report design</bookmark_value> <bookmark_value>add fields;in report design</bookmark_value> <bookmark_value>report design;add fields to report</bookmark_value>"
-msgstr ""
-
-#. 7sGPE
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"hd_id361540562942432\n"
-"help.text"
-msgid "<variable id=\"addfields\"><link href=\"text/shared/explorer/database/rep_insertfield.xhp\" name=\"Add Fields\">Add fields to report</link></variable>"
-msgstr ""
-
-#. zFCzB
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id3587145\n"
-"help.text"
-msgid "<ahelp hid=\".\">The Add Field window helps you to insert the table entries in the report.</ahelp>"
-msgstr ""
-
-#. dzGbq
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id4503921\n"
-"help.text"
-msgid "The Add Field window is shown automatically when you have selected a table in the Contents box and leave that box."
-msgstr ""
-
-#. hQDBC
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id171540674707522\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">View - Add Field</item>."
-msgstr ""
-
-#. hxBBt
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id991540674901837\n"
-"help.text"
-msgid "<image src=\"media/icon-themes/cmd/lc_addfield.svg\" id=\"img_id621540674901837\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id491540674901837\">Add field icon</alt></image>"
-msgstr ""
-
-#. oEoAE
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id121540674874655\n"
-"help.text"
-msgid "Click the Add Field icon on the toolbar."
-msgstr ""
-
-#. BqWBD
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id141540563922693\n"
-"help.text"
-msgid "Select the field in the Add Field dialog and click <emph>Insert</emph>. You can select multiple fields pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking on the fields name or using the Shift key while pressing the mouse button. Click <emph>Insert</emph> in the toolbar to add the fields to the report."
-msgstr ""
-
-#. BGjjH
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id4051026\n"
-"help.text"
-msgid "Drag and drop the field names one by one from the Add Field window into the Detail area of the report. Position the fields as you like. Use the icons in the toolbars to align the fields."
-msgstr ""
-
-#. Hk568
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id3397320\n"
-"help.text"
-msgid "It is not possible to overlap the fields. If you drop a table field on the Detail area, then a label and a text box are inserted."
-msgstr ""
-
-#. RGprC
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id3059785\n"
-"help.text"
-msgid "You can also insert text that should be the same on every page of the report. Click the Label Field icon <image id=\"img_id5605334\" src=\"media/icon-themes/cmd/lc_addfield.svg\" width=\"0.566cm\" height=\"0.566cm\" localize=\"true\"><alt id=\"alt_id5605334\">Icon</alt></image>, then drag a rectangle in the Page Header or Page Footer area. Edit the Label property to show the text you want."
-msgstr ""
-
-#. VjpkA
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"hd_id251540563929787\n"
-"help.text"
-msgid "Sorting fields names"
-msgstr ""
-
-#. pNfxS
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id651540564204840\n"
-"help.text"
-msgid "<image src=\"media/icon-themes/cmd/sc_sortascending.svg\" id=\"img_id631540564204841\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id141540564204841\">Sort Ascending icon</alt></image>"
-msgstr ""
-
-#. EfMFi
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id401540563992665\n"
-"help.text"
-msgid "Sort names ascending."
-msgstr ""
-
-#. 9jVwk
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id811540564184191\n"
-"help.text"
-msgid "<image src=\"media/icon-themes/cmd/sc_sortdescending.svg\" id=\"img_id391540564184192\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id571540564184192\">Sort descending icon</alt></image>"
-msgstr ""
-
-#. BEcwL
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id401540563942665\n"
-"help.text"
-msgid "Sort names descending,"
-msgstr ""
-
-#. GRKuP
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id851540564212907\n"
-"help.text"
-msgid "<image src=\"media/icon-themes/cmd/lc_removefiltersort.svg\" id=\"img_id41540564212907\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id421540564212908\">Undo sorting icon</alt></image>"
-msgstr ""
-
-#. DVAm8
-#: rep_insertfield.xhp
-msgctxt ""
-"rep_insertfield.xhp\n"
-"par_id401540533942665\n"
-"help.text"
-msgid "Restore original sorting"
-msgstr ""
-
-#. gCECo
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"tit\n"
-"help.text"
-msgid "Report Builder"
-msgstr "Atskaišu veidotājs"
-
-#. Yyb28
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"bm_id1614429\n"
-"help.text"
-msgid "<bookmark_value>Report Builder</bookmark_value> <bookmark_value>Oracle Report Builder</bookmark_value>"
-msgstr ""
-
-#. 8XCCL
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"hd_id8773155\n"
-"help.text"
-msgid "<variable id=\"rep_main\"><link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link></variable>"
-msgstr "<variable id=\"rep_main\"><link href=\"text/shared/explorer/database/rep_main.xhp\">Atskaišu veidotājs</link></variable>"
-
-#. tcUx2
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id5248573\n"
-"help.text"
-msgid "The Report Builder is a tool to create your own database reports. Unlike with the <link href=\"text/shared/autopi/01100000.xhp\">Report Wizard</link>, using the Report Builder you can take control to design the report the way you want. The generated report is a Writer document that you can edit, too."
-msgstr ""
-
-#. A7xcb
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7128818\n"
-"help.text"
-msgid "To use the Report Builder, the Report Builder component must be installed. In addition, the Java Runtime Environment (JRE) software must be installed, and this software must be selected in %PRODUCTNAME."
-msgstr ""
-
-#. MUFG8
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"hd_id556047\n"
-"help.text"
-msgid "To install the JRE software"
-msgstr "Lai instalētu JRE programmatūru"
-
-#. CTy58
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id4515823\n"
-"help.text"
-msgid "The Report Builder requires an installed Java Runtime Environment (JRE)."
-msgstr "Atskaišu veidotājs pieprasa instalētu Java Runtime Environment (JRE)."
-
-#. t42Ud
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id4044312\n"
-"help.text"
-msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/java.xhp\">Advanced</link>."
-msgstr ""
-
-#. bGABC
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id1369060\n"
-"help.text"
-msgid "Wait up to one minute, while %PRODUCTNAME collects information on installed Java software on your system."
-msgstr ""
-
-#. oxLT3
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id860927\n"
-"help.text"
-msgid "If a recent JRE version is found on your system, you see an entry in the list."
-msgstr ""
-
-#. 87xW7
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id8581804\n"
-"help.text"
-msgid "Click the option button in front of the entry to enable this JRE version for use in %PRODUCTNAME."
-msgstr ""
-
-#. KmqC6
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7730033\n"
-"help.text"
-msgid "Ensure that <emph>Use a Java runtime environment</emph> is enabled."
-msgstr ""
-
-#. oeX8D
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id6317636\n"
-"help.text"
-msgid "If no JRE version is found on your system, open your web browser and download the JRE software from <link href=\"http://www.java.com\">http://www.java.com</link>. Install the JRE software. Then restart %PRODUCTNAME and open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced again."
-msgstr ""
-
-#. 87hJD
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"hd_id9759514\n"
-"help.text"
-msgid "To open the Report Builder"
-msgstr "Lai atvērtu Atskaišu veidotāju"
-
-#. TxLZj
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id9076509\n"
-"help.text"
-msgid "Open a Base file or create a new database. The database must contain at least one table with at least one data field and a primary key field."
-msgstr ""
-
-#. NiuEf
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7050691\n"
-"help.text"
-msgid "Click the Reports icon in the Base window, then choose Create Report in Design View."
-msgstr ""
-
-#. u7db8
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7118747\n"
-"help.text"
-msgid "The Report Builder window opens."
-msgstr "Atveras atskaišu veidotāja logs."
-
-#. eC7Ku
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id8283639\n"
-"help.text"
-msgid "The Report Builder is divided into three parts. On the top you see the menu, with the toolbars below."
-msgstr ""
-
-#. FZucS
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2291024\n"
-"help.text"
-msgid "On the right you see the Properties window with the property values of the currently selected object."
-msgstr ""
-
-#. 9iUTs
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2100589\n"
-"help.text"
-msgid "The left part of the Report Builder window shows the Report Builder view. The Report Builder view is initially divided into three sections, from top to bottom:"
-msgstr ""
-
-#. bpA2e
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id5022125\n"
-"help.text"
-msgid "<emph>Page Header</emph> - drag control fields with fixed text into the Page Header area"
-msgstr ""
-
-#. TcX6C
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id6844386\n"
-"help.text"
-msgid "<emph>Detail</emph> - drag and drop database fields into the Detail area"
-msgstr ""
-
-#. k3qgL
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7018646\n"
-"help.text"
-msgid "<emph>Page Footer</emph> - drag control fields with fixed text into the Page Footer area"
-msgstr ""
-
-#. GbMdT
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id5857112\n"
-"help.text"
-msgid "To insert an additional <emph>Report Header</emph> and <emph>Report Footer</emph> area choose <item type=\"menuitem\">Edit - Insert Report Header/Footer</item>. These areas contain text that appears at the start and end of the whole report."
-msgstr ""
-
-#. cvEuz
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id6042664\n"
-"help.text"
-msgid "Click the \"-\" icon in front of an area name to collapse that area to one line in the Report Builder view. The \"-\" icon changes to a \"+\" icon, and you can click this to expand the area again."
-msgstr ""
-
-#. NCMdn
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id1589098\n"
-"help.text"
-msgid "You insert database fields by drag-and-drop into the Detail area. See the section \"To insert fields into the report\" below."
-msgstr ""
-
-#. 3dx6B
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id1278420\n"
-"help.text"
-msgid "In addition, you can click the Label Field or Text Box icon in the toolbar, then drag a rectangle in the Page Header or Page Footer area, to define a text that is the same on all pages. You enter the text in the Label box of the corresponding Properties window. You can also add graphics by using the Graphics icon."
-msgstr ""
-
-#. 25GDr
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7479476\n"
-"help.text"
-msgid "To connect the report to a database table"
-msgstr ""
-
-#. TuFVF
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2218390\n"
-"help.text"
-msgid "Move the mouse to the Properties view. You see two tab pages General and Data."
-msgstr ""
-
-#. WdBn9
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7771538\n"
-"help.text"
-msgid "On the Data tab page, click Content to open the combo box."
-msgstr ""
-
-#. UKbEt
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id366527\n"
-"help.text"
-msgid "Select the table for that you want to create the report."
-msgstr ""
-
-#. NzJzg
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7996459\n"
-"help.text"
-msgid "After selecting the table, press the Tab key to leave the Content box."
-msgstr ""
-
-#. TFFLy
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2531815\n"
-"help.text"
-msgid "The <link href=\"text/shared/explorer/database/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window opens automatically and shows all fields of the selected table."
-msgstr ""
-
-#. vsFKB
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7657399\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the left margin of the area.</ahelp>"
-msgstr ""
-
-#. BqG3G
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id8925138\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the right margin of the area.</ahelp>"
-msgstr ""
-
-#. UcCYH
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id5461897\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the top margin of the area.</ahelp>"
-msgstr ""
-
-#. gDxeY
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id8919339\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to align the objects at the bottom margin of the area.</ahelp>"
-msgstr ""
-
-#. nNfGG
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id4634235\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the smallest width.</ahelp>"
-msgstr ""
-
-#. GuD9F
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id1393475\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the smallest height.</ahelp>"
-msgstr ""
-
-#. NAFEu
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id6571550\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the greatest width.</ahelp>"
-msgstr ""
-
-#. ssdFE
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id5376140\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select two or more objects and click this icon to resize the objects to the greatest height.</ahelp>"
-msgstr ""
-
-#. yLQm4
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id9611499\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a horizontal line to the current area.</ahelp>"
-msgstr ""
-
-#. XVFTm
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id6765953\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a vertical line to the current area.</ahelp>"
-msgstr ""
-
-#. 5gYXB
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id0409200922242612\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shrinks the selected section to remove top and bottom empty space.</ahelp>"
-msgstr ""
-
-#. K9bij
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id0409200922242617\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shrinks the selected section to remove top empty space.</ahelp>"
-msgstr ""
-
-#. S4vSt
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id0409200922242661\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shrinks the selected section to remove bottom empty space.</ahelp>"
-msgstr ""
-
-#. bFTYS
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id1511581\n"
-"help.text"
-msgid "After inserting fields in the Detail view, the report is ready for execution."
-msgstr ""
-
-#. j9t2k
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id4881740\n"
-"help.text"
-msgid "To execute a report"
-msgstr ""
-
-#. QhtuG
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id8286385\n"
-"help.text"
-msgid "Click the Execute Report icon<image id=\"img_id3380230\" src=\"cmd/sc_executereport.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3380230\">Icon</alt></image> on the toolbar."
-msgstr ""
-
-#. EbwoS
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2354197\n"
-"help.text"
-msgid "A Writer document opens and shows the report you have created, which contains all values of the database table which you have insert."
-msgstr ""
-
-#. CCUrN
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2485122\n"
-"help.text"
-msgid "If the database contents did change, execute the report again to update the result report."
-msgstr ""
-
-#. XrBwB
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"hd_id8746910\n"
-"help.text"
-msgid "To edit a report"
-msgstr ""
-
-#. GinFd
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id9636524\n"
-"help.text"
-msgid "First decide if you want to edit the generated report, which is a static Writer document, or if you want to edit the Report Builder view and then generate a new report based on the new design."
-msgstr ""
-
-#. awMUn
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id5941648\n"
-"help.text"
-msgid "The Writer document is opened read-only. To edit the Writer document, click <emph>Edit Document</emph> on the information bar, or choose <emph>Edit - Edit Mode</emph>."
-msgstr ""
-
-#. G2dAA
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id8307138\n"
-"help.text"
-msgid "If you want to edit the Report Builder view, you can change some of its properties."
-msgstr ""
-
-#. XYvED
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7138889\n"
-"help.text"
-msgid "Click in the Details area. Then in the Properties window, change some properties, for example the background color."
-msgstr ""
-
-#. LYDVA
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id9869380\n"
-"help.text"
-msgid "After finishing, click the Execute Report icon<image id=\"Graphic2\" src=\"cmd/sc_executereport.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_\">Icon</alt></image> to create a new report."
-msgstr ""
-
-#. h2c39
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id12512\n"
-"help.text"
-msgid "If you close the Report Builder, you will be asked if the report should be saved. Click Yes, give the report a name, and click OK."
-msgstr ""
-
-#. T8vuS
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2676168\n"
-"help.text"
-msgid "Sorting the report"
-msgstr ""
-
-#. Cg7RE
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2626422\n"
-"help.text"
-msgid "Without sorting or grouping, the records will be inserted into the report in the order in which they are retrieved from the database."
-msgstr ""
-
-#. 5hPjG
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id1743827\n"
-"help.text"
-msgid "Open the Report Builder view and click the Sorting and Grouping icon<image id=\"img_id9557786\" src=\"cmd/sc_dbsortingandgrouping.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id9557786\">Icon</alt></image> on the toolbar. You see the <link href=\"text/shared/explorer/database/rep_sort.xhp\">Sorting and Grouping</link> dialog."
-msgstr ""
-
-#. 35NvQ
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id4331797\n"
-"help.text"
-msgid "In the Groups box, click the field which you want as the first sort field, and set the Sorting property."
-msgstr ""
-
-#. heWc5
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id4191717\n"
-"help.text"
-msgid "Execute the report."
-msgstr ""
-
-#. FoAAB
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id2318796\n"
-"help.text"
-msgid "Grouping"
-msgstr "Grupēšana"
-
-#. Ckxyp
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id399182\n"
-"help.text"
-msgid "Open the Report Builder view and click the Sorting and Grouping icon<image id=\"Graphic21\" src=\"cmd/sc_dbsortingandgrouping.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_\">Icon</alt></image> on the toolbar. You see the <link href=\"text/shared/explorer/database/rep_sort.xhp\">Sorting and Grouping</link> dialog."
-msgstr ""
-
-#. zfuDw
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7588732\n"
-"help.text"
-msgid "In the Groups box, open the Group Header list box and select to show a group header."
-msgstr ""
-
-#. AAvAB
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id95828\n"
-"help.text"
-msgid "Click the Add Field icon<image id=\"Graphic3\" src=\"cmd/sc_addfield.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_\">Icon</alt></image> to open the Add Field window."
-msgstr ""
-
-#. WyQ6C
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id5675527\n"
-"help.text"
-msgid "Drag-and-drop the field entry that you want to group into the group header section. Then drag-and-drop the remaining fields into the Detail section."
-msgstr ""
-
-#. GscG2
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id3496200\n"
-"help.text"
-msgid "Execute the report. The report shows the grouped records."
-msgstr ""
-
-#. dLiAY
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7599108\n"
-"help.text"
-msgid "If you like to sort and group, open the Report Builder view, then open the Sorting and Grouping dialog. Select to show a Group Header for the fields that you want to group, and select to hide the Group Header for the fields that you want to be sorted. Close the Sorting and Grouping window and execute the report."
-msgstr ""
-
-#. WGFAC
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id888698\n"
-"help.text"
-msgid "Updating and printing your data"
-msgstr ""
-
-#. 9CfYU
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id3394573\n"
-"help.text"
-msgid "When you insert some new data or edit data in the table, a new report will show the updated data."
-msgstr ""
-
-#. xeBzX
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id7594225\n"
-"help.text"
-msgid "Click the Reports icon<image id=\"img_id4678487\" src=\"dbaccess/res/reports_32.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4678487\">Icon</alt></image> and double-click your last saved report. A new Writer document will be created which shows the new data."
-msgstr ""
-
-#. Kp54P
-#: rep_main.xhp
-msgctxt ""
-"rep_main.xhp\n"
-"par_id8147221\n"
-"help.text"
-msgid "To print a report, choose <item type=\"menuitem\">File - Print</item> from the Writer document."
-msgstr ""
-
-#. AnAta
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"tit\n"
-"help.text"
-msgid "Report Navigator"
-msgstr "Atskaites navigators"
-
-#. 6utJF
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"bm_id5823847\n"
-"help.text"
-msgid "<bookmark_value>formulas in reports;editing</bookmark_value><bookmark_value>functions in reports;editing</bookmark_value>"
-msgstr ""
-
-#. Y2kdn
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"hd_id1821955\n"
-"help.text"
-msgid "<variable id=\"rep_navigator\"><link href=\"text/shared/explorer/database/rep_navigator.xhp\">Report Navigator</link></variable>"
-msgstr "<variable id=\"rep_navigator\"><link href=\"text/shared/explorer/database/rep_navigator.xhp\">Atskaites navigators</link></variable>"
-
-#. SHcxA
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id1150852\n"
-"help.text"
-msgid "You can open the Report Navigator window of the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">View - Report Navigator</item>."
-msgstr ""
-
-#. hBVny
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id1111484\n"
-"help.text"
-msgid "<ahelp hid=\".\">The Report Navigator reveals the structure of the report. You can use the Report Navigator to insert functions into the report.</ahelp>"
-msgstr ""
-
-#. LJxNC
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id8314157\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click an entry in the Report Navigator. The corresponding object or area is selected in the Report Builder view. Right-click an entry to open the context menu.</ahelp>"
-msgstr ""
-
-#. prLAV
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"hd_id2932828\n"
-"help.text"
-msgid "To enter functions to the report"
-msgstr ""
-
-#. CSJFz
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id5091708\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the context menu of the Report Navigator, you see the same commands as in the Report Builder view, plus additional commands to create new functions or to delete them.</ahelp>"
-msgstr ""
-
-#. TVyh8
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id9449446\n"
-"help.text"
-msgid "Functions can be entered using a syntax as specified by the <link href=\"https://en.wikipedia.org/wiki/OpenFormula\" name=\"English Wikipedia: OpenFormula\">OpenFormula</link> proposal."
-msgstr ""
-
-#. 3GfjV
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id4095583\n"
-"help.text"
-msgid "See <link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wiki page about Base</link> for some more help regarding the functions in a report."
-msgstr ""
-
-#. 2spAx
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"hd_id311593\n"
-"help.text"
-msgid "To calculate a sum for each client"
-msgstr ""
-
-#. zGU9C
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id3948789\n"
-"help.text"
-msgid "Open the Report Navigator."
-msgstr "Atvērt atskaites navigatoru."
-
-#. FSYuv
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id5391399\n"
-"help.text"
-msgid "Open the Groups entry and the group where you want to calculate the cost."
-msgstr ""
-
-#. bP94U
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id6989654\n"
-"help.text"
-msgid "The group has a sub entry called functions."
-msgstr ""
-
-#. FbfyS
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id1803643\n"
-"help.text"
-msgid "Open the context menu (right click) on the functions entry, choose to create a new function, and select it."
-msgstr ""
-
-#. hTbw9
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id868251\n"
-"help.text"
-msgid "In the property browser you see the function."
-msgstr ""
-
-#. KBn87
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id6247749\n"
-"help.text"
-msgid "Change the name to e.g. CostCalc and the formula to [CostCalc] + [enter your cost column name]."
-msgstr ""
-
-#. y2cwk
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id1565904\n"
-"help.text"
-msgid "In the initial value enter 0."
-msgstr ""
-
-#. RkdrZ
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id1569261\n"
-"help.text"
-msgid "Now you can insert a text field and bind it to your [CostCalc] (appears in the data field list box)."
-msgstr ""
-
-#. utdSG
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id9256874\n"
-"help.text"
-msgid "Maybe you have to set the initial value to the value of the field like [field]."
-msgstr ""
-
-#. Hp4tF
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id4601886\n"
-"help.text"
-msgid "If there are blank fields in the cost column, use the following formula to replace the blank fields' content with zero:"
-msgstr ""
-
-#. Dzpam
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id1754509\n"
-"help.text"
-msgid "[SumCost] + IF(ISBLANK([field]);0;[field])"
-msgstr ""
-
-#. tGCiz
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id8122196\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the formula that defines the function. Use OpenFormula syntax.</ahelp>"
-msgstr ""
-
-#. mTZGY
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id9909665\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the initial value for the evaluation of the formula. Often this is set to 0 or to 1.</ahelp>"
-msgstr ""
-
-#. qEtTN
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id9141819\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If Deep traversing is enabled, functions are evaluated considering all lower levels of hierarchy. This would be used for instance for line numbering. If Deep traversing is not enabled, only the first level of hierarchy is evaluated.</ahelp>"
-msgstr ""
-
-#. XGkHa
-#: rep_navigator.xhp
-msgctxt ""
-"rep_navigator.xhp\n"
-"par_id6354869\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If Pre evaluation is enabled, functions are evaluated only when the report is finished.</ahelp>"
-msgstr ""
-
-#. nNgrq
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"tit\n"
-"help.text"
-msgid "Page Numbers"
-msgstr "Lappušu numuri"
-
-#. YECLh
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"hd_id3674123\n"
-"help.text"
-msgid "<variable id=\"rep_pagenumbers\"><link href=\"text/shared/explorer/database/rep_pagenumbers.xhp\">Page Numbers</link></variable>"
-msgstr "<variable id=\"rep_pagenumbers\"><link href=\"text/shared/explorer/database/rep_pagenumbers.xhp\">Lappušu numuri</link></variable>"
-
-#. AoXLc
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id3424481\n"
-"help.text"
-msgid "<ahelp hid=\".\">You can open the Page Numbers dialog of the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">Insert - Page Numbers</item>.</ahelp>"
-msgstr ""
-
-#. ygaGw
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id1068758\n"
-"help.text"
-msgid "Press <item type=\"keycode\">Shift-F1</item> and point with the mouse at an input box to see a help text for this input box."
-msgstr ""
-
-#. Cz9Sk
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id1559190\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Page N</ahelp>"
-msgstr ""
-
-#. rcaDS
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id9879146\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Page N of M</ahelp>"
-msgstr ""
-
-#. tDDwG
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id9404278\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Top of Page (Header)</ahelp>"
-msgstr ""
-
-#. dvqcL
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id7626880\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Bottom of Page (Footer)</ahelp>"
-msgstr ""
-
-#. XRZPh
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id6124149\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Alignment</ahelp>"
-msgstr ""
-
-#. horox
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id8257087\n"
-"help.text"
-msgid "Select the format for the page numbers, either \"Page N\" or \"Page N of M\", where N stands for the current page number, and M for the total number of pages in the report."
-msgstr ""
-
-#. 84Dct
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id3479415\n"
-"help.text"
-msgid "Select to show the page numbers in the Page Header area or in the Page Footer area."
-msgstr ""
-
-#. GxdrQ
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id4441663\n"
-"help.text"
-msgid "Select an alignment. By default the page numbers are centered between the left and right margins. You can align the field to the left or right. You can also select Inside to print page number on odd pages on the left side and even page numbers on the right side. Select Outside for the opposite alignment."
-msgstr ""
-
-#. MJV32
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id3012176\n"
-"help.text"
-msgid "When you click OK, a data field for the page numbers is inserted. If no header or footer area exist, the area will be created as needed."
-msgstr ""
-
-#. 6QnRv
-#: rep_pagenumbers.xhp
-msgctxt ""
-"rep_pagenumbers.xhp\n"
-"par_id8532670\n"
-"help.text"
-msgid "You can click the data field and drag to another position within the same area, or edit the properties in the Properties window."
-msgstr ""
-
-#. 7uNv6
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"tit\n"
-"help.text"
-msgid "Properties"
-msgstr "Īpašības"
-
-#. wAcV9
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"hd_id8836939\n"
-"help.text"
-msgid "<variable id=\"rep_prop\"><link href=\"text/shared/explorer/database/rep_prop.xhp\">Properties</link></variable>"
-msgstr ""
-
-#. ro5Tm
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id2711264\n"
-"help.text"
-msgid "The Properties window of the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> always shows the properties of the currently selected object in the Report Builder view."
-msgstr ""
-
-#. hiDZo
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id1080660\n"
-"help.text"
-msgid "Press Shift-F1 and point with the mouse at an input box to see a help text for this input box."
-msgstr ""
-
-#. WFv9q
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7175817\n"
-"help.text"
-msgid "On first start of the Report Builder, the Properties window shows the <emph>Data</emph> tab page for the whole report."
-msgstr ""
-
-#. khEAx
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id9895931\n"
-"help.text"
-msgid "Select a table from the Contents list, then press Tab or click outside the input box to leave the input box."
-msgstr ""
-
-#. DZ342
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id3587145\n"
-"help.text"
-msgid "<ahelp hid=\".\">The <link href=\"text/shared/explorer/database/rep_insertfield.xhp\" name=\"add_fields_link\">Add fields to report</link> window is shown automatically when you have selected a table in the Contents box and leave that box. You can also click the Add Field icon on the toolbar, or choose <item type=\"menuitem\">View - Add Field</item>.</ahelp>"
-msgstr ""
-
-#. 5BJS6
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id6993926\n"
-"help.text"
-msgid "The <emph>General</emph> tab page can be used to change the name of the report, and to disable the Page Header or Page Footer areas, among others."
-msgstr ""
-
-#. eGuih
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id3729361\n"
-"help.text"
-msgid "<ahelp hid=\".\">To display the <emph>Data</emph> or <emph>General</emph> tab page for the whole report, choose <item type=\"menuitem\">Edit - Select All - Select Report</item>.</ahelp>"
-msgstr ""
-
-#. r4tre
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id1768852\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Groups are kept together by page or by column (default). You must enable Keep Together also.</ahelp>"
-msgstr ""
-
-#. PFQYf
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id6304818\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies in which context the page header will be printed: on all pages, or not on pages with a report header or footer.</ahelp>"
-msgstr ""
-
-#. 9rAVD
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id401623\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies in which context the page footer will be printed: on all pages, or not on pages with a report header or footer</ahelp>"
-msgstr ""
-
-#. rMRex
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id2162236\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print repeated values.</ahelp>"
-msgstr ""
-
-#. nCDvW
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7022003\n"
-"help.text"
-msgid "If you click the Page Header or Page Footer area without selecting any object, you see the <emph>General</emph> tab page for that area."
-msgstr ""
-
-#. xACk2
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7004303\n"
-"help.text"
-msgid "You can edit some visual properties for the area."
-msgstr ""
-
-#. hPUHN
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id2561723\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the background color for the selected object, both on screen and for printing.</ahelp>"
-msgstr ""
-
-#. BXnJc
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id1064485\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">An invisible object is not shown in the executed report. It is still visible in the Report Builder view.</ahelp>"
-msgstr ""
-
-#. Xd2SG
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id2356028\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Defines the height of the selected object.</ahelp>"
-msgstr ""
-
-#. GXpuh
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id1404461\n"
-"help.text"
-msgid "<ahelp hid=\".\">If the Conditional Print Expression evaluates to TRUE, the selected object will be printed.</ahelp>"
-msgstr ""
-
-#. jvkXA
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7404705\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the background of the selected object is transparent or opaque.</ahelp>"
-msgstr ""
-
-#. qgLML
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7466963\n"
-"help.text"
-msgid "If you click the <emph>Detail</emph> area without selecting any object, you see the <emph>General</emph> tab page for that area."
-msgstr ""
-
-#. kmEmG
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id3644215\n"
-"help.text"
-msgid "You can specify some properties to fine-tune the way the records are printed."
-msgstr ""
-
-#. cjDLx
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id3148899\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Force New Page specifies whether the current section and/or the next section is printed on a new page.</ahelp>"
-msgstr ""
-
-#. CuyG2
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id6164433\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">New Row Or Column specifies, for a multi-column design, whether the current section and/or the next section will be printed on a new row or column.</ahelp>"
-msgstr ""
-
-#. nHVy2
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7405011\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Keep Together specifies to print the current object starting on top of a new page if it doesn't fit on the current page.</ahelp>"
-msgstr ""
-
-#. FjNyy
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id1536606\n"
-"help.text"
-msgid "Insert some data fields into the Detail area, or insert other control fields into any area. When you select an inserted field, you can set the properties in the Properties window."
-msgstr ""
-
-#. 2LAyX
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id9631641\n"
-"help.text"
-msgid "For a Label field, you can change the displayed text in the Label input box."
-msgstr ""
-
-#. iy4M5
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7749565\n"
-"help.text"
-msgid "<ahelp hid=\".\">For a picture, you can specify to either insert the picture as a link to a file or only as an embedded object in the Base file. The embedded option increases the size of the Base file, while the link option is not as portable to other computers.</ahelp>"
-msgstr ""
-
-#. XKxxX
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id4041871\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the X Position for the selected object</ahelp>"
-msgstr ""
-
-#. bvgTD
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id9930722\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the Y Position for the selected object</ahelp>"
-msgstr ""
-
-#. YGfo2
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id5749687\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the width of the selected object.</ahelp>"
-msgstr ""
-
-#. pwu7Q
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id79348\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the font for the selected text object.</ahelp>"
-msgstr ""
-
-#. r9No9
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id2414014\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Print when group change</ahelp>"
-msgstr ""
-
-#. 25y9K
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id7617114\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Vert. Alignment</ahelp>"
-msgstr ""
-
-#. GXFDE
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id1593676\n"
-"help.text"
-msgid "On the <emph>General</emph> tab page of a data field, you can set the Formatting properties, among others."
-msgstr ""
-
-#. LyTPo
-#: rep_prop.xhp
-msgctxt ""
-"rep_prop.xhp\n"
-"par_id1243629\n"
-"help.text"
-msgid "<ahelp hid=\".\">On the Data tab page, you can change the data contents to be shown.</ahelp>"
-msgstr ""
-
-#. g3CBB
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"tit\n"
-"help.text"
-msgid "Sorting and Grouping"
-msgstr "Kārtošana un grupēšana"
-
-#. Xdr3M
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"hd_id3486434\n"
-"help.text"
-msgid "<variable id=\"rep_sort\"><link href=\"text/shared/explorer/database/rep_sort.xhp\">Sorting and Grouping</link></variable>"
-msgstr "<variable id=\"rep_sort\"><link href=\"text/shared/explorer/database/rep_sort.xhp\">Kārtošana un grupēšana</link></variable>"
-
-#. oV7wd
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id3068636\n"
-"help.text"
-msgid "<ahelp hid=\".\">In the Sorting and Grouping dialog of <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link>, you can define the fields that should be sorted in your report, and the fields that should be kept together to form a group.</ahelp> If you group your report by a certain field, all records with the same value of that field will be kept together in one group."
-msgstr ""
-
-#. KudoP
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id876186\n"
-"help.text"
-msgid "The Groups box shows the fields in an order from top to bottom. You can select any field, then click the Move Up or Move Down button to move this field up or down in the list."
-msgstr ""
-
-#. nG4vM
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id3939634\n"
-"help.text"
-msgid "The sorting and grouping will be applied in the order of the list from top to bottom."
-msgstr ""
-
-#. ZAFvB
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id599688\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the fields that will be used for sorting or grouping. The field at the top has the highest priority, the second field has the second priority, and so on.</ahelp>"
-msgstr ""
-
-#. ETyGL
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id1371501\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to open a list from which you can select a field.</ahelp>"
-msgstr ""
-
-#. kEwPE
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id4661702\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected field up in the list.</ahelp>"
-msgstr ""
-
-#. YmDk5
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id7868892\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected field down in the list.</ahelp>"
-msgstr ""
-
-#. amjzG
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id2188787\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the sorting order.</ahelp>"
-msgstr ""
-
-#. bYX8p
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id5833307\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to show or hide the Group Header.</ahelp>"
-msgstr ""
-
-#. tN76n
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id7726676\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to show or hide the Group Footer.</ahelp>"
-msgstr ""
-
-#. Ez4dt
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id3729361\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select to create a new group on each changed value, or on other properties.</ahelp>"
-msgstr ""
-
-#. bd2EW
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id0409200922142041\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Removes the selected field from the list.</ahelp>"
-msgstr ""
-
-#. CjspM
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id3405560\n"
-"help.text"
-msgid "By default a new group is created on every changed value of a record from the selected field. You can change this property depending on the type of field:"
-msgstr ""
-
-#. DD8mt
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id3409527\n"
-"help.text"
-msgid "For fields of type Text, you can select Prefix Characters and enter a number n of characters in the text box below. The records which are identical in the first n characters will be grouped together."
-msgstr ""
-
-#. DFvf2
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id7112338\n"
-"help.text"
-msgid "For fields of type Date/Time, you can group the records by the same year, quarter, month, week, day, hour, or minute. You can additionally specify an interval for weeks and hours: 2 weeks groups data in biweekly groups, 12 hours groups data in half-day groups."
-msgstr ""
-
-#. BBwXv
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id2855616\n"
-"help.text"
-msgid "For fields of type AutoNumber, Currency, or Number, you specify an interval."
-msgstr ""
-
-#. mjbMU
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id7700430\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the group interval value that records are grouped by.</ahelp>"
-msgstr ""
-
-#. XmWsa
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id1180455\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the level of detail by which a group is kept together on the same page.</ahelp>"
-msgstr ""
-
-#. KbCbd
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id2091433\n"
-"help.text"
-msgid "When you specify to keep together some records on the same page, you have three choices:"
-msgstr ""
-
-#. NnDGM
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id5092318\n"
-"help.text"
-msgid "No - page boundaries are not taken into account."
-msgstr ""
-
-#. Zmwag
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id9312417\n"
-"help.text"
-msgid "Whole Group - prints the group header, detail section, and group footer on the same page."
-msgstr ""
-
-#. Bzv5z
-#: rep_sort.xhp
-msgctxt ""
-"rep_sort.xhp\n"
-"par_id9089022\n"
-"help.text"
-msgid "With First Detail - prints the group header on a page only if the first detail record also can be printed on the same page."
-msgstr ""
diff --git a/source/lv/helpcontent2/source/text/shared/guide.po b/source/lv/helpcontent2/source/text/shared/guide.po
index 33db25fb983..8850fbf09b9 100644
--- a/source/lv/helpcontent2/source/text/shared/guide.po
+++ b/source/lv/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:21+0100\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7558,13 +7558,13 @@ msgctxt ""
msgid "Creating a New Query With the Query Wizard"
msgstr ""
-#. YzmZb
+#. axVzs
#: data_queries.xhp
msgctxt ""
"data_queries.xhp\n"
"par_idN1061E\n"
"help.text"
-msgid "In %PRODUCTNAME you can create a new query using the <link href=\"text/shared/explorer/database/querywizard00.xhp\">Query Wizard</link>:"
+msgid "In %PRODUCTNAME you can create a new query using the <link href=\"text/sdatabase/querywizard00.xhp\">Query Wizard</link>:"
msgstr ""
#. DaGBc
@@ -7837,13 +7837,13 @@ msgctxt ""
msgid "The Report Builder window opens with the report's information loaded."
msgstr ""
-#. ppQLn
+#. fQPtB
#: data_report.xhp
msgctxt ""
"data_report.xhp\n"
"par_id5086825\n"
"help.text"
-msgid "Use the toolbars and menu commands and drag-and-drop to edit the report as stated in the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> guide."
+msgid "Use the toolbars and menu commands and drag-and-drop to edit the report as stated in the <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link> guide."
msgstr ""
#. QSknJ
@@ -8116,13 +8116,13 @@ msgctxt ""
msgid "Click <emph>Create Report in Design View</emph>."
msgstr ""
-#. ef3RF
+#. GEE9s
#: data_reports.xhp
msgctxt ""
"data_reports.xhp\n"
"par_id4870754\n"
"help.text"
-msgid "Follow the instructions in the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> guide."
+msgid "Follow the instructions in the <link href=\"text/sdatabase/rep_main.xhp\">Report Builder</link> guide."
msgstr ""
#. xrbEC
@@ -8890,14 +8890,14 @@ msgctxt ""
msgid "<link href=\"text/sdatabase/02000000.xhp\" name=\"Create new query or table view, edit query structure\">Create new query or table view, edit query structure</link>"
msgstr ""
-#. A3f6p
+#. WuBVH
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_idN1072A\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard00.xhp\">Query Wizard</link>"
-msgstr "<link href=\"text/shared/explorer/database/querywizard00.xhp\">Vaicājuma vednis</link>"
+msgid "<link href=\"text/sdatabase/querywizard00.xhp\">Query Wizard</link>"
+msgstr ""
#. TjEU4
#: database_main.xhp
@@ -9025,13 +9025,13 @@ msgctxt ""
msgid "When <emph>Development Tools</emph> is enabled, a dockable window is shown at the bottom of the screen. This window has two sections:"
msgstr ""
-#. BbGGE
+#. e28an
#: dev_tools.xhp
msgctxt ""
"dev_tools.xhp\n"
"par_id31627862228021\n"
"help.text"
-msgid "<emph>Document Object Model tree view:</emph> Displays document portions according to the Document Object Model (DOM). Use this section to chose the object to inspect."
+msgid "<emph>Document Object Model tree view:</emph> Displays document portions according to the Document Object Model (DOM). Use this section to choose the object to inspect."
msgstr ""
#. fJXDt
@@ -9709,15 +9709,6 @@ msgctxt ""
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 ""
-#. 5nrks
-#: digital_signatures.xhp
-msgctxt ""
-"digital_signatures.xhp\n"
-"par_id486465\n"
-"help.text"
-msgid "<link href=\"text/shared/guide/digitalsign_send.xhp\">Applying digital signatures</link>"
-msgstr "<link href=\"text/shared/guide/digitalsign_send.xhp\">Ciparparakstu pielietošana</link>"
-
#. p8TL7
#: digital_signatures.xhp
msgctxt ""
@@ -18754,13 +18745,13 @@ msgctxt ""
msgid "<link href=\"text/sdatabase/tablewizard00.xhp\">Table Wizard</link>"
msgstr ""
-#. fLi53
+#. rimqF
#: main.xhp
msgctxt ""
"main.xhp\n"
"par_idN1085B\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/querywizard00.xhp\">Query Wizard</link>"
+msgid "<link href=\"text/sdatabase/querywizard00.xhp\">Query Wizard</link>"
msgstr ""
#. nEnao
@@ -23632,22 +23623,22 @@ msgctxt ""
msgid "Click <emph>Add</emph>."
msgstr "Klikšķiniet <emph>Pievienot</emph>."
-#. aU6ZX
+#. ZnGpz
#: scripting.xhp
msgctxt ""
"scripting.xhp\n"
"par_idN10760\n"
"help.text"
-msgid "In the <emph>Category</emph> list box, scroll down and open the \"%PRODUCTNAME Macros\" entry."
+msgid "In the <emph>Category</emph> list box, scroll down and open the \"Application Macros\" entry."
msgstr ""
-#. 8FvFT
+#. eJ2zS
#: scripting.xhp
msgctxt ""
"scripting.xhp\n"
"par_idN10768\n"
"help.text"
-msgid "You see entries for \"%PRODUCTNAME Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
+msgid "You see entries for \"Application Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
msgstr ""
#. ydmmt
@@ -23695,22 +23686,22 @@ msgctxt ""
msgid "Choose <emph>Tools - Customize - Keyboard</emph>."
msgstr ""
-#. uwMCv
+#. MYRtg
#: scripting.xhp
msgctxt ""
"scripting.xhp\n"
"par_idN10A59\n"
"help.text"
-msgid "In the <emph>Category</emph> list box, scroll down and open the \"%PRODUCTNAME Macros\" entry."
+msgid "In the <emph>Category</emph> list box, scroll down and open the \"Application Macros\" entry."
msgstr ""
-#. jjCqP
+#. 3vSLi
#: scripting.xhp
msgctxt ""
"scripting.xhp\n"
"par_idN10A61\n"
"help.text"
-msgid "You see entries for \"%PRODUCTNAME Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
+msgid "You see entries for \"Application Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
msgstr ""
#. FhQDE
@@ -23785,22 +23776,22 @@ msgctxt ""
msgid "Click <emph>Macro</emph> button."
msgstr ""
-#. KSGJB
+#. g38nu
#: scripting.xhp
msgctxt ""
"scripting.xhp\n"
"par_idN10A9E\n"
"help.text"
-msgid "In the <emph>Library</emph> list box, scroll down and open the \"%PRODUCTNAME Macros\" entry."
+msgid "In the <emph>Library</emph> list box, scroll down and open the \"Application Macros\" entry."
msgstr ""
-#. WvmAz
+#. EFNsf
#: scripting.xhp
msgctxt ""
"scripting.xhp\n"
"par_idN10AA6\n"
"help.text"
-msgid "You see entries for \"%PRODUCTNAME Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
+msgid "You see entries for \"Application Macros\" (scripts in the share directory of your %PRODUCTNAME installation), \"My Macros\" (scripts in the user directory), and the current document. Open any one of them to see the supported scripting languages."
msgstr ""
#. XQd7D
@@ -26188,6 +26179,15 @@ msgctxt ""
msgid "%PRODUCTNAME comes with a set of built-in templates that can be used to create documents, presentations, spreadsheets or drawings. You may use templates available in the template manager, create your own templates or browse online for additional templates."
msgstr ""
+#. Aa49E
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id041620170723521916\n"
+"help.text"
+msgid "Make use of categories to organize your templates. Create new templates or download templates and organize in the Template Manager. Use templates to save time for repetitive documents."
+msgstr ""
+
#. oD5Ec
#: template_manager.xhp
msgctxt ""
@@ -26206,13 +26206,13 @@ msgctxt ""
msgid "Previews of available templates show up in the main window based on your search and filtering choices. Double-click on any template icon to open a new document with the contents and formatting of the template."
msgstr ""
-#. FBoHs
+#. CwuoA
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id921608024342429\n"
"help.text"
-msgid "Choose <emph>Thumbnail View</emph> or <emph>List View</emph>, at the top right, to change how the templates are displayed."
+msgid "Choose <emph>Thumbnail View</emph> or <emph>List View</emph>, at the bottom left, to change how the templates are displayed."
msgstr ""
#. ED7GM
@@ -26233,13 +26233,13 @@ msgctxt ""
msgid "Thumbnail View"
msgstr ""
-#. ekcpz
+#. NDx6y
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id61608024086461\n"
"help.text"
-msgid "<image src=\"svx/res/gallist.png\" id=\"img_id461608024086461\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id361608024086461\">List View Icon</alt></image>"
+msgid "<image src=\"svx/res/listview.png\" id=\"img_id461608024086461\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id361608024086461\">List View Icon</alt></image>"
msgstr ""
#. 7Rg4W
@@ -26305,13 +26305,13 @@ msgctxt ""
msgid "Categories"
msgstr ""
-#. ykGZb
+#. 8yDGz
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723507710\n"
"help.text"
-msgid "<ahelp hid=\".\">Categories are folders where you place your templates.</ahelp> You may choose from the default categories: All Categories, My Templates, Business Correspondence, MediaWiki, Other Business Documents, Personal Correspondence and Documents, Presentations or Styles. You may also create new categories for your personal use. Use the <emph>Tools</emph> icon of the Template Manager to create a new category."
+msgid "<ahelp hid=\".\">Categories are folders where you place your templates.</ahelp> You may choose from the default categories: All Categories, My Templates, Business Correspondence, MediaWiki, Other Business Documents, Personal Correspondence and Documents, Presentations or Styles. You may also create new categories for your personal use. Press <widget>Manage</widget> at the top right corner of the Template Manager, then select New Category to create a new category."
msgstr ""
#. kGCqh
@@ -26323,249 +26323,240 @@ msgctxt ""
msgid "Categories inside a category are not allowed."
msgstr ""
-#. TqPzP
+#. ScKJd
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"hd_id041620170723509814\n"
"help.text"
-msgid "Tools"
+msgid "Manage"
msgstr ""
-#. aZqBY
+#. Y7DkF
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723504497\n"
"help.text"
-msgid "<ahelp hid=\".\">Click on the <emph>Tools</emph> icon at the bottom left to open the Tools menu.</ahelp> The options are: New Category, Rename Category, Delete Category, and Refresh. If the default template for an application is changed from the initial default setting, then an additional option, Reset Default Template, is available, which allows you to reset the default template for an application back to its initial default."
+msgid "<ahelp hid=\".\">Press <widget>Manage</widget> at the top right corner to open the Manage menu.</ahelp> The options are: New Category, Refresh, Reset Default, Import, and Extensions."
msgstr ""
-#. bN3Un
+#. gYGYe
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id816947600309745\n"
+"hd_id371642944398730\n"
"help.text"
-msgid "<image src=\"sfx2/res/actionaction013.png\" id=\"img_id381604426509745\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id13162474009745\">Tools Icon</alt></image>"
+msgid "Reset Default"
msgstr ""
-#. xBq4j
+#. rTUeD
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id421604400309745\n"
+"par_id711642944419925\n"
"help.text"
-msgid "Tools icon"
+msgid "This option appears only if you have set a template as default. Use this command to remove that setting. Use Filter to specify which default will be reset."
msgstr ""
-#. gWz9H
+#. aNTjV
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id041620170723508845\n"
+"hd_id041620170723516279\n"
"help.text"
-msgid "Move"
+msgid "Import"
msgstr ""
-#. mECQv
+#. QVmpk
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id041620170723518776\n"
+"par_id04162017072351776\n"
"help.text"
-msgid "<ahelp hid=\".\">If you want to move templates to a different category, then choose a template, or use <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+click to select additional templates, then press the <widget>Move</widget> button at the bottom right to open a dialog box, where you can choose to move your selection to a different category or to a new category. Default templates cannot be moved, but copies can be created in other categories.</ahelp>"
+msgid "<ahelp hid=\".\">If you want to import one or more templates into the Template Manager, then select Import, choose the Category where the imported templates should be placed, then select the files to be imported.</ahelp>"
msgstr ""
-#. bunpC
+#. 9zDEB
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id041620170723516791\n"
+"par_id171607689516049\n"
"help.text"
-msgid "Export"
+msgid "<image src=\"sfx2/res/actionview010.png\" id=\"img_id201607689516049\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id71607689516049\">Import Icon</alt></image>"
msgstr ""
-#. XZEZE
+#. f63Fp
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id041620170723513192\n"
+"par_id651607689516049\n"
"help.text"
-msgid "<ahelp hid=\".\">Choose a template in the main window, or use <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+click to select additional templates, and then press the <widget>Export</widget> button at the bottom right to export your selection to a folder on your computer.</ahelp>"
+msgid "Import"
msgstr ""
-#. CgT8y
+#. cP5Sj
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id181607689509896\n"
+"hd_id041620170723501627\n"
"help.text"
-msgid "<image src=\"sfx2/res/actiontemplates020.png\" id=\"img_id171607689509896\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id541607689509896\">Export Icon</alt></image>"
+msgid "Extensions"
msgstr ""
-#. Dwspi
+#. CFMpT
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id431607689509896\n"
+"par_id041620170723503494\n"
"help.text"
-msgid "Export button"
+msgid "<ahelp hid=\".\">To browse for more templates online, choose Extensions to open a search window. You can also search for templates at <link href=\"https://extensions.libreoffice.org/?Tags%5B%5D=118\">https://extensions.libreoffice.org</link>.</ahelp>"
msgstr ""
-#. tEEdj
+#. PrQ6K
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id581607995218423\n"
+"par_id431607690468509\n"
"help.text"
-msgid "To move or export all templates in a <emph>Category</emph>, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode>, then choose <emph>Move</emph> or <emph>Export</emph>."
+msgid "<image src=\"cmd/lc_additionsdialog.png\" id=\"img_id461607690468509\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id891607690468509\">Extensions Icon</alt></image>"
msgstr ""
-#. aNTjV
+#. mwqRi
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id041620170723516279\n"
+"par_id41607690468510\n"
"help.text"
-msgid "Import"
+msgid "Extensions"
msgstr ""
-#. xMRku
+#. ddVcH
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id04162017072351776\n"
+"hd_id501607689762479\n"
"help.text"
-msgid "<ahelp hid=\".\">If you want to import one or more templates into the Template Manager, then press the <widget>Import</widget> button at the bottom right, choose the Category where the imported templates should be placed, then select the files to be imported.</ahelp>"
+msgid "Actions with Individual Templates"
msgstr ""
-#. 9zDEB
+#. anVjc
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id171607689516049\n"
+"hd_id041620170723503949\n"
"help.text"
-msgid "<image src=\"sfx2/res/actionview010.png\" id=\"img_id201607689516049\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id71607689516049\">Import Icon</alt></image>"
+msgid "Open"
msgstr ""
-#. VBNy8
+#. kBsGv
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id651607689516049\n"
+"par_id041620170723503583\n"
"help.text"
-msgid "Import button"
+msgid "Select a template in the main window and right-click and then choose Open, press Enter or double click to open a new document using that template."
msgstr ""
-#. cP5Sj
+#. rbHmi
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id041620170723501627\n"
+"par_id721608222737939\n"
"help.text"
-msgid "Extensions"
+msgid "You can also use the <widget>Open</widget> button on the bottom right to open a new document using the selected template."
msgstr ""
-#. CU9Ag
+#. gvTq3
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id041620170723503494\n"
+"par_id411642157620977\n"
"help.text"
-msgid "<ahelp hid=\".\">To browse for more templates online, click on the Extensions icon at the bottom right to open a search window. You can also search for templates at <link href=\"https://extensions.libreoffice.org/?Tags%5B%5D=118\">https://extensions.libreoffice.org</link>.</ahelp>"
+msgid "<image src=\"cmd/sc_opentemplate.png\" id=\"img_id481642157620977\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id151642157620977\">Open Icon </alt></image>"
msgstr ""
-#. PrQ6K
+#. KJxbk
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id431607690468509\n"
+"par_id21642157620977\n"
"help.text"
-msgid "<image src=\"cmd/lc_additionsdialog.png\" id=\"img_id461607690468509\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id891607690468509\">Extensions Icon</alt></image>"
+msgid "Open"
msgstr ""
-#. pmxCc
+#. V9DEC
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id41607690468510\n"
+"hd_id041620170723504268\n"
"help.text"
-msgid "Extensions icon"
+msgid "Edit"
msgstr ""
-#. ddVcH
+#. DFYCC
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id501607689762479\n"
+"par_id041620170723502297\n"
"help.text"
-msgid "Actions with Individual Templates"
+msgid "Select a template in the main window and right-click and then choose Edit to edit the template. For built-in templates, it is possible to edit a copy."
msgstr ""
-#. anVjc
+#. 2yEaB
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id041620170723503949\n"
+"par_id21642157799589\n"
"help.text"
-msgid "Open"
+msgid "<image src=\"cmd/sc_opentemplate.png\" id=\"img_id411642157799589\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61642157799589\">Edit Icon</alt></image>"
msgstr ""
-#. kBsGv
+#. MwDEk
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id041620170723503583\n"
+"par_id581642157799589\n"
"help.text"
-msgid "Select a template in the main window and right-click and then choose Open, press Enter or double click to open a new document using that template."
+msgid "Edit"
msgstr ""
-#. fsr8t
+#. NuFNj
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id721608222737939\n"
+"hd_id041620170723509251\n"
"help.text"
-msgid "You can also use the <widget>Open</widget> button on the bottom left to open a new document using the selected template."
+msgid "Set as Default"
msgstr ""
-#. V9DEC
+#. hZoKd
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id041620170723504268\n"
+"par_id041620170723501975\n"
"help.text"
-msgid "Edit"
+msgid "Select a template in the main window and right-click and then choose Set as Default to set the template as the default template. This will cause a green tick to appear next to the selected template and the template will automatically load when a new document is created using the matching application."
msgstr ""
-#. DtYah
+#. x6Wr2
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"par_id041620170723502297\n"
+"par_id461642158211948\n"
"help.text"
-msgid "Select a template in the main window and right-click and then choose Edit to edit the template. This function is only available for templates that are not built-in."
+msgid "<image src=\"res/odt_16_8.png\" id=\"img_id991642158211948\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id921642158211948\">Set as Default Icon</alt></image>"
msgstr ""
-#. NuFNj
+#. Tt9Aw
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
-"hd_id041620170723509251\n"
+"par_id751642158211948\n"
"help.text"
msgid "Set as Default"
msgstr ""
-#. mctxE
-#: template_manager.xhp
-msgctxt ""
-"template_manager.xhp\n"
-"par_id041620170723501975\n"
-"help.text"
-msgid "Select a template in the main window and right-click and then choose Set as Default to set the template as the default template. This will cause a green tick to appear over the template and the template will automatically load when a new document is created using the matching application."
-msgstr ""
-
#. mPSZV
#: template_manager.xhp
msgctxt ""
@@ -26584,6 +26575,24 @@ msgctxt ""
msgid "Select a template in the main window and right-click and then choose Rename to rename the template. This will cause a dialog box to appear where a new name may be chosen for the template. Type in the name and then choose OK or choose Cancel to revert to the name that is already set."
msgstr ""
+#. LRmGo
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id501642158394220\n"
+"help.text"
+msgid "<image src=\"cmd/lc_editdoc.png\" id=\"img_id211642158394220\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id581642158394220\">Rename Icon</alt></image>"
+msgstr ""
+
+#. CXWXD
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id61642158394220\n"
+"help.text"
+msgid "Rename"
+msgstr ""
+
#. mSSwu
#: template_manager.xhp
msgctxt ""
@@ -26602,6 +26611,24 @@ msgctxt ""
msgid "Select one or more templates to delete in the main window and press the <keycode>Delete</keycode> key, or right-click then choose <menuitem>Delete</menuitem> to delete the selected template(s). A dialog box will appear requesting confirmation. Choose <widget>Yes</widget> to delete or <widget>No</widget> to cancel."
msgstr ""
+#. VqweF
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id591642158461235\n"
+"help.text"
+msgid "<image src=\"cmd/lc_delete.png\" id=\"img_id261642158461235\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id291642158461235\">Delete Icon</alt></image>"
+msgstr ""
+
+#. KQKqG
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id831642158461235\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
#. QQQyx
#: template_manager.xhp
msgctxt ""
@@ -26611,6 +26638,87 @@ msgctxt ""
msgid "Built-in templates cannot be edited, renamed or deleted."
msgstr ""
+#. gWz9H
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"hd_id041620170723508845\n"
+"help.text"
+msgid "Move"
+msgstr ""
+
+#. ZSxLZ
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id041620170723518776\n"
+"help.text"
+msgid "<ahelp hid=\".\">If you want to move templates to a different category, then choose a template, or use <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+click to select additional templates, then right-click and choose Move to open a dialog box, where you can choose to move your selection to a different category or to a new category. Built-in templates cannot be moved, but copies can be created in other categories.</ahelp>"
+msgstr ""
+
+#. BYJt3
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id21642159780019\n"
+"help.text"
+msgid "<image src=\"cmd/lc_move.png\" id=\"img_id301642159780019\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id231642159780019\">Move Icon</alt></image>"
+msgstr ""
+
+#. sLKnY
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id721642159780019\n"
+"help.text"
+msgid "Move"
+msgstr ""
+
+#. bunpC
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"hd_id041620170723516791\n"
+"help.text"
+msgid "Export"
+msgstr ""
+
+#. aweFD
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id041620170723513192\n"
+"help.text"
+msgid "<ahelp hid=\".\">Choose a template in the main window, or use <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+click to select additional templates, and then right-click and select Export to export your selection to a folder on your computer.</ahelp>"
+msgstr ""
+
+#. CgT8y
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id181607689509896\n"
+"help.text"
+msgid "<image src=\"sfx2/res/actiontemplates020.png\" id=\"img_id171607689509896\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id541607689509896\">Export Icon</alt></image>"
+msgstr ""
+
+#. Ckewj
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id431607689509896\n"
+"help.text"
+msgid "Export"
+msgstr ""
+
+#. tEEdj
+#: template_manager.xhp
+msgctxt ""
+"template_manager.xhp\n"
+"par_id581607995218423\n"
+"help.text"
+msgid "To move or export all templates in a <emph>Category</emph>, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode>, then choose <emph>Move</emph> or <emph>Export</emph>."
+msgstr ""
+
#. bF5Yb
#: template_manager.xhp
msgctxt ""
@@ -26710,13 +26818,13 @@ msgctxt ""
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+N or choose <emph>File - New - Templates</emph> to open the Template Manager"
msgstr ""
-#. hrcEG
+#. Nd2Pn
#: template_manager.xhp
msgctxt ""
"template_manager.xhp\n"
"par_id041620170723512689\n"
"help.text"
-msgid "Click on the Extensions icon to browse for online templates."
+msgid "Click on <widget>Manage</widget> and choose Extensions to browse for online templates."
msgstr ""
#. v6rBQ
@@ -26818,15 +26926,6 @@ msgctxt ""
msgid "A few features in the Template Manager are not available when first opened automatically. After starting %PRODUCTNAME Impress you may run the Template Manager again to access all features."
msgstr ""
-#. Aa49E
-#: template_manager.xhp
-msgctxt ""
-"template_manager.xhp\n"
-"par_id041620170723521916\n"
-"help.text"
-msgid "Make use of categories to organize your templates. Create new templates or download templates and organize in the Template Manager. Use templates to save time for repetitive documents."
-msgstr ""
-
#. YFEXe
#: template_manager.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/shared/optionen.po b/source/lv/helpcontent2/source/text/shared/optionen.po
index 7009bcf1024..1d12e9e4952 100644
--- a/source/lv/helpcontent2/source/text/shared/optionen.po
+++ b/source/lv/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-25 12:49+0200\n"
+"POT-Creation-Date: 2022-01-31 18:19+0100\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3508,13 +3508,13 @@ msgctxt ""
msgid "Specifies view options."
msgstr ""
-#. M4iFj
+#. w38HE
#: 01010800.xhp
msgctxt ""
"01010800.xhp\n"
"hd_id310720161555238963\n"
"help.text"
-msgid "Icon style"
+msgid "Icon Theme"
msgstr ""
#. omu6i
@@ -11167,6 +11167,33 @@ msgctxt ""
msgid "Pages"
msgstr "Lappuses"
+#. K79Gg
+#: 01060700.xhp
+msgctxt ""
+"01060700.xhp\n"
+"bm_id981642185152891\n"
+"help.text"
+msgid "<bookmark_value>printing;manual breaks</bookmark_value>"
+msgstr ""
+
+#. Zjqt6
+#: 01060700.xhp
+msgctxt ""
+"01060700.xhp\n"
+"hd_id191642185354689\n"
+"help.text"
+msgid "Always apply manual breaks"
+msgstr ""
+
+#. 5emsm
+#: 01060700.xhp
+msgctxt ""
+"01060700.xhp\n"
+"par_id921642185374234\n"
+"help.text"
+msgid "Setting this option gives manual row breaks precedence over automatic page breaks done using the <link href=\"text/scalc/01/05070500.xhp#par_idN1096D\" name=\"Scaling_link\">Reduce/enlarge printout</link> scaling mode."
+msgstr ""
+
#. G5AXA
#: 01060700.xhp
msgctxt ""
@@ -13732,13 +13759,13 @@ msgctxt ""
msgid "Shading exports all RGB colors to the other Office character attribute. This preserves color fidelity between $[officename] and Microsoft Office documents, but Office users must edit this character attribute with a tool that is not commonly used or easy to find in Office applications. This is the default setting since $[officename] 7.0."
msgstr ""
-#. mnCpY
+#. M4Xyh
#: 01130200.xhp
msgctxt ""
"01130200.xhp\n"
"par_id11611137020276\n"
"help.text"
-msgid "The compatibility filter in the <emph>Character Highlighting Color</emph> dialog provides the Microsoft Office highlighting colors. Use those colors and choose <emph>Export as: Highlighting</emph> if you want both color fidelity and ease of editing for Office users."
+msgid "The \"compatibility\" filter in the <emph>Character Highlighting Color</emph> dialog provides the Microsoft Office highlighting colors. Use those colors and choose <emph>Export as: Highlighting</emph> if you want both color fidelity and ease of editing for Office users."
msgstr ""
#. hpDE5
diff --git a/source/lv/helpcontent2/source/text/smath/guide.po b/source/lv/helpcontent2/source/text/smath/guide.po
index fe7b6caaab4..3cbf9502386 100644
--- a/source/lv/helpcontent2/source/text/smath/guide.po
+++ b/source/lv/helpcontent2/source/text/smath/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2017-05-10 04:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -214,6 +214,492 @@ msgctxt ""
msgid "or"
msgstr "vai"
+#. x9te9
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Color to Formula Parts"
+msgstr ""
+
+#. F9aE8
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"bm_id3156384\n"
+"help.text"
+msgid "<bookmark_value>Color in formulas</bookmark_value>"
+msgstr ""
+
+#. UXL5W
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"hd_id601641846107898\n"
+"help.text"
+msgid "<variable id=\"color\"><link href=\"text/smath/guide/color.xhp\" name=\"Color_link\">Applying Color to Formula Parts</link></variable>"
+msgstr ""
+
+#. ckGgG
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id481641846189425\n"
+"help.text"
+msgid "Use the command <literal>color</literal> to apply color to the subsequent formula part."
+msgstr ""
+
+#. BnqGh
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id141641846432331\n"
+"help.text"
+msgid "The example below creates a formula where <emph>a</emph> is shown using the default color (black) and <emph>b</emph> is shown in red."
+msgstr ""
+
+#. jV7H8
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id211641848286949\n"
+"help.text"
+msgid "Beware that the <literal>color</literal> command only changes the color of the formula part that comes immediately after it. For example, in the formula below only <emph>b</emph> will be shown in red, whereas <emph>c</emph> will be shown in black."
+msgstr ""
+
+#. hLeFX
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641848475043\n"
+"help.text"
+msgid "Use braces to apply color to more parts of the formula. In the following example, <emph>b</emph> and <emph>c</emph> are shown in red."
+msgstr ""
+
+#. JAK8L
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id651641851485699\n"
+"help.text"
+msgid "A list with predefined color names is available <link href=\"text/smath/guide/color.xhp#PredefinedColors\" name=\"Colors_list\">here</link>."
+msgstr ""
+
+#. gQn7y
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"bm_id521641858375937\n"
+"help.text"
+msgid "<bookmark_value>RGB colors</bookmark_value>"
+msgstr ""
+
+#. beAyt
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"hd_id831641851472401\n"
+"help.text"
+msgid "Using RGB colors"
+msgstr ""
+
+#. tj2xF
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id701641851641673\n"
+"help.text"
+msgid "Use the command <literal>color rgb</literal> to apply colors using RGB (Red, Green, Blue) values."
+msgstr ""
+
+#. eYWCg
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id941641851779414\n"
+"help.text"
+msgid "RGB values range between 0 and 255."
+msgstr ""
+
+#. EFXpV
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"bm_id521641858372217\n"
+"help.text"
+msgid "<bookmark_value>Hex colors</bookmark_value>"
+msgstr ""
+
+#. mdvQM
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"hd_id901641851813499\n"
+"help.text"
+msgid "Using hex notation"
+msgstr ""
+
+#. zLQWy
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id271641851832464\n"
+"help.text"
+msgid "Use the command <literal>color hex</literal> to apply colors using the hexadecimal notation."
+msgstr ""
+
+#. rPHnc
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"hd_id121641851982125\n"
+"help.text"
+msgid "Combining color with other commands"
+msgstr ""
+
+#. WiZz8
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id321641852002469\n"
+"help.text"
+msgid "It is possible to combine the color command with other commands as <literal>bold</literal>, <literal>italic</literal> or <literal>size</literal>."
+msgstr ""
+
+#. qDEtC
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id521641852051767\n"
+"help.text"
+msgid "The example below writes <emph>var</emph> in bold blue:"
+msgstr ""
+
+#. vSVUb
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id21641852173099\n"
+"help.text"
+msgid "To change color and font size, use <literal>color</literal> in combination with <literal>size</literal> and the desired font size."
+msgstr ""
+
+#. wEhmU
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"bm_id52164185802587\n"
+"help.text"
+msgid "<bookmark_value>List of predefined colors</bookmark_value>"
+msgstr ""
+
+#. wbRDh
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"hd_id621641846264365\n"
+"help.text"
+msgid "Predefined color names"
+msgstr ""
+
+#. FGJS8
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id911641846282038\n"
+"help.text"
+msgid "%PRODUCTNAME provides a set of predefined color names that can be used along with the <literal>color</literal> command."
+msgstr ""
+
+#. auAPG
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id871641846833413\n"
+"help.text"
+msgid "Markup language"
+msgstr ""
+
+#. Qf5tX
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id661641846833413\n"
+"help.text"
+msgid "Color"
+msgstr ""
+
+#. Y4DMa
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id741641846833413\n"
+"help.text"
+msgid "Hex value"
+msgstr ""
+
+#. 3kWLW
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id741641846833014\n"
+"help.text"
+msgid "RGB values"
+msgstr ""
+
+#. 4Vu7A
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id951641846833413\n"
+"help.text"
+msgid "<literal>aqua</literal> or <literal>cyan</literal>"
+msgstr ""
+
+#. xcaVa
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846833413\n"
+"help.text"
+msgid "Aqua"
+msgstr ""
+
+#. D73X6
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846830036\n"
+"help.text"
+msgid "Black"
+msgstr ""
+
+#. iGEDP
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846320113\n"
+"help.text"
+msgid "Blue"
+msgstr ""
+
+#. Umsp6
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846833363\n"
+"help.text"
+msgid "Coral"
+msgstr ""
+
+#. YcrNE
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846833014\n"
+"help.text"
+msgid "Crimson"
+msgstr ""
+
+#. G6mfq
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id951641846830853\n"
+"help.text"
+msgid "<literal>fuchsia</literal> or <literal>magenta</literal>"
+msgstr ""
+
+#. DD2RU
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846800325\n"
+"help.text"
+msgid "Fuchsia"
+msgstr ""
+
+#. WSeur
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id951641846830213\n"
+"help.text"
+msgid "<literal>gray</literal> or <literal>grey</literal>"
+msgstr ""
+
+#. gdQ5j
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846896513\n"
+"help.text"
+msgid "Gray"
+msgstr ""
+
+#. YCrBe
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846830214\n"
+"help.text"
+msgid "Green"
+msgstr ""
+
+#. Zqix6
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846836253\n"
+"help.text"
+msgid "Hot pink"
+msgstr ""
+
+#. 9oHjZ
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846812385\n"
+"help.text"
+msgid "Indigo"
+msgstr ""
+
+#. X4Y45
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846835521\n"
+"help.text"
+msgid "Lavender"
+msgstr ""
+
+#. g5GKD
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846036523\n"
+"help.text"
+msgid "Lime"
+msgstr ""
+
+#. kAo5q
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846833649\n"
+"help.text"
+msgid "Maroon"
+msgstr ""
+
+#. n7uXk
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846837653\n"
+"help.text"
+msgid "Midnight"
+msgstr ""
+
+#. Ymn82
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846867458\n"
+"help.text"
+msgid "Navy"
+msgstr ""
+
+#. aedBY
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846837663\n"
+"help.text"
+msgid "Olive"
+msgstr ""
+
+#. pNCBH
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846838053\n"
+"help.text"
+msgid "Orange"
+msgstr ""
+
+#. BGG7c
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846836041\n"
+"help.text"
+msgid "Orange red"
+msgstr ""
+
+#. opiDJ
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846833063\n"
+"help.text"
+msgid "Purple"
+msgstr ""
+
+#. 42wFB
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846833902\n"
+"help.text"
+msgid "Red"
+msgstr ""
+
+#. p5ox4
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846836613\n"
+"help.text"
+msgid "Sea green"
+msgstr ""
+
+#. AF8R7
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641840569413\n"
+"help.text"
+msgid "Silver"
+msgstr ""
+
+#. 8XVN7
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846896587\n"
+"help.text"
+msgid "Teal"
+msgstr ""
+
+#. KejUr
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846006745\n"
+"help.text"
+msgid "Violet"
+msgstr ""
+
+#. pXf2z
+#: color.xhp
+msgctxt ""
+"color.xhp\n"
+"par_id841641846837556\n"
+"help.text"
+msgid "Yellow"
+msgstr ""
+
#. 3UYoM
#: comment.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/swriter.po b/source/lv/helpcontent2/source/text/swriter.po
index 272637f8b75..867583d9c9c 100644
--- a/source/lv/helpcontent2/source/text/swriter.po
+++ b/source/lv/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-25 12:49+0200\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-10-21 20:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1060,13 +1060,13 @@ msgctxt ""
msgid "Columns Before"
msgstr ""
-#. bkDEH
+#. 7CVcf
#: main0110.xhp
msgctxt ""
"main0110.xhp\n"
"par_id531605976347665\n"
"help.text"
-msgid "Insert a column before the column where the cursor is currently placed."
+msgid "Inserts a column before the column where the cursor is currently placed."
msgstr ""
#. UE3RA
@@ -1078,13 +1078,13 @@ msgctxt ""
msgid "Columns After"
msgstr ""
-#. A6B3G
+#. fooJR
#: main0110.xhp
msgctxt ""
"main0110.xhp\n"
"par_id731605976350615\n"
"help.text"
-msgid "Insert a column before the column where the cursor is currently placed."
+msgid "Inserts a column after the column where the cursor is currently placed."
msgstr ""
#. KepEk
@@ -1861,14 +1861,14 @@ msgctxt ""
msgid "The Formatting bar contains several text formatting functions."
msgstr ""
-#. FUzck
+#. Yc6Kk
#: main0202.xhp
msgctxt ""
"main0202.xhp\n"
"hd_id3149593\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
-msgstr "<link href=\"text/shared/01/05020200.xhp\" name=\"Fonta krāsa\">Fonta krāsa</link>"
+msgid "<link href=\"text/shared/01/05020200.xhp#FontColor\" name=\"Font Color\">Font Color</link>"
+msgstr ""
#. 9sJ5w
#: main0202.xhp
diff --git a/source/lv/helpcontent2/source/text/swriter/00.po b/source/lv/helpcontent2/source/text/swriter/00.po
index 708953a276e..25e0e3cf8a0 100644
--- a/source/lv/helpcontent2/source/text/swriter/00.po
+++ b/source/lv/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-10-20 13:08+0200\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-11-14 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2455,13 +2455,13 @@ msgctxt ""
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
msgstr ""
-#. EPNPB
+#. 68Em3
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3145179\n"
"help.text"
-msgid "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145186\">Icon Space Column Equally</alt></image>"
+msgid "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145186\">Icon Distribute Columns Evenly</alt></image>"
msgstr ""
#. njBSt
diff --git a/source/lv/helpcontent2/source/text/swriter/01.po b/source/lv/helpcontent2/source/text/swriter/01.po
index 2ebb04f6045..2f0b37757fe 100644
--- a/source/lv/helpcontent2/source/text/swriter/01.po
+++ b/source/lv/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-24 12:03+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2018-10-21 20:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7027,13 +7027,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the field as static content, that is, the field cannot be updated.</ahelp>"
msgstr ""
-#. yUfD9
+#. YYGCF
#: 04090001.xhp
msgctxt ""
"04090001.xhp\n"
"par_id3154470\n"
"help.text"
-msgid "For the HTML export and import of date and time fields, <link href=\"text/swriter/01/04090007.xhp#datumuhrzeit\" name=\"special $[officename] formats\">special $[officename] formats</link> are used."
+msgid "For the HTML export and import of date and time fields, <link href=\"text/swriter/01/04090007.xhp#date_and_time\" name=\"special $[officename] formats\">special $[officename] formats</link> are used."
msgstr ""
#. nB93u
@@ -7963,13 +7963,13 @@ msgctxt ""
msgid "The following fields can only be inserted if the corresponding field type is selected in the <emph>Type </emph>list."
msgstr ""
-#. LWBFT
+#. 3KLNk
#: 04090003.xhp
msgctxt ""
"04090003.xhp\n"
-"par_id0902200804352213\n"
+"hd_id3145595\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format.</ahelp>"
+msgid "Format"
msgstr ""
#. 2iDAk
@@ -8413,13 +8413,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">DocInformation fields contain information about the properties of a document, such as the date a document was created. To view the properties of a document, choose <menuitem>File - Properties</menuitem>.</ahelp>"
msgstr ""
-#. uXwon
+#. UAjpE
#: 04090004.xhp
msgctxt ""
"04090004.xhp\n"
"par_id3148982\n"
"help.text"
-msgid "When you export and import an HTML document containing DocInformation fields, <link href=\"text/swriter/01/04090007.xhp#dokumentinfo\" name=\"special $[officename] formats\">special $[officename] formats</link> are used."
+msgid "When you export and import an HTML document containing DocInformation fields, <link href=\"text/swriter/01/04090007.xhp#DocInformation\" name=\"special $[officename] formats\">special $[officename] formats</link> are used."
msgstr ""
#. Y9tFf
@@ -31003,6 +31003,276 @@ msgctxt ""
msgid "Displays the document with the top and bottom margins, header and footer and a gap between pages. Uncheck to collapse all the elements cited and display the document in a contiguous page stream. Hiding whitespace is only possible in Single-page view."
msgstr ""
+#. CB3yA
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"tit\n"
+"help.text"
+msgid "Style Inspector"
+msgstr ""
+
+#. FKeEC
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"bm_id441641339111122\n"
+"help.text"
+msgid "<bookmark_value>styles;inspector</bookmark_value><bookmark_value>style inspector</bookmark_value>"
+msgstr ""
+
+#. rZsCG
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"hd_id741641334466741\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/style_inspector.xhp\" name=\"Style Inspector\">Style Inspector</link>"
+msgstr ""
+
+#. NixhW
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id971641334466743\n"
+"help.text"
+msgid "<variable id=\"StyleInspector\">The Style Inspector is located on the Sidebar. It displays all the attributes of the styles (paragraph and character) and any direct formatting present in the paragraph and character where the cursor is located. These details can be useful when you are trying to figure out why some formatting in a document appears to be incorrect or inconsistent.</variable>"
+msgstr ""
+
+#. oTPUX
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id521641338705733\n"
+"help.text"
+msgid "Open the sidebar, click on the Style Inspector icon"
+msgstr ""
+
+#. Cf9BR
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id431641335152917\n"
+"help.text"
+msgid "<image src=\"cmd/lc_inspectordeck.svg\" id=\"img_id661641335152918\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61641335152918\">Icon Style Inspector</alt></image>"
+msgstr ""
+
+#. DxkCg
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id721641335152918\n"
+"help.text"
+msgid "Icon Style Inspector on the Sidebar"
+msgstr ""
+
+#. uhQin
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id781641335609033\n"
+"help.text"
+msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Alt+5</keycode><keycode/>"
+msgstr ""
+
+#. C3HyK
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"hd_id941641336331359\n"
+"help.text"
+msgid "The Style Inspector Panel"
+msgstr ""
+
+#. 3YCBX
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"hd_id771641336335666\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. jJ8Rw
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id1001641336347665\n"
+"help.text"
+msgid "<emph>Paragraph Styles</emph>: shows the list of the paragraph styles applied to the text at the cursor position, following the style hierarchy, where the parent style comes above any child style."
+msgstr ""
+
+#. 92ZBL
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id981641336364074\n"
+"help.text"
+msgid "<emph>Paragraph direct formatting</emph>: shows the list of paragraph properties which are set directly to the text at the cursor location."
+msgstr ""
+
+#. CEPG7
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id961641336357072\n"
+"help.text"
+msgid "<emph>Character Styles</emph>: shows the list of the character styles applied to the text at the cursor, following hierarchy, where the parent style comes above any child style."
+msgstr ""
+
+#. AmUGJ
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id981641336364073\n"
+"help.text"
+msgid "<emph>Character direct formatting</emph>: shows the list of character properties which are set directly to the text at the cursor location."
+msgstr ""
+
+#. sZJFE
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"hd_id301641336416253\n"
+"help.text"
+msgid "Values"
+msgstr ""
+
+#. Co87K
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id251641336411569\n"
+"help.text"
+msgid "Display the values of the properties."
+msgstr ""
+
+#. PugNC
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"hd_id491641337715424\n"
+"help.text"
+msgid "Usage"
+msgstr ""
+
+#. MU9Ct
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id821641421059397\n"
+"help.text"
+msgid "Use the Style Inspector to uncover formatting issues in your text document."
+msgstr ""
+
+#. VSvTx
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id991641421123640\n"
+"help.text"
+msgid "Style properties overwritten by direct formatting are greyed out in the Paragraph and Character style tree, indicating that the style property is not effective anymore."
+msgstr ""
+
+#. Bx5uA
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id841641421139731\n"
+"help.text"
+msgid "Paragraph style properties that are re-defined by a child paragraph style are greyed out."
+msgstr ""
+
+#. GZSBC
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id31641421150849\n"
+"help.text"
+msgid "Character style properties that are re-defined by a child character style are greyed out."
+msgstr ""
+
+#. 9bw2E
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id911641421185601\n"
+"help.text"
+msgid "Paragraph style and direct properties that are re-defined by character styles or character direct properties are greyed."
+msgstr ""
+
+#. FJVK6
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id621641337772747\n"
+"help.text"
+msgid "For example, if the margins of the paragraph are changed by direct formatting using the rulers, the margins property of the paragraph style are greyed out and the margins properties are displayed in the Paragraph Direct Formatting entry of the Style Inspector."
+msgstr ""
+
+#. gYRCv
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id771641378992460\n"
+"help.text"
+msgid "Another example, if the <emph>Emphasis</emph> character style highlights a word with a yellow background, and the user mistakenly overwrote it by using a white background, the <literal>yellow</literal> attribute would be greyed-out and <literal>white</literal> is listed under Direct Formatting in the Style Inspector. The Style Inspector shows only those attributes that diverge from the parent (which is usually the Default Paragraph Style)."
+msgstr ""
+
+#. aD4oE
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id101641338214488\n"
+"help.text"
+msgid "Some features of the Style Inspector are of interest mainly to advanced users:"
+msgstr ""
+
+#. 3MbWb
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id281641338268000\n"
+"help.text"
+msgid "The Style Inspector can show any hidden RDF (Resource Description Framework, a W3C standard) metadata at the cursor position associated with text spans, paragraphs, and bookmarks. For annotated text spans, “Nested Text Content” item can show the boundary of the nested annotated text ranges and metadata fields."
+msgstr ""
+
+#. MS6Q5
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id531641338286704\n"
+"help.text"
+msgid "Custom color metadata field shadings can be set for an annotated text range or a metadata field, for visualization of metadata categories in the document editor. Use <menuitem>View - Field Shadings</menuitem> or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode> to disable or enable these field shadings."
+msgstr ""
+
+#. PXGpD
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id261641340112608\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/ReleaseNotes/7.1#Style_inspector\" name=\"rel71\">Release notes for Style Inspector</link>"
+msgstr ""
+
+#. DfEhN
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id601641340196019\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/ReleaseNotes/7.2#RDF_metadata_in_Style_Inspector\" name=\"rdfmetadata\">RDF Metadata in Style Inspector</link>"
+msgstr ""
+
+#. FttEa
+#: style_inspector.xhp
+msgctxt ""
+"style_inspector.xhp\n"
+"par_id731641340265093\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/ReleaseNotes/7.2#Custom_color_metadata_field_shadings\" name=\"customcolormetadata\">Custom color metadata</link>"
+msgstr ""
+
#. wDniB
#: title_page.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/swriter/guide.po b/source/lv/helpcontent2/source/text/swriter/guide.po
index 23da0c85805..30158b50f8d 100644
--- a/source/lv/helpcontent2/source/text/swriter/guide.po
+++ b/source/lv/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-20 13:21+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\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"
@@ -1069,13 +1069,13 @@ msgctxt ""
msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>."
msgstr ""
-#. rmF3D
+#. AeTx9
#: autotext.xhp
msgctxt ""
"autotext.xhp\n"
"par_id3155160\n"
"help.text"
-msgid "In the <emph>Macro from</emph> tree control, select %PRODUCTNAME Macros - Gimmicks - AutoText."
+msgid "In the <emph>Macro from</emph> tree control, select Application Macros - Gimmicks - AutoText."
msgstr ""
#. QYtCx
@@ -14587,6 +14587,15 @@ msgctxt ""
msgid "To make a section read-only, select the <emph>Protected</emph> check box in the <emph>Write Protection</emph> area."
msgstr ""
+#. tJmPF
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id731641553483773\n"
+"help.text"
+msgid "Add an optional protection password. The password can be empty and no password will be required to remove protection. If the password is not empty, it will be required to unprotect the section."
+msgstr ""
+
#. QWTQ9
#: section_edit.xhp
msgctxt ""
@@ -14596,6 +14605,87 @@ msgctxt ""
msgid "To hide a section, select the <emph>Hide</emph> check box in the <emph>Hide</emph> area."
msgstr ""
+#. EhAMG
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"bm_id421641501464020\n"
+"help.text"
+msgid "<bookmark_value>Read-only contents;editing</bookmark_value> <bookmark_value>Protect section;removing</bookmark_value>"
+msgstr ""
+
+#. wq7EM
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"hd_id641641501024846\n"
+"help.text"
+msgid "Editing Read-Only Contents"
+msgstr ""
+
+#. An8Bs
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id841641501075965\n"
+"help.text"
+msgid "A warning message is displayed if you try to edit protected sections."
+msgstr ""
+
+#. kWUgB
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id531641501248838\n"
+"help.text"
+msgid "To remove protection of a section, do the following:"
+msgstr ""
+
+#. DNpWC
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id681641501272982\n"
+"help.text"
+msgid "Choose <link href=\"text/swriter/01/02170000.xhp\" name=\"Format - Sections\"><menuitem>Format - Sections</menuitem></link>."
+msgstr ""
+
+#. R2vBj
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id861641501273184\n"
+"help.text"
+msgid "Select the section to unprotect in the <menuitem>Section</menuitem> area of the dialog."
+msgstr ""
+
+#. Zy4Tm
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id221641501273326\n"
+"help.text"
+msgid "Uncheck the <menuitem>Protect</menuitem> option in the <menuitem>Write Protection</menuitem> area of the dialog."
+msgstr ""
+
+#. XcjAs
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id791641501273494\n"
+"help.text"
+msgid "If the section was protected with a non-empty password, type the password into the dialog that opens."
+msgstr ""
+
+#. kvpGE
+#: section_edit.xhp
+msgctxt ""
+"section_edit.xhp\n"
+"par_id561641501273767\n"
+"help.text"
+msgid "Click <menuitem>OK</menuitem> ."
+msgstr ""
+
#. sYLAE
#: section_edit.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 12c0b89e347..52a66a625ab 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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2021-11-29 04:12+0000\n"
"Last-Translator: Tranzistors <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/lv/>\n"
@@ -756,15 +756,15 @@ msgctxt ""
msgid "Euro Converter"
msgstr "Eiro konvertētājs"
-#. D3zQx
+#. X39jj
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertExternalDataSource\n"
"Label\n"
"value.text"
-msgid "Link to E~xternal Data..."
-msgstr "Saite uz ā~rējiem datiem..."
+msgid "E~xternal Links..."
+msgstr ""
#. FTLfZ
#: CalcCommands.xcu
@@ -8926,15 +8926,15 @@ msgctxt ""
msgid "Duplicat~e..."
msgstr "Pa~vairot..."
-#. 9TAPb
+#. VJJa2
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
"Label\n"
"value.text"
-msgid "Lin~ks to External Files..."
-msgstr "~Saites uz ārējām datnēm..."
+msgid "E~xternal Links..."
+msgstr ""
#. pQhVJ
#: DrawImpressCommands.xcu
@@ -20148,15 +20148,25 @@ msgctxt ""
msgid "Symmetric Transition"
msgstr "Simetriska pāreja"
-#. FvNAo
+#. nPvhF
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineUp\n"
"Label\n"
"value.text"
+msgid "Move Chapter Up"
+msgstr ""
+
+#. CHC2r
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:OutlineUp\n"
+"ContextLabel\n"
+"value.text"
msgid "Move Up"
-msgstr "Pārvietot augšup"
+msgstr ""
#. GvBYt
#: GenericCommands.xcu
@@ -20168,15 +20178,25 @@ msgctxt ""
msgid "~New"
msgstr "Jau~ns"
-#. E8Ykn
+#. t4qfE
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineDown\n"
"Label\n"
"value.text"
+msgid "Move Chapter Down"
+msgstr ""
+
+#. hYLDF
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:OutlineDown\n"
+"ContextLabel\n"
+"value.text"
msgid "Move Down"
-msgstr "Pārvietot lejup"
+msgstr ""
#. KQLPA
#: GenericCommands.xcu
@@ -20188,15 +20208,25 @@ msgctxt ""
msgid "Save as Template..."
msgstr "Saglabāt kā veidni..."
-#. 8gaKv
+#. efUAk
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineLeft\n"
"Label\n"
"value.text"
+msgid "Promote Outline Level"
+msgstr ""
+
+#. n96ay
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:OutlineLeft\n"
+"ContextLabel\n"
+"value.text"
msgid "Promote"
-msgstr "Paaugstināt"
+msgstr ""
#. 3WakF
#: GenericCommands.xcu
@@ -20238,15 +20268,25 @@ msgctxt ""
msgid "Styles"
msgstr "Stili"
-#. ptyRB
+#. GHcUh
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineRight\n"
"Label\n"
"value.text"
+msgid "Demote Outline Level"
+msgstr ""
+
+#. kQBif
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:OutlineRight\n"
+"ContextLabel\n"
+"value.text"
msgid "Demote"
-msgstr "Pazemināt"
+msgstr ""
#. BoAR5
#: GenericCommands.xcu
@@ -25818,6 +25858,16 @@ msgctxt ""
msgid "Character Font Effects..."
msgstr "Rakstzīmju fonta efekti..."
+#. pLRpL
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:FontPositionDialog\n"
+"Label\n"
+"value.text"
+msgid "Character Font Position..."
+msgstr ""
+
#. fZufx
#: GenericCommands.xcu
msgctxt ""
@@ -26928,6 +26978,16 @@ msgctxt ""
msgid "Inspect Object"
msgstr ""
+#. WxZYJ
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:GraphicSizeCheck\n"
+"Label\n"
+"value.text"
+msgid "Graphic Size Check..."
+msgstr ""
+
#. ACwaJ
#: GenericCommands.xcu
msgctxt ""
@@ -32048,15 +32108,15 @@ msgctxt ""
msgid "Edit F~ields..."
msgstr "Red~iģēt laukus..."
-#. rtChw
+#. U9LvE
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
"Label\n"
"value.text"
-msgid "Lin~ks to External Files..."
-msgstr "~Saites uz ārējām datnēm..."
+msgid "E~xternal Links..."
+msgstr ""
#. PCFhM
#: WriterCommands.xcu
@@ -32708,15 +32768,15 @@ msgctxt ""
msgid "To Document End"
msgstr "Uz dokumenta beigām"
-#. EAxKC
+#. hMGS8
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:DecrementLevel\n"
"Label\n"
"value.text"
-msgid "Demote One Level"
-msgstr "Pazemināt vienu līmeni"
+msgid "Demote Outline Level"
+msgstr ""
#. jzcmc
#: WriterCommands.xcu
@@ -32728,15 +32788,15 @@ msgctxt ""
msgid "To Begin of Next Page"
msgstr "Uz nākamās lappuses sākumu"
-#. jiaba
+#. eZphP
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:IncrementLevel\n"
"Label\n"
"value.text"
-msgid "Promote One Level"
-msgstr "Paaugstināt vienu līmeni"
+msgid "Promote Outline Level"
+msgstr ""
#. MdLME
#: WriterCommands.xcu
@@ -32788,15 +32848,15 @@ msgctxt ""
msgid "To Next Paragraph in Level"
msgstr "Uz nākamo rindkopu līmenī"
-#. BpwAo
+#. TvA2G
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:MoveUp\n"
"Label\n"
"value.text"
-msgid "Move Up"
-msgstr "Pārvietot augšup"
+msgid "Move Chapter Up"
+msgstr ""
#. F6Rc7
#: WriterCommands.xcu
@@ -32808,15 +32868,15 @@ msgctxt ""
msgid "To End of Previous Page"
msgstr "Uz iepriekšējās lappuses beigām"
-#. 5YLwj
+#. HejPY
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:MoveDown\n"
"Label\n"
"value.text"
-msgid "Move Down"
-msgstr "Pārvietot lejup"
+msgid "Move Chapter Down"
+msgstr ""
#. 2GyQ4
#: WriterCommands.xcu
@@ -32878,15 +32938,15 @@ msgctxt ""
msgid "To Column Begin"
msgstr "Uz kolonnas sākumu"
-#. FQFxr
+#. GBEu9
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:DecrementSubLevels\n"
"Label\n"
"value.text"
-msgid "Demote One Level With Subpoints"
-msgstr "Pazemināt vienu līmeni ar apakšpunktiem"
+msgid "Demote Outline Level With Subpoints"
+msgstr ""
#. 8u4SF
#: WriterCommands.xcu
@@ -32898,25 +32958,25 @@ msgctxt ""
msgid "To Column End"
msgstr "Uz kolonnas beigām"
-#. AA2SC
+#. 2QM7T
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:IncrementSubLevels\n"
"Label\n"
"value.text"
-msgid "Promote One Level With Subpoints"
-msgstr "Paaugstināt vienu līmeni ar apakšpunktiem"
+msgid "Promote Outline Level With Subpoints"
+msgstr ""
-#. ATXQw
+#. CdP3b
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:MoveUpSubItems\n"
"Label\n"
"value.text"
-msgid "Move Up with Subpoints"
-msgstr "Pārvietot augšup ar apakšpunktiem"
+msgid "Move Chapter Up with Subpoints"
+msgstr ""
#. GCegb
#: WriterCommands.xcu
@@ -32928,15 +32988,15 @@ msgctxt ""
msgid "To Paragraph Begin"
msgstr "Uz rindkopas sākumu"
-#. TtCUR
+#. oDmqR
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:MoveDownSubItems\n"
"Label\n"
"value.text"
-msgid "Move Down with Subpoints"
-msgstr "Pārvietot lejup ar apakšpunktiem"
+msgid "Move Chapter Down with Subpoints"
+msgstr ""
#. JF2Ui
#: WriterCommands.xcu
diff --git a/source/lv/reportdesign/messages.po b/source/lv/reportdesign/messages.po
index 3fd04aba92f..e59cdb1b80c 100644
--- a/source/lv/reportdesign/messages.po
+++ b/source/lv/reportdesign/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-11-16 12:09+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2021-11-29 04:12+0000\n"
"Last-Translator: Tranzistors <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/reportdesignmessages/lv/>\n"
@@ -13,161 +13,161 @@ 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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1552143901.000000\n"
#. FBVr9
-#: reportdesign/inc/stringarray.hrc:17
+#: reportdesign/inc/stringarray.hrc:19
msgctxt "RID_STR_FORCENEWPAGE_CONST"
msgid "None"
msgstr "Nekas"
#. 2VDzY
-#: reportdesign/inc/stringarray.hrc:18
+#: reportdesign/inc/stringarray.hrc:20
msgctxt "RID_STR_FORCENEWPAGE_CONST"
msgid "Before Section"
msgstr "Pirms izvēles"
#. BBUjQ
-#: reportdesign/inc/stringarray.hrc:19
+#: reportdesign/inc/stringarray.hrc:21
msgctxt "RID_STR_FORCENEWPAGE_CONST"
msgid "After Section"
msgstr "Pēc izvēles"
#. FjE6T
-#: reportdesign/inc/stringarray.hrc:20
+#: reportdesign/inc/stringarray.hrc:22
msgctxt "RID_STR_FORCENEWPAGE_CONST"
msgid "Before & After Section"
msgstr "Pirms un pēc izvēles"
#. FiMq7
-#: reportdesign/inc/stringarray.hrc:26
+#: reportdesign/inc/stringarray.hrc:28
msgctxt "RID_STR_GROUPKEEPTOGETHER_CONST"
msgid "Per Page"
msgstr "Katrā lappusē"
#. zemtQ
-#: reportdesign/inc/stringarray.hrc:27
+#: reportdesign/inc/stringarray.hrc:29
msgctxt "RID_STR_GROUPKEEPTOGETHER_CONST"
msgid "Per Column"
msgstr "Katrā kolonna"
#. PCk4E
-#: reportdesign/inc/stringarray.hrc:33
+#: reportdesign/inc/stringarray.hrc:35
msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
msgid "All Pages"
msgstr "Visas lappuses"
#. GvoGV
-#: reportdesign/inc/stringarray.hrc:34
+#: reportdesign/inc/stringarray.hrc:36
msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
msgid "Not With Report Header"
msgstr "Ne ar atskaites galveni"
#. wchYh
-#: reportdesign/inc/stringarray.hrc:35
+#: reportdesign/inc/stringarray.hrc:37
msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
msgid "Not With Report Footer"
msgstr "Ne ar atskaites kājeni"
#. uvfAP
-#: reportdesign/inc/stringarray.hrc:36
+#: reportdesign/inc/stringarray.hrc:38
msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
msgid "Not With Report Header/Footer"
msgstr "Ne ar atskaites galveni/kājeni"
#. ZC2oS
-#: reportdesign/inc/stringarray.hrc:42
+#: reportdesign/inc/stringarray.hrc:44
msgctxt "RID_STR_TYPE_CONST"
msgid "Field or Formula"
msgstr "Lauks vai formula"
#. gU579
-#: reportdesign/inc/stringarray.hrc:43
+#: reportdesign/inc/stringarray.hrc:45
msgctxt "RID_STR_TYPE_CONST"
msgid "Function"
msgstr "Funkcija"
#. BG2gK
-#: reportdesign/inc/stringarray.hrc:44
+#: reportdesign/inc/stringarray.hrc:46
msgctxt "RID_STR_TYPE_CONST"
msgid "Counter"
msgstr "Skaitītājs"
#. kGCKF
-#: reportdesign/inc/stringarray.hrc:45
+#: reportdesign/inc/stringarray.hrc:47
msgctxt "RID_STR_TYPE_CONST"
msgid "User defined Function"
msgstr "Lietotāja definēta funkcija"
#. BBiHn
-#: reportdesign/inc/stringarray.hrc:51
+#: reportdesign/inc/stringarray.hrc:53
msgctxt "RID_STR_BOOL"
msgid "No"
msgstr "Nē"
#. rdPYV
-#: reportdesign/inc/stringarray.hrc:52
+#: reportdesign/inc/stringarray.hrc:54
msgctxt "RID_STR_BOOL"
msgid "Yes"
msgstr "Jā"
#. xUuqy
-#: reportdesign/inc/stringarray.hrc:58
+#: reportdesign/inc/stringarray.hrc:60
msgctxt "RID_STR_KEEPTOGETHER_CONST"
msgid "No"
msgstr "Nē"
#. TDvKY
-#: reportdesign/inc/stringarray.hrc:59
+#: reportdesign/inc/stringarray.hrc:61
msgctxt "RID_STR_KEEPTOGETHER_CONST"
msgid "Whole Group"
msgstr "Visa grupa"
#. Hc5De
-#: reportdesign/inc/stringarray.hrc:60
+#: reportdesign/inc/stringarray.hrc:62
msgctxt "RID_STR_KEEPTOGETHER_CONST"
msgid "With First Detail"
msgstr "Ar pirmo detaļu"
#. k2yjS
-#: reportdesign/inc/stringarray.hrc:66
+#: reportdesign/inc/stringarray.hrc:68
msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
msgid "Top"
msgstr "Augšā"
#. VuRdH
-#: reportdesign/inc/stringarray.hrc:67
+#: reportdesign/inc/stringarray.hrc:69
msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
msgid "Middle"
msgstr "Vidū"
#. 9LAvS
-#: reportdesign/inc/stringarray.hrc:68
+#: reportdesign/inc/stringarray.hrc:70
msgctxt "RID_STR_VERTICAL_ALIGN_CONST"
msgid "Bottom"
msgstr "Apakšā"
#. fTFRa
-#: reportdesign/inc/stringarray.hrc:74
+#: reportdesign/inc/stringarray.hrc:76
msgctxt "RID_STR_PARAADJUST_CONST"
msgid "Left"
msgstr "Pa kreisi"
#. 5nFGk
-#: reportdesign/inc/stringarray.hrc:75
+#: reportdesign/inc/stringarray.hrc:77
msgctxt "RID_STR_PARAADJUST_CONST"
msgid "Right"
msgstr "Pa labi"
#. Cvi3X
-#: reportdesign/inc/stringarray.hrc:76
+#: reportdesign/inc/stringarray.hrc:78
msgctxt "RID_STR_PARAADJUST_CONST"
msgid "Block"
msgstr "Bloks"
#. zsB3C
-#: reportdesign/inc/stringarray.hrc:77
+#: reportdesign/inc/stringarray.hrc:79
msgctxt "RID_STR_PARAADJUST_CONST"
msgid "Center"
msgstr "Vidū"
diff --git a/source/lv/sc/messages.po b/source/lv/sc/messages.po
index 3f6f5b90f92..6f1d9cf5a41 100644
--- a/source/lv/sc/messages.po
+++ b/source/lv/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-01-31 18:20+0100\n"
"PO-Revision-Date: 2021-11-29 08:52+0000\n"
"Last-Translator: Tranzistors <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/lv/>\n"
@@ -1236,12 +1236,12 @@ msgctxt "STR_LONG_ERR_DIV_ZERO"
msgid "Error: Division by zero"
msgstr "Kļūda: dalīšana ar nulli"
-#. 9y5GD
+#. zznA7
#. ERROR.TYPE( #VALUE! ) == 3
#: sc/inc/globstr.hrc:219
msgctxt "STR_LONG_ERR_NO_VALUE"
-msgid "Error: Wrong data type"
-msgstr "Kļūda: nepareizs datu tips"
+msgid "Error: No value"
+msgstr ""
#. kHwc6
#. ERROR.TYPE( #REF! ) == 4
@@ -16605,131 +16605,149 @@ msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "Top 10"
-#. FNDLK
+#. FGEna
#: sc/inc/strings.hrc:36
+msgctxt "SCSTR_BOTTOM10FILTER"
+msgid "Bottom 10"
+msgstr ""
+
+#. FNDLK
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr "Tukšs"
#. EsQtb
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr "Nav tukšs"
+#. iWBcu
+#: sc/inc/strings.hrc:39
+msgctxt "SCSTR_FILTER_COLOR"
+msgid "Filter by Color"
+msgstr ""
+
+#. EYFT8
+#: sc/inc/strings.hrc:40
+msgctxt "SCSTR_FILTER_CONDITION"
+msgid "Filter by Condition"
+msgstr ""
+
#. 5LENV
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:41
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text Color"
msgstr ""
#. BtGE4
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:42
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background Color"
msgstr ""
#. td5Gr
#. This must match the translation of the same strings of standardfilterdialog|cond
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:44
msgctxt "STANDARDFILTERDIALOG_COND"
msgid "Text color"
msgstr ""
#. sGJCz
-#: sc/inc/strings.hrc:42
+#: sc/inc/strings.hrc:45
msgctxt "STANDARDFILTERDIALOG_COND"
msgid "Background color"
msgstr ""
#. teYGB
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_FILTER_NO_FILL"
msgid "No Fill"
msgstr ""
#. 8DPvA
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_FILTER_AUTOMATIC_COLOR"
msgid "Automatic"
msgstr ""
#. Wgy7r
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_NONAME"
msgid "unnamed"
msgstr "nenosaukts"
#. JAf3n
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_INSERT_RTL"
msgid "Shift cells left"
msgstr ""
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr "Kolonna %1"
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:53
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr "Rinda %1"
#. 7p8BN
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "Loksne"
#. ArnTD
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "Nosaukums"
#. BxrBH
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:56
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "Pievienot loksni"
#. sba4F
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "Pārdēvēt loksni"
#. EEcgV
-#: sc/inc/strings.hrc:55
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr "Ciļņu krāsa"
#. sTank
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "Noklusējuma"
#. yEEuF
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "Nosaukt objektu"
#. 3FHKw
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:61
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "Ievietot attēlu"
#. bKv77
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
@@ -16738,1769 +16756,1757 @@ msgstr[1] "Atrasts %1 rezultāts"
msgstr[2] "Atrasti %1 rezultāti"
#. 7GkKi
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr "(tiek rādīti tikai %1)"
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr "Aizsargāt izklājlapas struktūru"
#. SQCpD
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr "Noņemt izklājlapas struktūras aizsardzību"
#. rAV3G
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr "Noņemt loksnes aizsardzību"
#. K7w3B
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "Aizsargāt ierakstus"
#. DLDBg
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:69
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "Noņemt aizsardzību ierakstiem"
#. rFdAS
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "Parole:"
#. dd2wC
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "Parole (neobligāti):"
#. dTBug
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "Nepareiza parole"
#. bkGuJ
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:73
msgctxt "SCSTR_END"
msgid "~End"
msgstr "B~eigas"
#. XNnTf
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "Nezināms"
#. NoEfk
-#: sc/inc/strings.hrc:72
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "~Minimums"
#. gKahz
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:76
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "~Maksimums"
#. nmeHF
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:77
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "~Vērtība"
#. g8Cow
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr "~Formula"
#. 6YEEk
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "Avot~s"
#. FA84s
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:80
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "I~eraksti"
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:82
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "Sistēma"
#. 2tobg
-#: sc/inc/strings.hrc:80
+#: sc/inc/strings.hrc:83
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "Standarta;Teksts;Datums (DMG);Datums (MDG);Datums (YMD);ASV angļu;Slēpt"
#. px75F
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:84
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "Tab"
#. ZGpGp
-#: sc/inc/strings.hrc:82
+#: sc/inc/strings.hrc:85
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "atstarpe"
-#. xiSEb
-#: sc/inc/strings.hrc:83
-msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
-msgid ""
-"%PRODUCTNAME Calc found an error in the formula entered.\n"
-"Do you want to accept the correction proposed below?\n"
-"\n"
-msgstr ""
-"%PRODUCTNAME Calc atrada kļūdu ievadītajā formulā.\n"
-"Vai vēlaties pieņemt zemāk piedāvāto labojumu?\n"
-"\n"
-
#. C8dAj
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:86
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr "Attēla filtrs"
#. CfBRk
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:87
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "Teksts"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:89
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "Izvēlēties loksnes"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:91
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "Izvēlētā~s loksnes"
#. SfEhE
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "Mērjosla"
#. 3VwsT
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "Šī mērjosla novieto objektus fiksētās pozīcijās."
#. 7Ream
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "Priekšskatījums"
#. uSKyF
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "Šī loksne rāda, kā dati tiks izkārtoti dokumentā."
#. MwTAm
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "Dokumenta skats"
#. NFaas
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "Loksne %1"
#. 2qRJG
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "Šūna %1"
#. KD4PA
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "Kreisās puses laukums"
#. 56AkM
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:100
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "Lappuses priekšskatījums"
#. RA4AS
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:101
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "Vidus laukums"
#. 2hpwq
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:102
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "Labās puses laukums"
#. FrXgq
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:103
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "%1. lappuses galvene"
#. BwF8D
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:104
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "%1. lappuses kājene"
#. 9T4c8
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:105
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "Ievades rinda"
#. ejFak
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:106
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "Šeit ievada vai rediģē tekstu, skaitļus un formulas."
#. XX585
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:107
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "Mediju atskaņošana"
#. SuAaA
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:108
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "Peles poga nospiesta"
#. 4prfv
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:109
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "Formulu rīkjosla"
#. nAcNZ
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:110
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "%PRODUCTNAME izklājlapas"
#. 8UMap
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:111
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(lasīšanas režīms)"
#. fDxgL
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:112
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(Priekšskatījuma režīms)"
#. ZwiH6
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr "Lappuses:"
#. FYjDY
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr "Novēr~st tukšu lappušu izvadi"
#. GQNVf
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr "Drukāt visas loksnes"
#. xcKcm
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:116
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr "Drukāt izvēlētās loksnes"
#. e7kTj
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr "Drukāt izvēlētās šūnas"
#. z4DB6
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr "No kurām:"
#. v5EK2
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr "Visas la~ppuses"
#. cvNuW
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr "~Lappuses:"
#. Pw9Pu
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 4BEKq
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr "Neizdevās atjaunināt šo DDE avotu, iespējams tāpēc, ka nebija atvērts avota dokuments. Lūdzu, palaidiet avota dokumentu un mēģiniet vēlreiz."
#. kGmko
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr "Neizdevās ielādēt šo ārējo datni. Netika atjaunināti dati, kas ir saistīti no šīs datnes."
#. BvtFc
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr "Atjaunina ārējās saites."
#. MACSv
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:125
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "Calc A1"
#. xEQCB
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:126
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "Excel A1"
#. KLkBH
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:127
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "Excel R1C1"
#. pr4wW
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:128
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "Dia~pazons satur kolonnu etiķetes"
#. mJyFP
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:129
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "Diapazons satur ~rindu etiķetes"
#. ujjcx
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:130
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "Nederīga vērtība"
#. SoLXN
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr "Nav norādīta formula."
#. YFnCS
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:132
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr "Nav norādīta ne rinda, ne kolonna."
#. 6YQh2
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:133
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr "Nedefinēts nosaukums vai diapazons."
#. 4aHCG
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:134
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr "Nedefinēts nosaukums vai nepareiza šūnas atsauce."
#. G8KPr
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:135
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr "Formulas neveido kolonnu."
#. uSxCb
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:136
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr "Formulas neveido rindu."
#. PknB5
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:137
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Pievienot automātisko formātu"
#. 7KuSQ
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:138
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Pārdēvēt automātisko formātu"
#. hqtgD
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:139
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Nosaukums"
#. L9jQU
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:140
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Dzēst automātisko formātu"
#. KCDoJ
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:141
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "Vai tiešam vēlaties dzēst automātisko formātu #?"
#. GDdL3
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:142
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~Aizvērt"
#. DAuNm
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:143
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Jan"
#. WWzNg
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:144
msgctxt "STR_FEB"
msgid "Feb"
msgstr "Feb"
#. CCC3U
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:145
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Mar"
#. cr7Jq
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:146
msgctxt "STR_NORTH"
msgid "North"
msgstr "Ziemeļi"
#. wHYPw
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:147
msgctxt "STR_MID"
msgid "Mid"
msgstr "Vidus"
#. sxDHC
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:148
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Dienvidi"
#. CWcdp
-#: sc/inc/strings.hrc:147
+#: sc/inc/strings.hrc:149
msgctxt "STR_SUM"
msgid "Total"
msgstr "Kopā"
#. MMCxb
-#: sc/inc/strings.hrc:148
+#: sc/inc/strings.hrc:150
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "Lappuses enkurs"
#. fFFQ8
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr "Šūnas enkurs"
#. rTGKc
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:152
msgctxt "SCSTR_CONDITION"
msgid "Condition "
msgstr "Stāvoklis "
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "Saturs"
#. wLN3J
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "Loksnes"
#. 3ZhJn
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "Diapazonu nosaukumi"
#. jjQeD
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "Datubāzes diapazoni"
#. kbHfD
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:159
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "Attēli"
#. 3imVs
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:160
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "OLE objekti"
#. T28Cj
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:161
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "Komentāri"
#. 5UcFo
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:162
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "Saistītie apgabali"
#. HzVgF
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:163
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "Zīmējuma objekti"
#. sCafb
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:164
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "aktīvs"
#. q6EmB
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:165
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "neaktīvs"
#. Gr6xn
-#: sc/inc/strings.hrc:164
+#: sc/inc/strings.hrc:166
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "slēpts"
#. vnwQr
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:167
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "Aktīvais logs"
#. yo3cD
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:168
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "Scenārija nosaukums"
#. oWz3B
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:169
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "Komentārs"
#. tNLKD
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:171
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "Kārtot augoši"
#. S6kbN
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:172
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "Kārtot dilstoši"
#. BDYHo
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:173
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "Pielāgotā kārtošana"
#. bpBbA
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "Nosaukuma lauks"
#. GeNTF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:176
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "Ievades rinda"
#. E6mnF
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "Funkciju vednis"
#. rU6xA
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "Pieņemt"
#. NC6DB
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:179
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "Atcelt"
#. 9JUCF
-#: sc/inc/strings.hrc:178
+#: sc/inc/strings.hrc:180
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr "Izvēlieties funkciju"
#. kFqE4
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:181
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "Formula"
#. dPqKq
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:182
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "Izvērst formulu joslu"
#. ENx2Q
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:183
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "Sakļaut formulu joslu"
#. nSD8r
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:185
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "Nezināms lietotājs"
#. HDiei
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:187
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "Ievietota kolonna"
#. brecA
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:188
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "Ievietota rinda "
#. nBf8B
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:189
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "Ievietota loksne "
#. Td8iF
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:190
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "Dzēsta kolonna"
#. 8Kopo
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:191
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "Dzēsta rinda"
#. DynWz
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:192
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "Dzēsta loksne"
#. 6f9S9
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:193
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "Pārvietots diapazons"
#. UpHkf
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:194
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "Mainīts saturs"
#. cefNw
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:195
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "Mainīts saturs"
#. DcsSq
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:196
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "Mainīts uz "
#. naPuN
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:197
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "Oriģināls"
#. cbtSw
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:198
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "Izmaiņas noraidītas"
#. rGkvk
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:199
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "Pieņemts"
#. FRREF
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:200
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "Noraidīts"
#. bG7Pb
-#: sc/inc/strings.hrc:199
+#: sc/inc/strings.hrc:201
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "Nav ieraksta"
#. i2doZ
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:202
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<tukšs>"
#. dAt5Q
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:204
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "Nav aizsargāts"
#. 3TDDs
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:205
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "Nav aizsargāts ar paroli"
#. qBe6G
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:206
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "Jaucējsumma nav savietojama"
#. XoAEE
-#: sc/inc/strings.hrc:205
+#: sc/inc/strings.hrc:207
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "Jaucējsumma ir savietojama"
#. MHDYB
-#: sc/inc/strings.hrc:206
+#: sc/inc/strings.hrc:208
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "Ievadīt atkal"
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:211
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr "Slīdošais vidējais"
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:213
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr "Eksponenciālā izlīdzināšana"
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:215
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr "Dispersijas analīze"
#. 8v4W5
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:216
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr "Dispersijas analīze (ANOVA)"
#. NY8WD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:217
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr "ANOVA - vienfaktora"
#. AFnEZ
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:218
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr "ANOVA - divfaktoru"
#. hBPGD
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:219
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "Grupas"
#. DiUWy
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:220
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr "Starp grupām"
#. fBh3S
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:221
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr "Grupās"
#. DFcw4
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:222
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr "Dispersijas avots"
#. KYbb8
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr "SS"
#. j7j6E
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr "df"
#. 6QJED
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:225
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr "MS"
#. JcWo9
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:226
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr "F"
#. a43mP
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:227
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr ""
#. MMmsS
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:228
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr "P-vērtība"
#. UoaCS
-#: sc/inc/strings.hrc:227
+#: sc/inc/strings.hrc:229
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr "F kritiskā vērtība"
#. oJD9H
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:230
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "Kopā"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:230
+#: sc/inc/strings.hrc:232
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr "Korelācija"
#. WC4SJ
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:233
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr "Korelācijas"
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:233
+#: sc/inc/strings.hrc:235
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr "Kovariācija"
#. VyxUL
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:236
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr "Kovariācijas"
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:238
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr "Aprakstošā statistika"
#. FGXC5
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:239
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "Vidējais"
#. 2sHVR
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:240
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr "Standartkļūda"
#. KrDBB
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "Veids"
#. AAbEo
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:242
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "Mediāna"
#. h2HaP
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:243
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "Dispersija"
#. 3uYMC
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:244
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr "Standartnovirze"
#. JTx7f
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:245
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr "Ekscesa koeficients"
#. EXJJt
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:246
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr "Asimetrijas koeficients"
#. HkRYo
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:247
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "Diapazons"
#. LHk8p
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:248
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "Minimums"
#. LtMJs
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "Maksimums"
#. Q5r5c
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:250
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "Summa"
#. s8K23
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:251
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "Skaits"
#. pU8QG
-#: sc/inc/strings.hrc:250
+#: sc/inc/strings.hrc:252
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr "Pirmā kvartile"
#. PGXzY
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:253
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr "Trešā kvartile"
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:255
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr "Nejaušs ($(DISTRIBUTION))"
#. A8Rc9
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr "Vienmērīgais"
#. 9ke8L
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr "Vienmērīgais veselos skaitļos"
#. GC2LH
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "Normālais"
#. XjQ2x
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr "Košī"
#. G5CqB
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr "Bernulli"
#. GpJUB
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:261
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr "Binomiālais"
#. 6yJKm
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:262
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr "Negatīvais binomiālais"
#. zzpmN
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:263
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr "Hī kvadrāta"
#. NGBzX
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:264
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "Ģeometriskais"
#. BNZPE
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:265
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "Minimums"
#. EThhi
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:266
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "Maksimums"
#. RPYEG
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:267
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "Vidējais"
#. VeqrX
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:268
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr "Standartnovirze"
#. ChwWE
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "Mediāna"
#. SzgEb
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "Sigma"
#. 94TBK
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:271
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr "p vērtība"
#. AfUsB
-#: sc/inc/strings.hrc:270
+#: sc/inc/strings.hrc:272
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr "Mēģinājumu skaits"
#. DdfR6
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:273
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr "nī vērtība"
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:275
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr "Izlase"
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:277
msgctxt "STR_FTEST"
msgid "F-test"
msgstr "F-tests"
#. bQEfv
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:278
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr "F-tests"
#. UdsVZ
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:279
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr "Sapārots t-tests"
#. A7xTa
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:280
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr "Sapārots t-tests"
#. dWPSe
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:281
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr "z-tests"
#. QvZ7V
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:282
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr "z-tests"
#. D6AqL
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:283
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr "Neatkarības tests (Hī kvadrāta)"
#. PvFSb
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:284
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr "Regresija"
#. NXrYh
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:285
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr "Regresija"
#. AM5WV
-#: sc/inc/strings.hrc:284
+#: sc/inc/strings.hrc:286
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr "Furjē analīze"
#. hd6yJ
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:287
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr "Furjē analīze"
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:289
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr "Kolonna %NUMBER%"
#. aTAGd
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:290
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr "Rinda %NUMBER%"
#. nAbaC
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:291
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "Alfa"
#. FZZCu
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:292
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "Mainīgais 1"
#. pnyaa
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:293
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "Mainīgais 2"
#. LU4CC
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:294
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr "Hipotētiskā vidējo starpība"
#. sCNt9
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:295
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "Novērojumi"
#. arX5v
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:296
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr "Novērotā vidējo starpība"
#. dr3Gt
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:297
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr "R^2"
#. pnhCA
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:298
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr "Koriģētais R^2"
#. ACsNA
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:299
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr "Mainīgo X skaits"
#. kEPsb
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:300
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr "df"
#. FYUYT
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:301
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr "P-vērtība"
#. S3BHc
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:302
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr "Kritiskā vērtība"
#. wgpT3
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:303
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr "Testa statistika"
#. kTwBX
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:304
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr "Apakšējā"
#. GgFPs
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:305
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr "Augšējā"
#. hkXzo
-#: sc/inc/strings.hrc:304
+#: sc/inc/strings.hrc:306
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr "Ievades diapazons ir nederīgs."
#. rTFFF
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:307
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr "Izvades adrese nav derīga."
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:309
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr "Lineāra"
#. kVG6g
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:310
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "Logaritmisks"
#. wmyFW
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:311
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "Pakāpes"
#. GabFM
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr "Neatkarīgā(-o) mainīgā(-o) diapazons nav derīgs."
#. 8x8DM
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr "Atkarīgā(-o) mainīgā(-o) diapazons nav derīgs."
#. E7BD2
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr "Ticamības līmenim jābūt intervālā (0, 1)."
#. ZdyQs
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr "Mainīgā Y diapazonam nevar būt vairāk kā 1 kolonna."
#. UpZqC
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:316
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr "Mainīgā Y diapazonam nevar būt vairāk kā 1 rinda."
#. DrsBe
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:317
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr "Vienfaktora regresija : mainīgajos X un Y esošajam novērojumu skaitam jāsakrīt."
#. KuttF
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:318
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr "Daudzfaktoru regresija : mainīgajos X un Y esošajam novērojumu skaitam jāsakrīt."
#. 6Cghz
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr "Regresijas modelis"
#. bmR5w
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr "Regresijas statistika"
#. RNHCx
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr "Atlikums"
#. 4DANj
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:322
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr "Ticamības līmenis"
#. 9LhbX
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr "Koeficienti"
#. nyH7s
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:324
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr "t-statistika"
#. PGno2
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:325
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "Krustpunkts"
#. oa4Cm
-#: sc/inc/strings.hrc:324
+#: sc/inc/strings.hrc:326
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr "Prognozētais Y"
#. QFEjs
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:327
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr "LINEST neapstrādāta izvade"
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:329
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr "Labās puses P (F<=f)"
#. CkHJw
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:330
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr "Labās puses F kritiskā vērtība"
#. J7yMZ
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:331
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr "Kreisās puses P (F<=f)"
#. R3BNC
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:332
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr "Kreisās puses F kritiskā vērtība"
#. Bve5D
-#: sc/inc/strings.hrc:331
+#: sc/inc/strings.hrc:333
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr "P divpusējai alternatīvai"
#. 4YZrT
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:334
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr "F kritiskā vērtība divpusējai alternatīvai"
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:336
msgctxt "STR_TTEST_PEARSON_CORRELATION"