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

#include "celllistsource.hxx"
#include <tools/debug.hxx>
#include <com/sun/star/text/XTextRange.hpp>
#include <com/sun/star/sheet/XCellRangeAddressable.hpp>
#include <com/sun/star/util/XModifyBroadcaster.hpp>
#include <com/sun/star/container/XIndexAccess.hpp>
#include <com/sun/star/beans/PropertyAttribute.hpp>
#include <com/sun/star/beans/NamedValue.hpp>
#include <cppuhelper/supportsservice.hxx>

namespace calc
{

#define PROP_HANDLE_RANGE_ADDRESS  1

    using namespace ::com::sun::star::uno;
    using namespace ::com::sun::star::lang;
    using namespace ::com::sun::star::table;
    using namespace ::com::sun::star::text;
    using namespace ::com::sun::star::sheet;
    using namespace ::com::sun::star::container;
    using namespace ::com::sun::star::beans;
    using namespace ::com::sun::star::util;
    using namespace ::com::sun::star::form::binding;

    OCellListSource::OCellListSource( const Reference< XSpreadsheetDocument >& _rxDocument )
        :OCellListSource_Base( m_aMutex )
        ,OCellListSource_PBase( OCellListSource_Base::rBHelper )
        ,m_xDocument( _rxDocument )
        ,m_aListEntryListeners( m_aMutex )
        ,m_bInitialized( false )
    {
        OSL_PRECOND( m_xDocument.is(), "OCellListSource::OCellListSource: invalid document!" );

        // register our property at the base class
        registerPropertyNoMember(
            "CellRange",
            PROP_HANDLE_RANGE_ADDRESS,
            PropertyAttribute::BOUND | PropertyAttribute::READONLY,
            cppu::UnoType<CellRangeAddress>::get(),
            css::uno::Any(CellRangeAddress())
        );
    }

    OCellListSource::~OCellListSource( )
    {
        if ( !OCellListSource_Base::rBHelper.bDisposed )
        {
            acquire();  // prevent duplicate dtor
            dispose();
        }
    }

    IMPLEMENT_FORWARD_XINTERFACE2( OCellListSource, OCellListSource_Base, OCellListSource_PBase )

    IMPLEMENT_FORWARD_XTYPEPROVIDER2( OCellListSource, OCellListSource_Base, OCellListSource_PBase )

    void SAL_CALL OCellListSource::disposing()
    {
        ::osl::MutexGuard aGuard( m_aMutex );

        Reference<XModifyBroadcaster> xBroadcaster( m_xRange, UNO_QUERY );
        if ( xBroadcaster.is() )
        {
            xBroadcaster->removeModifyListener( this );
        }

        EventObject aDisposeEvent( *this );
        m_aListEntryListeners.disposeAndClear( aDisposeEvent );

        WeakAggComponentImplHelperBase::disposing();

        // TODO: clean up here whatever you need to clean up (e.g. revoking listeners etc.)
    }

    Reference< XPropertySetInfo > SAL_CALL OCellListSource::getPropertySetInfo(  )
    {
        return createPropertySetInfo( getInfoHelper() ) ;
    }

    ::cppu::IPropertyArrayHelper& SAL_CALL OCellListSource::getInfoHelper()
    {
        return *OCellListSource_PABase::getArrayHelper();
    }

    ::cppu::IPropertyArrayHelper* OCellListSource::createArrayHelper( ) const
    {
        Sequence< Property > aProps;
        describeProperties( aProps );
        return new ::cppu::OPropertyArrayHelper(aProps);
    }

    void SAL_CALL OCellListSource::getFastPropertyValue( Any& _rValue, sal_Int32 _nHandle ) const
    {
        OSL_ENSURE( _nHandle == PROP_HANDLE_RANGE_ADDRESS, "OCellListSource::getFastPropertyValue: invalid handle!" );
            // we only have this one property ....
        (void)_nHandle;     // avoid warning in product version

        _rValue <<= getRangeAddress( );
    }

    void OCellListSource::checkDisposed( ) const
    {
        if ( OCellListSource_Base::rBHelper.bInDispose || OCellListSource_Base::rBHelper.bDisposed )
            throw DisposedException();
            // TODO: is it worth having an error message here?
    }

    void OCellListSource::checkInitialized()
    {
        if ( !m_bInitialized )
            throw RuntimeException();
            // TODO: error message
    }

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

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

    Sequence< OUString > SAL_CALL OCellListSource::getSupportedServiceNames(  )
    {
        return {"com.sun.star.table.CellRangeListSource",
                "com.sun.star.form.binding.ListEntrySource"};
    }

    CellRangeAddress OCellListSource::getRangeAddress( ) const
    {
        OSL_PRECOND( m_xRange.is(), "OCellListSource::getRangeAddress: invalid range!" );

        CellRangeAddress aAddress;
        Reference< XCellRangeAddressable > xRangeAddress( m_xRange, UNO_QUERY );
        if ( xRangeAddress.is() )
            aAddress = xRangeAddress->getRangeAddress( );
        return aAddress;
    }

    OUString OCellListSource::getCellTextContent_noCheck( sal_Int32 _nRangeRelativeRow )
    {
        OSL_PRECOND( m_xRange.is(), "OCellListSource::getRangeAddress: invalid range!" );
        Reference< XTextRange > xCellText;
        if ( m_xRange.is() )
            xCellText.set(m_xRange->getCellByPosition( 0, _nRangeRelativeRow ), css::uno::UNO_QUERY);

        OUString sText;
        if ( xCellText.is() )
            sText = xCellText->getString();
        return sText;
    }

    sal_Int32 SAL_CALL OCellListSource::getListEntryCount(  )
    {
        ::osl::MutexGuard aGuard( m_aMutex );
        checkDisposed();
        checkInitialized();

        CellRangeAddress aAddress( getRangeAddress( ) );
        return aAddress.EndRow - aAddress.StartRow + 1;
    }

    OUString SAL_CALL OCellListSource::getListEntry( sal_Int32 _nPosition )
    {
        ::osl::MutexGuard aGuard( m_aMutex );
        checkDisposed();
        checkInitialized();

        if ( _nPosition >= getListEntryCount() )
            throw IndexOutOfBoundsException();

        return getCellTextContent_noCheck( _nPosition );
    }

    Sequence< OUString > SAL_CALL OCellListSource::getAllListEntries(  )
    {
        ::osl::MutexGuard aGuard( m_aMutex );
        checkDisposed();
        checkInitialized();

        Sequence< OUString > aAllEntries( getListEntryCount() );
        OUString* pAllEntries = aAllEntries.getArray();
        for ( sal_Int32 i = 0; i < aAllEntries.getLength(); ++i )
        {
            *pAllEntries++ = getCellTextContent_noCheck( i );
        }

        return aAllEntries;
    }

    void SAL_CALL OCellListSource::addListEntryListener( const Reference< XListEntryListener >& _rxListener )
    {
        ::osl::MutexGuard aGuard( m_aMutex );
        checkDisposed();
        checkInitialized();

        if ( !_rxListener.is() )
            throw NullPointerException();

        m_aListEntryListeners.addInterface( _rxListener );
    }

    void SAL_CALL OCellListSource::removeListEntryListener( const Reference< XListEntryListener >& _rxListener )
    {
        ::osl::MutexGuard aGuard( m_aMutex );
        checkDisposed();
        checkInitialized();

        if ( !_rxListener.is() )
            throw NullPointerException();

        m_aListEntryListeners.removeInterface( _rxListener );
    }

    void SAL_CALL OCellListSource::modified( const EventObject& /* aEvent */ )
    {
        notifyModified();
    }

    void OCellListSource::notifyModified()
    {
        EventObject aEvent;
        aEvent.Source.set(*this);

        ::comphelper::OInterfaceIteratorHelper2 aIter( m_aListEntryListeners );
        while ( aIter.hasMoreElements() )
        {
            try
            {
                static_cast< XListEntryListener* >( aIter.next() )->allEntriesChanged( aEvent );
            }
            catch( const RuntimeException& )
            {
                // silent this
            }
            catch( const Exception& )
            {
                OSL_FAIL( "OCellListSource::notifyModified: caught a (non-runtime) exception!" );
            }
        }

    }

    void SAL_CALL OCellListSource::disposing( const EventObject& aEvent )
    {
        Reference<XInterface> xRangeInt( m_xRange, UNO_QUERY );
        if ( xRangeInt == aEvent.Source )
        {
            // release references to range object
            m_xRange.clear();
        }
    }

    void SAL_CALL OCellListSource::initialize( const Sequence< Any >& _rArguments )
    {
        if ( m_bInitialized )
            throw Exception();
            // TODO: error message

        // get the cell address
        CellRangeAddress aRangeAddress;
        bool bFoundAddress = false;

        const Any* pLoop = _rArguments.getConstArray();
        const Any* pLoopEnd = _rArguments.getConstArray() + _rArguments.getLength();
        for ( ; ( pLoop != pLoopEnd ) && !bFoundAddress; ++pLoop )
        {
            NamedValue aValue;
            if ( *pLoop >>= aValue )
            {
                if ( aValue.Name == "CellRange" )
                {
                    if ( aValue.Value >>= aRangeAddress )
                        bFoundAddress = true;
                }
            }
        }

        if ( !bFoundAddress )
            // TODO: error message
            throw Exception();

        // determine the range we're bound to
        try
        {
            if ( m_xDocument.is() )
            {
                // first the sheets collection
                Reference< XIndexAccess > xSheets(m_xDocument->getSheets( ), UNO_QUERY);
                OSL_ENSURE( xSheets.is(), "OCellListSource::initialize: could not retrieve the sheets!" );

                if ( xSheets.is() )
                {
                    // the concrete sheet
                    Reference< XCellRange > xSheet(xSheets->getByIndex( aRangeAddress.Sheet ), UNO_QUERY);
                    OSL_ENSURE( xSheet.is(), "OCellListSource::initialize: NULL sheet, but no exception!" );

                    // the concrete cell
                    if ( xSheet.is() )
                    {
                        m_xRange.set(xSheet->getCellRangeByPosition(
                            aRangeAddress.StartColumn, aRangeAddress.StartRow,
                            aRangeAddress.EndColumn, aRangeAddress.EndRow));
                        OSL_ENSURE( Reference< XCellRangeAddressable >( m_xRange, UNO_QUERY ).is(), "OCellListSource::initialize: either NULL range, or cell without address access!" );
                    }
                }
            }
        }
        catch( const Exception& )
        {
            OSL_FAIL( "OCellListSource::initialize: caught an exception while retrieving the cell object!" );
        }

        if ( !m_xRange.is() )
            throw Exception();
            // TODO error message

        Reference<XModifyBroadcaster> xBroadcaster( m_xRange, UNO_QUERY );
        if ( xBroadcaster.is() )
        {
            xBroadcaster->addModifyListener( this );
        }

        // TODO: add as XEventListener to the cell range, so we get notified when it dies,
        // and can dispose ourself then

        // TODO: somehow add as listener so we get notified when the address of the cell range changes
        // We need to forward this as change in our CellRange property to our property change listeners

        // TODO: somehow add as listener to the cells in the range, so that we get notified
        // when their content changes. We need to forward this to our list entry listeners then

        // TODO: somehow add as listener so that we get notified of insertions and removals of rows in our
        // range. In this case, we need to fire a change in our CellRange property, and additionally
        // notify our XListEntryListeners

        m_bInitialized = true;
    }

}   // namespace calc

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
;'/> -rw-r--r--source/be/svx/messages.po2266
-rw-r--r--source/be/sw/messages.po2298
-rw-r--r--source/bg/avmedia/messages.po13
-rw-r--r--source/bg/chart2/messages.po12
-rw-r--r--source/bg/cui/messages.po670
-rw-r--r--source/bg/dictionaries/sq_AL.po11
-rw-r--r--source/bg/filter/source/config/fragments/filters.po47
-rw-r--r--source/bg/fpicker/messages.po8
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared.po760
-rw-r--r--source/bg/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po236
-rw-r--r--source/bg/helpcontent2/source/text/schart/01.po12
-rw-r--r--source/bg/helpcontent2/source/text/sdraw/guide.po8
-rw-r--r--source/bg/helpcontent2/source/text/shared.po8
-rw-r--r--source/bg/helpcontent2/source/text/shared/00.po34
-rw-r--r--source/bg/helpcontent2/source/text/shared/01.po130
-rw-r--r--source/bg/helpcontent2/source/text/shared/02.po16
-rw-r--r--source/bg/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/bg/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/bg/helpcontent2/source/text/shared/autopi.po38
-rw-r--r--source/bg/helpcontent2/source/text/shared/guide.po38
-rw-r--r--source/bg/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/bg/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/bg/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/bg/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/bg/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/bg/helpcontent2/source/text/swriter/01.po36
-rw-r--r--source/bg/helpcontent2/source/text/swriter/02.po14
-rw-r--r--source/bg/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office.po22
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office/UI.po74
-rw-r--r--source/bg/sc/messages.po575
-rw-r--r--source/bg/sccomp/messages.po13
-rw-r--r--source/bg/scp2/source/ooo.po10
-rw-r--r--source/bg/sd/messages.po152
-rw-r--r--source/bg/sfx2/messages.po12
-rw-r--r--source/bg/svtools/messages.po485
-rw-r--r--source/bg/svx/messages.po2376
-rw-r--r--source/bg/sw/messages.po2378
-rw-r--r--source/bg/vcl/messages.po8
-rw-r--r--source/bn-IN/cui/messages.po560
-rw-r--r--source/bn-IN/filter/source/config/fragments/filters.po47
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/bn-IN/sc/messages.po535
-rw-r--r--source/bn-IN/svtools/messages.po473
-rw-r--r--source/bn-IN/svx/messages.po2266
-rw-r--r--source/bn-IN/sw/messages.po2298
-rw-r--r--source/bn/cui/messages.po559
-rw-r--r--source/bn/filter/source/config/fragments/filters.po47
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/bn/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/bn/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/bn/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/bn/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/bn/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/bn/sc/messages.po535
-rw-r--r--source/bn/svtools/messages.po473
-rw-r--r--source/bn/svx/messages.po2266
-rw-r--r--source/bn/sw/messages.po2298
-rw-r--r--source/bo/cui/messages.po559
-rw-r--r--source/bo/filter/source/config/fragments/filters.po47
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/bo/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/bo/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/bo/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/bo/sc/messages.po535
-rw-r--r--source/bo/svtools/messages.po473
-rw-r--r--source/bo/svx/messages.po2266
-rw-r--r--source/bo/sw/messages.po2298
-rw-r--r--source/br/cui/messages.po562
-rw-r--r--source/br/filter/source/config/fragments/filters.po47
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/br/sc/messages.po535
-rw-r--r--source/br/svtools/messages.po473
-rw-r--r--source/br/svx/messages.po2266
-rw-r--r--source/br/sw/messages.po2298
-rw-r--r--source/brx/cui/messages.po559
-rw-r--r--source/brx/filter/source/config/fragments/filters.po47
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/brx/sc/messages.po535
-rw-r--r--source/brx/svtools/messages.po473
-rw-r--r--source/brx/svx/messages.po2266
-rw-r--r--source/brx/sw/messages.po2298
-rw-r--r--source/bs/cui/messages.po560
-rw-r--r--source/bs/filter/source/config/fragments/filters.po47
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/bs/helpcontent2/source/text/swriter/00.po4
-rw-r--r--source/bs/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/bs/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/bs/sc/messages.po535
-rw-r--r--source/bs/svtools/messages.po473
-rw-r--r--source/bs/svx/messages.po2266
-rw-r--r--source/bs/sw/messages.po2298
-rw-r--r--source/ca-valencia/cui/messages.po562
-rw-r--r--source/ca-valencia/filter/source/config/fragments/filters.po47
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/ca-valencia/sc/messages.po535
-rw-r--r--source/ca-valencia/svtools/messages.po473
-rw-r--r--source/ca-valencia/svx/messages.po2266
-rw-r--r--source/ca-valencia/sw/messages.po2298
-rw-r--r--source/ca/cui/messages.po622
-rw-r--r--source/ca/dbaccess/messages.po14
-rw-r--r--source/ca/filter/source/config/fragments/filters.po47
-rw-r--r--source/ca/fpicker/messages.po8
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po746
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po174
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ca/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/ca/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ca/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po48
-rw-r--r--source/ca/sc/messages.po541
-rw-r--r--source/ca/sd/messages.po60
-rw-r--r--source/ca/svtools/messages.po647
-rw-r--r--source/ca/svx/messages.po2428
-rw-r--r--source/ca/sw/messages.po2641
-rw-r--r--source/ca/vcl/messages.po8
-rw-r--r--source/ca/wizards/messages.po201
-rw-r--r--source/ca/wizards/source/resources.po75
-rw-r--r--source/cs/cui/messages.po562
-rw-r--r--source/cs/filter/source/config/fragments/filters.po47
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared.po744
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po174
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/cs/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/cs/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/cs/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/cs/sc/messages.po539
-rw-r--r--source/cs/svtools/messages.po473
-rw-r--r--source/cs/svx/messages.po2266
-rw-r--r--source/cs/sw/messages.po2298
-rw-r--r--source/cy/avmedia/messages.po13
-rw-r--r--source/cy/cui/messages.po666
-rw-r--r--source/cy/dictionaries/sq_AL.po11
-rw-r--r--source/cy/filter/source/config/fragments/filters.po47
-rw-r--r--source/cy/fpicker/messages.po8
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po78
-rw-r--r--source/cy/readlicense_oo/docs.po8
-rw-r--r--source/cy/reportdesign/messages.po11
-rw-r--r--source/cy/sc/messages.po996
-rw-r--r--source/cy/svtools/messages.po473
-rw-r--r--source/cy/svx/messages.po2266
-rw-r--r--source/cy/sw/messages.po2298
-rw-r--r--source/da/avmedia/messages.po13
-rw-r--r--source/da/cui/messages.po666
-rw-r--r--source/da/dictionaries/sq_AL.po11
-rw-r--r--source/da/filter/source/config/fragments/filters.po47
-rw-r--r--source/da/fpicker/messages.po8
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared.po762
-rw-r--r--source/da/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po236
-rw-r--r--source/da/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/da/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/da/helpcontent2/source/text/shared.po10
-rw-r--r--source/da/helpcontent2/source/text/shared/00.po24
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po90
-rw-r--r--source/da/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/da/helpcontent2/source/text/shared/autopi.po40
-rw-r--r--source/da/helpcontent2/source/text/shared/guide.po32
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/da/helpcontent2/source/text/simpress.po6
-rw-r--r--source/da/helpcontent2/source/text/simpress/00.po12
-rw-r--r--source/da/helpcontent2/source/text/simpress/01.po74
-rw-r--r--source/da/helpcontent2/source/text/simpress/02.po10
-rw-r--r--source/da/helpcontent2/source/text/simpress/guide.po158
-rw-r--r--source/da/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/da/helpcontent2/source/text/swriter/01.po30
-rw-r--r--source/da/helpcontent2/source/text/swriter/02.po14
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office.po20
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po68
-rw-r--r--source/da/sc/messages.po571
-rw-r--r--source/da/sccomp/messages.po13
-rw-r--r--source/da/scp2/source/ooo.po12
-rw-r--r--source/da/sd/messages.po158
-rw-r--r--source/da/sfx2/messages.po14
-rw-r--r--source/da/svtools/messages.po487
-rw-r--r--source/da/svx/messages.po2362
-rw-r--r--source/da/sw/messages.po2376
-rw-r--r--source/da/vcl/messages.po10
-rw-r--r--source/de/basctl/messages.po10
-rw-r--r--source/de/chart2/messages.po14
-rw-r--r--source/de/cui/messages.po684
-rw-r--r--source/de/dbaccess/messages.po50
-rw-r--r--source/de/dictionaries/en/dialog/registry/data/org/openoffice/Office.po11
-rw-r--r--source/de/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po11
-rw-r--r--source/de/dictionaries/pt_BR/dialog.po12
-rw-r--r--source/de/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po14
-rw-r--r--source/de/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po13
-rw-r--r--source/de/editeng/messages.po6
-rw-r--r--source/de/filter/messages.po19
-rw-r--r--source/de/filter/source/config/fragments/filters.po97
-rw-r--r--source/de/fpicker/messages.po10
-rw-r--r--source/de/helpcontent2/source/auxiliary.po12
-rw-r--r--source/de/helpcontent2/source/text/sbasic/guide.po14
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po786
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared/02.po6
-rw-r--r--source/de/helpcontent2/source/text/scalc/00.po10
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po330
-rw-r--r--source/de/helpcontent2/source/text/scalc/02.po6
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/de/helpcontent2/source/text/schart.po8
-rw-r--r--source/de/helpcontent2/source/text/schart/01.po30
-rw-r--r--source/de/helpcontent2/source/text/sdraw/guide.po6
-rw-r--r--source/de/helpcontent2/source/text/shared.po16
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po74
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po256
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po58
-rw-r--r--source/de/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/de/helpcontent2/source/text/shared/05.po10
-rw-r--r--source/de/helpcontent2/source/text/shared/autokorr.po12
-rw-r--r--source/de/helpcontent2/source/text/shared/autopi.po116
-rw-r--r--source/de/helpcontent2/source/text/shared/explorer/database.po30
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po118
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po82
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/de/helpcontent2/source/text/simpress/02.po14
-rw-r--r--source/de/helpcontent2/source/text/simpress/guide.po14
-rw-r--r--source/de/helpcontent2/source/text/smath/01.po12
-rw-r--r--source/de/helpcontent2/source/text/smath/guide.po6
-rw-r--r--source/de/helpcontent2/source/text/swriter.po14
-rw-r--r--source/de/helpcontent2/source/text/swriter/00.po18
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po50
-rw-r--r--source/de/helpcontent2/source/text/swriter/02.po14
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po60
-rw-r--r--source/de/helpcontent2/source/text/swriter/librelogo.po22
-rw-r--r--source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po60
-rw-r--r--source/de/officecfg/registry/data/org/openoffice.po12
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po84
-rw-r--r--source/de/readlicense_oo/docs.po10
-rw-r--r--source/de/reportdesign/messages.po14
-rw-r--r--source/de/sc/messages.po625
-rw-r--r--source/de/scaddins/messages.po8
-rw-r--r--source/de/sccomp/messages.po15
-rw-r--r--source/de/scp2/source/graphicfilter.po10
-rw-r--r--source/de/scp2/source/ooo.po10
-rw-r--r--source/de/sd/messages.po172
-rw-r--r--source/de/setup_native/source/mac.po10
-rw-r--r--source/de/sfx2/messages.po22
-rw-r--r--source/de/starmath/messages.po11
-rw-r--r--source/de/svtools/messages.po501
-rw-r--r--source/de/svx/messages.po2382
-rw-r--r--source/de/sw/messages.po2430
-rw-r--r--source/de/swext/mediawiki/help.po12
-rw-r--r--source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po8
-rw-r--r--source/de/sysui/desktop/share.po6
-rw-r--r--source/de/uui/messages.po10
-rw-r--r--source/de/vcl/messages.po18
-rw-r--r--source/de/wizards/messages.po8
-rw-r--r--source/de/wizards/source/resources.po16
-rw-r--r--source/de/xmlsecurity/messages.po12
-rw-r--r--source/dgo/cui/messages.po561
-rw-r--r--source/dgo/filter/source/config/fragments/filters.po47
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/dgo/sc/messages.po535
-rw-r--r--source/dgo/svtools/messages.po473
-rw-r--r--source/dgo/svx/messages.po2266
-rw-r--r--source/dgo/sw/messages.po2298
-rw-r--r--source/dz/cui/messages.po559
-rw-r--r--source/dz/filter/source/config/fragments/filters.po47
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/dz/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/dz/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/dz/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/dz/sc/messages.po535
-rw-r--r--source/dz/svtools/messages.po473
-rw-r--r--source/dz/svx/messages.po2266
-rw-r--r--source/dz/sw/messages.po2298
-rw-r--r--source/el/cui/messages.po562
-rw-r--r--source/el/filter/source/config/fragments/filters.po47
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared.po754
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po186
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/el/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/el/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/el/sc/messages.po539
-rw-r--r--source/el/svtools/messages.po473
-rw-r--r--source/el/svx/messages.po2266
-rw-r--r--source/el/sw/messages.po2298
-rw-r--r--source/en-GB/avmedia/messages.po13
-rw-r--r--source/en-GB/cui/messages.po718
-rw-r--r--source/en-GB/dictionaries/sq_AL.po11
-rw-r--r--source/en-GB/filter/source/config/fragments/filters.po47
-rw-r--r--source/en-GB/fpicker/messages.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared.po758
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po188
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po64
-rw-r--r--source/en-GB/sc/messages.po2035
-rw-r--r--source/en-GB/sccomp/messages.po13
-rw-r--r--source/en-GB/scp2/source/ooo.po10
-rw-r--r--source/en-GB/sd/messages.po238
-rw-r--r--source/en-GB/sfx2/messages.po12
-rw-r--r--source/en-GB/svtools/messages.po688
-rw-r--r--source/en-GB/svx/messages.po2552
-rw-r--r--source/en-GB/sw/messages.po2633
-rw-r--r--source/en-GB/uui/messages.po28
-rw-r--r--source/en-GB/vcl/messages.po21
-rw-r--r--source/en-GB/wizards/messages.po335
-rw-r--r--source/en-GB/wizards/source/resources.po1117
-rw-r--r--source/en-ZA/cui/messages.po559
-rw-r--r--source/en-ZA/filter/source/config/fragments/filters.po47
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/en-ZA/sc/messages.po535
-rw-r--r--source/en-ZA/svtools/messages.po473
-rw-r--r--source/en-ZA/svx/messages.po2266
-rw-r--r--source/en-ZA/sw/messages.po2298
-rw-r--r--source/eo/avmedia/messages.po13
-rw-r--r--source/eo/cui/messages.po626
-rw-r--r--source/eo/filter/source/config/fragments/filters.po47
-rw-r--r--source/eo/fpicker/messages.po8
-rw-r--r--source/eo/helpcontent2/source/auxiliary.po8
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/eo/helpcontent2/source/text/scalc.po10
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/eo/helpcontent2/source/text/sdraw.po10
-rw-r--r--source/eo/helpcontent2/source/text/shared.po10
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/eo/helpcontent2/source/text/shared/05.po18
-rw-r--r--source/eo/helpcontent2/source/text/shared/07.po12
-rw-r--r--source/eo/helpcontent2/source/text/simpress.po10
-rw-r--r--source/eo/helpcontent2/source/text/swriter.po10
-rw-r--r--source/eo/helpcontent2/source/text/swriter/00.po100
-rw-r--r--source/eo/helpcontent2/source/text/swriter/01.po754
-rw-r--r--source/eo/helpcontent2/source/text/swriter/02.po68
-rw-r--r--source/eo/helpcontent2/source/text/swriter/04.po12
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po340
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po24
-rw-r--r--source/eo/sc/messages.po547
-rw-r--r--source/eo/scp2/source/ooo.po10
-rw-r--r--source/eo/sfx2/messages.po12
-rw-r--r--source/eo/svtools/messages.po591
-rw-r--r--source/eo/svx/messages.po2284
-rw-r--r--source/eo/sw/messages.po2308
-rw-r--r--source/eo/vcl/messages.po21
-rw-r--r--source/es/cui/messages.po634
-rw-r--r--source/es/dbaccess/messages.po6
-rw-r--r--source/es/dictionaries/sq_AL.po6
-rw-r--r--source/es/filter/source/config/fragments/filters.po47
-rw-r--r--source/es/fpicker/messages.po8
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po796
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po238
-rw-r--r--source/es/helpcontent2/source/text/scalc/05.po6
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po84
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po18
-rw-r--r--source/es/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/autopi.po42
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po20
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po10
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po12
-rw-r--r--source/es/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po38
-rw-r--r--source/es/helpcontent2/source/text/swriter/02.po8
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po8
-rw-r--r--source/es/nlpsolver/src/locale.po6
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po38
-rw-r--r--source/es/reportdesign/messages.po8
-rw-r--r--source/es/sc/messages.po691
-rw-r--r--source/es/sccomp/messages.po13
-rw-r--r--source/es/scp2/source/ooo.po6
-rw-r--r--source/es/sd/messages.po26
-rw-r--r--source/es/sfx2/messages.po6
-rw-r--r--source/es/svtools/messages.po485
-rw-r--r--source/es/svx/messages.po2274
-rw-r--r--source/es/sw/messages.po2324
-rw-r--r--source/es/vcl/messages.po8
-rw-r--r--source/es/wizards/source/resources.po18
-rw-r--r--source/et/cui/messages.po562
-rw-r--r--source/et/filter/source/config/fragments/filters.po47
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po174
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/et/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/et/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/et/sc/messages.po539
-rw-r--r--source/et/svtools/messages.po473
-rw-r--r--source/et/svx/messages.po2266
-rw-r--r--source/et/sw/messages.po2298
-rw-r--r--source/eu/cui/messages.po670
-rw-r--r--source/eu/dictionaries/sq_AL.po11
-rw-r--r--source/eu/filter/source/config/fragments/filters.po47
-rw-r--r--source/eu/fpicker/messages.po8
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po784
-rw-r--r--source/eu/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po238
-rw-r--r--source/eu/helpcontent2/source/text/scalc/05.po8
-rw-r--r--source/eu/helpcontent2/source/text/schart/01.po14
-rw-r--r--source/eu/helpcontent2/source/text/shared.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po34
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po92
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po22
-rw-r--r--source/eu/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/autopi.po38
-rw-r--r--source/eu/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/eu/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/eu/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po30
-rw-r--r--source/eu/helpcontent2/source/text/swriter/02.po18
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/eu/librelogo/source/pythonpath.po8
-rw-r--r--source/eu/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po10
-rw-r--r--source/eu/nlpsolver/src/locale.po10
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office.po26
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po88
-rw-r--r--source/eu/reportdesign/messages.po10
-rw-r--r--source/eu/sc/messages.po581
-rw-r--r--source/eu/sccomp/messages.po13
-rw-r--r--source/eu/scp2/source/calc.po8
-rw-r--r--source/eu/scp2/source/ooo.po10
-rw-r--r--source/eu/sd/messages.po152
-rw-r--r--source/eu/sfx2/messages.po12
-rw-r--r--source/eu/svtools/messages.po485
-rw-r--r--source/eu/svx/messages.po2398
-rw-r--r--source/eu/sw/messages.po2392
-rw-r--r--source/eu/vcl/messages.po10
-rw-r--r--source/fa/cui/messages.po559
-rw-r--r--source/fa/filter/source/config/fragments/filters.po47
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/fa/sc/messages.po536
-rw-r--r--source/fa/svtools/messages.po473
-rw-r--r--source/fa/svx/messages.po2266
-rw-r--r--source/fa/sw/messages.po2298
-rw-r--r--source/fi/cui/messages.po562
-rw-r--r--source/fi/filter/source/config/fragments/filters.po47
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/fi/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/fi/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/fi/sc/messages.po539
-rw-r--r--source/fi/svtools/messages.po473
-rw-r--r--source/fi/svx/messages.po2266
-rw-r--r--source/fi/sw/messages.po2298
-rw-r--r--source/fr/cui/messages.po622
-rw-r--r--source/fr/filter/source/config/fragments/filters.po47
-rw-r--r--source/fr/fpicker/messages.po10
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared.po758
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po188
-rw-r--r--source/fr/helpcontent2/source/text/schart/01.po10
-rw-r--r--source/fr/helpcontent2/source/text/shared.po10
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po24
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po142
-rw-r--r--source/fr/helpcontent2/source/text/shared/02.po24
-rw-r--r--source/fr/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/fr/helpcontent2/source/text/shared/autopi.po38
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po94
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po54
-rw-r--r--source/fr/helpcontent2/source/text/simpress/00.po12
-rw-r--r--source/fr/helpcontent2/source/text/simpress/01.po10
-rw-r--r--source/fr/helpcontent2/source/text/simpress/guide.po92
-rw-r--r--source/fr/helpcontent2/source/text/swriter.po6
-rw-r--r--source/fr/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/fr/helpcontent2/source/text/swriter/01.po30
-rw-r--r--source/fr/helpcontent2/source/text/swriter/02.po16
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po58
-rw-r--r--source/fr/sc/messages.po541
-rw-r--r--source/fr/sd/messages.po22
-rw-r--r--source/fr/svtools/messages.po483
-rw-r--r--source/fr/svx/messages.po2276
-rw-r--r--source/fr/sw/messages.po2300
-rw-r--r--source/fr/vcl/messages.po10
-rw-r--r--source/ga/avmedia/messages.po10
-rw-r--r--source/ga/cui/messages.po666
-rw-r--r--source/ga/dictionaries/sq_AL.po11
-rw-r--r--source/ga/filter/source/config/fragments/filters.po47
-rw-r--r--source/ga/fpicker/messages.po8
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po64
-rw-r--r--source/ga/sc/messages.po571
-rw-r--r--source/ga/sccomp/messages.po10
-rw-r--r--source/ga/scp2/source/ooo.po10
-rw-r--r--source/ga/sd/messages.po152
-rw-r--r--source/ga/sfx2/messages.po12
-rw-r--r--source/ga/svtools/messages.po485
-rw-r--r--source/ga/svx/messages.po2360
-rw-r--r--source/ga/sw/messages.po2374
-rw-r--r--source/ga/vcl/messages.po8
-rw-r--r--source/gd/avmedia/messages.po13
-rw-r--r--source/gd/cui/messages.po668
-rw-r--r--source/gd/dictionaries/af_ZA.po11
-rw-r--r--source/gd/dictionaries/an_ES.po11
-rw-r--r--source/gd/dictionaries/ar.po11
-rw-r--r--source/gd/dictionaries/be_BY.po11
-rw-r--r--source/gd/dictionaries/bg_BG.po11
-rw-r--r--source/gd/dictionaries/bn_BD.po11
-rw-r--r--source/gd/dictionaries/br_FR.po11
-rw-r--r--source/gd/dictionaries/bs_BA.po12
-rw-r--r--source/gd/dictionaries/ca.po6
-rw-r--r--source/gd/dictionaries/cs_CZ.po6
-rw-r--r--source/gd/dictionaries/da_DK.po11
-rw-r--r--source/gd/dictionaries/de.po11
-rw-r--r--source/gd/dictionaries/el_GR.po11
-rw-r--r--source/gd/dictionaries/en.po11
-rw-r--r--source/gd/dictionaries/es.po8
-rw-r--r--source/gd/dictionaries/et_EE.po11
-rw-r--r--source/gd/dictionaries/fr_FR.po11
-rw-r--r--source/gd/dictionaries/gl.po12
-rw-r--r--source/gd/dictionaries/gu_IN.po11
-rw-r--r--source/gd/dictionaries/gug.po6
-rw-r--r--source/gd/dictionaries/he_IL.po11
-rw-r--r--source/gd/dictionaries/hi_IN.po11
-rw-r--r--source/gd/dictionaries/hr_HR.po11
-rw-r--r--source/gd/dictionaries/hu_HU.po11
-rw-r--r--source/gd/dictionaries/is.po8
-rw-r--r--source/gd/dictionaries/it_IT.po11
-rw-r--r--source/gd/dictionaries/kmr_Latn.po15
-rw-r--r--source/gd/dictionaries/lo_LA.po12
-rw-r--r--source/gd/dictionaries/lt_LT.po13
-rw-r--r--source/gd/dictionaries/lv_LV.po13
-rw-r--r--source/gd/dictionaries/ne_NP.po13
-rw-r--r--source/gd/dictionaries/nl_NL.po13
-rw-r--r--source/gd/dictionaries/no.po14
-rw-r--r--source/gd/dictionaries/oc_FR.po13
-rw-r--r--source/gd/dictionaries/pl_PL.po13
-rw-r--r--source/gd/dictionaries/pt_PT.po13
-rw-r--r--source/gd/dictionaries/ro.po13
-rw-r--r--source/gd/dictionaries/ru_RU.po13
-rw-r--r--source/gd/dictionaries/si_LK.po13
-rw-r--r--source/gd/dictionaries/sk_SK.po13
-rw-r--r--source/gd/dictionaries/sl_SI.po13
-rw-r--r--source/gd/dictionaries/sq_AL.po11
-rw-r--r--source/gd/dictionaries/sr.po13
-rw-r--r--source/gd/dictionaries/sw_TZ.po13
-rw-r--r--source/gd/dictionaries/te_IN.po13
-rw-r--r--source/gd/dictionaries/th_TH.po13
-rw-r--r--source/gd/dictionaries/uk_UA.po13
-rw-r--r--source/gd/dictionaries/vi.po13
-rw-r--r--source/gd/filter/source/config/fragments/filters.po53
-rw-r--r--source/gd/fpicker/messages.po8
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office.po20
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po248
-rw-r--r--source/gd/readlicense_oo/docs.po8
-rw-r--r--source/gd/reportdesign/messages.po25
-rw-r--r--source/gd/sc/messages.po2033
-rw-r--r--source/gd/scaddins/messages.po13
-rw-r--r--source/gd/scp2/source/ooo.po104
-rw-r--r--source/gd/svtools/messages.po473
-rw-r--r--source/gd/svx/messages.po2266
-rw-r--r--source/gd/sw/messages.po2298
-rw-r--r--source/gl/avmedia/messages.po13
-rw-r--r--source/gl/cui/messages.po584
-rw-r--r--source/gl/dbaccess/messages.po16
-rw-r--r--source/gl/dictionaries/sq_AL.po11
-rw-r--r--source/gl/filter/source/config/fragments/filters.po47
-rw-r--r--source/gl/fpicker/messages.po8
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/gl/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office.po22
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po64
-rw-r--r--source/gl/sc/messages.po565
-rw-r--r--source/gl/scp2/source/ooo.po12
-rw-r--r--source/gl/sfx2/messages.po14
-rw-r--r--source/gl/svtools/messages.po485
-rw-r--r--source/gl/svx/messages.po2276
-rw-r--r--source/gl/sw/messages.po2394
-rw-r--r--source/gl/vcl/messages.po10
-rw-r--r--source/gu/cui/messages.po560
-rw-r--r--source/gu/filter/source/config/fragments/filters.po47
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/gu/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/gu/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/gu/sc/messages.po535
-rw-r--r--source/gu/svtools/messages.po473
-rw-r--r--source/gu/svx/messages.po2266
-rw-r--r--source/gu/sw/messages.po2298
-rw-r--r--source/gug/cui/messages.po562
-rw-r--r--source/gug/filter/source/config/fragments/filters.po47
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/gug/sc/messages.po535
-rw-r--r--source/gug/svtools/messages.po473
-rw-r--r--source/gug/svx/messages.po2266
-rw-r--r--source/gug/sw/messages.po2298
-rw-r--r--source/he/cui/messages.po562
-rw-r--r--source/he/filter/source/config/fragments/filters.po47
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/he/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/he/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/he/sc/messages.po535
-rw-r--r--source/he/svtools/messages.po473
-rw-r--r--source/he/svx/messages.po2266
-rw-r--r--source/he/sw/messages.po2298
-rw-r--r--source/hi/cui/messages.po560
-rw-r--r--source/hi/filter/source/config/fragments/filters.po47
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/hi/helpcontent2/source/text/swriter/00.po4
-rw-r--r--source/hi/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/hi/sc/messages.po535
-rw-r--r--source/hi/svtools/messages.po473
-rw-r--r--source/hi/svx/messages.po2266
-rw-r--r--source/hi/sw/messages.po2298
-rw-r--r--source/hr/avmedia/messages.po13
-rw-r--r--source/hr/cui/messages.po662
-rw-r--r--source/hr/dictionaries/sq_AL.po11
-rw-r--r--source/hr/filter/source/config/fragments/filters.po47
-rw-r--r--source/hr/fpicker/messages.po8
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/hr/helpcontent2/source/text/swriter/00.po4
-rw-r--r--source/hr/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po62
-rw-r--r--source/hr/sc/messages.po814
-rw-r--r--source/hr/svtools/messages.po473
-rw-r--r--source/hr/svx/messages.po2266
-rw-r--r--source/hr/sw/messages.po2298
-rw-r--r--source/hsb/cui/messages.po562
-rw-r--r--source/hsb/filter/source/config/fragments/filters.po47
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/hsb/sc/messages.po531
-rw-r--r--source/hsb/svtools/messages.po473
-rw-r--r--source/hsb/svx/messages.po2266
-rw-r--r--source/hsb/sw/messages.po2298
-rw-r--r--source/hu/avmedia/messages.po13
-rw-r--r--source/hu/chart2/messages.po10
-rw-r--r--source/hu/connectivity/messages.po18
-rw-r--r--source/hu/connectivity/registry/writer/org/openoffice/Office/DataAccess.po11
-rw-r--r--source/hu/cui/messages.po573
-rw-r--r--source/hu/dictionaries/bo.po11
-rw-r--r--source/hu/dictionaries/ca.po11
-rw-r--r--source/hu/dictionaries/cs_CZ.po11
-rw-r--r--source/hu/dictionaries/gd_GB.po11
-rw-r--r--source/hu/dictionaries/gug.po11
-rw-r--r--source/hu/dictionaries/sq_AL.po11
-rw-r--r--source/hu/dictionaries/sv_SE.po11
-rw-r--r--source/hu/extensions/messages.po14
-rw-r--r--source/hu/filter/source/config/fragments/filters.po59
-rw-r--r--source/hu/filter/source/config/fragments/types.po8
-rw-r--r--source/hu/fpicker/messages.po19
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared.po744
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po174
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/hu/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/hu/instsetoo_native/inc_openoffice/windows/msi_languages.po18
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/hu/readlicense_oo/docs.po8
-rw-r--r--source/hu/reportdesign/messages.po11
-rw-r--r--source/hu/sc/messages.po539
-rw-r--r--source/hu/scp2/source/ooo.po10
-rw-r--r--source/hu/sfx2/messages.po77
-rw-r--r--source/hu/svl/messages.po13
-rw-r--r--source/hu/svtools/messages.po712
-rw-r--r--source/hu/svx/messages.po2275
-rw-r--r--source/hu/sw/messages.po2298
-rw-r--r--source/hu/uui/messages.po28
-rw-r--r--source/hu/vcl/messages.po21
-rw-r--r--source/hu/writerperfect/messages.po39
-rw-r--r--source/hu/xmlsecurity/messages.po11
-rw-r--r--source/id/avmedia/messages.po13
-rw-r--r--source/id/cui/messages.po562
-rw-r--r--source/id/dictionaries/sq_AL.po11
-rw-r--r--source/id/extensions/messages.po14
-rw-r--r--source/id/filter/source/config/fragments/filters.po47
-rw-r--r--source/id/formula/messages.po19
-rw-r--r--source/id/fpicker/messages.po8
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/id/helpcontent2/source/text/shared.po8
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/id/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/id/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/id/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/id/helpcontent2/source/text/swriter/02.po14
-rw-r--r--source/id/helpcontent2/source/text/swriter/04.po12
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/id/sc/messages.po569
-rw-r--r--source/id/scp2/source/ooo.po10
-rw-r--r--source/id/starmath/messages.po13
-rw-r--r--source/id/svtools/messages.po473
-rw-r--r--source/id/svx/messages.po2266
-rw-r--r--source/id/sw/messages.po2298
-rw-r--r--source/id/vcl/messages.po8
-rw-r--r--source/id/writerperfect/messages.po26
-rw-r--r--source/id/xmlsecurity/messages.po26
-rw-r--r--source/is/cui/messages.po562
-rw-r--r--source/is/filter/source/config/fragments/filters.po47
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/is/helpcontent2/source/text/swriter/00.po4
-rw-r--r--source/is/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/is/sc/messages.po539
-rw-r--r--source/is/svtools/messages.po473
-rw-r--r--source/is/svx/messages.po2266
-rw-r--r--source/is/sw/messages.po2298
-rw-r--r--source/it/cui/messages.po562
-rw-r--r--source/it/filter/source/config/fragments/filters.po47
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po756
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po174
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/it/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/it/sc/messages.po535
-rw-r--r--source/it/svtools/messages.po473
-rw-r--r--source/it/svx/messages.po2266
-rw-r--r--source/it/sw/messages.po2298
-rw-r--r--source/it/writerperfect/messages.po39
-rw-r--r--source/it/xmlsecurity/messages.po30
-rw-r--r--source/ja/cui/messages.po572
-rw-r--r--source/ja/dictionaries/sq_AL.po11
-rw-r--r--source/ja/filter/source/config/fragments/filters.po47
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ja/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/ja/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po32
-rw-r--r--source/ja/sc/messages.po539
-rw-r--r--source/ja/scp2/source/ooo.po12
-rw-r--r--source/ja/svtools/messages.po473
-rw-r--r--source/ja/svx/messages.po2266
-rw-r--r--source/ja/sw/messages.po2342
-rw-r--r--source/jv/cui/messages.po558
-rw-r--r--source/jv/filter/source/config/fragments/filters.po47
-rw-r--r--source/jv/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/jv/sc/messages.po531
-rw-r--r--source/jv/svtools/messages.po473
-rw-r--r--source/jv/svx/messages.po2266
-rw-r--r--source/jv/sw/messages.po2298
-rw-r--r--source/ka/cui/messages.po560
-rw-r--r--source/ka/filter/source/config/fragments/filters.po47
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po168
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/ka/helpcontent2/source/text/swriter/00.po4
-rw-r--r--source/ka/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/ka/sc/messages.po531
-rw-r--r--source/ka/svtools/messages.po473
-rw-r--r--source/ka/svx/messages.po2266
-rw-r--r--source/ka/sw/messages.po2298
-rw-r--r--source/kk/avmedia/messages.po13
-rw-r--r--source/kk/cui/messages.po562
-rw-r--r--source/kk/filter/source/config/fragments/filters.po47
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/kk/sc/messages.po539
-rw-r--r--source/kk/svtools/messages.po473
-rw-r--r--source/kk/svx/messages.po2266
-rw-r--r--source/kk/sw/messages.po2298
-rw-r--r--source/kl/cui/messages.po558
-rw-r--r--source/kl/filter/source/config/fragments/filters.po47
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/kl/sc/messages.po531
-rw-r--r--source/kl/svtools/messages.po473
-rw-r--r--source/kl/svx/messages.po2266
-rw-r--r--source/kl/sw/messages.po2298
-rw-r--r--source/km/cui/messages.po560
-rw-r--r--source/km/filter/source/config/fragments/filters.po47
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po174
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/km/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/km/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/km/sc/messages.po535
-rw-r--r--source/km/svtools/messages.po473
-rw-r--r--source/km/svx/messages.po2266
-rw-r--r--source/km/sw/messages.po2298
-rw-r--r--source/kmr-Latn/cui/messages.po559
-rw-r--r--source/kmr-Latn/filter/source/config/fragments/filters.po47
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/kmr-Latn/sc/messages.po531
-rw-r--r--source/kmr-Latn/svtools/messages.po473
-rw-r--r--source/kmr-Latn/svx/messages.po2266
-rw-r--r--source/kmr-Latn/sw/messages.po2298
-rw-r--r--source/kn/cui/messages.po560
-rw-r--r--source/kn/filter/source/config/fragments/filters.po47
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/kn/sc/messages.po535
-rw-r--r--source/kn/svtools/messages.po473
-rw-r--r--source/kn/svx/messages.po2266
-rw-r--r--source/kn/sw/messages.po2298
-rw-r--r--source/ko/cui/messages.po560
-rw-r--r--source/ko/filter/source/config/fragments/filters.po47
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ko/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/ko/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/ko/sc/messages.po535
-rw-r--r--source/ko/svtools/messages.po473
-rw-r--r--source/ko/svx/messages.po2266
-rw-r--r--source/ko/sw/messages.po2298
-rw-r--r--source/kok/cui/messages.po559
-rw-r--r--source/kok/filter/source/config/fragments/filters.po47
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/kok/sc/messages.po535
-rw-r--r--source/kok/svtools/messages.po473
-rw-r--r--source/kok/svx/messages.po2266
-rw-r--r--source/kok/sw/messages.po2298
-rw-r--r--source/ks/cui/messages.po559
-rw-r--r--source/ks/filter/source/config/fragments/filters.po47
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/ks/sc/messages.po535
-rw-r--r--source/ks/svtools/messages.po473
-rw-r--r--source/ks/svx/messages.po2266
-rw-r--r--source/ks/sw/messages.po2298
-rw-r--r--source/ky/cui/messages.po558
-rw-r--r--source/ky/filter/source/config/fragments/filters.po47
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ky/sc/messages.po531
-rw-r--r--source/ky/svtools/messages.po473
-rw-r--r--source/ky/svx/messages.po2266
-rw-r--r--source/ky/sw/messages.po2298
-rw-r--r--source/lb/cui/messages.po559
-rw-r--r--source/lb/filter/source/config/fragments/filters.po47
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/lb/sc/messages.po531
-rw-r--r--source/lb/svtools/messages.po473
-rw-r--r--source/lb/svx/messages.po2266
-rw-r--r--source/lb/sw/messages.po2298
-rw-r--r--source/lo/cui/messages.po559
-rw-r--r--source/lo/filter/source/config/fragments/filters.po47
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/lo/helpcontent2/source/text/swriter/00.po4
-rw-r--r--source/lo/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/lo/sc/messages.po535
-rw-r--r--source/lo/svtools/messages.po473
-rw-r--r--source/lo/svx/messages.po2266
-rw-r--r--source/lo/sw/messages.po2298
-rw-r--r--source/lt/cui/messages.po562
-rw-r--r--source/lt/editeng/messages.po6
-rw-r--r--source/lt/filter/source/config/fragments/filters.po47
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/lt/helpcontent2/source/text/swriter/00.po4
-rw-r--r--source/lt/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po36
-rw-r--r--source/lt/sc/messages.po539
-rw-r--r--source/lt/svtools/messages.po473
-rw-r--r--source/lt/svx/messages.po2266
-rw-r--r--source/lt/sw/messages.po2308
-rw-r--r--source/lv/cui/messages.po562
-rw-r--r--source/lv/filter/source/config/fragments/filters.po47
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/lv/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/lv/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/lv/sc/messages.po535
-rw-r--r--source/lv/svtools/messages.po473
-rw-r--r--source/lv/svx/messages.po2266
-rw-r--r--source/lv/sw/messages.po2298
-rw-r--r--source/mai/cui/messages.po559
-rw-r--r--source/mai/filter/source/config/fragments/filters.po47
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/mai/sc/messages.po535
-rw-r--r--source/mai/svtools/messages.po473
-rw-r--r--source/mai/svx/messages.po2266
-rw-r--r--source/mai/sw/messages.po2298
-rw-r--r--source/mk/cui/messages.po559
-rw-r--r--source/mk/filter/source/config/fragments/filters.po47
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/mk/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/mk/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/mk/sc/messages.po535
-rw-r--r--source/mk/svtools/messages.po473
-rw-r--r--source/mk/svx/messages.po2266
-rw-r--r--source/mk/sw/messages.po2298
-rw-r--r--source/ml/cui/messages.po560
-rw-r--r--source/ml/filter/source/config/fragments/filters.po47
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/ml/sc/messages.po535
-rw-r--r--source/ml/svtools/messages.po473
-rw-r--r--source/ml/svx/messages.po2266
-rw-r--r--source/ml/sw/messages.po2298
-rw-r--r--source/mn/cui/messages.po559
-rw-r--r--source/mn/filter/source/config/fragments/filters.po47
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/mn/sc/messages.po535
-rw-r--r--source/mn/svtools/messages.po473
-rw-r--r--source/mn/svx/messages.po2266
-rw-r--r--source/mn/sw/messages.po2298
-rw-r--r--source/mni/cui/messages.po560
-rw-r--r--source/mni/filter/source/config/fragments/filters.po47
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/mni/sc/messages.po535
-rw-r--r--source/mni/svtools/messages.po473
-rw-r--r--source/mni/svx/messages.po2266
-rw-r--r--source/mni/sw/messages.po2298
-rw-r--r--source/mr/cui/messages.po560
-rw-r--r--source/mr/filter/source/config/fragments/filters.po47
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/mr/sc/messages.po535
-rw-r--r--source/mr/svtools/messages.po473
-rw-r--r--source/mr/svx/messages.po2266
-rw-r--r--source/mr/sw/messages.po2298
-rw-r--r--source/my/cui/messages.po560
-rw-r--r--source/my/filter/source/config/fragments/filters.po47
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/my/sc/messages.po535
-rw-r--r--source/my/svtools/messages.po473
-rw-r--r--source/my/svx/messages.po2266
-rw-r--r--source/my/sw/messages.po2298
-rw-r--r--source/nb/cui/messages.po562
-rw-r--r--source/nb/filter/source/config/fragments/filters.po47
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared.po744
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/nb/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/nb/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/nb/sc/messages.po539
-rw-r--r--source/nb/svtools/messages.po473
-rw-r--r--source/nb/svx/messages.po2266
-rw-r--r--source/nb/sw/messages.po2298
-rw-r--r--source/ne/cui/messages.po560
-rw-r--r--source/ne/filter/source/config/fragments/filters.po47
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ne/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/ne/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/ne/sc/messages.po535
-rw-r--r--source/ne/svtools/messages.po473
-rw-r--r--source/ne/svx/messages.po2266
-rw-r--r--source/ne/sw/messages.po2298
-rw-r--r--source/nl/avmedia/messages.po13
-rw-r--r--source/nl/chart2/messages.po10
-rw-r--r--source/nl/connectivity/messages.po8
-rw-r--r--source/nl/cui/messages.po764
-rw-r--r--source/nl/dbaccess/messages.po54
-rw-r--r--source/nl/desktop/messages.po25
-rw-r--r--source/nl/dictionaries/en/dialog.po14
-rw-r--r--source/nl/dictionaries/sq_AL.po11
-rw-r--r--source/nl/editeng/messages.po8
-rw-r--r--source/nl/extensions/messages.po50
-rw-r--r--source/nl/extras/source/autocorr/emoji.po26
-rw-r--r--source/nl/filter/source/config/fragments/filters.po47
-rw-r--r--source/nl/fpicker/messages.po8
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po756
-rw-r--r--source/nl/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po230
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/nl/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po16
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po64
-rw-r--r--source/nl/sc/messages.po569
-rw-r--r--source/nl/scp2/source/ooo.po10
-rw-r--r--source/nl/sd/messages.po152
-rw-r--r--source/nl/sfx2/messages.po14
-rw-r--r--source/nl/svtools/messages.po485
-rw-r--r--source/nl/svx/messages.po2358
-rw-r--r--source/nl/sw/messages.po2374
-rw-r--r--source/nl/vcl/messages.po10
-rw-r--r--source/nn/avmedia/messages.po13
-rw-r--r--source/nn/cui/messages.po666
-rw-r--r--source/nn/dictionaries/sq_AL.po11
-rw-r--r--source/nn/filter/source/config/fragments/filters.po47
-rw-r--r--source/nn/fpicker/messages.po8
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po764
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po202
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po30
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po148
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po24
-rw-r--r--source/nn/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/nn/helpcontent2/source/text/shared/autopi.po38
-rw-r--r--source/nn/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po86
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po52
-rw-r--r--source/nn/helpcontent2/source/text/simpress.po10
-rw-r--r--source/nn/helpcontent2/source/text/simpress/00.po18
-rw-r--r--source/nn/helpcontent2/source/text/simpress/01.po82
-rw-r--r--source/nn/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/nn/helpcontent2/source/text/simpress/04.po8
-rw-r--r--source/nn/helpcontent2/source/text/simpress/guide.po118
-rw-r--r--source/nn/helpcontent2/source/text/swriter.po10
-rw-r--r--source/nn/helpcontent2/source/text/swriter/00.po40
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po82
-rw-r--r--source/nn/helpcontent2/source/text/swriter/02.po14
-rw-r--r--source/nn/helpcontent2/source/text/swriter/04.po12
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po112
-rw-r--r--source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po50
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po72
-rw-r--r--source/nn/sc/messages.po569
-rw-r--r--source/nn/sccomp/messages.po13
-rw-r--r--source/nn/scp2/source/ooo.po10
-rw-r--r--source/nn/sd/messages.po152
-rw-r--r--source/nn/setup_native/source/mac.po6
-rw-r--r--source/nn/sfx2/messages.po12
-rw-r--r--source/nn/starmath/messages.po11
-rw-r--r--source/nn/svtools/messages.po485
-rw-r--r--source/nn/svx/messages.po2360
-rw-r--r--source/nn/sw/messages.po2378
-rw-r--r--source/nn/vcl/messages.po8
-rw-r--r--source/nr/cui/messages.po559
-rw-r--r--source/nr/filter/source/config/fragments/filters.po47
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/nr/sc/messages.po535
-rw-r--r--source/nr/svtools/messages.po473
-rw-r--r--source/nr/svx/messages.po2266
-rw-r--r--source/nr/sw/messages.po2298
-rw-r--r--source/nso/cui/messages.po559
-rw-r--r--source/nso/filter/source/config/fragments/filters.po47
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/nso/sc/messages.po535
-rw-r--r--source/nso/svtools/messages.po473
-rw-r--r--source/nso/svx/messages.po2266
-rw-r--r--source/nso/sw/messages.po2298
-rw-r--r--source/oc/cui/messages.po562
-rw-r--r--source/oc/filter/source/config/fragments/filters.po47
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po64
-rw-r--r--source/oc/sc/messages.po1199
-rw-r--r--source/oc/scp2/source/ooo.po10
-rw-r--r--source/oc/sd/messages.po172
-rw-r--r--source/oc/svtools/messages.po475
-rw-r--r--source/oc/svx/messages.po2266
-rw-r--r--source/oc/sw/messages.po2300
-rw-r--r--source/om/cui/messages.po559
-rw-r--r--source/om/filter/source/config/fragments/filters.po47
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/om/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/om/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/om/sc/messages.po535
-rw-r--r--source/om/svtools/messages.po473
-rw-r--r--source/om/svx/messages.po2266
-rw-r--r--source/om/sw/messages.po2298
-rw-r--r--source/or/cui/messages.po560
-rw-r--r--source/or/filter/source/config/fragments/filters.po47
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/or/sc/messages.po535
-rw-r--r--source/or/svtools/messages.po473
-rw-r--r--source/or/svx/messages.po2266
-rw-r--r--source/or/sw/messages.po2298
-rw-r--r--source/pa-IN/cui/messages.po562
-rw-r--r--source/pa-IN/filter/source/config/fragments/filters.po47
-rw-r--r--source/pa-IN/fpicker/messages.po18
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/pa-IN/sc/messages.po535
-rw-r--r--source/pa-IN/sccomp/messages.po12
-rw-r--r--source/pa-IN/svtools/messages.po473
-rw-r--r--source/pa-IN/svx/messages.po2266
-rw-r--r--source/pa-IN/sw/messages.po2334
-rw-r--r--source/pl/cui/messages.po562
-rw-r--r--source/pl/filter/source/config/fragments/filters.po47
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared.po744
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po174
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/pl/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/pl/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/pl/sc/messages.po535
-rw-r--r--source/pl/svtools/messages.po473
-rw-r--r--source/pl/svx/messages.po2266
-rw-r--r--source/pl/sw/messages.po2298
-rw-r--r--source/pt-BR/cui/messages.po622
-rw-r--r--source/pt-BR/filter/source/config/fragments/filters.po47
-rw-r--r--source/pt-BR/fpicker/messages.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po838
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po194
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/pt-BR/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po13
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/pt-BR/sc/messages.po541
-rw-r--r--source/pt-BR/svtools/messages.po475
-rw-r--r--source/pt-BR/svx/messages.po2274
-rw-r--r--source/pt-BR/sw/messages.po2300
-rw-r--r--source/pt-BR/vcl/messages.po8
-rw-r--r--source/pt/avmedia/messages.po13
-rw-r--r--source/pt/cui/messages.po666
-rw-r--r--source/pt/dictionaries/sq_AL.po11
-rw-r--r--source/pt/extensions/messages.po8
-rw-r--r--source/pt/filter/source/config/fragments/filters.po47
-rw-r--r--source/pt/fpicker/messages.po8
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po754
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po202
-rw-r--r--source/pt/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/pt/helpcontent2/source/text/simpress/01.po18
-rw-r--r--source/pt/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/pt/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po66
-rw-r--r--source/pt/sc/messages.po573
-rw-r--r--source/pt/sccomp/messages.po13
-rw-r--r--source/pt/scp2/source/ooo.po10
-rw-r--r--source/pt/sd/messages.po152
-rw-r--r--source/pt/sfx2/messages.po12
-rw-r--r--source/pt/svtools/messages.po485
-rw-r--r--source/pt/svx/messages.po2360
-rw-r--r--source/pt/sw/messages.po2374
-rw-r--r--source/pt/vcl/messages.po8
-rw-r--r--source/ro/cui/messages.po562
-rw-r--r--source/ro/filter/source/config/fragments/filters.po47
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/ro/helpcontent2/source/text/swriter/00.po4
-rw-r--r--source/ro/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/ro/sc/messages.po535
-rw-r--r--source/ro/svtools/messages.po473
-rw-r--r--source/ro/svx/messages.po2266
-rw-r--r--source/ro/sw/messages.po2298
-rw-r--r--source/ru/avmedia/messages.po13
-rw-r--r--source/ru/cui/messages.po664
-rw-r--r--source/ru/dbaccess/messages.po8
-rw-r--r--source/ru/dictionaries/sq_AL.po11
-rw-r--r--source/ru/filter/messages.po8
-rw-r--r--source/ru/filter/source/config/fragments/filters.po47
-rw-r--r--source/ru/fpicker/messages.po8
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ru/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/ru/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office.po16
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po58
-rw-r--r--source/ru/sc/messages.po561
-rw-r--r--source/ru/sccomp/messages.po14
-rw-r--r--source/ru/scp2/source/ooo.po10
-rw-r--r--source/ru/sd/messages.po29
-rw-r--r--source/ru/sfx2/messages.po12
-rw-r--r--source/ru/svtools/messages.po479
-rw-r--r--source/ru/svx/messages.po2345
-rw-r--r--source/ru/sw/messages.po2330
-rw-r--r--source/ru/vcl/messages.po8
-rw-r--r--source/rw/cui/messages.po559
-rw-r--r--source/rw/filter/source/config/fragments/filters.po47
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/rw/sc/messages.po535
-rw-r--r--source/rw/svtools/messages.po473
-rw-r--r--source/rw/svx/messages.po2266
-rw-r--r--source/rw/sw/messages.po2298
-rw-r--r--source/sa-IN/cui/messages.po560
-rw-r--r--source/sa-IN/filter/source/config/fragments/filters.po47
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/sa-IN/sc/messages.po535
-rw-r--r--source/sa-IN/svtools/messages.po473
-rw-r--r--source/sa-IN/svx/messages.po2266
-rw-r--r--source/sa-IN/sw/messages.po2298
-rw-r--r--source/sah/cui/messages.po558
-rw-r--r--source/sah/filter/source/config/fragments/filters.po47
-rw-r--r--source/sah/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/sah/sc/messages.po531
-rw-r--r--source/sah/svtools/messages.po473
-rw-r--r--source/sah/svx/messages.po2266
-rw-r--r--source/sah/sw/messages.po2298
-rw-r--r--source/sat/cui/messages.po561
-rw-r--r--source/sat/filter/source/config/fragments/filters.po47
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/sat/sc/messages.po535
-rw-r--r--source/sat/svtools/messages.po473
-rw-r--r--source/sat/svx/messages.po2266
-rw-r--r--source/sat/sw/messages.po2298
-rw-r--r--source/sd/cui/messages.po560
-rw-r--r--source/sd/filter/source/config/fragments/filters.po47
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/sd/sc/messages.po535
-rw-r--r--source/sd/svtools/messages.po473
-rw-r--r--source/sd/svx/messages.po2266
-rw-r--r--source/sd/sw/messages.po2298
-rw-r--r--source/si/cui/messages.po560
-rw-r--r--source/si/filter/source/config/fragments/filters.po47
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/si/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/si/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/si/sc/messages.po535
-rw-r--r--source/si/svtools/messages.po473
-rw-r--r--source/si/svx/messages.po2266
-rw-r--r--source/si/sw/messages.po2298
-rw-r--r--source/sid/cui/messages.po560
-rw-r--r--source/sid/filter/source/config/fragments/filters.po47
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/sid/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/sid/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/sid/sc/messages.po535
-rw-r--r--source/sid/svtools/messages.po473
-rw-r--r--source/sid/svx/messages.po2266
-rw-r--r--source/sid/sw/messages.po2298
-rw-r--r--source/sk/avmedia/messages.po13
-rw-r--r--source/sk/cui/messages.po562
-rw-r--r--source/sk/dictionaries/sq_AL.po11
-rw-r--r--source/sk/filter/source/config/fragments/filters.po47
-rw-r--r--source/sk/fpicker/messages.po8
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/sk/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/sk/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/sk/sc/messages.po539
-rw-r--r--source/sk/scp2/source/ooo.po10
-rw-r--r--source/sk/svtools/messages.po477
-rw-r--r--source/sk/svx/messages.po2266
-rw-r--r--source/sk/sw/messages.po2298
-rw-r--r--source/sk/vcl/messages.po8
-rw-r--r--source/sq/avmedia/messages.po19
-rw-r--r--source/sq/cui/messages.po560
-rw-r--r--source/sq/filter/source/config/fragments/filters.po47
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/sq/helpcontent2/source/text/swriter/00.po4
-rw-r--r--source/sq/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/sq/sc/messages.po535
-rw-r--r--source/sq/svtools/messages.po473
-rw-r--r--source/sq/svx/messages.po2266
-rw-r--r--source/sq/sw/messages.po2298
-rw-r--r--source/ss/cui/messages.po559
-rw-r--r--source/ss/filter/source/config/fragments/filters.po47
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/ss/sc/messages.po535
-rw-r--r--source/ss/svtools/messages.po473
-rw-r--r--source/ss/svx/messages.po2266
-rw-r--r--source/ss/sw/messages.po2298
-rw-r--r--source/st/cui/messages.po559
-rw-r--r--source/st/filter/source/config/fragments/filters.po47
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/st/sc/messages.po535
-rw-r--r--source/st/svtools/messages.po473
-rw-r--r--source/st/svx/messages.po2266
-rw-r--r--source/st/sw/messages.po2298
-rw-r--r--source/sv/cui/messages.po562
-rw-r--r--source/sv/filter/source/config/fragments/filters.po47
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared.po744
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po174
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/sv/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/sv/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/sv/sc/messages.po535
-rw-r--r--source/sv/svtools/messages.po473
-rw-r--r--source/sv/svx/messages.po2266
-rw-r--r--source/sv/sw/messages.po2298
-rw-r--r--source/sw-TZ/cui/messages.po559
-rw-r--r--source/sw-TZ/filter/source/config/fragments/filters.po47
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/sw-TZ/sc/messages.po535
-rw-r--r--source/sw-TZ/svtools/messages.po473
-rw-r--r--source/sw-TZ/svx/messages.po2266
-rw-r--r--source/sw-TZ/sw/messages.po2298
-rw-r--r--source/szl/cui/messages.po558
-rw-r--r--source/szl/filter/source/config/fragments/filters.po47
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/szl/sc/messages.po531
-rw-r--r--source/szl/svtools/messages.po473
-rw-r--r--source/szl/svx/messages.po2266
-rw-r--r--source/szl/sw/messages.po2298
-rw-r--r--source/ta/cui/messages.po562
-rw-r--r--source/ta/filter/source/config/fragments/filters.po47
-rw-r--r--source/ta/helpcontent2/source/auxiliary.po8
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/guide.po12
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po176
-rw-r--r--source/ta/helpcontent2/source/text/shared.po32
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po20
-rw-r--r--source/ta/helpcontent2/source/text/shared/04.po44
-rw-r--r--source/ta/helpcontent2/source/text/shared/guide.po50
-rw-r--r--source/ta/helpcontent2/source/text/swriter.po12
-rw-r--r--source/ta/helpcontent2/source/text/swriter/00.po36
-rw-r--r--source/ta/helpcontent2/source/text/swriter/01.po260
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/ta/sc/messages.po535
-rw-r--r--source/ta/svtools/messages.po473
-rw-r--r--source/ta/svx/messages.po2266
-rw-r--r--source/ta/sw/messages.po2298
-rw-r--r--source/te/cui/messages.po560
-rw-r--r--source/te/filter/source/config/fragments/filters.po47
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/te/sc/messages.po535
-rw-r--r--source/te/svtools/messages.po473
-rw-r--r--source/te/svx/messages.po2266
-rw-r--r--source/te/sw/messages.po2298
-rw-r--r--source/tg/cui/messages.po559
-rw-r--r--source/tg/filter/source/config/fragments/filters.po47
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/tg/helpcontent2/source/text/swriter/00.po4
-rw-r--r--source/tg/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/tg/sc/messages.po535
-rw-r--r--source/tg/svtools/messages.po473
-rw-r--r--source/tg/svx/messages.po2266
-rw-r--r--source/tg/sw/messages.po2298
-rw-r--r--source/th/cui/messages.po560
-rw-r--r--source/th/filter/source/config/fragments/filters.po47
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/th/sc/messages.po535
-rw-r--r--source/th/svtools/messages.po473
-rw-r--r--source/th/svx/messages.po2266
-rw-r--r--source/th/sw/messages.po2298
-rw-r--r--source/ti/cui/messages.po558
-rw-r--r--source/ti/filter/source/config/fragments/filters.po47
-rw-r--r--source/ti/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ti/sc/messages.po531
-rw-r--r--source/ti/svtools/messages.po473
-rw-r--r--source/ti/svx/messages.po2266
-rw-r--r--source/ti/sw/messages.po2298
-rw-r--r--source/tn/cui/messages.po559
-rw-r--r--source/tn/filter/source/config/fragments/filters.po47
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/tn/sc/messages.po535
-rw-r--r--source/tn/svtools/messages.po473
-rw-r--r--source/tn/svx/messages.po2266
-rw-r--r--source/tn/sw/messages.po2298
-rw-r--r--source/tr/cui/messages.po620
-rw-r--r--source/tr/filter/source/config/fragments/filters.po47
-rw-r--r--source/tr/fpicker/messages.po8
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared.po754
-rw-r--r--source/tr/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po226
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/tr/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po22
-rw-r--r--source/tr/helpcontent2/source/text/swriter/02.po14
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po24
-rw-r--r--source/tr/sc/messages.po541
-rw-r--r--source/tr/svtools/messages.po475
-rw-r--r--source/tr/svx/messages.po2274
-rw-r--r--source/tr/sw/messages.po2300
-rw-r--r--source/tr/vcl/messages.po8
-rw-r--r--source/ts/cui/messages.po559
-rw-r--r--source/ts/filter/source/config/fragments/filters.po47
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/ts/sc/messages.po535
-rw-r--r--source/ts/svtools/messages.po473
-rw-r--r--source/ts/svx/messages.po2266
-rw-r--r--source/ts/sw/messages.po2298
-rw-r--r--source/tt/cui/messages.po560
-rw-r--r--source/tt/filter/source/config/fragments/filters.po47
-rw-r--r--source/tt/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/tt/sc/messages.po531
-rw-r--r--source/tt/svtools/messages.po473
-rw-r--r--source/tt/svx/messages.po2266
-rw-r--r--source/tt/sw/messages.po2298
-rw-r--r--source/ug/cui/messages.po562
-rw-r--r--source/ug/filter/source/config/fragments/filters.po47
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po166
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/ug/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/ug/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po4
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/ug/sc/messages.po535
-rw-r--r--source/ug/svtools/messages.po473
-rw-r--r--source/ug/svx/messages.po2266
-rw-r--r--source/ug/sw/messages.po2298
-rw-r--r--source/uk/cui/messages.po662
-rw-r--r--source/uk/filter/source/config/fragments/filters.po47
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared.po756
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po272
-rw-r--r--source/uk/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/uk/helpcontent2/source/text/shared.po10
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/uk/helpcontent2/source/text/shared/07.po10
-rw-r--r--source/uk/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/uk/helpcontent2/source/text/shared/guide.po26
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/uk/helpcontent2/source/text/simpress.po6
-rw-r--r--source/uk/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/uk/helpcontent2/source/text/swriter.po6
-rw-r--r--source/uk/helpcontent2/source/text/swriter/00.po24
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po32
-rw-r--r--source/uk/helpcontent2/source/text/swriter/02.po16
-rw-r--r--source/uk/helpcontent2/source/text/swriter/04.po16
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po20
-rw-r--r--source/uk/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/uk/sc/messages.po539
-rw-r--r--source/uk/scp2/source/ooo.po12
-rw-r--r--source/uk/svtools/messages.po485
-rw-r--r--source/uk/svx/messages.po2266
-rw-r--r--source/uk/sw/messages.po2298
-rw-r--r--source/uk/vcl/messages.po8
-rw-r--r--source/uk/wizards/messages.po214
-rw-r--r--source/uk/wizards/source/resources.po23
-rw-r--r--source/ur/cui/messages.po558
-rw-r--r--source/ur/filter/source/config/fragments/filters.po47
-rw-r--r--source/ur/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ur/sc/messages.po531
-rw-r--r--source/ur/svtools/messages.po473
-rw-r--r--source/ur/svx/messages.po2266
-rw-r--r--source/ur/sw/messages.po2298
-rw-r--r--source/uz/cui/messages.po559
-rw-r--r--source/uz/filter/source/config/fragments/filters.po47
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/uz/sc/messages.po531
-rw-r--r--source/uz/svtools/messages.po473
-rw-r--r--source/uz/svx/messages.po2266
-rw-r--r--source/uz/sw/messages.po2298
-rw-r--r--source/ve/cui/messages.po559
-rw-r--r--source/ve/filter/source/config/fragments/filters.po47
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/ve/sc/messages.po535
-rw-r--r--source/ve/svtools/messages.po473
-rw-r--r--source/ve/svx/messages.po2266
-rw-r--r--source/ve/sw/messages.po2298
-rw-r--r--source/vec/cui/messages.po562
-rw-r--r--source/vec/filter/source/config/fragments/filters.po47
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/vec/sc/messages.po539
-rw-r--r--source/vec/svtools/messages.po473
-rw-r--r--source/vec/svx/messages.po2266
-rw-r--r--source/vec/sw/messages.po2298
-rw-r--r--source/vi/cui/messages.po560
-rw-r--r--source/vi/filter/source/config/fragments/filters.po47
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared.po740
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/vi/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/vi/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/vi/sc/messages.po535
-rw-r--r--source/vi/svtools/messages.po473
-rw-r--r--source/vi/svx/messages.po2266
-rw-r--r--source/vi/sw/messages.po2298
-rw-r--r--source/xh/cui/messages.po559
-rw-r--r--source/xh/filter/source/config/fragments/filters.po47
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/xh/sc/messages.po535
-rw-r--r--source/xh/svtools/messages.po473
-rw-r--r--source/xh/svx/messages.po2266
-rw-r--r--source/xh/sw/messages.po2298
-rw-r--r--source/zh-CN/cui/messages.po606
-rw-r--r--source/zh-CN/dbaccess/messages.po12
-rw-r--r--source/zh-CN/filter/source/config/fragments/filters.po47
-rw-r--r--source/zh-CN/formula/messages.po19
-rw-r--r--source/zh-CN/fpicker/messages.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared.po748
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po176
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/zh-CN/nlpsolver/src/locale.po13
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po66
-rw-r--r--source/zh-CN/readlicense_oo/docs.po10
-rw-r--r--source/zh-CN/sc/messages.po589
-rw-r--r--source/zh-CN/sccomp/messages.po13
-rw-r--r--source/zh-CN/scp2/source/ooo.po12
-rw-r--r--source/zh-CN/sd/messages.po86
-rw-r--r--source/zh-CN/sfx2/messages.po14
-rw-r--r--source/zh-CN/svtools/messages.po479
-rw-r--r--source/zh-CN/svx/messages.po2272
-rw-r--r--source/zh-CN/sw/messages.po2313
-rw-r--r--source/zh-CN/wizards/source/resources.po20
-rw-r--r--source/zh-TW/cui/messages.po562
-rw-r--r--source/zh-TW/dbaccess/messages.po10
-rw-r--r--source/zh-TW/filter/source/config/fragments/filters.po47
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared.po742
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po172
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/zh-TW/sc/messages.po535
-rw-r--r--source/zh-TW/svtools/messages.po473
-rw-r--r--source/zh-TW/svx/messages.po2266
-rw-r--r--source/zh-TW/sw/messages.po2306
-rw-r--r--source/zh-TW/writerperfect/messages.po8
-rw-r--r--source/zu/cui/messages.po559
-rw-r--r--source/zu/filter/source/config/fragments/filters.po47
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/zu/sc/messages.po535
-rw-r--r--source/zu/svtools/messages.po473
-rw-r--r--source/zu/svx/messages.po2266
-rw-r--r--source/zu/sw/messages.po2298
1714 files changed, 445109 insertions, 380738 deletions
diff --git a/source/ab/chart2/messages.po b/source/ab/chart2/messages.po
index 26e52e77661..985f3fd9dc5 100644
--- a/source/ab/chart2/messages.po
+++ b/source/ab/chart2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-18 08:35+0000\n"
+"PO-Revision-Date: 2017-11-27 08:33+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1510994151.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511771611.000000\n"
#: strings.hrc:24
msgctxt "STR_DLG_CHART_WIZARD"
@@ -638,7 +638,7 @@ msgstr ""
#: strings.hrc:148
msgctxt "STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
msgid "From Data Table"
-msgstr ""
+msgstr "Адырқәа ртаблица аҟынтәи"
#: strings.hrc:149
msgctxt "STR_REGRESSION_LINEAR"
@@ -1628,7 +1628,7 @@ msgstr ""
#: sidebarerrorbar.ui:66
msgctxt "sidebarerrorbar|comboboxtext_type"
msgid "Cell Range or Data Table"
-msgstr ""
+msgstr "Адырқәа рдиапазон"
#: sidebarerrorbar.ui:67
msgctxt "sidebarerrorbar|comboboxtext_type"
@@ -2328,7 +2328,7 @@ msgstr ""
#: tp_DataLabel.ui:94
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "New line"
-msgstr ""
+msgstr "Ацәаҳәа ҿыц"
#: tp_DataLabel.ui:126
msgctxt "tp_DataLabel|CB_VALUE_AS_NUMBER"
@@ -2573,7 +2573,7 @@ msgstr ""
#: tp_ErrorBars.ui:563
msgctxt "tp_ErrorBars|STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
msgid "From Data Table"
-msgstr ""
+msgstr "Адырқәа ртаблица аҟынтәи"
#: tp_LegendPosition.ui:30
msgctxt "tp_LegendPosition|left"
diff --git a/source/ab/connectivity/messages.po b/source/ab/connectivity/messages.po
index 4065963b0f0..3949f189531 100644
--- a/source/ab/connectivity/messages.po
+++ b/source/ab/connectivity/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2017-11-18 08:35+0000\n"
+"PO-Revision-Date: 2017-11-26 09:42+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1510994156.000000\n"
+"X-POOTLE-MTIME: 1511689368.000000\n"
#. = the mozab driver's resource strings
#: strings.hrc:26
@@ -357,7 +357,7 @@ msgstr ""
#: strings.hrc:95
msgctxt "STR_COULD_NOT_ALTER_TABLE"
msgid "The table could not be altered."
-msgstr ""
+msgstr "Атаблица аҧсахра ауам."
#: strings.hrc:96
msgctxt "STR_INVALID_DBASE_FILE"
@@ -484,7 +484,7 @@ msgstr ""
#: strings.hrc:124
msgctxt "STR_NO_TABLE"
msgid "No such table!"
-msgstr ""
+msgstr "Атаблицақәа ыҟаӡам!"
#: strings.hrc:125
msgctxt "STR_NO_MAC_OS_FOUND"
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index 28e44957551..d6277ec2fdf 100644
--- a/source/ab/cui/messages.po
+++ b/source/ab/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-24 14:55+0100\n"
-"PO-Revision-Date: 2017-11-18 10:33+0000\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"PO-Revision-Date: 2017-11-27 08:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511001205.000000\n"
+"X-POOTLE-MTIME: 1511771761.000000\n"
#: personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -165,14 +165,14 @@ msgstr ""
#, c-format
msgctxt "RID_SVXSTR_NEW_MENU"
msgid "New Menu %n"
-msgstr ""
+msgstr "Ахкынҵа ҿыц %n"
#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
#: strings.hrc:50
#, c-format
msgctxt "RID_SVXSTR_NEW_TOOLBAR"
msgid "New Toolbar %n"
-msgstr ""
+msgstr "Амаругақәа рпанель ҿыц %n"
#: strings.hrc:51
msgctxt "RID_SVXSTR_MOVE_MENU"
@@ -247,7 +247,7 @@ msgstr ""
#: strings.hrc:68
msgctxt "RID_SVXSTR_LABEL_NEW_NAME"
msgid "~New name"
-msgstr ""
+msgstr "Ахьӡ ҿыц"
#: strings.hrc:69
msgctxt "RID_SVXSTR_RENAME_MENU"
@@ -317,7 +317,7 @@ msgstr ""
#: strings.hrc:83
msgctxt "RID_SVXSTR_HYPERDLG_HLDOCNTP"
msgid "New Document"
-msgstr ""
+msgstr "Иаҧҵатәуп адокумент"
#: strings.hrc:84
msgctxt "RID_SVXSTR_HYPERDLG_HLDOCNTP_HELP"
@@ -351,657 +351,667 @@ msgstr ""
#: strings.hrc:91
msgctxt "RID_SVXSTR_ALLFUNCTIONS"
-msgid "All categories"
+msgid "All commands"
msgstr ""
#: strings.hrc:92
+msgctxt "RID_SVXSTR_MACROS"
+msgid "Macros"
+msgstr ""
+
+#: strings.hrc:93
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
msgstr "Сара смакросқәа"
-#: strings.hrc:93
+#: strings.hrc:94
msgctxt "RID_SVXSTR_PRODMACROS"
msgid "%PRODUCTNAME Macros"
msgstr "%PRODUCTNAME Амакросқәа"
-#: strings.hrc:94
+#: strings.hrc:95
+msgctxt "RID_SVXSTR_NOMACRODESC"
+msgid "There is no description available for this macro."
+msgstr ""
+
+#: strings.hrc:96
msgctxt "RID_SVXSTR_SELECTOR_ADD_COMMANDS"
msgid "Add Commands"
msgstr ""
-#: strings.hrc:95
+#: strings.hrc:97
msgctxt "RID_SVXSTR_SELECTOR_RUN"
msgid "Run"
msgstr ""
-#: strings.hrc:96
+#: strings.hrc:98
msgctxt "RID_SVXSTR_ROW"
msgid "Insert Rows"
msgstr ""
-#: strings.hrc:97
+#: strings.hrc:99
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
-#: strings.hrc:98
+#: strings.hrc:100
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
#. PPI is pixel per inch, %1 is a number
-#: strings.hrc:100
+#: strings.hrc:102
msgctxt "RID_SVXSTR_PPI"
msgid "(%1 PPI)"
msgstr ""
-#: strings.hrc:101
+#: strings.hrc:103
msgctxt "RID_SVXSTR_COL"
msgid "Insert Columns"
msgstr ""
-#: strings.hrc:102
+#: strings.hrc:104
msgctxt "RID_SVXSTR_AUTO_ENTRY"
msgid "Automatic"
msgstr ""
-#: strings.hrc:103
+#: strings.hrc:105
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr ""
-#: strings.hrc:104
+#: strings.hrc:106
msgctxt "RID_SVXSTR_LOADACCELCONFIG"
msgid "Load Keyboard Configuration"
msgstr ""
-#: strings.hrc:105
+#: strings.hrc:107
msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
msgid "Save Keyboard Configuration"
msgstr ""
-#: strings.hrc:106
+#: strings.hrc:108
msgctxt "RID_SVXSTR_FILTERNAME_CFG"
msgid "Configuration (*.cfg)"
msgstr ""
-#: strings.hrc:107
+#: strings.hrc:109
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
msgid "Targets do not exist in the document."
msgstr ""
-#: strings.hrc:108
+#: strings.hrc:110
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
msgid "Couldn't open the document."
msgstr ""
-#: strings.hrc:109
+#: strings.hrc:111
msgctxt "RID_SVXSTR_EDITHINT"
msgid "[Enter text here]"
msgstr ""
-#: strings.hrc:110
+#: strings.hrc:112
msgctxt "RID_SVXSTR_HANGUL"
msgid "Hangul"
msgstr ""
-#: strings.hrc:111
+#: strings.hrc:113
msgctxt "RID_SVXSTR_HANJA"
msgid "Hanja"
msgstr ""
-#: strings.hrc:112
+#: strings.hrc:114
msgctxt "RID_SVXSTR_BASICMACROS"
msgid "BASIC Macros"
msgstr "BASIC Амакросқәа"
-#: strings.hrc:113
+#: strings.hrc:115
msgctxt "RID_SVXSTR_GROUP_STYLES"
msgid "Styles"
msgstr ""
-#: strings.hrc:115
+#: strings.hrc:117
msgctxt "RID_SVXSTR_EVENT_STARTAPP"
msgid "Start Application"
msgstr ""
-#: strings.hrc:116
+#: strings.hrc:118
msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
msgid "Close Application"
msgstr ""
-#: strings.hrc:117
+#: strings.hrc:119
msgctxt "RID_SVXSTR_EVENT_NEWDOC"
msgid "New Document"
-msgstr ""
+msgstr "Адокумент аҧҵара"
-#: strings.hrc:118
+#: strings.hrc:120
msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
msgid "Document closed"
msgstr ""
-#: strings.hrc:119
+#: strings.hrc:121
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
msgid "Document is going to be closed"
msgstr ""
-#: strings.hrc:120
+#: strings.hrc:122
msgctxt "RID_SVXSTR_EVENT_OPENDOC"
msgid "Open Document"
msgstr ""
-#: strings.hrc:121
+#: strings.hrc:123
msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
msgid "Save Document"
msgstr ""
-#: strings.hrc:122
+#: strings.hrc:124
msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
msgid "Save Document As"
msgstr ""
-#: strings.hrc:123
+#: strings.hrc:125
msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
msgid "Document has been saved"
msgstr ""
-#: strings.hrc:124
+#: strings.hrc:126
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
msgid "Document has been saved as"
msgstr ""
-#: strings.hrc:125
+#: strings.hrc:127
msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
msgid "Activate Document"
msgstr ""
-#: strings.hrc:126
+#: strings.hrc:128
msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
msgid "Deactivate Document"
msgstr ""
-#: strings.hrc:127
+#: strings.hrc:129
msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
msgid "Print Document"
msgstr ""
-#: strings.hrc:128
+#: strings.hrc:130
msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
msgid "'Modified' status was changed"
msgstr ""
-#: strings.hrc:129
+#: strings.hrc:131
msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
msgid "Printing of form letters started"
msgstr ""
-#: strings.hrc:130
+#: strings.hrc:132
msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
msgid "Printing of form letters finished"
msgstr ""
-#: strings.hrc:131
+#: strings.hrc:133
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
msgid "Merging of form fields started"
msgstr ""
-#: strings.hrc:132
+#: strings.hrc:134
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
msgid "Merging of form fields finished"
msgstr ""
-#: strings.hrc:133
+#: strings.hrc:135
msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
msgid "Changing the page count"
msgstr ""
-#: strings.hrc:134
+#: strings.hrc:136
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
msgid "Loaded a sub component"
msgstr ""
-#: strings.hrc:135
+#: strings.hrc:137
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
msgid "Closed a sub component"
msgstr ""
-#: strings.hrc:136
+#: strings.hrc:138
msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
msgid "Fill parameters"
msgstr ""
-#: strings.hrc:137
+#: strings.hrc:139
msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
msgid "Execute action"
msgstr ""
-#: strings.hrc:138
+#: strings.hrc:140
msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
msgid "After updating"
msgstr ""
-#: strings.hrc:139
+#: strings.hrc:141
msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
msgid "Before updating"
msgstr ""
-#: strings.hrc:140
+#: strings.hrc:142
msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
msgid "Before record action"
msgstr ""
-#: strings.hrc:141
+#: strings.hrc:143
msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
msgid "After record action"
msgstr ""
-#: strings.hrc:142
+#: strings.hrc:144
msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
msgid "Confirm deletion"
msgstr ""
-#: strings.hrc:143
+#: strings.hrc:145
msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
msgid "Error occurred"
msgstr ""
-#: strings.hrc:144
+#: strings.hrc:146
msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
msgid "While adjusting"
msgstr ""
-#: strings.hrc:145
+#: strings.hrc:147
msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
msgid "When receiving focus"
msgstr ""
-#: strings.hrc:146
+#: strings.hrc:148
msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
msgid "When losing focus"
msgstr ""
-#: strings.hrc:147
+#: strings.hrc:149
msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
msgid "Item status changed"
msgstr ""
-#: strings.hrc:148
+#: strings.hrc:150
msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
msgid "Key pressed"
msgstr ""
-#: strings.hrc:149
+#: strings.hrc:151
msgctxt "RID_SVXSTR_EVENT_KEYUP"
msgid "Key released"
msgstr ""
-#: strings.hrc:150
+#: strings.hrc:152
msgctxt "RID_SVXSTR_EVENT_LOADED"
msgid "When loading"
msgstr ""
-#: strings.hrc:151
+#: strings.hrc:153
msgctxt "RID_SVXSTR_EVENT_RELOADING"
msgid "Before reloading"
msgstr ""
-#: strings.hrc:152
+#: strings.hrc:154
msgctxt "RID_SVXSTR_EVENT_RELOADED"
msgid "When reloading"
msgstr ""
-#: strings.hrc:153
+#: strings.hrc:155
msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
msgid "Mouse moved while key pressed"
msgstr ""
-#: strings.hrc:154
+#: strings.hrc:156
msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
msgid "Mouse inside"
msgstr ""
-#: strings.hrc:155
+#: strings.hrc:157
msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
msgid "Mouse outside"
msgstr ""
-#: strings.hrc:156
+#: strings.hrc:158
msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
msgid "Mouse moved"
msgstr ""
-#: strings.hrc:157
+#: strings.hrc:159
msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
msgid "Mouse button pressed"
msgstr ""
-#: strings.hrc:158
+#: strings.hrc:160
msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
msgid "Mouse button released"
msgstr ""
-#: strings.hrc:159
+#: strings.hrc:161
msgctxt "RID_SVXSTR_EVENT_POSITIONING"
msgid "Before record change"
msgstr ""
-#: strings.hrc:160
+#: strings.hrc:162
msgctxt "RID_SVXSTR_EVENT_POSITIONED"
msgid "After record change"
msgstr ""
-#: strings.hrc:161
+#: strings.hrc:163
msgctxt "RID_SVXSTR_EVENT_RESETTED"
msgid "After resetting"
msgstr ""
-#: strings.hrc:162
+#: strings.hrc:164
msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
msgid "Prior to reset"
msgstr ""
-#: strings.hrc:163
+#: strings.hrc:165
msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
msgid "Approve action"
msgstr ""
-#: strings.hrc:164
+#: strings.hrc:166
msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
msgid "Before submitting"
msgstr ""
-#: strings.hrc:165
+#: strings.hrc:167
msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
msgid "Text modified"
msgstr ""
-#: strings.hrc:166
+#: strings.hrc:168
msgctxt "RID_SVXSTR_EVENT_UNLOADING"
msgid "Before unloading"
msgstr ""
-#: strings.hrc:167
+#: strings.hrc:169
msgctxt "RID_SVXSTR_EVENT_UNLOADED"
msgid "When unloading"
msgstr ""
-#: strings.hrc:168
+#: strings.hrc:170
msgctxt "RID_SVXSTR_EVENT_CHANGED"
msgid "Changed"
msgstr ""
-#: strings.hrc:169
+#: strings.hrc:171
msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
msgid "Document created"
msgstr ""
-#: strings.hrc:170
+#: strings.hrc:172
msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
msgid "Document loading finished"
msgstr ""
-#: strings.hrc:171
+#: strings.hrc:173
msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
msgid "Saving of document failed"
msgstr ""
-#: strings.hrc:172
+#: strings.hrc:174
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
msgid "'Save as' has failed"
msgstr ""
-#: strings.hrc:173
+#: strings.hrc:175
msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
msgid "Storing or exporting copy of document"
msgstr ""
-#: strings.hrc:174
+#: strings.hrc:176
msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
msgid "Document copy has been created"
msgstr ""
-#: strings.hrc:175
+#: strings.hrc:177
msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
msgid "Creating of document copy failed"
msgstr ""
-#: strings.hrc:176
+#: strings.hrc:178
msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
msgid "View created"
msgstr ""
-#: strings.hrc:177
+#: strings.hrc:179
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
msgid "View is going to be closed"
msgstr ""
-#: strings.hrc:178
+#: strings.hrc:180
msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
msgid "View closed"
msgstr ""
-#: strings.hrc:179
+#: strings.hrc:181
msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
msgid "Document title changed"
msgstr ""
-#: strings.hrc:180
+#: strings.hrc:182
msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
msgid "Selection changed"
msgstr ""
-#: strings.hrc:181
+#: strings.hrc:183
msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
msgid "Double click"
msgstr ""
-#: strings.hrc:182
+#: strings.hrc:184
msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
msgid "Right click"
msgstr ""
-#: strings.hrc:183
+#: strings.hrc:185
msgctxt "RID_SVXSTR_EVENT_CALCULATE"
msgid "Formulas calculated"
msgstr "Аформулақәа еилкаауп"
-#: strings.hrc:184
+#: strings.hrc:186
msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
msgid "Content changed"
msgstr ""
-#: strings.hrc:186
+#: strings.hrc:188
msgctxt "RID_STR_SEARCH_ANYWHERE"
msgid "anywhere in the field"
msgstr ""
-#: strings.hrc:187
+#: strings.hrc:189
msgctxt "RID_STR_SEARCH_BEGINNING"
msgid "beginning of field"
msgstr ""
-#: strings.hrc:188
+#: strings.hrc:190
msgctxt "RID_STR_SEARCH_END"
msgid "end of field"
msgstr ""
-#: strings.hrc:189
+#: strings.hrc:191
msgctxt "RID_STR_SEARCH_WHOLE"
msgid "entire field"
msgstr ""
-#: strings.hrc:190
+#: strings.hrc:192
msgctxt "RID_STR_FROM_TOP"
msgid "From top"
msgstr ""
-#: strings.hrc:191
+#: strings.hrc:193
msgctxt "RID_STR_FROM_BOTTOM"
msgid "From bottom"
msgstr ""
-#: strings.hrc:192
+#: strings.hrc:194
msgctxt "RID_STR_SEARCH_NORECORD"
msgid "No records corresponding to your data found."
msgstr ""
-#: strings.hrc:193
+#: strings.hrc:195
msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
msgid "An unknown error occurred. The search could not be finished."
msgstr ""
-#: strings.hrc:194
+#: strings.hrc:196
msgctxt "RID_STR_OVERFLOW_FORWARD"
msgid "Overflow, search continued at the beginning"
msgstr ""
-#: strings.hrc:195
+#: strings.hrc:197
msgctxt "RID_STR_OVERFLOW_BACKWARD"
msgid "Overflow, search continued at the end"
msgstr ""
-#: strings.hrc:196
+#: strings.hrc:198
msgctxt "RID_STR_SEARCH_COUNTING"
msgid "counting records"
msgstr ""
-#: strings.hrc:198
+#: strings.hrc:200
msgctxt "RID_SVXSTR_GALLERY_NOFILES"
msgid "<No Files>"
msgstr ""
-#: strings.hrc:199
+#: strings.hrc:201
msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
msgid "Object;Objects"
msgstr ""
-#: strings.hrc:200
+#: strings.hrc:202
msgctxt "RID_SVXSTR_GALLERY_READONLY"
msgid "(read-only)"
msgstr ""
-#: strings.hrc:201
+#: strings.hrc:203
msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
msgid "<All Files>"
msgstr ""
-#: strings.hrc:202
+#: strings.hrc:204
msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
msgid "This ID already exists..."
msgstr ""
-#: strings.hrc:204
+#: strings.hrc:206
msgctxt "RID_MULTIPATH_DBL_ERR"
msgid "The path %1 already exists."
msgstr ""
-#: strings.hrc:205
+#: strings.hrc:207
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
msgid "Select Archives"
msgstr ""
-#: strings.hrc:206
+#: strings.hrc:208
msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
msgid "Archives"
msgstr ""
-#: strings.hrc:207
+#: strings.hrc:209
msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
msgid "The file %1 already exists."
msgstr ""
-#: strings.hrc:208
+#: strings.hrc:210
msgctxt "RID_SVXSTR_ADD_IMAGE"
msgid "Add Image"
msgstr ""
-#: strings.hrc:210
+#: 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 ""
-#: strings.hrc:211
+#: strings.hrc:213
msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr ""
-#: strings.hrc:212
+#: 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 ""
-#: strings.hrc:213
+#: 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 ""
-#: strings.hrc:215
+#: strings.hrc:217
msgctxt "STR_AUTOLINK"
msgid "Automatic"
msgstr ""
-#: strings.hrc:216
+#: strings.hrc:218
msgctxt "STR_MANUALLINK"
msgid "Manual"
msgstr ""
-#: strings.hrc:217
+#: strings.hrc:219
msgctxt "STR_BROKENLINK"
msgid "Not available"
msgstr ""
-#: strings.hrc:218
+#: strings.hrc:220
msgctxt "STR_CLOSELINKMSG"
msgid "Are you sure you want to remove the selected link?"
msgstr ""
-#: strings.hrc:219
+#: strings.hrc:221
msgctxt "STR_CLOSELINKMSG_MULTI"
msgid "Are you sure you want to remove the selected link?"
msgstr ""
-#: strings.hrc:220
+#: strings.hrc:222
msgctxt "STR_WAITINGLINK"
msgid "Waiting"
msgstr ""
-#: strings.hrc:222
+#: strings.hrc:224
msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
msgid "Save Screenshot As..."
msgstr ""
#. $(ROW) can be a number or the caption of the row in quotes
-#: strings.hrc:225
+#: strings.hrc:227
msgctxt "RID_SVXSTR_DIAGRAM_ROW"
msgid "Data Series $(ROW)"
msgstr ""
-#: strings.hrc:227
+#: strings.hrc:229
msgctxt "RID_SVXSTR_DRIVER_NAME"
msgid "Driver name"
msgstr ""
-#: strings.hrc:228
+#: strings.hrc:230
msgctxt "RID_SVXSTR_POOLED_FLAG"
msgid "Pool"
msgstr ""
-#: strings.hrc:229
+#: strings.hrc:231
msgctxt "RID_SVXSTR_POOL_TIMEOUT"
msgid "Timeout"
msgstr ""
-#: strings.hrc:230
+#: strings.hrc:232
msgctxt "RID_SVXSTR_YES"
msgid "Yes"
msgstr ""
-#: strings.hrc:231
+#: strings.hrc:233
msgctxt "RID_SVXSTR_NO"
msgid "No"
msgstr ""
-#: strings.hrc:233
+#: strings.hrc:235
msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
msgid ""
"The file\n"
@@ -1009,7 +1019,7 @@ msgid ""
"does not exist."
msgstr ""
-#: strings.hrc:234
+#: strings.hrc:236
msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
msgid ""
"The file\n"
@@ -1017,296 +1027,308 @@ msgid ""
"does not exist in the local file system."
msgstr ""
-#: strings.hrc:235
+#: strings.hrc:237
msgctxt "STR_NAME_CONFLICT"
msgid ""
"The name '$file$' is already used for another database.\n"
"Please choose a different name."
msgstr ""
-#: strings.hrc:236
+#: strings.hrc:238
msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
msgid "Do you want to delete the entry?"
msgstr ""
-#: strings.hrc:238
+#: strings.hrc:240
msgctxt "RID_SVXSTR_DELQUERY"
msgid "Do you want to delete the following object?"
msgstr ""
-#: strings.hrc:239
+#: strings.hrc:241
msgctxt "RID_SVXSTR_DELQUERY_TITLE"
msgid "Confirm Deletion"
msgstr ""
-#: strings.hrc:240
+#: strings.hrc:242
msgctxt "RID_SVXSTR_DELFAILED"
msgid "The selected object could not be deleted."
msgstr ""
-#: strings.hrc:241
+#: strings.hrc:243
msgctxt "RID_SVXSTR_DELFAILED_TITLE"
msgid "Error Deleting Object"
msgstr ""
-#: strings.hrc:242
+#: strings.hrc:244
msgctxt "RID_SVXSTR_CREATEFAILED"
msgid "The object could not be created."
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:245
msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
msgid " Object with the same name already exists."
msgstr ""
-#: strings.hrc:244
+#: strings.hrc:246
msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
msgid "Error Creating Object"
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:247
msgctxt "RID_SVXSTR_RENAMEFAILED"
msgid "The object could not be renamed."
msgstr ""
-#: strings.hrc:246
+#: strings.hrc:248
msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
msgid "Error Renaming Object"
msgstr ""
-#: strings.hrc:247
+#: strings.hrc:249
msgctxt "RID_SVXSTR_ERROR_TITLE"
msgid "%PRODUCTNAME Error"
msgstr ""
-#: strings.hrc:248
+#: strings.hrc:250
#, c-format
msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr ""
-#: strings.hrc:249
+#: strings.hrc:251
#, c-format
msgctxt "RID_SVXSTR_ERROR_RUNNING"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr ""
-#: strings.hrc:250
+#: strings.hrc:252
#, c-format
msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr ""
-#: strings.hrc:251
+#: strings.hrc:253
msgctxt "RID_SVXSTR_ERROR_AT_LINE"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:254
msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr ""
-#: strings.hrc:253
+#: strings.hrc:255
#, c-format
msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr ""
-#: strings.hrc:254
+#: strings.hrc:256
msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
msgid "Type:"
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:257
msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
msgid "Message:"
msgstr ""
-#: strings.hrc:257
+#: strings.hrc:259
msgctxt "RID_SVXSTR_TYPE"
msgid "Registered name"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:260
msgctxt "RID_SVXSTR_PATH"
msgid "Database file"
msgstr ""
#. abbreviation for "[Load]"
-#: strings.hrc:261
+#: strings.hrc:263
msgctxt "RID_SVXSTR_HEADER1"
msgid "[L]"
msgstr ""
#. abbreviation for "[Save]"
-#: strings.hrc:263
+#: strings.hrc:265
msgctxt "RID_SVXSTR_HEADER2"
msgid "[S]"
msgstr ""
-#: strings.hrc:264
+#: strings.hrc:266
msgctxt "RID_SVXSTR_CHG_MATH"
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr ""
-#: strings.hrc:265
+#: strings.hrc:267
msgctxt "RID_SVXSTR_CHG_WRITER"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr ""
-#: strings.hrc:266
+#: strings.hrc:268
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr ""
-#: strings.hrc:267
+#: strings.hrc:269
msgctxt "RID_SVXSTR_CHG_IMPRESS"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr ""
-#: strings.hrc:268
+#: strings.hrc:270
msgctxt "RID_SVXSTR_CHG_SMARTART"
msgid "SmartArt to %PRODUCTNAME shapes or reverse"
msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
msgid ""
"The specified name already exists.\n"
"Please enter a new name."
msgstr ""
-#: strings.hrc:271
+#. To translators:
+#. Please, try to find a similar *short* translation to avoid
+#. to get narrow "New" field in the "Edit custom dictionary" window,
+#. for example, "Model word for optional affixation and compounding"
+#. is too long, but "Grammar By" is a good name here (help page of
+#. the window contains the details).
+#. "Grammar By" text entry box of the "Edit custom dictionary" window
+#. contains an optional model word associated to the new user word,
+#. allowing its affixation or compounding during spell checking.
+#. For example, adding "Grammar By" word "fund" to the new user
+#. word "crowdfund", the spell checker will recogize "crowdfund"
+#. with suffixes of "fund": "crowdfunding", "crowdfund's" etc.
+#: strings.hrc:287
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
msgstr ""
-#: strings.hrc:272
+#: strings.hrc:288
msgctxt "STR_MODIFY"
msgid "~Replace"
msgstr ""
-#: strings.hrc:273
+#: strings.hrc:289
msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
msgid "Do you want to change the '%1' dictionary language?"
msgstr ""
-#: strings.hrc:275
+#: strings.hrc:291
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
msgid "Do you really want to delete the color scheme?"
msgstr ""
-#: strings.hrc:276
+#: strings.hrc:292
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
msgid "Color Scheme Deletion"
msgstr ""
-#: strings.hrc:277
+#: strings.hrc:293
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
msgid "Save scheme"
msgstr ""
-#: strings.hrc:278
+#: strings.hrc:294
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
msgid "Name of color scheme"
msgstr ""
-#: strings.hrc:280
+#: strings.hrc:296
msgctxt "RID_SVXSTR_SPELL"
msgid "Spelling"
msgstr ""
-#: strings.hrc:281
+#: strings.hrc:297
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
msgstr ""
-#: strings.hrc:282
+#: strings.hrc:298
msgctxt "RID_SVXSTR_THES"
msgid "Thesaurus"
msgstr ""
-#: strings.hrc:283
+#: strings.hrc:299
msgctxt "RID_SVXSTR_GRAMMAR"
msgid "Grammar"
msgstr ""
-#: strings.hrc:284
+#: strings.hrc:300
msgctxt "RID_SVXSTR_CAPITAL_WORDS"
msgid "Check uppercase words"
msgstr ""
-#: strings.hrc:285
+#: strings.hrc:301
msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
msgid "Check words with numbers "
msgstr ""
-#: strings.hrc:286
+#: strings.hrc:302
msgctxt "RID_SVXSTR_SPELL_SPECIAL"
msgid "Check special regions"
msgstr ""
-#: strings.hrc:287
+#: strings.hrc:303
msgctxt "RID_SVXSTR_SPELL_AUTO"
msgid "Check spelling as you type"
msgstr ""
-#: strings.hrc:288
+#: strings.hrc:304
msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
msgid "Check grammar as you type"
msgstr ""
-#: strings.hrc:289
+#: strings.hrc:305
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
msgstr ""
-#: strings.hrc:290
+#: strings.hrc:306
msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
msgid "Characters before line break: "
msgstr ""
-#: strings.hrc:291
+#: strings.hrc:307
msgctxt "RID_SVXSTR_NUM_POST_BREAK"
msgid "Characters after line break: "
msgstr ""
-#: strings.hrc:292
+#: strings.hrc:308
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
msgstr ""
-#: strings.hrc:293
+#: strings.hrc:309
msgctxt "RID_SVXSTR_HYPH_SPECIAL"
msgid "Hyphenate special regions"
msgstr ""
-#: strings.hrc:295
+#: strings.hrc:311
msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
msgid ""
"The folder you selected does not contain a Java runtime environment.\n"
"Please select a different folder."
msgstr ""
-#: strings.hrc:296
+#: strings.hrc:312
msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
msgid ""
"The Java runtime environment you selected is not the required version.\n"
"Please select a different folder."
msgstr ""
-#: strings.hrc:297
+#: strings.hrc:313
msgctxt "RID_SVXSTR_OPTIONS_RESTART"
msgid "Please restart %PRODUCTNAME now so the new or modified values can take effect."
msgstr ""
-#: strings.hrc:298
+#: strings.hrc:314
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
msgstr ""
-#: strings.hrc:300
+#: strings.hrc:316
msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
msgid ""
"Invalid value!\n"
@@ -1314,365 +1336,365 @@ msgid ""
"The maximum value for a port number is 65535."
msgstr ""
-#: strings.hrc:302
+#: strings.hrc:318
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr ""
-#: strings.hrc:303
+#: strings.hrc:319
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr ""
-#: strings.hrc:304
+#: strings.hrc:320
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr ""
#. page direction
-#: strings.hrc:306
+#: strings.hrc:322
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr ""
-#: strings.hrc:307
+#: strings.hrc:323
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr ""
-#: strings.hrc:308
+#: strings.hrc:324
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr ""
-#: strings.hrc:309
+#: strings.hrc:325
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
-#: strings.hrc:311
+#: strings.hrc:327
msgctxt "RID_SVXSTR_DESC_GRADIENT"
msgid "Please enter a name for the gradient:"
msgstr ""
-#: strings.hrc:312
+#: strings.hrc:328
msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
msgid "Please enter a name for the bitmap:"
msgstr ""
-#: strings.hrc:313
+#: strings.hrc:329
msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
msgid "Please enter a name for the external bitmap:"
msgstr ""
-#: strings.hrc:314
+#: strings.hrc:330
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
msgstr ""
-#: strings.hrc:315
+#: strings.hrc:331
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
msgid "Please enter a name for the line style:"
msgstr ""
-#: strings.hrc:316
+#: strings.hrc:332
msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
msgid ""
"The line style was modified without saving. \n"
"Modify the selected line style or add a new line style."
msgstr ""
-#: strings.hrc:317
+#: strings.hrc:333
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
msgstr ""
-#: strings.hrc:318
+#: strings.hrc:334
msgctxt "RID_SVXSTR_CHANGE"
msgid "Modify"
msgstr ""
-#: strings.hrc:319
+#: strings.hrc:335
msgctxt "RID_SVXSTR_ADD"
msgid "Add"
msgstr ""
-#: strings.hrc:320
+#: strings.hrc:336
msgctxt "RID_SVXSTR_DESC_COLOR"
msgid "Please enter a name for the new color:"
-msgstr ""
+msgstr "Иҭажәгал иҿыцу аҧштәы ахьӡ:"
-#: strings.hrc:321
+#: strings.hrc:337
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
-#: strings.hrc:322
+#: strings.hrc:338
msgctxt "RID_SVXSTR_DESC_LINEEND"
msgid "Please enter a name for the new arrowhead:"
msgstr ""
-#: strings.hrc:323
+#: strings.hrc:339
msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
msgid "No %1"
msgstr ""
-#: strings.hrc:324
+#: strings.hrc:340
msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
msgid "Family:"
msgstr ""
-#: strings.hrc:325
+#: strings.hrc:341
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
msgstr ""
-#: strings.hrc:326
+#: strings.hrc:342
msgctxt "RID_SVXSTR_CHARNAME_STYLE"
msgid "Style:"
msgstr ""
-#: strings.hrc:327
+#: strings.hrc:343
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
msgstr ""
-#: strings.hrc:328
+#: strings.hrc:344
msgctxt "RID_SVXSTR_CHARNAME_HIGHLIGHTING"
msgid "Highlight Color"
msgstr ""
-#: strings.hrc:329
+#: strings.hrc:345
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
msgstr ""
-#: strings.hrc:330
+#: strings.hrc:346
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
msgstr ""
-#: strings.hrc:331
+#: strings.hrc:347
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
msgstr ""
-#: strings.hrc:332
+#: strings.hrc:348
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr ""
-#: strings.hrc:333
+#: strings.hrc:349
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
msgstr ""
-#: strings.hrc:334
+#: strings.hrc:350
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
msgstr ""
-#: strings.hrc:335
+#: strings.hrc:351
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
msgstr ""
-#: strings.hrc:336
+#: strings.hrc:352
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
msgstr ""
-#: strings.hrc:337
+#: strings.hrc:353
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
msgstr ""
-#: strings.hrc:338
+#: strings.hrc:354
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr ""
-#: strings.hrc:339
+#: strings.hrc:355
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
msgid "Remove blank paragraphs"
msgstr ""
-#: strings.hrc:340
+#: strings.hrc:356
msgctxt "RID_SVXSTR_USER_STYLE"
msgid "Replace Custom Styles"
msgstr ""
-#: strings.hrc:341
+#: strings.hrc:357
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: "
msgstr ""
-#: strings.hrc:342
+#: strings.hrc:358
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than"
msgstr ""
-#: strings.hrc:343
+#: strings.hrc:359
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: "
msgstr ""
-#: strings.hrc:344
+#: strings.hrc:360
msgctxt "RID_SVXSTR_BORDER"
msgid "Apply border"
msgstr ""
-#: strings.hrc:345
+#: strings.hrc:361
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
-msgstr ""
+msgstr "Иаҧҵатәуп атаблица"
-#: strings.hrc:346
+#: strings.hrc:362
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
msgstr "Ихархәатәуп астильқәа"
-#: strings.hrc:347
+#: strings.hrc:363
msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr ""
-#: strings.hrc:348
+#: strings.hrc:364
msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
msgid "Delete spaces and tabs at end and start of line"
msgstr ""
-#: strings.hrc:349
+#: strings.hrc:365
msgctxt "RID_SVXSTR_CONNECTOR"
msgid "Connector"
msgstr ""
-#: strings.hrc:350
+#: strings.hrc:366
msgctxt "RID_SVXSTR_DIMENSION_LINE"
msgid "Dimension line"
msgstr ""
-#: strings.hrc:351
+#: strings.hrc:367
msgctxt "RID_SVXSTR_LOAD_ERROR"
msgid "The selected module could not be loaded."
msgstr ""
-#: strings.hrc:352
+#: strings.hrc:368
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
msgstr ""
-#: strings.hrc:353
+#: strings.hrc:369
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr ""
-#: strings.hrc:355
+#: strings.hrc:371
msgctxt "RID_SVXSTR_SELECTEDPERSONA"
msgid "Selected Theme: "
msgstr ""
-#: strings.hrc:356
+#: strings.hrc:372
msgctxt "RID_SVXSTR_SEARCHING"
msgid "Searching, please wait..."
msgstr ""
-#: strings.hrc:357
+#: strings.hrc:373
msgctxt "RID_SVXSTR_SEARCHERROR"
msgid "Cannot open %1, please try again later."
msgstr ""
-#: strings.hrc:358
+#: strings.hrc:374
msgctxt "RID_SVXSTR_NORESULTS"
msgid "No results found."
msgstr ""
-#: strings.hrc:359
+#: strings.hrc:375
msgctxt "RID_SVXSTR_APPLYPERSONA"
msgid "Applying Theme..."
msgstr "Атема ахархәара..."
-#: strings.hrc:361
+#: strings.hrc:377
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: strings.hrc:362
+#: strings.hrc:378
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: strings.hrc:363
+#: strings.hrc:379
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: strings.hrc:364
+#: strings.hrc:380
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: strings.hrc:365
+#: strings.hrc:381
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: strings.hrc:366
+#: strings.hrc:382
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: strings.hrc:367
+#: strings.hrc:383
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: strings.hrc:368
+#: strings.hrc:384
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: strings.hrc:369
+#: strings.hrc:385
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: strings.hrc:370
+#: strings.hrc:386
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: strings.hrc:371
+#: strings.hrc:387
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: strings.hrc:372
+#: strings.hrc:388
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: strings.hrc:373
+#: strings.hrc:389
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr ""
-#: strings.hrc:374
+#: strings.hrc:390
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: strings.hrc:375
+#: strings.hrc:391
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: strings.hrc:376
+#: strings.hrc:392
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: strings.hrc:377
+#: strings.hrc:393
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
@@ -1845,7 +1867,7 @@ msgstr ""
#: treeopt.hrc:75
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: treeopt.hrc:76
msgctxt "SID_SW_EDITOPTIONS_RES"
@@ -1900,7 +1922,7 @@ msgstr ""
#: treeopt.hrc:90
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: treeopt.hrc:91
msgctxt "SID_SW_ONLINEOPTIONS_RES"
@@ -5010,7 +5032,7 @@ msgstr ""
#: formatcellsdialog.ui:8
msgctxt "formatcellsdialog|FormatCellsDialog"
msgid "Table Properties"
-msgstr ""
+msgstr "Атаблица аҷыдаҟазшьақәа"
#: formatcellsdialog.ui:106
msgctxt "formatcellsdialog|name"
@@ -6605,7 +6627,7 @@ msgstr "Апараметрқәа"
#: movemenu.ui:19
msgctxt "movemenu|MoveMenuDialog"
msgid "New Menu"
-msgstr ""
+msgstr "Ахкынҵа аҧҵара"
#: movemenu.ui:103
msgctxt "movemenu|menunameft"
@@ -6685,7 +6707,7 @@ msgstr "Ахьӡ ҧсахтәуп"
#: newtabledialog.ui:22
msgctxt "newtabledialog|NewTableDialog"
msgid "Insert Table"
-msgstr ""
+msgstr "Ибжьаргылатәуп атаблица"
#: newtabledialog.ui:99
msgctxt "newtabledialog|columns_label"
@@ -7407,7 +7429,7 @@ msgstr ""
#: optchartcolorspage.ui:156
msgctxt "optchartcolorspage|label1"
msgid "Color Table"
-msgstr ""
+msgstr "Аҧштәқәа ртаблица"
#: optctlpage.ui:31
msgctxt "optctlpage|sequencechecking"
@@ -8077,7 +8099,7 @@ msgstr ""
#: optnewdictionarydialog.ui:9
msgctxt "optnewdictionarydialog|OptNewDictionaryDialog"
msgid "New Dictionary"
-msgstr ""
+msgstr "Иаҧҵатәуп ажәар"
#: optnewdictionarydialog.ui:121
msgctxt "optnewdictionarydialog|name_label"
@@ -9141,7 +9163,7 @@ msgstr ""
#: pageformatpage.ui:606
msgctxt "pageformatpage|labelTblAlign"
msgid "Table alignment:"
-msgstr ""
+msgstr "Аиҟаратәра:"
#: pageformatpage.ui:618
msgctxt "pageformatpage|checkbuttonHorz"
@@ -9177,13 +9199,9 @@ msgid ""
msgstr ""
#: paragalignpage.ui:15
+#: /home/cl/vc/git/libo-core/cui/uiconfig/ui/paragalignpage.ui:19
msgctxt "paragalignpage|liststoreLB_LASTLINE"
-msgid "Default"
-msgstr ""
-
-#: paragalignpage.ui:19
-msgctxt "paragalignpage|liststoreLB_LASTLINE"
-msgid "Left"
+msgid "Start"
msgstr ""
#: paragalignpage.ui:23
@@ -10301,22 +10319,22 @@ msgctxt "shadowtabpage|FT_DISTANCE"
msgid "_Distance:"
msgstr ""
-#: shadowtabpage.ui:157
+#: shadowtabpage.ui:142
msgctxt "shadowtabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr ""
-#: shadowtabpage.ui:177
+#: shadowtabpage.ui:162
msgctxt "shadowtabpage|FT_SHADOW_COLOR"
msgid "_Color:"
msgstr ""
-#: shadowtabpage.ui:220
+#: shadowtabpage.ui:205
msgctxt "shadowtabpage|CTL_COLOR_PREVIEW-atkobject"
msgid "Example"
msgstr ""
-#: shadowtabpage.ui:245
+#: shadowtabpage.ui:230
msgctxt "shadowtabpage|label"
msgid "Properties"
msgstr ""
@@ -11439,7 +11457,7 @@ msgstr ""
#: zoomdialog.ui:229
msgctxt "zoomdialog|label2"
msgid "Zoom Factor"
-msgstr ""
+msgstr "Амасштаб"
#: zoomdialog.ui:262
msgctxt "zoomdialog|automatic"
diff --git a/source/ab/dbaccess/messages.po b/source/ab/dbaccess/messages.po
index ad30525e445..d2c99fa8907 100644
--- a/source/ab/dbaccess/messages.po
+++ b/source/ab/dbaccess/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-22 15:53+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-11-27 08:37+0000\n"
+"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511366006.000000\n"
+"X-POOTLE-MTIME: 1511771864.000000\n"
#: query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -196,7 +196,7 @@ msgstr ""
#: strings.hrc:57
msgctxt "RID_STR_TABLE_DOES_NOT_EXIST"
msgid "There exists no table named \"$table$\"."
-msgstr ""
+msgstr "Атаблица «$table$» ыҟаӡам."
#: strings.hrc:58
msgctxt "RID_STR_QUERY_DOES_NOT_EXIST"
@@ -363,7 +363,7 @@ msgstr ""
#: strings.hrc:90
msgctxt "STR_BASENAME_TABLE"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: strings.hrc:91
msgctxt "STR_BASENAME_QUERY"
@@ -590,7 +590,7 @@ msgstr ""
#: strings.hrc:139
msgctxt "STR_QUERY_NOTABLE"
msgid "(no table)"
-msgstr ""
+msgstr "(таблицада)"
#: strings.hrc:140
msgctxt "STR_QRY_ORDERBY_UNRELATED"
@@ -645,7 +645,7 @@ msgstr ""
#: strings.hrc:150
msgctxt "STR_QRY_TOO_MANY_TABLES"
msgid "There are too many tables."
-msgstr ""
+msgstr "Атаблицақәа мыцхәцәоуп."
#: strings.hrc:151
msgctxt "STR_QRY_NATIVE"
@@ -740,7 +740,7 @@ msgstr ""
#: strings.hrc:172
msgctxt "RID_STR_TABLE_FORMAT"
msgid "Table Format..."
-msgstr ""
+msgstr "Атаблица аформат..."
#: strings.hrc:173
msgctxt "RID_STR_ROW_HEIGHT"
@@ -770,7 +770,7 @@ msgstr ""
#: strings.hrc:178
msgctxt "STR_TBL_TITLE"
msgid "Table #"
-msgstr ""
+msgstr "Атаблица #"
#: strings.hrc:179
msgctxt "STR_VIEW_TITLE"
@@ -795,7 +795,7 @@ msgstr ""
#: strings.hrc:183
msgctxt "STR_DATASOURCE_GRIDCONTROL_NAME"
msgid "Data source table view"
-msgstr ""
+msgstr "Адырқәа рхыҵхырҭа атаблица ахәаҧшра."
#: strings.hrc:184
msgctxt "STR_DATASOURCE_GRIDCONTROL_DESC"
@@ -845,12 +845,12 @@ msgstr ""
#: strings.hrc:195
msgctxt "RID_STR_NEW_TABLE"
msgid "Create Table in Design View..."
-msgstr ""
+msgstr "Иаҧҵатәуп атаблица адизаин арежим ала..."
#: strings.hrc:196
msgctxt "RID_STR_NEW_TABLE_AUTO"
msgid "Use Wizard to Create Table..."
-msgstr ""
+msgstr "Ихархәатәуп атаблица аҧҵара азҟаза..."
#: strings.hrc:197
msgctxt "RID_STR_NEW_VIEW"
@@ -1009,7 +1009,7 @@ msgstr ""
#: strings.hrc:232
msgctxt "STR_TBL_LABEL"
msgid "~Table Name"
-msgstr ""
+msgstr "Атаблица ахьӡ"
#: strings.hrc:233
msgctxt "STR_QRY_LABEL"
@@ -1054,7 +1054,7 @@ msgstr ""
#: strings.hrc:242
msgctxt "RID_STR_TABLES_CONTAINER"
msgid "Tables"
-msgstr ""
+msgstr "Атаблицақәа"
#: strings.hrc:243
msgctxt "STR_TITLE_CONFIRM_DELETION"
@@ -1064,7 +1064,7 @@ msgstr ""
#: strings.hrc:244
msgctxt "STR_QUERY_DELETE_TABLE"
msgid "Do you want to delete the table '%1'?"
-msgstr ""
+msgstr "Ианыхтәума атаблица «%1»?"
#: strings.hrc:245
msgctxt "STR_QUERY_CONNECTION_LOST"
@@ -1094,12 +1094,12 @@ msgstr ""
#: strings.hrc:250
msgctxt "STR_LOADING_TABLE"
msgid "Loading table $name$ ..."
-msgstr ""
+msgstr "Атаблица $name$ аҭагалара ..."
#: strings.hrc:251
msgctxt "STR_NO_TABLE_FORMAT_INSIDE"
msgid "No table format could be found."
-msgstr ""
+msgstr "Атаблица аформат аҧшаара ауам."
#: strings.hrc:252
msgctxt "STR_COULDNOTCONNECT_DATASOURCE"
@@ -1195,7 +1195,7 @@ msgstr ""
#: strings.hrc:272
msgctxt "STR_TABED_UNDO_NEWROWINSERTED"
msgid "Insert new row"
-msgstr ""
+msgstr "Ибжьаргылатәуп, ацәаҳәа ҿыц"
#: strings.hrc:273
msgctxt "STR_DEFAULT_VALUE"
@@ -1620,7 +1620,7 @@ msgstr ""
#: strings.hrc:357
msgctxt "STR_ALL_TABLES"
msgid "All tables"
-msgstr ""
+msgstr "Атаблицақәа зегьы"
#: strings.hrc:358
msgctxt "STR_ALL_VIEWS"
@@ -1635,7 +1635,7 @@ msgstr ""
#: strings.hrc:361
msgctxt "STR_TABLE_PRIV_NAME"
msgid "Table name"
-msgstr ""
+msgstr "Атаблица ахьӡ"
#: strings.hrc:362
msgctxt "STR_TABLE_PRIV_INSERT"
@@ -1741,7 +1741,7 @@ msgstr ""
#: strings.hrc:383
msgctxt "STR_ADD_TABLES"
msgid "Add Tables"
-msgstr ""
+msgstr "Иацҵатәуп атаблицақәа"
#: strings.hrc:384
msgctxt "STR_ADD_TABLE_OR_QUERY"
@@ -1788,12 +1788,12 @@ msgstr ""
#: strings.hrc:393
msgctxt "STR_WIZ_TABLE_COPY"
msgid "Copy table"
-msgstr ""
+msgstr "Акопиа ахыхра"
#: strings.hrc:394
msgctxt "STR_COPYTABLE_TITLE_COPY"
msgid "Copy table"
-msgstr ""
+msgstr "Акопиа ахыхра"
#: strings.hrc:395
msgctxt "STR_INVALID_TABLE_NAME"
@@ -1888,7 +1888,7 @@ msgstr ""
#: strings.hrc:414
msgctxt "STR_DATABASEDEFAULTNAME"
msgid "New Database"
-msgstr ""
+msgstr "Адырқәа рбаза ҿыц"
#: strings.hrc:415
msgctxt "STR_MYSQLJDBC_HEADERTEXT"
@@ -2339,7 +2339,7 @@ msgstr "Иеиқәырхатәуп абра:"
#: backuppage.ui:110
msgctxt "backuppage|browse"
msgid "Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: choosedatasourcedialog.ui:8
msgctxt "choosedatasourcedialog|ChooseDataSourceDialog"
@@ -2369,7 +2369,7 @@ msgstr "Иеиқәырхатәуп"
#: collectionviewdialog.ui:119
msgctxt "collectionviewdialog|newFolderButton|tooltip_text"
msgid "Create New Directory"
-msgstr "Иаҧҵатәуп Акаталог Ҿыц"
+msgstr "Иаҧҵатәуп акаталог"
#: collectionviewdialog.ui:135
msgctxt "collectionviewdialog|upButton|tooltip_text"
@@ -2404,7 +2404,7 @@ msgstr "dBASE афаилқәа рахь амҩа:"
#: connectionpage.ui:64
msgctxt "connectionpage|create"
msgid "_Create New"
-msgstr "_Иаҧҵатәуп"
+msgstr "Иаҧҵатәуп"
#: connectionpage.ui:78
msgctxt "connectionpage|browse"
@@ -2569,7 +2569,7 @@ msgstr "dBASE афаилқәа рахь амҩа:"
#: dbwizconnectionpage.ui:80
msgctxt "dbwizconnectionpage|create"
msgid "_Create New"
-msgstr "_Иаҧҵатәуп"
+msgstr "Иаҧҵатәуп"
#: dbwizconnectionpage.ui:94
msgctxt "dbwizconnectionpage|browse"
@@ -2949,12 +2949,12 @@ msgstr ""
#: jdbcconnectionpage.ui:80
msgctxt "jdbcconnectionpage|create"
msgid "_Create New"
-msgstr ""
+msgstr "Иаҧҵатәуп"
#: jdbcconnectionpage.ui:94
msgctxt "jdbcconnectionpage|browse"
msgid "_Browse…"
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: jdbcconnectionpage.ui:126
msgctxt "jdbcconnectionpage|jdbcLabel"
@@ -3214,7 +3214,7 @@ msgstr ""
#: namematchingpage.ui:101
msgctxt "namematchingpage|leftlabel"
msgid "Source table: "
-msgstr ""
+msgstr "Ахалагаратә таблица:"
#: namematchingpage.ui:146
msgctxt "namematchingpage|rightlabel"
@@ -3446,7 +3446,7 @@ msgstr ""
#: queryfuncmenu.ui:26
msgctxt "queryfuncmenu|tablename"
msgid "Table Name"
-msgstr ""
+msgstr "Атаблица ахьӡ"
#: queryfuncmenu.ui:34
msgctxt "queryfuncmenu|alias"
@@ -3591,7 +3591,7 @@ msgstr ""
#: rtfcopytabledialog.ui:9
msgctxt "rtfcopytabledialog|RTFCopyTable"
msgid "Copy RTF Table"
-msgstr ""
+msgstr "RTF атаблица акопиа"
#: savedialog.ui:9
msgctxt "savedialog|SaveDialog"
@@ -3916,12 +3916,12 @@ msgstr ""
#: tabledesignsavemodifieddialog.ui:13
msgctxt "tabledesignsavemodifieddialog|TableDesignSaveModifiedDialog"
msgid "The table has been changed."
-msgstr ""
+msgstr "Атаблица ҧсахуп."
#: tablesfilterdialog.ui:8
msgctxt "tablesfilterdialog|TablesFilterDialog"
msgid "Tables Filter"
-msgstr ""
+msgstr "Атаблицақәа рфильтр"
#: tablesfilterpage.ui:34
msgctxt "tablesfilterpage|label2"
@@ -3931,12 +3931,12 @@ msgstr ""
#: tablesfilterpage.ui:70
msgctxt "tablesfilterpage|label1"
msgid "Tables and Table Filter"
-msgstr ""
+msgstr "Атаблицақәеи атаблицақәа рфильтқәеи"
#: tablesjoindialog.ui:82
msgctxt "tablesjoindialog|tables"
msgid "Tables"
-msgstr ""
+msgstr "Атаблицақәа"
#: tablesjoindialog.ui:99
msgctxt "tablesjoindialog|queries"
@@ -3946,7 +3946,7 @@ msgstr ""
#: tablesjoindialog.ui:132
msgctxt "tablesjoindialog|title"
msgid "Add Tables"
-msgstr ""
+msgstr "Иацҵатәуп атаблицақәа"
#: tablesjoindialog.ui:143
msgctxt "tablesjoindialog|alttitle"
diff --git a/source/ab/editeng/messages.po b/source/ab/editeng/messages.po
index 5081e46dc2c..77cb88971a1 100644
--- a/source/ab/editeng/messages.po
+++ b/source/ab/editeng/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2017-11-14 18:10+0000\n"
+"PO-Revision-Date: 2017-11-29 11:01+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1510683026.000000\n"
+"X-POOTLE-MTIME: 1511953279.000000\n"
#: spellmenu.ui:12
msgctxt "spellmenu|ignore"
@@ -1307,7 +1307,7 @@ msgstr ""
#: editrids.hrc:307
msgctxt "RID_SVXSTR_A11Y_IMAGEBULLET_NAME"
msgid "Image bullet"
-msgstr ""
+msgstr "Аграфикатә маркер"
#: editrids.hrc:308
msgctxt "RID_SVXSTR_A11Y_PARAGRAPH_DESCRIPTION"
diff --git a/source/ab/extensions/messages.po b/source/ab/extensions/messages.po
index 6cbab93a053..1990ac64161 100644
--- a/source/ab/extensions/messages.po
+++ b/source/ab/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-18 10:34+0000\n"
+"PO-Revision-Date: 2017-11-27 08:38+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -12,13 +12,13 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511001293.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511771931.000000\n"
#: command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: command.hrc:30
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -88,7 +88,7 @@ msgstr ""
#: stringarrays.hrc:48
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: stringarrays.hrc:49
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
@@ -108,7 +108,7 @@ msgstr ""
#: stringarrays.hrc:52
msgctxt "RID_RSC_ENUM_LISTSOURCE_TYPE"
msgid "Tablefields"
-msgstr ""
+msgstr "Атаблица аҭакырақәа"
#: stringarrays.hrc:57
msgctxt "RID_RSC_ENUM_ALIGNMENT"
@@ -178,7 +178,7 @@ msgstr ""
#: stringarrays.hrc:74
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "New record"
-msgstr ""
+msgstr "Иацҵатәуп анҵамҭа"
#: stringarrays.hrc:75
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
@@ -693,7 +693,7 @@ msgstr ""
#: strings.hrc:36
msgctxt "RID_STR_PRINTABLE"
msgid "Printable"
-msgstr ""
+msgstr "Акьыҧхьразы"
#: strings.hrc:37
msgctxt "RID_STR_TARGET_URL"
@@ -2297,7 +2297,7 @@ msgstr ""
#: strings.hrc:367
msgctxt "RID_STR_TABLE_SELECTION"
msgid "Table selection"
-msgstr ""
+msgstr "Атаблица алхра"
#: strings.hrc:368
msgctxt "RID_STR_MANUAL_FIELD_MAPPING"
@@ -2369,7 +2369,7 @@ msgstr ""
#: strings.hrc:381
msgctxt "RID_STR_TYPE_TABLE"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: strings.hrc:382
msgctxt "RID_STR_TYPE_QUERY"
@@ -2389,7 +2389,7 @@ msgstr ""
#: strings.hrc:386
msgctxt "RID_STR_GRIDWIZARD_TITLE"
msgid "Table Element Wizard"
-msgstr ""
+msgstr "Атаблица азҟаза"
#: strings.hrc:387
msgctxt "RID_STR_LISTWIZARD_TITLE"
@@ -2511,7 +2511,7 @@ msgstr ""
#: datasourcepage.ui:74
msgctxt "datasourcepage|browse"
msgid "Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: datasourcepage.ui:116
msgctxt "datasourcepage|available"
@@ -2626,7 +2626,7 @@ msgstr ""
#: gridfieldsselectionpage.ui:358
msgctxt "gridfieldsselectionpage|label2"
msgid "Table element"
-msgstr ""
+msgstr "Атаблица аелемент"
#: groupradioselectionpage.ui:44
msgctxt "groupradioselectionpage|datasourcelabel"
@@ -2671,7 +2671,7 @@ msgstr ""
#: groupradioselectionpage.ui:310
msgctxt "groupradioselectionpage|label2"
msgid "Table element"
-msgstr ""
+msgstr "Атаблица аелемент"
#: invokeadminpage.ui:16
msgctxt "invokeadminpage|label2"
@@ -3157,7 +3157,7 @@ msgstr ""
#: toolbar.ui:14
msgctxt "toolbar|TBC_FT_SOURCE"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: toolbar.ui:49
msgctxt "toolbar|TBC_FT_QUERY"
@@ -3207,12 +3207,12 @@ msgstr ""
#: datatypedialog.ui:8
msgctxt "datatypedialog|DataTypeDialog"
msgid "New Data Type"
-msgstr ""
+msgstr "Адырқәа ртип ҿыц"
#: datatypedialog.ui:85
msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
-msgstr ""
+msgstr "Иҭажәгал, адырқәа ртип ҿыц ахьӡ:"
#: formlinksdialog.ui:9
msgctxt "formlinksdialog|FormLinks"
diff --git a/source/ab/extras/source/autocorr/emoji.po b/source/ab/extras/source/autocorr/emoji.po
index 48043d4ceb4..9965b866141 100644
--- a/source/ab/extras/source/autocorr/emoji.po
+++ b/source/ab/extras/source/autocorr/emoji.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-10-18 13:02+0200\n"
-"PO-Revision-Date: 2017-11-23 07:38+0000\n"
+"PO-Revision-Date: 2017-11-29 11:01+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511422706.000000\n"
+"X-POOTLE-MTIME: 1511953290.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -619,7 +619,7 @@ msgctxt ""
"BULLET\n"
"LngText.text"
msgid "bullet"
-msgstr ""
+msgstr "амаркер"
#. ‣ (U+02023), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -628,7 +628,7 @@ msgctxt ""
"TRIANGULAR_BULLET\n"
"LngText.text"
msgid "bullet2"
-msgstr ""
+msgstr "амаркер2"
#. … (U+02026), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1599,7 +1599,7 @@ msgctxt ""
"WHITE_BULLET\n"
"LngText.text"
msgid "bullet3"
-msgstr ""
+msgstr "амаркер3"
#. ◯ (U+025EF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3842,7 +3842,7 @@ msgctxt ""
"NEW_MOON_SYMBOL\n"
"LngText.text"
msgid "new moon"
-msgstr ""
+msgstr "амзаҿа"
#. 🌒 (U+1F312), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3923,7 +3923,7 @@ msgctxt ""
"NEW_MOON_WITH_FACE\n"
"LngText.text"
msgid "new moon2"
-msgstr ""
+msgstr "амзаҿа 2"
#. 🌛 (U+1F31B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7460,7 +7460,7 @@ msgctxt ""
"NEWSPAPER\n"
"LngText.text"
msgid "newspaper"
-msgstr ""
+msgstr "агазеҭ"
#. 📱 (U+1F4F1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9269,7 +9269,7 @@ msgctxt ""
"POTABLE_WATER_SYMBOL\n"
"LngText.text"
msgid "potable water"
-msgstr ""
+msgstr "аӡырыжәтә"
#. 🚱 (U+1F6B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9278,7 +9278,7 @@ msgctxt ""
"NON-POTABLE_WATER_SYMBOL\n"
"LngText.text"
msgid "non-potable water"
-msgstr ""
+msgstr "ажәра зымуа аӡы"
#. 🚲 (U+1F6B2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/ab/filter/messages.po b/source/ab/filter/messages.po
index 11f1bd30f0c..a1b65edea17 100644
--- a/source/ab/filter/messages.po
+++ b/source/ab/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-17 16:45+0000\n"
+"PO-Revision-Date: 2017-11-27 08:39+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1510937147.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511771953.000000\n"
#: strings.hrc:25
msgctxt "STR_COLUMN_HEADER_NAME"
@@ -81,7 +81,7 @@ msgstr ""
#: strings.hrc:37
msgctxt "STR_DEFAULT_FILTER_NAME"
msgid "New Filter"
-msgstr ""
+msgstr "Афильтр ҿыц"
#: strings.hrc:38
msgctxt "STR_DEFAULT_UI_NAME"
@@ -568,7 +568,7 @@ msgstr ""
#: pdflinkspage.ui:158
msgctxt "pdflinkspage|openinternet"
msgid "Open _with Internet browser"
-msgstr ""
+msgstr "Иаарттәуп, абраузер ахархәарала"
#: pdflinkspage.ui:182
msgctxt "pdflinkspage|label5"
@@ -908,7 +908,7 @@ msgstr ""
#: pdfviewpage.ui:243
msgctxt "pdfviewpage|fitzoom"
msgid "_Zoom factor:"
-msgstr ""
+msgstr "Амасштаб:"
#: pdfviewpage.ui:289
msgctxt "pdfviewpage|label3"
@@ -963,7 +963,7 @@ msgstr ""
#: testxmlfilter.ui:111
msgctxt "testxmlfilter|exportbrowse"
msgid "Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: testxmlfilter.ui:123
msgctxt "testxmlfilter|currentdocument"
@@ -983,7 +983,7 @@ msgstr ""
#: testxmlfilter.ui:214
msgctxt "testxmlfilter|importbrowse"
msgid "Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: testxmlfilter.ui:226
msgctxt "testxmlfilter|recentfile"
@@ -1028,7 +1028,7 @@ msgstr ""
#: xmlfiltersettings.ui:24
msgctxt "xmlfiltersettings|new"
msgid "_New..."
-msgstr ""
+msgstr "Иаҧҵатәуп..."
#: xmlfiltersettings.ui:38
msgctxt "xmlfiltersettings|edit"
@@ -1118,7 +1118,7 @@ msgstr ""
#: xmlfiltertabpagetransformation.ui:117
msgctxt "xmlfiltertabpagetransformation|browsetemp"
msgid "Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: xmlfiltertabpagetransformation.ui:175
msgctxt "xmlfiltertabpagetransformation|filtercb"
diff --git a/source/ab/filter/source/config/fragments/filters.po b/source/ab/filter/source/config/fragments/filters.po
index 611a3136880..b9cc45d7868 100644
--- a/source/ab/filter/source/config/fragments/filters.po
+++ b/source/ab/filter/source/config/fragments/filters.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-07-21 16:10+0000\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"PO-Revision-Date: 2017-11-26 09:52+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1500653442.000000\n"
+"X-POOTLE-MTIME: 1511689971.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -168,6 +168,15 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr "DXF - AutoCAD Адырқәа реиҭныҧсахлара аформат"
+#: DocBook_File.xcu
+msgctxt ""
+"DocBook_File.xcu\n"
+"DocBook File\n"
+"UIName\n"
+"value.text"
+msgid "DocBook"
+msgstr ""
+
#: DosWord.xcu
msgctxt ""
"DosWord.xcu\n"
@@ -645,6 +654,42 @@ msgctxt ""
msgid "MathType3.x"
msgstr "MathType3.x"
+#: ODG_FlatXML.xcu
+msgctxt ""
+"ODG_FlatXML.xcu\n"
+"OpenDocument Drawing Flat XML\n"
+"UIName\n"
+"value.text"
+msgid "Flat XML ODF Drawing"
+msgstr ""
+
+#: ODP_FlatXML.xcu
+msgctxt ""
+"ODP_FlatXML.xcu\n"
+"OpenDocument Presentation Flat XML\n"
+"UIName\n"
+"value.text"
+msgid "Flat XML ODF Presentation"
+msgstr ""
+
+#: ODS_FlatXML.xcu
+msgctxt ""
+"ODS_FlatXML.xcu\n"
+"OpenDocument Spreadsheet Flat XML\n"
+"UIName\n"
+"value.text"
+msgid "Flat XML ODF Spreadsheet"
+msgstr ""
+
+#: ODT_FlatXML.xcu
+msgctxt ""
+"ODT_FlatXML.xcu\n"
+"OpenDocument Text Flat XML\n"
+"UIName\n"
+"value.text"
+msgid "Flat XML ODF Text Document"
+msgstr ""
+
#: OOXML_Text.xcu
msgctxt ""
"OOXML_Text.xcu\n"
@@ -670,7 +715,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
+msgstr "PBM - Portable Bitmap"
#: PCT___Mac_Pict.xcu
msgctxt ""
@@ -697,7 +742,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PGM - Portable Graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: PNG___Portable_Network_Graphic.xcu
msgctxt ""
@@ -706,7 +751,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: PPM___Portable_Pixelmap.xcu
msgctxt ""
@@ -715,7 +760,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: PSD___Adobe_Photoshop.xcu
msgctxt ""
@@ -1282,7 +1327,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: calc_png_Export.xcu
msgctxt ""
@@ -1291,7 +1336,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: chart8.xcu
msgctxt ""
@@ -1435,7 +1480,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: draw_png_Export.xcu
msgctxt ""
@@ -1444,7 +1489,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: draw_svg_Export.xcu
msgctxt ""
@@ -1651,7 +1696,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: impress_png_Export.xcu
msgctxt ""
@@ -1660,7 +1705,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: impress_svg_Export.xcu
msgctxt ""
@@ -1705,7 +1750,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: mov__MOV.xcu
msgctxt ""
@@ -1777,7 +1822,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: writer_jpg_Export.xcu
msgctxt ""
@@ -1804,7 +1849,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: writer_png_Export.xcu
msgctxt ""
@@ -1813,7 +1858,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: writer_web_HTML_help.xcu
msgctxt ""
@@ -1858,7 +1903,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: writer_web_png_Export.xcu
msgctxt ""
@@ -1867,7 +1912,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: writerglobal8.xcu
msgctxt ""
diff --git a/source/ab/filter/source/config/fragments/internalgraphicfilters.po b/source/ab/filter/source/config/fragments/internalgraphicfilters.po
index 283ee59fe8d..1b9b383e7a7 100644
--- a/source/ab/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/ab/filter/source/config/fragments/internalgraphicfilters.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2016-11-09 22:51+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-11-26 09:53+0000\n"
+"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1478731886.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511689982.000000\n"
#: bmp_Export.xcu
msgctxt ""
@@ -139,7 +139,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
+msgstr "PBM - Portable Bitmap"
#: pcd_Import_Base.xcu
msgctxt ""
@@ -193,7 +193,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: pdf_Import.xcu
msgctxt ""
@@ -202,7 +202,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: pgm_Import.xcu
msgctxt ""
@@ -211,7 +211,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PGM - Portable Graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: png_Export.xcu
msgctxt ""
@@ -220,7 +220,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: png_Import.xcu
msgctxt ""
@@ -229,7 +229,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: ppm_Import.xcu
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: psd_Import.xcu
msgctxt ""
diff --git a/source/ab/fpicker/messages.po b/source/ab/fpicker/messages.po
index 87bc7f87353..49d5033db3b 100644
--- a/source/ab/fpicker/messages.po
+++ b/source/ab/fpicker/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-24 14:55+0100\n"
-"PO-Revision-Date: 2017-11-14 17:53+0000\n"
+"PO-Revision-Date: 2017-11-27 08:39+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1510682003.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511771963.000000\n"
#: strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -213,12 +213,12 @@ msgstr ""
#: explorerfiledialog.ui:113
msgctxt "explorerfiledialog|new_folder|tooltip_text"
msgid "Create New Folder"
-msgstr ""
+msgstr "Иаҧҵатәуп аҭаӡ"
#: explorerfiledialog.ui:116
msgctxt "explorerfiledialog|new_folder-atkobject"
msgid "Create New Folder"
-msgstr ""
+msgstr "Иаҧҵатәуп аҭаӡ"
#: explorerfiledialog.ui:252
msgctxt "explorerfiledialog|file_name_label"
diff --git a/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 410c39f19aa..dad834df63f 100644
--- a/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2017-11-18 09:52+0000\n"
+"PO-Revision-Date: 2017-11-27 08:40+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1510998746.000000\n"
+"X-POOTLE-MTIME: 1511772049.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -237,7 +237,7 @@ msgctxt ""
"OOO_ACTIONTEXT_28\n"
"LngText.text"
msgid "Copying new files"
-msgstr ""
+msgstr "Афаил ҿыцқәа ркопиаҟаҵара"
#: ActionTe.ulf
msgctxt ""
@@ -261,7 +261,7 @@ msgctxt ""
"OOO_ACTIONTEXT_31\n"
"LngText.text"
msgid "Installing new services"
-msgstr ""
+msgstr "Амаҵзура ҿыцқәа рықәыргылара"
#: ActionTe.ulf
msgctxt ""
@@ -1013,7 +1013,7 @@ msgctxt ""
"OOO_CONTROL_9\n"
"LngText.text"
msgid "Create new folder|"
-msgstr ""
+msgstr "Иаҧҵатәуп, аҭаӡ ҿыц|"
#: Control.ulf
msgctxt ""
@@ -1621,7 +1621,7 @@ msgctxt ""
"OOO_CONTROL_117\n"
"LngText.text"
msgid "Create New Folder|"
-msgstr ""
+msgstr "Иаҧҵатәуп, аҭаӡ ҿыц|"
#: Control.ulf
msgctxt ""
@@ -2669,7 +2669,7 @@ msgctxt ""
"OOO_CONTROL_302\n"
"LngText.text"
msgid "A newer [DEFINEDPRODUCT] [DEFINEDVERSION] has been found."
-msgstr ""
+msgstr "Иҧшаан иаҳа иҿыцу [DEFINEDPRODUCT] [DEFINEDVERSION] аверсиа."
#: Control.ulf
msgctxt ""
@@ -3917,7 +3917,7 @@ msgctxt ""
"OOO_STR_NEW_DISPLAY_NAME\n"
"LngText.text"
msgid "~New"
-msgstr ""
+msgstr "Иаҧҵатәуп "
#: Property.ulf
msgctxt ""
@@ -4181,7 +4181,7 @@ msgctxt ""
"OOO_UITEXT_13\n"
"LngText.text"
msgid "Fldr|New Folder"
-msgstr ""
+msgstr "Аҭаӡ|Аҭаӡ ҿыц"
#: UIText.ulf
msgctxt ""
diff --git a/source/ab/officecfg/registry/data/org/openoffice.po b/source/ab/officecfg/registry/data/org/openoffice.po
index d61c2ee7b69..aab077e65ad 100644
--- a/source/ab/officecfg/registry/data/org/openoffice.po
+++ b/source/ab/officecfg/registry/data/org/openoffice.po
@@ -3,16 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2017-11-26 09:53+0000\n"
+"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511689993.000000\n"
#: Setup.xcu
msgctxt ""
@@ -84,7 +85,7 @@ msgctxt ""
"ooSetupFactoryUIName\n"
"value.text"
msgid "Base: Table Data View"
-msgstr ""
+msgstr "Base: атаблица адырқәа"
#: Setup.xcu
msgctxt ""
diff --git a/source/ab/officecfg/registry/data/org/openoffice/Office.po b/source/ab/officecfg/registry/data/org/openoffice/Office.po
index 1822724f7a5..7ec11c2a325 100644
--- a/source/ab/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/ab/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-18 10:35+0000\n"
+"PO-Revision-Date: 2017-11-27 08:41+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511001349.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511772084.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1255,7 +1255,7 @@ msgctxt ""
"STR_AUTOMATICALLY_OPEN\n"
"value.text"
msgid "~Open newly created presentation"
-msgstr ""
+msgstr "Иаарттәуп ҿыц, иаҧҵоу апрезентациа"
#: PresentationMinimizer.xcu
msgctxt ""
@@ -1318,7 +1318,7 @@ msgctxt ""
"STR_ESTIMATED_FILESIZE\n"
"value.text"
msgid "Estimated new file size:"
-msgstr "Афаил ҿыц инықәырҧшу ашәагаа:"
+msgstr "Афаил ҿыц, инықәырҧшу ашәагаа:"
#: PresentationMinimizer.xcu
msgctxt ""
@@ -1525,7 +1525,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Zoom"
-msgstr ""
+msgstr "Амасштаб"
#: PresenterScreen.xcu
msgctxt ""
@@ -11605,7 +11605,7 @@ msgctxt ""
"Category\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: Writer.xcu
msgctxt ""
diff --git a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
index 057414a689e..b02b6ea8d7f 100644
--- a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-24 14:56+0100\n"
-"PO-Revision-Date: 2017-11-18 10:36+0000\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"PO-Revision-Date: 2017-11-29 11:02+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511001403.000000\n"
+"X-POOTLE-MTIME: 1511953336.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -31,7 +31,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: BaseWindowState.xcu
msgctxt ""
@@ -355,7 +355,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: BibliographyCommands.xcu
msgctxt ""
@@ -769,7 +769,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom In"
-msgstr ""
+msgstr "Ирдуны"
#: CalcCommands.xcu
msgctxt ""
@@ -778,7 +778,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom Out"
-msgstr ""
+msgstr "Ирхәыҷны"
#: CalcCommands.xcu
msgctxt ""
@@ -1758,7 +1758,7 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:TTestDialog\n"
"Label\n"
"value.text"
-msgid "~t-test..."
+msgid "Paired ~t-test..."
msgstr ""
#: CalcCommands.xcu
@@ -4855,7 +4855,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Data Table..."
-msgstr ""
+msgstr "Адырқәа ртаблица..."
#: ChartCommands.xcu
msgctxt ""
@@ -5854,7 +5854,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table Data"
-msgstr ""
+msgstr "Атаблица адырқәа"
#: DbQueryWindowState.xcu
msgctxt ""
@@ -5980,7 +5980,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table Data"
-msgstr ""
+msgstr "Атаблица адырқәа"
#: DbTableWindowState.xcu
msgctxt ""
@@ -6016,7 +6016,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Add Tables..."
-msgstr ""
+msgstr "Иацҵатәуп атаблицақәа..."
#: DbuCommands.xcu
msgctxt ""
@@ -6061,7 +6061,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table name"
-msgstr ""
+msgstr "Атаблица ахьӡ"
#: DbuCommands.xcu
msgctxt ""
@@ -6322,7 +6322,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Wizard..."
-msgstr ""
+msgstr "Атаблицақәа разҟаза..."
#: DbuCommands.xcu
msgctxt ""
@@ -6412,7 +6412,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tables"
-msgstr ""
+msgstr "Атаблицақәа"
#: DbuCommands.xcu
msgctxt ""
@@ -6538,7 +6538,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Design..."
-msgstr ""
+msgstr "Атаблица адизаин..."
#: DbuCommands.xcu
msgctxt ""
@@ -6547,7 +6547,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New ~Table Design"
-msgstr ""
+msgstr "Иаҧҵатәуп атаблица (адизаин арежим)"
#: DbuCommands.xcu
msgctxt ""
@@ -6610,7 +6610,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Filter..."
-msgstr ""
+msgstr "Атаблицақәа рфильтр..."
#: DbuCommands.xcu
msgctxt ""
@@ -6619,7 +6619,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh Tables"
-msgstr ""
+msgstr "Ирҿыцтәуп атаблицақәа"
#: DbuCommands.xcu
msgctxt ""
@@ -7762,7 +7762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~New Slide"
-msgstr ""
+msgstr "Иаҧҵатәуп аслаид"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8229,7 +8229,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:AdvancedMode\n"
"Label\n"
"value.text"
-msgid "Effects"
+msgid "Transformations"
msgstr ""
#: DrawImpressCommands.xcu
@@ -8752,7 +8752,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New Master"
-msgstr ""
+msgstr "Азҟаза ҿыц"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8806,7 +8806,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom & Pan (CTRL to Zoom Out, SHIFT to Pan)"
-msgstr ""
+msgstr "Амасштаби (Ctrl) апанорамеи (Shift)"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9256,7 +9256,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Table"
-msgstr ""
+msgstr "Иалкаатәуп атаблица"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9265,7 +9265,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Table"
-msgstr ""
+msgstr "Атаблица"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9355,7 +9355,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Table..."
-msgstr ""
+msgstr "Атаблица..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10156,7 +10156,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: DrawWindowState.xcu
msgctxt ""
@@ -10165,7 +10165,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table Text"
-msgstr ""
+msgstr "Атаблица атеқст"
#: DrawWindowState.xcu
msgctxt ""
@@ -10281,7 +10281,7 @@ msgctxt ""
"..DrawWindowState.UIElements.States.private:resource/toolbar/choosemodebar\n"
"UIName\n"
"value.text"
-msgid "Mode"
+msgid "Transformations"
msgstr ""
#: DrawWindowState.xcu
@@ -10453,7 +10453,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: DrawWindowState.xcu
msgctxt ""
@@ -10462,7 +10462,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Zoom"
-msgstr ""
+msgstr "Амасштаб"
#: DrawWindowState.xcu
msgctxt ""
@@ -10795,7 +10795,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom"
-msgstr ""
+msgstr "Амасштаб"
#: Effects.xcu
msgctxt ""
@@ -11650,7 +11650,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom"
-msgstr ""
+msgstr "Амасштаб"
#: Effects.xcu
msgctxt ""
@@ -13117,7 +13117,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Newsflash"
-msgstr ""
+msgstr "Ажәабжьқәа"
#: Effects.xcu
msgctxt ""
@@ -13900,7 +13900,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: GenericCategories.xcu
msgctxt ""
@@ -14044,7 +14044,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Preview in Web Browser"
-msgstr ""
+msgstr "Абраузер аҟны ахәаҧшра"
#: GenericCommands.xcu
msgctxt ""
@@ -14053,7 +14053,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New Presentation"
-msgstr ""
+msgstr "Апрезентациа ҿыц"
#: GenericCommands.xcu
msgctxt ""
@@ -15610,7 +15610,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Zoom"
-msgstr ""
+msgstr "Амасштаб"
#: GenericCommands.xcu
msgctxt ""
@@ -15619,7 +15619,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Zoom..."
-msgstr ""
+msgstr "Амасштаб..."
#: GenericCommands.xcu
msgctxt ""
@@ -16240,7 +16240,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom"
-msgstr ""
+msgstr "Амасштаб"
#: GenericCommands.xcu
msgctxt ""
@@ -16258,7 +16258,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom In"
-msgstr ""
+msgstr "Ирдуны"
#: GenericCommands.xcu
msgctxt ""
@@ -16276,7 +16276,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom Out"
-msgstr ""
+msgstr "Ирхәыҷны"
#: GenericCommands.xcu
msgctxt ""
@@ -16285,7 +16285,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom Out"
-msgstr ""
+msgstr "Ирхәыҷны"
#: GenericCommands.xcu
msgctxt ""
@@ -17178,7 +17178,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullets"
-msgstr ""
+msgstr "Амаркерқәа"
#: GenericCommands.xcu
msgctxt ""
@@ -17484,7 +17484,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~New"
-msgstr ""
+msgstr "Иаҧҵатәуп"
#: GenericCommands.xcu
msgctxt ""
@@ -17736,7 +17736,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~New Style..."
-msgstr ""
+msgstr "Иаҧҵатәуп астиль..."
#: GenericCommands.xcu
msgctxt ""
@@ -17745,7 +17745,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New"
-msgstr ""
+msgstr "Иаҧҵатәуп"
#: GenericCommands.xcu
msgctxt ""
@@ -17952,7 +17952,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Object Zoom"
-msgstr ""
+msgstr "Аобиеқт амасштаб"
#: GenericCommands.xcu
msgctxt ""
@@ -18519,7 +18519,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Design..."
-msgstr ""
+msgstr "Атаблица адизаин..."
#: GenericCommands.xcu
msgctxt ""
@@ -19698,7 +19698,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom Next"
-msgstr ""
+msgstr "Анаҩстәи амасштаб"
#: GenericCommands.xcu
msgctxt ""
@@ -19707,7 +19707,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom Previous"
-msgstr ""
+msgstr "Аҧхьатәи амасштаб"
#: GenericCommands.xcu
msgctxt ""
@@ -20868,7 +20868,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Control"
-msgstr ""
+msgstr "Атаблица"
#: GenericCommands.xcu
msgctxt ""
@@ -20976,7 +20976,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New Record"
-msgstr ""
+msgstr "Иацҵатәуп анҵамҭа"
#: GenericCommands.xcu
msgctxt ""
@@ -21183,7 +21183,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Current Bullet List Type"
-msgstr ""
+msgstr "Амаркерқәа уажәтәи рстиль"
#: GenericCommands.xcu
msgctxt ""
@@ -21417,7 +21417,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Add Table..."
-msgstr ""
+msgstr "Иацҵатәуп атаблица..."
#: GenericCommands.xcu
msgctxt ""
@@ -21687,7 +21687,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Data source as Table"
-msgstr ""
+msgstr "Ахалагаратә дырқәа таблица ҳасабла"
#: GenericCommands.xcu
msgctxt ""
@@ -22992,7 +22992,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23001,7 +23001,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table Text"
-msgstr ""
+msgstr "Атаблица атеқст"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23063,7 +23063,7 @@ msgctxt ""
"..ImpressWindowState.UIElements.States.private:resource/toolbar/choosemodebar\n"
"UIName\n"
"value.text"
-msgid "Mode"
+msgid "Transformations"
msgstr ""
#: ImpressWindowState.xcu
@@ -23370,7 +23370,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23379,7 +23379,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Zoom"
-msgstr ""
+msgstr "Амасштаб"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23703,7 +23703,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New Line"
-msgstr ""
+msgstr "Ацәаҳәа ҿыц"
#: MathCommands.xcu
msgctxt ""
@@ -24747,7 +24747,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Table Design"
-msgstr ""
+msgstr "Атаблица адизаин"
#: Sidebar.xcu
msgctxt ""
@@ -24954,7 +24954,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~New"
-msgstr ""
+msgstr "Иаҧҵатәуп"
#: StartModuleCommands.xcu
msgctxt ""
@@ -25017,7 +25017,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New Document From Template"
-msgstr ""
+msgstr "Адокумент ҿыц, шаблонла"
#: StartModuleCommands.xcu
msgctxt ""
@@ -25485,7 +25485,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table of Contents"
-msgstr ""
+msgstr "Ахы"
#: WriterCommands.xcu
msgctxt ""
@@ -26142,7 +26142,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: WriterCommands.xcu
msgctxt ""
@@ -26151,7 +26151,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Insert ~Table..."
-msgstr ""
+msgstr "Ибжьаргылатәуп атаблица..."
#: WriterCommands.xcu
msgctxt ""
@@ -27132,7 +27132,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Table Properties..."
-msgstr ""
+msgstr "Атаблица аҷыдаҟазшьақәа..."
#: WriterCommands.xcu
msgctxt ""
@@ -27339,7 +27339,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Te~xt <-> Table..."
-msgstr ""
+msgstr "Атеқст <-> Атаблица..."
#: WriterCommands.xcu
msgctxt ""
@@ -27546,7 +27546,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Table"
-msgstr ""
+msgstr "Ианыхтәуп атаблица"
#: WriterCommands.xcu
msgctxt ""
@@ -27555,7 +27555,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Table"
-msgstr ""
+msgstr "Атаблица"
#: WriterCommands.xcu
msgctxt ""
@@ -27609,7 +27609,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Bullets and Numbering..."
-msgstr ""
+msgstr "Амаркерқәеи аномерркреи"
#: WriterCommands.xcu
msgctxt ""
@@ -27717,7 +27717,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Table"
-msgstr ""
+msgstr "Иалкаатәуп атаблица"
#: WriterCommands.xcu
msgctxt ""
@@ -27726,7 +27726,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Table"
-msgstr ""
+msgstr "Атаблица"
#: WriterCommands.xcu
msgctxt ""
@@ -28401,7 +28401,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Table Begin"
-msgstr ""
+msgstr "Ииастәуп атаблица алагамҭахь"
#: WriterCommands.xcu
msgctxt ""
@@ -28428,7 +28428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Table End"
-msgstr ""
+msgstr "Ииастәуп атаблица анҵәамҭахь"
#: WriterCommands.xcu
msgctxt ""
@@ -28446,7 +28446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Next Table"
-msgstr ""
+msgstr "Ииастәуп анаҩстәи атаблицахь"
#: WriterCommands.xcu
msgctxt ""
@@ -28464,7 +28464,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Previous Table"
-msgstr ""
+msgstr "Ииастәуп аҧхьатәи атаблицахь"
#: WriterCommands.xcu
msgctxt ""
@@ -28815,7 +28815,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Merge Table"
-msgstr ""
+msgstr "Еидҵатәуп атаблица"
#: WriterCommands.xcu
msgctxt ""
@@ -29247,7 +29247,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Boundaries"
-msgstr ""
+msgstr "Атаблицақәа рҳәаақәа"
#: WriterCommands.xcu
msgctxt ""
@@ -30255,7 +30255,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -30309,7 +30309,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -30318,7 +30318,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Амаркерқәеи аномерркреи"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -30705,7 +30705,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: WriterGlobalWindowState.xcu
msgctxt ""
@@ -30759,7 +30759,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: WriterGlobalWindowState.xcu
msgctxt ""
@@ -30768,7 +30768,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Амаркерқәеи аномерркреи"
#: WriterGlobalWindowState.xcu
msgctxt ""
@@ -31173,7 +31173,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: WriterReportWindowState.xcu
msgctxt ""
@@ -31227,7 +31227,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: WriterReportWindowState.xcu
msgctxt ""
@@ -31236,7 +31236,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Амаркерқәеи аномерркреи"
#: WriterReportWindowState.xcu
msgctxt ""
@@ -31605,7 +31605,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: WriterWebWindowState.xcu
msgctxt ""
@@ -31668,7 +31668,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: WriterWebWindowState.xcu
msgctxt ""
@@ -31821,7 +31821,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Амаркерқәеи аномерркреи"
#: WriterWebWindowState.xcu
msgctxt ""
@@ -32019,7 +32019,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: WriterWindowState.xcu
msgctxt ""
@@ -32118,7 +32118,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: WriterWindowState.xcu
msgctxt ""
@@ -32127,7 +32127,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Амаркерқәеи аномерркреи"
#: WriterWindowState.xcu
msgctxt ""
@@ -32550,7 +32550,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: XFormsWindowState.xcu
msgctxt ""
@@ -32604,7 +32604,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: XFormsWindowState.xcu
msgctxt ""
@@ -32613,7 +32613,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Амаркерқәеи аномерркреи"
#: XFormsWindowState.xcu
msgctxt ""
diff --git a/source/ab/reportdesign/messages.po b/source/ab/reportdesign/messages.po
index 2bd53c7ebe2..3c9fff7c808 100644
--- a/source/ab/reportdesign/messages.po
+++ b/source/ab/reportdesign/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-18 09:53+0000\n"
+"PO-Revision-Date: 2017-11-27 08:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1510998839.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511772337.000000\n"
#: stringarray.hrc:17
msgctxt "RID_STR_FORCENEWPAGE_CONST"
@@ -158,12 +158,12 @@ msgstr ""
#: strings.hrc:27
msgctxt "RID_STR_FORCENEWPAGE"
msgid "Force New Page"
-msgstr ""
+msgstr "Адаҟьа ҿыц"
#: strings.hrc:28
msgctxt "RID_STR_NEWROWORCOL"
msgid "New Row Or Column"
-msgstr ""
+msgstr "Иҿыцу ацәаҳәа/аиҵагыла"
#: strings.hrc:29
msgctxt "RID_STR_KEEPTOGETHER"
@@ -198,12 +198,12 @@ msgstr ""
#: strings.hrc:35
msgctxt "RID_STR_STARTNEWCOLUMN"
msgid "Start new column"
-msgstr ""
+msgstr "Иалагатәуп, аиҵагыла ҿыц"
#: strings.hrc:36
msgctxt "RID_STR_STARTNEWPAGE"
msgid "Start new page"
-msgstr ""
+msgstr "Иалагатәуп, адаҟьа ҿыц"
#: strings.hrc:37
msgctxt "RID_STR_RESETPAGENUMBER"
@@ -1220,7 +1220,7 @@ msgstr ""
#: navigatormenu.ui:48
msgctxt "navigatormenu|function"
msgid "New Function"
-msgstr ""
+msgstr "Афункциа ҿыц"
#: navigatormenu.ui:62
msgctxt "navigatormenu|properties"
diff --git a/source/ab/sc/messages.po b/source/ab/sc/messages.po
index f85ca9f73eb..4f7b1363217 100644
--- a/source/ab/sc/messages.po
+++ b/source/ab/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-18 10:37+0000\n"
+"POT-Creation-Date: 2017-12-06 15:58+0100\n"
+"PO-Revision-Date: 2017-11-27 08:50+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511001429.000000\n"
+"X-POOTLE-MTIME: 1511772653.000000\n"
#: compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1563,7 +1563,7 @@ msgstr ""
#: globstr.hrc:336
msgctxt "STR_TABINSERT_ERROR"
msgid "The table could not be inserted."
-msgstr ""
+msgstr "Атаблица абжьаргылара ауам."
#: globstr.hrc:337
msgctxt "STR_TABREMOVE_ERROR"
@@ -6884,7 +6884,7 @@ msgstr ""
#: scfuncs.hrc:1670
msgctxt "SC_OPCODE_TREND"
msgid "New data X"
-msgstr ""
+msgstr "Иҿыцу адырқәа Х"
#: scfuncs.hrc:1671
msgctxt "SC_OPCODE_TREND"
@@ -6929,7 +6929,7 @@ msgstr ""
#: scfuncs.hrc:1684
msgctxt "SC_OPCODE_GROWTH"
msgid "New data X"
-msgstr ""
+msgstr "Иҿыцу адырқәа X"
#: scfuncs.hrc:1685
msgctxt "SC_OPCODE_GROWTH"
@@ -11630,7 +11630,7 @@ msgstr ""
#: scfuncs.hrc:3418
msgctxt "SC_OPCODE_MATCH"
-msgid "Defines a position in a array after comparing values."
+msgid "Defines a position in an array after comparing values."
msgstr ""
#: scfuncs.hrc:3419
@@ -11660,7 +11660,7 @@ msgstr ""
#: scfuncs.hrc:3424
msgctxt "SC_OPCODE_MATCH"
-msgid "Type can take the value 1, 0 or -1 and determines the criteria are to be used for comparison purposes."
+msgid "Type can take the value 1, 0 or -1 and determines the criteria to be used for comparison purposes."
msgstr ""
#: scfuncs.hrc:3430
@@ -12446,7 +12446,7 @@ msgstr ""
#: scfuncs.hrc:3739
msgctxt "SC_OPCODE_REPLACE"
msgid "New text"
-msgstr ""
+msgstr "Атеқст ҿыц"
#: scfuncs.hrc:3740
msgctxt "SC_OPCODE_REPLACE"
@@ -12641,7 +12641,7 @@ msgstr ""
#: scfuncs.hrc:3813
msgctxt "SC_OPCODE_SUBSTITUTE"
msgid "New text"
-msgstr ""
+msgstr "Атеқст ҿыц"
#: scfuncs.hrc:3814
msgctxt "SC_OPCODE_SUBSTITUTE"
@@ -13352,7 +13352,7 @@ msgstr ""
#: scfuncs.hrc:4079
msgctxt "SC_OPCODE_REPLACEB"
msgid "New text"
-msgstr ""
+msgstr "Атеқст ҿыц"
#: scfuncs.hrc:4080
msgctxt "SC_OPCODE_REPLACEB"
@@ -13572,104 +13572,114 @@ msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr ""
-#. Attribute
+#: strings.hrc:50
+msgctxt "SCSTR_TOTAL"
+msgid "%1 results found"
+msgstr ""
+
#: strings.hrc:51
+msgctxt "SCSTR_SKIPPED"
+msgid "(only %1 are listed)"
+msgstr ""
+
+#. Attribute
+#: strings.hrc:53
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Document"
msgstr ""
-#: strings.hrc:52
+#: strings.hrc:54
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect document"
msgstr ""
-#: strings.hrc:53
+#: strings.hrc:55
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect sheet"
msgstr ""
-#: strings.hrc:54
+#: strings.hrc:56
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr ""
-#: strings.hrc:55
+#: strings.hrc:57
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr ""
-#: strings.hrc:56
+#: strings.hrc:58
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr ""
-#: strings.hrc:57
+#: strings.hrc:59
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr ""
-#: strings.hrc:58
+#: strings.hrc:60
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr ""
-#: strings.hrc:59
+#: strings.hrc:61
msgctxt "SCSTR_END"
msgid "~End"
msgstr ""
-#: strings.hrc:60
+#: strings.hrc:62
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr ""
-#: strings.hrc:61
+#: strings.hrc:63
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr ""
-#: strings.hrc:62
+#: strings.hrc:64
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr ""
-#: strings.hrc:63
+#: strings.hrc:65
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr ""
-#: strings.hrc:64
+#: strings.hrc:66
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr ""
-#: strings.hrc:65
+#: strings.hrc:67
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr ""
#. for dialogues:
-#: strings.hrc:67
+#: strings.hrc:69
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr ""
-#: strings.hrc:68
+#: strings.hrc:70
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr ""
-#: strings.hrc:69
+#: strings.hrc:71
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr ""
-#: strings.hrc:70
+#: strings.hrc:72
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr ""
-#: strings.hrc:71
+#: strings.hrc:73
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -13677,1181 +13687,1181 @@ msgid ""
"\n"
msgstr ""
-#: strings.hrc:72
+#: strings.hrc:74
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr ""
-#: strings.hrc:73
+#: strings.hrc:75
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr ""
#. Select tables dialog title
-#: strings.hrc:75
+#: strings.hrc:77
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr ""
#. Select tables dialog listbox
-#: strings.hrc:77
+#: strings.hrc:79
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr ""
-#: strings.hrc:78
+#: strings.hrc:80
msgctxt "STR_REPLCELLSWARN"
msgid ""
"You are pasting data into cells that already contain data.\n"
"Do you really want to overwrite the existing data?"
msgstr ""
-#: strings.hrc:79
+#: strings.hrc:81
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr ""
-#: strings.hrc:80
+#: strings.hrc:82
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr ""
-#: strings.hrc:81
+#: strings.hrc:83
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr ""
-#: strings.hrc:82
+#: strings.hrc:84
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr ""
-#: strings.hrc:83
+#: strings.hrc:85
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr ""
-#: strings.hrc:84
+#: strings.hrc:86
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr ""
-#: strings.hrc:85
+#: strings.hrc:87
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr ""
-#: strings.hrc:86
+#: strings.hrc:88
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr ""
-#: strings.hrc:87
+#: strings.hrc:89
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr ""
-#: strings.hrc:88
+#: strings.hrc:90
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr ""
-#: strings.hrc:89
+#: strings.hrc:91
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr ""
-#: strings.hrc:90
+#: strings.hrc:92
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr ""
-#: strings.hrc:91
+#: strings.hrc:93
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr ""
-#: strings.hrc:92
+#: strings.hrc:94
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr ""
-#: strings.hrc:93
+#: strings.hrc:95
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "Ара шәара иҭажәгалоит насгьы аредакциа рзыжәуеит атеқст, ахыҧхьаӡарақәеи аформулақәеи."
-#: strings.hrc:94
+#: strings.hrc:96
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr ""
-#: strings.hrc:95
+#: strings.hrc:97
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr ""
-#: strings.hrc:96
+#: strings.hrc:98
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "Аформулақәа рпанель"
-#: strings.hrc:97
+#: strings.hrc:99
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr ""
-#: strings.hrc:98
+#: strings.hrc:100
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr ""
-#: strings.hrc:99
+#: strings.hrc:101
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr ""
-#: strings.hrc:100
+#: strings.hrc:102
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages"
msgstr ""
-#: strings.hrc:101
+#: strings.hrc:103
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr ""
-#: strings.hrc:102
+#: strings.hrc:104
msgctxt "SCSTR_PRINTOPT_PRNTCONTENT"
msgid "Print content"
msgstr ""
-#: strings.hrc:103
+#: strings.hrc:105
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "~All sheets"
msgstr ""
-#: strings.hrc:104
+#: strings.hrc:106
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "~Selected sheets"
msgstr ""
-#: strings.hrc:105
+#: strings.hrc:107
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Selected cells"
msgstr ""
-#: strings.hrc:106
+#: strings.hrc:108
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which print"
msgstr ""
-#: strings.hrc:107
+#: strings.hrc:109
msgctxt "SCSTR_PRINTOPT_ALLPAGES"
msgid "All ~pages"
msgstr ""
-#: strings.hrc:108
+#: strings.hrc:110
msgctxt "SCSTR_PRINTOPT_PAGES_"
msgid "Pa~ges"
msgstr ""
-#: strings.hrc:109
+#: strings.hrc:111
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr ""
-#: strings.hrc:110
+#: strings.hrc:112
msgctxt "SCSTR_WARN_ME_IN_FUTURE_CHECK"
msgid "Warn me about this in the future."
msgstr ""
-#: strings.hrc:111
+#: strings.hrc:113
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 ""
-#: strings.hrc:112
+#: strings.hrc:114
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr ""
-#: strings.hrc:113
+#: strings.hrc:115
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr ""
-#: strings.hrc:114
+#: strings.hrc:116
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr ""
-#: strings.hrc:115
+#: strings.hrc:117
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr ""
-#: strings.hrc:116
+#: strings.hrc:118
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr ""
-#: strings.hrc:117
+#: strings.hrc:119
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr ""
-#: strings.hrc:118
+#: strings.hrc:120
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr ""
-#: strings.hrc:119
+#: strings.hrc:121
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr ""
-#: strings.hrc:120
+#: strings.hrc:122
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr "Аформула арбаӡам."
-#: strings.hrc:121
+#: strings.hrc:123
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr ""
-#: strings.hrc:122
+#: strings.hrc:124
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr ""
-#: strings.hrc:123
+#: strings.hrc:125
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr ""
-#: strings.hrc:124
+#: strings.hrc:126
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr "Аформулақәа еиҿыркаауам аиҵагыла."
-#: strings.hrc:125
+#: strings.hrc:127
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr "Аформулақәа еиҿыркаауам ацәаҳәа."
-#: strings.hrc:126
+#: strings.hrc:128
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr ""
-#: strings.hrc:127
+#: strings.hrc:129
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr ""
-#: strings.hrc:128
+#: strings.hrc:130
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr ""
-#: strings.hrc:129
+#: strings.hrc:131
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr ""
-#: strings.hrc:130
+#: strings.hrc:132
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr ""
-#: strings.hrc:131
+#: strings.hrc:133
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr ""
-#: strings.hrc:132
+#: strings.hrc:134
msgctxt "STR_JAN"
msgid "Jan"
msgstr ""
-#: strings.hrc:133
+#: strings.hrc:135
msgctxt "STR_FEB"
msgid "Feb"
msgstr ""
-#: strings.hrc:134
+#: strings.hrc:136
msgctxt "STR_MAR"
msgid "Mar"
msgstr ""
-#: strings.hrc:135
+#: strings.hrc:137
msgctxt "STR_NORTH"
msgid "North"
msgstr ""
-#: strings.hrc:136
+#: strings.hrc:138
msgctxt "STR_MID"
msgid "Mid"
msgstr ""
-#: strings.hrc:137
+#: strings.hrc:139
msgctxt "STR_SOUTH"
msgid "South"
msgstr ""
-#: strings.hrc:138
+#: strings.hrc:140
msgctxt "STR_SUM"
msgid "Total"
msgstr ""
-#: strings.hrc:139
+#: strings.hrc:141
msgctxt "STR_SHEET"
msgid "Sheet"
msgstr ""
-#: strings.hrc:140
+#: strings.hrc:142
msgctxt "STR_CELL"
msgid "Cell"
msgstr ""
-#: strings.hrc:141
+#: strings.hrc:143
msgctxt "STR_CONTENT"
msgid "Content"
msgstr ""
-#: strings.hrc:142
+#: strings.hrc:144
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr ""
-#: strings.hrc:143
+#: strings.hrc:145
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr ""
-#: strings.hrc:144
+#: strings.hrc:146
msgctxt "SCSTR_CONDITION"
msgid "Condition "
msgstr ""
#. content description strings are also use d in ScLinkTargetsObj
-#: strings.hrc:147
+#: strings.hrc:149
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr ""
-#: strings.hrc:148
+#: strings.hrc:150
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr ""
-#: strings.hrc:149
+#: strings.hrc:151
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr ""
-#: strings.hrc:150
+#: strings.hrc:152
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr ""
-#: strings.hrc:151
+#: strings.hrc:153
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr ""
-#: strings.hrc:152
+#: strings.hrc:154
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr ""
-#: strings.hrc:153
+#: strings.hrc:155
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr ""
-#: strings.hrc:154
+#: strings.hrc:156
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr ""
-#: strings.hrc:155
+#: strings.hrc:157
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr ""
-#: strings.hrc:156
+#: strings.hrc:158
msgctxt "SCSTR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
-#: strings.hrc:157
+#: strings.hrc:159
msgctxt "SCSTR_DISPLAY"
msgid "Display"
msgstr ""
-#: strings.hrc:158
+#: strings.hrc:160
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr ""
-#: strings.hrc:159
+#: strings.hrc:161
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr ""
-#: strings.hrc:160
+#: strings.hrc:162
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr ""
-#: strings.hrc:161
+#: strings.hrc:163
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr ""
-#: strings.hrc:162
+#: strings.hrc:164
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr ""
-#: strings.hrc:163
+#: strings.hrc:165
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr ""
-#: strings.hrc:165
+#: strings.hrc:167
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr ""
-#: strings.hrc:166
+#: strings.hrc:168
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr ""
-#: strings.hrc:167
+#: strings.hrc:169
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr ""
-#: strings.hrc:168
+#: strings.hrc:170
msgctxt "STR_BTN_TOGGLE_ALL"
msgid "All"
msgstr ""
-#: strings.hrc:169
+#: strings.hrc:171
msgctxt "STR_BTN_SELECT_CURRENT"
msgid "Show only the current item."
msgstr ""
-#: strings.hrc:170
+#: strings.hrc:172
msgctxt "STR_BTN_UNSELECT_CURRENT"
msgid "Hide only the current item."
msgstr ""
-#: strings.hrc:171
+#: strings.hrc:173
msgctxt "STR_EDIT_SEARCH_ITEMS"
msgid "Search items..."
msgstr ""
-#: strings.hrc:173
+#: strings.hrc:175
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr ""
-#: strings.hrc:174
+#: strings.hrc:176
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr ""
-#: strings.hrc:175
+#: strings.hrc:177
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr ""
-#: strings.hrc:176
+#: strings.hrc:178
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr ""
-#: strings.hrc:177
+#: strings.hrc:179
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "Иаҟәыхтәуп"
-#: strings.hrc:178
+#: strings.hrc:180
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Sum"
msgstr ""
-#: strings.hrc:179
+#: strings.hrc:181
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "аформула"
-#: strings.hrc:180
+#: strings.hrc:182
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "Иаарттәуп аформулақәа рпанель"
-#: strings.hrc:181
+#: strings.hrc:183
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "Иеикәарҳәтәуп аформулақәа рпанель"
-#: strings.hrc:183
+#: strings.hrc:185
msgctxt "STR_TITLE_CONFLICT"
msgid "Conflict"
msgstr ""
-#: strings.hrc:184
+#: strings.hrc:186
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr ""
-#: strings.hrc:185
+#: strings.hrc:187
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr ""
-#: strings.hrc:186
+#: strings.hrc:188
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr ""
-#: strings.hrc:188
+#: strings.hrc:190
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr ""
-#: strings.hrc:189
+#: strings.hrc:191
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr ""
-#: strings.hrc:190
+#: strings.hrc:192
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr ""
-#: strings.hrc:191
+#: strings.hrc:193
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr ""
-#: strings.hrc:192
+#: strings.hrc:194
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr ""
-#: strings.hrc:193
+#: strings.hrc:195
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr ""
-#: strings.hrc:194
+#: strings.hrc:196
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr ""
-#: strings.hrc:195
+#: strings.hrc:197
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr ""
-#: strings.hrc:196
+#: strings.hrc:198
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr ""
-#: strings.hrc:197
+#: strings.hrc:199
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr ""
-#: strings.hrc:198
+#: strings.hrc:200
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr ""
-#: strings.hrc:199
+#: strings.hrc:201
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr ""
-#: strings.hrc:200
+#: strings.hrc:202
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr ""
-#: strings.hrc:201
+#: strings.hrc:203
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr ""
-#: strings.hrc:202
+#: strings.hrc:204
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr ""
-#: strings.hrc:203
+#: strings.hrc:205
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr ""
-#: strings.hrc:205
+#: strings.hrc:207
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr ""
-#: strings.hrc:206
+#: strings.hrc:208
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr ""
-#: strings.hrc:207
+#: strings.hrc:209
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr ""
-#: strings.hrc:208
+#: strings.hrc:210
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr ""
-#: strings.hrc:209
+#: strings.hrc:211
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr ""
#. MovingAverageDialog
-#: strings.hrc:212
+#: strings.hrc:214
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr ""
#. ExponentialSmoothingDialog
-#: strings.hrc:214
+#: strings.hrc:216
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr ""
#. AnalysisOfVarianceDialog
-#: strings.hrc:216
+#: strings.hrc:218
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr ""
-#: strings.hrc:217
+#: strings.hrc:219
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr ""
-#: strings.hrc:218
+#: strings.hrc:220
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr ""
-#: strings.hrc:219
+#: strings.hrc:221
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr ""
-#: strings.hrc:220
+#: strings.hrc:222
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr ""
-#: strings.hrc:221
+#: strings.hrc:223
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr ""
-#: strings.hrc:222
+#: strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr ""
-#: strings.hrc:223
+#: strings.hrc:225
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr ""
-#: strings.hrc:224
+#: strings.hrc:226
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr ""
-#: strings.hrc:225
+#: strings.hrc:227
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr ""
-#: strings.hrc:226
+#: strings.hrc:228
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
-#: strings.hrc:227
+#: strings.hrc:229
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr ""
-#: strings.hrc:228
+#: strings.hrc:230
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr ""
-#: strings.hrc:229
+#: strings.hrc:231
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr ""
#. CorrelationDialog
-#: strings.hrc:231
+#: strings.hrc:233
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr ""
-#: strings.hrc:232
+#: strings.hrc:234
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr ""
#. CovarianceDialog
-#: strings.hrc:234
+#: strings.hrc:236
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr ""
-#: strings.hrc:235
+#: strings.hrc:237
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr ""
#. DescriptiveStatisticsDialog
-#: strings.hrc:237
+#: strings.hrc:239
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr ""
-#: strings.hrc:238
+#: strings.hrc:240
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr ""
-#: strings.hrc:239
+#: strings.hrc:241
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr ""
-#: strings.hrc:240
+#: strings.hrc:242
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr ""
-#: strings.hrc:241
+#: strings.hrc:243
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr ""
-#: strings.hrc:242
+#: strings.hrc:244
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:245
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
-#: strings.hrc:244
+#: strings.hrc:246
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:247
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr ""
-#: strings.hrc:246
+#: strings.hrc:248
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr ""
-#: strings.hrc:247
+#: strings.hrc:249
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr ""
-#: strings.hrc:248
+#: strings.hrc:250
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr ""
-#: strings.hrc:249
+#: strings.hrc:251
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr ""
-#: strings.hrc:250
+#: strings.hrc:252
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr ""
-#: strings.hrc:251
+#: strings.hrc:253
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile "
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:254
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr ""
#. RandomNumberGeneratorDialog
-#: strings.hrc:254
+#: strings.hrc:256
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:257
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr ""
-#: strings.hrc:256
+#: strings.hrc:258
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr ""
-#: strings.hrc:257
+#: strings.hrc:259
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:260
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr ""
-#: strings.hrc:259
+#: strings.hrc:261
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr ""
-#: strings.hrc:260
+#: strings.hrc:262
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr ""
-#: strings.hrc:261
+#: strings.hrc:263
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr ""
-#: strings.hrc:262
+#: strings.hrc:264
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr ""
-#: strings.hrc:263
+#: strings.hrc:265
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr ""
-#: strings.hrc:264
+#: strings.hrc:266
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr ""
-#: strings.hrc:265
+#: strings.hrc:267
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr ""
-#: strings.hrc:266
+#: strings.hrc:268
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr ""
-#: strings.hrc:267
+#: strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
-#: strings.hrc:268
+#: strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr ""
-#: strings.hrc:269
+#: strings.hrc:271
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr ""
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr ""
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr ""
#. SamplingDialog
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr ""
#. Names of dialogs
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_FTEST"
msgid "F-test"
msgstr ""
-#: strings.hrc:277
+#: strings.hrc:279
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr ""
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_TTEST"
-msgid "t-test"
+msgid "Paired t-test"
msgstr ""
-#: strings.hrc:279
+#: strings.hrc:281
msgctxt "STR_TTEST_UNDO_NAME"
-msgid "t-test"
+msgid "Paired t-test"
msgstr ""
-#: strings.hrc:280
+#: strings.hrc:282
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr ""
-#: strings.hrc:281
+#: strings.hrc:283
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr ""
-#: strings.hrc:282
+#: strings.hrc:284
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr ""
-#: strings.hrc:283
+#: strings.hrc:285
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr ""
-#: strings.hrc:284
+#: strings.hrc:286
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr ""
#. Common
-#: strings.hrc:286
+#: strings.hrc:288
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr ""
-#: strings.hrc:287
+#: strings.hrc:289
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr ""
-#: strings.hrc:288
+#: strings.hrc:290
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr ""
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr ""
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr ""
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr ""
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr ""
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr ""
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr ""
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr ""
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr ""
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr ""
#. RegressionDialog
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr ""
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr ""
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr ""
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr ""
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr ""
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_LABEL_SLOPE"
msgid "Slope"
msgstr ""
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr ""
#. F Test
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr ""
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr ""
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr ""
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr ""
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr ""
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr ""
#. t Test
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr ""
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr ""
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr ""
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr ""
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr ""
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr ""
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr ""
#. Z Test
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr ""
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr ""
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr ""
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr ""
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr ""
@@ -15317,7 +15327,7 @@ msgstr "Ихархәатәуп астиль"
#: conditionalentry.ui:86
msgctxt "conditionalentry|style"
msgid "New Style..."
-msgstr ""
+msgstr "Иаҧҵатәуп астиль..."
#: conditionalentry.ui:97
msgctxt "conditionalentry|valueft"
@@ -16457,12 +16467,12 @@ msgstr ""
#: dataform.ui:25
msgctxt "dataform|label"
msgid "New Record"
-msgstr ""
+msgstr "Иацҵатәуп анҵамҭа"
#: dataform.ui:35
msgctxt "dataform|new"
msgid "_New"
-msgstr ""
+msgstr "Иаҧҵатәуп"
#: dataform.ui:51
msgctxt "dataform|delete"
@@ -16507,7 +16517,7 @@ msgstr ""
#: dataprovider.ui:138
msgctxt "dataprovider|browse"
msgid "_Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: dataprovider.ui:165
msgctxt "dataprovider|label_db"
@@ -16562,7 +16572,7 @@ msgstr ""
#: datastreams.ui:81
msgctxt "datastreams|browse"
msgid "_Browse..."
-msgstr ""
+msgstr "_Аҭыҧхәаҧшра..."
#: datastreams.ui:120
msgctxt "datastreams|valuesinline"
@@ -16897,7 +16907,7 @@ msgstr ""
#: erroralerttabpage.ui:141
msgctxt "erroralerttabpage|browseBtn"
msgid "_Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: erroralerttabpage.ui:160
msgctxt "erroralerttabpage|actionCB"
@@ -16982,7 +16992,7 @@ msgstr ""
#: externaldata.ui:136
msgctxt "externaldata|browse"
msgid "_Browse..."
-msgstr ""
+msgstr "_Аҭыҧхәаҧшра..."
#: externaldata.ui:163
msgctxt "externaldata|label1"
@@ -17777,7 +17787,7 @@ msgstr ""
#: insertsheet.ui:192
msgctxt "insertsheet|new"
msgid "_New sheet"
-msgstr ""
+msgstr "Абӷьыц ҿыц"
#: insertsheet.ui:226
msgctxt "insertsheet|countft"
@@ -17802,12 +17812,12 @@ msgstr ""
#: insertsheet.ui:371
msgctxt "insertsheet|tables-atkobject"
msgid "Tables in file"
-msgstr ""
+msgstr "Атаблицақәа афаил аҟны"
#: insertsheet.ui:391
msgctxt "insertsheet|browse"
msgid "_Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: insertsheet.ui:406
msgctxt "insertsheet|link"
@@ -17957,7 +17967,7 @@ msgstr ""
#: movecopysheet.ui:200
msgctxt "movecopysheet|toDocument"
msgid "- new document -"
-msgstr ""
+msgstr "- иаҧҵатәуп адокумент -"
#: movecopysheet.ui:229
msgctxt "movecopysheet|insertBeforeLabel"
@@ -17987,7 +17997,7 @@ msgstr ""
#: movecopysheet.ui:403
msgctxt "movecopysheet|newNameLabel"
msgid "New _name"
-msgstr ""
+msgstr "Ахьӡ _ҿыц"
#: movingaveragedialog.ui:16
msgctxt "movingaveragedialog|MovingAverageDialog"
@@ -19217,7 +19227,7 @@ msgstr ""
#: optdefaultpage.ui:40
msgctxt "optdefaultpage|textsheetsnumber"
msgid "_Number of worksheets in new document:"
-msgstr ""
+msgstr "Адокумент ҿыц аҟны абӷьыцқәа рхыҧхьаӡара:"
#: optdefaultpage.ui:54
msgctxt "optdefaultpage|textsheetprefix"
@@ -19227,7 +19237,7 @@ msgstr ""
#: optdefaultpage.ui:98
msgctxt "optdefaultpage|label1"
msgid "New Spreadsheet"
-msgstr ""
+msgstr "Аелектронттә таблица ҿыц"
#: optdlg.ui:30
msgctxt "optdlg|suppressCB"
@@ -19272,7 +19282,7 @@ msgstr "Аформула апараметрқәа"
#: optformula.ui:121
msgctxt "optformula|label9"
msgid "Excel 2007 and newer:"
-msgstr ""
+msgstr "Excel 2007 -и иаҳа иҿыцуи:"
#: optformula.ui:135
msgctxt "optformula|label10"
@@ -19412,7 +19422,7 @@ msgstr ""
#: optsortlists.ui:166
msgctxt "optsortlists|new"
msgid "_New"
-msgstr ""
+msgstr "Иаҧҵатәуп"
#: optsortlists.ui:180
msgctxt "optsortlists|discard"
@@ -19882,7 +19892,7 @@ msgstr ""
#: pivottablelayoutdialog.ui:546
msgctxt "pivottablelayoutdialog|destination-radio-new-sheet"
msgid "New sheet"
-msgstr ""
+msgstr "Абӷьыц ҿыц"
#: pivottablelayoutdialog.ui:562
msgctxt "pivottablelayoutdialog|destination-radio-selection"
@@ -20267,7 +20277,7 @@ msgstr ""
#: retypepassworddialog.ui:165
msgctxt "retypepassworddialog|mustmatch"
msgid "New password must match the original password"
-msgstr ""
+msgstr "Ажәамаӡақәа еиқәшәозароуп"
#: retypepassworddialog.ui:190
msgctxt "retypepassworddialog|removepassword"
@@ -20534,16 +20544,11 @@ msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
-#: searchresults.ui:8
+#: searchresults.ui:9
msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: searchresults.ui:60
-msgctxt "searchresults|skipped"
-msgid "skipped $1 ..."
-msgstr ""
-
#: selectdatasource.ui:8
msgctxt "selectdatasource|SelectDataSourceDialog"
msgid "Select Data Source"
@@ -20562,7 +20567,7 @@ msgstr ""
#: selectdatasource.ui:145
msgctxt "selectdatasource|type"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: selectdatasource.ui:146
msgctxt "selectdatasource|type"
@@ -22487,7 +22492,7 @@ msgstr ""
#: tpviewpage.ui:644
msgctxt "tpviewpage|label3"
msgid "Zoom"
-msgstr ""
+msgstr "Амасштаб"
#: ttestdialog.ui:40
msgctxt "ttestdialog|variable1-range-label"
@@ -22712,7 +22717,7 @@ msgstr ""
#: xmlsourcedialog.ui:47
msgctxt "xmlsourcedialog|selectsource|tooltip_text"
msgid "Browse to set source file."
-msgstr ""
+msgstr "Иашәырба ахалагаратә фаил."
#: xmlsourcedialog.ui:61
msgctxt "xmlsourcedialog|sourcefile"
diff --git a/source/ab/scp2/source/calc.po b/source/ab/scp2/source/calc.po
index d4ea8bd6414..3a000cf85d7 100644
--- a/source/ab/scp2/source/calc.po
+++ b/source/ab/scp2/source/calc.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2014-11-02 19:11+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-11-27 08:51+0000\n"
+"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1414955481.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511772667.000000\n"
#: folderitem_calc.ulf
msgctxt ""
@@ -101,7 +101,7 @@ msgctxt ""
"STR_REG_VAL_NEW\n"
"LngText.text"
msgid "&New"
-msgstr ""
+msgstr "&Аҿыц"
#: registryitem_calc.ulf
msgctxt ""
diff --git a/source/ab/scp2/source/draw.po b/source/ab/scp2/source/draw.po
index 412051d1f18..2be61169837 100644
--- a/source/ab/scp2/source/draw.po
+++ b/source/ab/scp2/source/draw.po
@@ -3,16 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2017-11-27 08:51+0000\n"
+"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511772678.000000\n"
#: folderitem_draw.ulf
msgctxt ""
@@ -84,7 +85,7 @@ msgctxt ""
"STR_REG_VAL_NEW\n"
"LngText.text"
msgid "&New"
-msgstr ""
+msgstr "&Аҿыц"
#: registryitem_draw.ulf
msgctxt ""
@@ -244,7 +245,7 @@ msgctxt ""
"STR_REG_VAL_PORTABLE_BITMAP_FORMAT\n"
"LngText.text"
msgid "Portable Bitmap Format File"
-msgstr ""
+msgstr "Portable Bitmap аформат афаил"
#: registryitem_draw.ulf
msgctxt ""
@@ -260,7 +261,7 @@ msgctxt ""
"STR_REG_VAL_PORTABLE_GRAYMAP_FORMAT\n"
"LngText.text"
msgid "Portable Graymap Format File"
-msgstr ""
+msgstr "Portable Graymap аформат афаил"
#: registryitem_draw.ulf
msgctxt ""
@@ -268,7 +269,7 @@ msgctxt ""
"STR_REG_VAL_PORTABLE_NETWORK_GRAPHICS\n"
"LngText.text"
msgid "Portable Network Graphics File"
-msgstr ""
+msgstr "Афаил Portable Network Graphics"
#: registryitem_draw.ulf
msgctxt ""
@@ -276,7 +277,7 @@ msgctxt ""
"STR_REG_VAL_PORTABLE_PIXMAP_FORMAT\n"
"LngText.text"
msgid "Portable Pixmap Format File"
-msgstr ""
+msgstr "Portable Pixmap аформат афаил"
#: registryitem_draw.ulf
msgctxt ""
diff --git a/source/ab/scp2/source/graphicfilter.po b/source/ab/scp2/source/graphicfilter.po
index 6841156da33..69be4d17ec5 100644
--- a/source/ab/scp2/source/graphicfilter.po
+++ b/source/ab/scp2/source/graphicfilter.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2017-07-21 16:12+0000\n"
+"PO-Revision-Date: 2017-11-26 10:05+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1500653574.000000\n"
+"X-POOTLE-MTIME: 1511690704.000000\n"
#: module_graphicfilter.ulf
msgctxt ""
@@ -101,7 +101,7 @@ msgctxt ""
"STR_NAME_MODULE_OPTIONAL_GRFFLT_PBMP\n"
"LngText.text"
msgid "Portable Bitmap Import/Export"
-msgstr ""
+msgstr "Portable Bitmap Аимпорт/Аекспорт"
#: module_graphicfilter.ulf
msgctxt ""
@@ -109,7 +109,7 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_GRFFLT_PBMP\n"
"LngText.text"
msgid "Portable Bitmap Import/Export Filters"
-msgstr ""
+msgstr "Portable Bitmap Аимпорт/Аекспорт афильтр"
#: module_graphicfilter.ulf
msgctxt ""
diff --git a/source/ab/scp2/source/impress.po b/source/ab/scp2/source/impress.po
index a3f1e1ca147..ed9579c6b2b 100644
--- a/source/ab/scp2/source/impress.po
+++ b/source/ab/scp2/source/impress.po
@@ -4,15 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2017-11-27 08:51+0000\n"
+"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511772681.000000\n"
#: folderitem_impress.ulf
msgctxt ""
@@ -84,7 +85,7 @@ msgctxt ""
"STR_REG_VAL_NEW\n"
"LngText.text"
msgid "&New"
-msgstr ""
+msgstr "&Аҿыц"
#: registryitem_impress.ulf
msgctxt ""
diff --git a/source/ab/scp2/source/math.po b/source/ab/scp2/source/math.po
index efec7a671e7..f36050ec207 100644
--- a/source/ab/scp2/source/math.po
+++ b/source/ab/scp2/source/math.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2017-11-18 08:48+0000\n"
+"PO-Revision-Date: 2017-11-27 08:51+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1510994888.000000\n"
+"X-POOTLE-MTIME: 1511772685.000000\n"
#: folderitem_math.ulf
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"STR_REG_VAL_NEW\n"
"LngText.text"
msgid "&New"
-msgstr ""
+msgstr "&Аҿыц"
#: registryitem_math.ulf
msgctxt ""
diff --git a/source/ab/scp2/source/writer.po b/source/ab/scp2/source/writer.po
index 2a885b24aab..74e74a62fe3 100644
--- a/source/ab/scp2/source/writer.po
+++ b/source/ab/scp2/source/writer.po
@@ -3,16 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2017-11-27 08:51+0000\n"
+"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511772692.000000\n"
#: folderitem_writer.ulf
msgctxt ""
@@ -108,7 +109,7 @@ msgctxt ""
"STR_REG_VAL_NEW\n"
"LngText.text"
msgid "&New"
-msgstr ""
+msgstr "&Аҿыц"
#: registryitem_writer.ulf
msgctxt ""
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index 1b41cebc873..11687215236 100644
--- a/source/ab/sd/messages.po
+++ b/source/ab/sd/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 15:29+0100\n"
-"PO-Revision-Date: 2017-11-18 09:55+0000\n"
+"PO-Revision-Date: 2017-11-29 11:02+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1510998940.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511953351.000000\n"
#: DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -103,7 +103,7 @@ msgstr "Ахалагаратә шәагаа"
#: DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
-msgstr ""
+msgstr "Адаҟьа ашәагаақәа ирҭакӡатәуп"
#: DocumentRenderer.hrc:63
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
@@ -123,7 +123,7 @@ msgstr "Ахалагаратә шәагаа"
#: DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
-msgstr ""
+msgstr "Адаҟьа ашәагаақәа ирҭакӡатәуп"
#: DocumentRenderer.hrc:71
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
@@ -1128,7 +1128,7 @@ msgstr ""
#: strings.hrc:205
msgctxt "STR_HTMLEXP_CONTENTS"
msgid "Table of contents"
-msgstr ""
+msgstr "Ахы"
#: strings.hrc:206
msgctxt "STR_HTMLEXP_CLICKSTART"
@@ -1430,7 +1430,7 @@ msgstr ""
#: strings.hrc:265
msgctxt "STR_INSERT_TABLE"
msgid "Insert Table"
-msgstr ""
+msgstr "Ибжьаргылатәуп атаблица"
#: strings.hrc:266
msgctxt "STR_INSERT_CHART"
@@ -2083,7 +2083,7 @@ msgstr ""
#: strings.hrc:401
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
-msgstr ""
+msgstr "Амасштаб:"
#: strings.hrc:402
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
@@ -2283,7 +2283,7 @@ msgstr ""
#: strings.hrc:443
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: strings.hrc:445
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
@@ -3388,7 +3388,7 @@ msgstr "Ахалагаратә шәагаа"
#: impressprinteroptions.ui:230
msgctxt "impressprinteroptions|fittoprintable"
msgid "Fit to printable page"
-msgstr ""
+msgstr "Адаҟьа ашәагаақәа ирҭакӡатәуп"
#: impressprinteroptions.ui:248
msgctxt "impressprinteroptions|distributeonmultiple"
@@ -3448,7 +3448,7 @@ msgstr ""
#: interactionpage.ui:183
msgctxt "interactionpage|browse"
msgid "_Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: interactionpage.ui:197
msgctxt "interactionpage|find"
@@ -3578,7 +3578,7 @@ msgstr ""
#: notebookbar.ui:921
msgctxt "notebookbar|numberbullet|tooltip_text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Амаркерқәеи аномерркреи"
#: notebookbar.ui:961
msgctxt "notebookbar|indent|tooltip_text"
@@ -3658,7 +3658,7 @@ msgstr ""
#: notebookbar.ui:2757
msgctxt "notebookbar|TableLabel"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: notebookbar.ui:3275
msgctxt "notebookbar|ImageLabel"
@@ -4291,7 +4291,7 @@ msgstr ""
#: optimpressgeneralpage.ui:134
msgctxt "optimpressgeneralpage|newdoclbl"
msgid "New Document"
-msgstr ""
+msgstr "Иаҧҵатәуп адокумент"
#: optimpressgeneralpage.ui:170
msgctxt "optimpressgeneralpage|copywhenmove"
@@ -4696,7 +4696,7 @@ msgstr ""
#: publishingdialog.ui:42
msgctxt "publishingdialog|newDesignRadiobutton"
msgid "New _design"
-msgstr ""
+msgstr "Адизаин ҿыц"
#: publishingdialog.ui:61
msgctxt "publishingdialog|oldDesignRadiobutton"
@@ -4711,7 +4711,7 @@ msgstr ""
#: publishingdialog.ui:136
msgctxt "publishingdialog|descLabel"
msgid "Select an existing design or create a new one"
-msgstr ""
+msgstr "Иалышәх иҟоу адизаин ма аҿыц аҧышәҵа"
#: publishingdialog.ui:155
msgctxt "publishingdialog|assignLabel"
@@ -5606,7 +5606,7 @@ msgstr ""
#: bulletsandnumbering.ui:8
msgctxt "bulletsandnumbering|BulletsAndNumberingDialog"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Амаркерқәеи аномерркреи"
#: bulletsandnumbering.ui:67
msgctxt "bulletsandnumbering|reset"
@@ -5616,7 +5616,7 @@ msgstr ""
#: bulletsandnumbering.ui:105
msgctxt "bulletsandnumbering|bullets"
msgid "Bullets"
-msgstr ""
+msgstr "Амаркерқәа"
#: bulletsandnumbering.ui:127
msgctxt "bulletsandnumbering|singlenum"
@@ -5896,7 +5896,7 @@ msgstr "Ахалагаратә шәагаа"
#: drawprinteroptions.ui:214
msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
-msgstr ""
+msgstr "Адаҟьа ашәагаақәа ирҭакӡатәуп"
#: drawprinteroptions.ui:232
msgctxt "drawprinteroptions|distributeonmultiple"
@@ -5961,7 +5961,7 @@ msgstr ""
#: drawprtldialog.ui:288
msgctxt "drawprtldialog|RID_SVXPAGE_PICK_BULLET"
msgid "Bullets"
-msgstr ""
+msgstr "Амаркерқәа"
#: drawprtldialog.ui:311
msgctxt "drawprtldialog|RID_SVXPAGE_PICK_SINGLE_NUM"
@@ -6026,7 +6026,7 @@ msgstr ""
#: insertlayer.ui:229
msgctxt "insertlayer|printable"
msgid "_Printable"
-msgstr ""
+msgstr "_Акьыҧхьразы"
#: insertlayer.ui:245
msgctxt "insertlayer|locked"
@@ -6086,7 +6086,7 @@ msgstr ""
#: tabledesigndialog.ui:9
msgctxt "tabledesigndialog|TableDesignDialog"
msgid "Table Design"
-msgstr ""
+msgstr "Атаблица адизаин"
#: tabledesigndialog.ui:85
msgctxt "tabledesigndialog|UseFirstRowStyle"
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index 77183bd08d6..827a866ba1e 100644
--- a/source/ab/sfx2/messages.po
+++ b/source/ab/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-18 10:37+0000\n"
+"PO-Revision-Date: 2017-11-27 08:53+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511001461.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511772829.000000\n"
#: strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -78,7 +78,7 @@ msgstr ""
#: strings.hrc:37
msgctxt "STR_RENAME_TEMPLATE"
msgid "Enter New Name: "
-msgstr ""
+msgstr "Иҭажәгал, ахьӡ ҿыц: "
#: strings.hrc:38
msgctxt "STR_TEMPLATE_TOOLTIP"
@@ -201,7 +201,7 @@ msgstr ""
#: strings.hrc:62
msgctxt "STR_CATEGORY_NEW"
msgid "New Category"
-msgstr ""
+msgstr "Иаҧҵатәуп акатегориа"
#: strings.hrc:63
msgctxt "STR_CATEGORY_DELETE"
@@ -507,7 +507,7 @@ msgstr ""
#: strings.hrc:122
msgctxt "STR_GID_TABLE"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: strings.hrc:123
msgctxt "STR_GID_ENUMERATION"
@@ -982,7 +982,7 @@ msgstr ""
#: strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
-msgstr ""
+msgstr "Иаҧҵатәуп алкаараз астиль"
#: strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
@@ -1594,7 +1594,7 @@ msgstr ""
#: checkin.ui:84
msgctxt "checkin|MajorVersion"
msgid "New major version"
-msgstr ""
+msgstr "Иҿыцу, ихадоу аверсиа"
#: checkin.ui:114
msgctxt "checkin|label2"
@@ -2023,7 +2023,7 @@ msgstr ""
#: loadtemplatedialog.ui:9
msgctxt "loadtemplatedialog|LoadTemplateDialog"
msgid "New"
-msgstr ""
+msgstr "Иаҧҵатәуп"
#: loadtemplatedialog.ui:70
msgctxt "loadtemplatedialog|fromfile"
@@ -2558,7 +2558,7 @@ msgstr ""
#: stylecontextmenu.ui:12
msgctxt "stylecontextmenu|new"
msgid "New..."
-msgstr ""
+msgstr "Иаҧҵатәуп..."
#: stylecontextmenu.ui:20
msgctxt "stylecontextmenu|edit"
@@ -2598,7 +2598,7 @@ msgstr ""
#: templatecategorydlg.ui:149
msgctxt "templatecategorydlg|create_label"
msgid "or Create a New Category"
-msgstr ""
+msgstr "ма иаҧҵатәуп иҿыцу"
#: templatedlg.ui:13
msgctxt "templatedlg|applist"
@@ -2673,7 +2673,7 @@ msgstr ""
#: templatedlg.ui:333
msgctxt "templatedlg|online_link|tooltip_text"
msgid "Browse online templates"
-msgstr ""
+msgstr "Онлаин ашаблонқәа рҭыҧхәаҧшра"
#: templatedlg.ui:347
msgctxt "templatedlg|hidedialogcb"
@@ -2773,7 +2773,7 @@ msgstr ""
#: versionsofdialog.ui:155
msgctxt "versionsofdialog|save"
msgid "Save _New Version"
-msgstr ""
+msgstr "Еиқәырхатәуп иҿыцу аверсиа"
#: versionsofdialog.ui:168
msgctxt "versionsofdialog|always"
@@ -2783,7 +2783,7 @@ msgstr ""
#: versionsofdialog.ui:189
msgctxt "versionsofdialog|label1"
msgid "New Versions"
-msgstr ""
+msgstr "Аверсиа ҿыцқәа"
#: versionsofdialog.ui:234
msgctxt "versionsofdialog|datetime"
diff --git a/source/ab/starmath/messages.po b/source/ab/starmath/messages.po
index 4716b60669e..234fd0748e4 100644
--- a/source/ab/starmath/messages.po
+++ b/source/ab/starmath/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-18 09:56+0000\n"
+"PO-Revision-Date: 2017-11-27 08:53+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1510998994.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511772839.000000\n"
#: smmod.hrc:16
msgctxt "RID_UI_SYMBOLSET_NAMES"
@@ -1348,7 +1348,7 @@ msgstr ""
#: strings.hrc:223
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
-msgstr ""
+msgstr "Ацәаҳәа ҿыц"
#: strings.hrc:224
msgctxt "RID_BINOMXY_HELP"
diff --git a/source/ab/svtools/messages.po b/source/ab/svtools/messages.po
index 63451cd43e7..37b09e2712d 100644
--- a/source/ab/svtools/messages.po
+++ b/source/ab/svtools/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-18 09:56+0000\n"
+"POT-Creation-Date: 2017-12-06 15:58+0100\n"
+"PO-Revision-Date: 2017-11-27 08:54+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1510999012.000000\n"
+"X-POOTLE-MTIME: 1511772897.000000\n"
#: errtxt.hrc:30
msgctxt "RID_ERRCTX"
@@ -63,7 +63,7 @@ msgstr ""
#: errtxt.hrc:40 /home/cl/vc/git/libo-core/svtools/inc/errtxt.hrc:41
msgctxt "RID_ERRCTX"
msgid "$(ERR) creating a new document"
-msgstr ""
+msgstr "$(ERR) адокумент ҿыц, аҧҵараан"
#: errtxt.hrc:42
msgctxt "RID_ERRCTX"
@@ -814,7 +814,7 @@ msgstr ""
#: langtab.hrc:88
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (New Zealand)"
-msgstr ""
+msgstr "Англыз бызшәа (Зеландиа Ҿыц)"
#: langtab.hrc:89
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
@@ -2416,6 +2416,11 @@ msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fon"
msgstr ""
+#: langtab.hrc:409
+msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
+msgid "Plautdietsch"
+msgstr ""
+
#: templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
msgid "Title"
@@ -2489,7 +2494,7 @@ msgstr ""
#: addresstemplatedialog.ui:118
msgctxt "addresstemplatedialog|label43"
msgid "Table:"
-msgstr ""
+msgstr "Атаблица:"
#: addresstemplatedialog.ui:165
msgctxt "addresstemplatedialog|admin"
@@ -2501,7 +2506,7 @@ msgctxt "addresstemplatedialog|label100"
msgid "Address Book Source"
msgstr ""
-#: addresstemplatedialog.ui:521
+#: addresstemplatedialog.ui:522
msgctxt "addresstemplatedialog|label23"
msgid "Field Assignment"
msgstr ""
@@ -3279,7 +3284,7 @@ msgstr ""
#: strings.hrc:92
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
-msgstr ""
+msgstr "Ахалагаратә дырқәа ртаблица"
#: strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
@@ -3301,1159 +3306,1169 @@ msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
-#: strings.hrc:98
+#: strings.hrc:97
+msgctxt "STR_FORMAT_ID_PNG_BITMAP"
+msgid "PNG Bitmap"
+msgstr ""
+
+#: strings.hrc:99
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr ""
-#: strings.hrc:99
+#: strings.hrc:100
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
-#: strings.hrc:100
+#: strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_PLUGIN"
msgid "Plug-in from document % could not be inserted."
msgstr ""
-#: strings.hrc:101
+#: strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
-#: strings.hrc:102
+#: strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr ""
-#: strings.hrc:104
+#: strings.hrc:105
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr ""
-#: strings.hrc:105
+#: strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Ашәагаа"
-#: strings.hrc:106
+#: strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr ""
-#: strings.hrc:107
+#: strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr ""
-#: strings.hrc:108
+#: strings.hrc:109
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr ""
-#: strings.hrc:109
+#: strings.hrc:110
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr ""
-#: strings.hrc:110
+#: strings.hrc:111
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr ""
-#: strings.hrc:111
+#: strings.hrc:112
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr ""
#. descriptions of accessible objects
-#: strings.hrc:114
+#: strings.hrc:115
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
-#: strings.hrc:115
+#: strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ""
-#: strings.hrc:116
+#: strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr ""
-#: strings.hrc:117
+#: strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr ""
-#: strings.hrc:118
+#: strings.hrc:119
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: strings.hrc:124
+#: strings.hrc:125
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. default or normal sorting algorithm
-#: strings.hrc:126
+#: strings.hrc:127
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr ""
#. default or normal sorting algorithm
-#: strings.hrc:128
+#: strings.hrc:129
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr ""
#. german dictionary word order / sorting
-#: strings.hrc:130
+#: strings.hrc:131
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. chinese sorting algorithm
-#: strings.hrc:132
+#: strings.hrc:133
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese sorting algorithm
-#: strings.hrc:134
+#: strings.hrc:135
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. chinese sorting algorithm
-#: strings.hrc:136
+#: strings.hrc:137
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. sorting according to the unicode code point of the character
-#: strings.hrc:138
+#: strings.hrc:139
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. chinese sorting algorithm
-#: strings.hrc:140
+#: strings.hrc:141
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. phone book sorting algorithm. e.g. German
-#: strings.hrc:142
+#: strings.hrc:143
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
-#: strings.hrc:143
+#: strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
-#: strings.hrc:144
+#: strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. alphanumeric indexentry algorithm
-#: strings.hrc:146
+#: strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. korean dictionary indexentry algorithm
-#: strings.hrc:148
+#: strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. chinese sorting algorithm
-#: strings.hrc:150
+#: strings.hrc:151
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese indexentry algorithm
-#: strings.hrc:152
+#: strings.hrc:153
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. chinese indexentry algorithm
-#: strings.hrc:154
+#: strings.hrc:155
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. chinese indexentry algorithm
-#: strings.hrc:156
+#: strings.hrc:157
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
-#: strings.hrc:157
+#: strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
-#: strings.hrc:158
+#: strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
-#: strings.hrc:159
+#: strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
-#: strings.hrc:160
+#: strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
-#: strings.hrc:162
+#: strings.hrc:163
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr ""
-#: strings.hrc:163
+#: strings.hrc:164
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr ""
-#: strings.hrc:164
+#: strings.hrc:165
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
-#: strings.hrc:165
+#: strings.hrc:166
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr ""
-#: strings.hrc:167
+#: strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr ""
-#: strings.hrc:168
+#: strings.hrc:169
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
-#: strings.hrc:169
+#: strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr ""
-#: strings.hrc:170
+#: strings.hrc:171
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr ""
-#: strings.hrc:171
+#: strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr ""
-#: strings.hrc:172
+#: strings.hrc:173
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr ""
-#: strings.hrc:173
+#: strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr ""
-#: strings.hrc:174
+#: strings.hrc:175
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr ""
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr ""
-#: strings.hrc:176
+#: strings.hrc:177
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: strings.hrc:177
+#: strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr ""
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: strings.hrc:180
+#: strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: strings.hrc:183
+#: strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: strings.hrc:185
+#: strings.hrc:186
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: strings.hrc:186
+#: strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: strings.hrc:187
+#: strings.hrc:188
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: strings.hrc:188
+#: strings.hrc:189
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
-#: strings.hrc:189
+#: strings.hrc:190
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
-#: strings.hrc:190
+#: strings.hrc:191
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
-#: strings.hrc:193
+#: strings.hrc:194
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
-#: strings.hrc:194
+#: strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr ""
-#: strings.hrc:196
+#: strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr ""
-#: strings.hrc:197
+#: strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
-#: strings.hrc:198
+#: strings.hrc:199
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr ""
-#: strings.hrc:200
+#: strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr ""
-#: strings.hrc:203
+#: strings.hrc:204
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr ""
-#: strings.hrc:204
+#: strings.hrc:205
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr ""
-#: strings.hrc:205
+#: strings.hrc:206
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr ""
-#: strings.hrc:206
+#: strings.hrc:207
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: strings.hrc:207
+#: strings.hrc:208
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr ""
-#: strings.hrc:208
+#: strings.hrc:209
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: strings.hrc:209
+#: strings.hrc:210
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr ""
-#: strings.hrc:210
+#: strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: strings.hrc:211
+#: strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Афаил ашәагаа %1 KB."
-#: strings.hrc:213
+#: strings.hrc:214
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr ""
-#: strings.hrc:214
+#: strings.hrc:215
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr ""
-#: strings.hrc:215
+#: strings.hrc:216
+msgctxt "STR_SVT_OTHER_CMIS"
+msgid "Other CMIS"
+msgstr ""
+
+#: strings.hrc:217
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: strings.hrc:216
+#: strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr ""
-#: strings.hrc:217
+#: strings.hrc:219
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: strings.hrc:218
+#: strings.hrc:220
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: strings.hrc:219
+#: strings.hrc:221
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
-#: strings.hrc:220
+#: strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr ""
-#: strings.hrc:221
+#: strings.hrc:223
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: strings.hrc:222
+#: strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: strings.hrc:223
+#: strings.hrc:225
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: strings.hrc:224
+#: strings.hrc:226
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: strings.hrc:225
+#: strings.hrc:227
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr ""
-#: strings.hrc:226
+#: strings.hrc:228
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: strings.hrc:227
+#: strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: strings.hrc:228
+#: strings.hrc:230
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: strings.hrc:229
+#: strings.hrc:231
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: strings.hrc:230
+#: strings.hrc:232
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: strings.hrc:231
+#: strings.hrc:233
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: strings.hrc:232
+#: strings.hrc:234
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: strings.hrc:233
+#: strings.hrc:235
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: strings.hrc:234
+#: strings.hrc:236
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: strings.hrc:235
+#: strings.hrc:237
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr ""
-#: strings.hrc:236
+#: strings.hrc:238
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: strings.hrc:237
+#: strings.hrc:239
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
-#: strings.hrc:238
+#: strings.hrc:240
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: strings.hrc:239
+#: strings.hrc:241
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: strings.hrc:240
+#: strings.hrc:242
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
-#: strings.hrc:241
+#: strings.hrc:243
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:245
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
-#: strings.hrc:244
+#: strings.hrc:246
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:247
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
-#: strings.hrc:246
+#: strings.hrc:248
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr ""
-#: strings.hrc:248
+#: strings.hrc:250
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr ""
-#: strings.hrc:249
+#: strings.hrc:251
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr ""
-#: strings.hrc:250
+#: strings.hrc:252
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr ""
-#: strings.hrc:251
+#: strings.hrc:253
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:254
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr ""
-#: strings.hrc:253
+#: strings.hrc:255
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr ""
-#: strings.hrc:254
+#: strings.hrc:256
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:257
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
-#: strings.hrc:256
+#: strings.hrc:258
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr ""
-#: strings.hrc:257
+#: strings.hrc:259
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:260
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr ""
-#: strings.hrc:259
+#: strings.hrc:261
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
-#: strings.hrc:260
+#: strings.hrc:262
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr ""
-#: strings.hrc:261
+#: strings.hrc:263
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr ""
-#: strings.hrc:262
+#: strings.hrc:264
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr ""
-#: strings.hrc:263
+#: strings.hrc:265
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
-#: strings.hrc:264
+#: strings.hrc:266
msgctxt "STR_FIELD_FAX"
msgid "FAX"
msgstr ""
-#: strings.hrc:265
+#: strings.hrc:267
msgctxt "STR_FIELD_EMAIL"
msgid "E-mail"
msgstr ""
-#: strings.hrc:266
+#: strings.hrc:268
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr ""
-#: strings.hrc:267
+#: strings.hrc:269
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr ""
-#: strings.hrc:268
+#: strings.hrc:270
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr ""
-#: strings.hrc:269
+#: strings.hrc:271
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr ""
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr ""
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr ""
-#: strings.hrc:273
+#: strings.hrc:275
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr ""
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
-#: strings.hrc:275
+#: strings.hrc:277
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr ""
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr ""
-#: strings.hrc:277
+#: strings.hrc:279
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr ""
-#: strings.hrc:279
+#: strings.hrc:281
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr ""
-#: strings.hrc:281
+#: strings.hrc:283
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: strings.hrc:283
+#: strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: strings.hrc:284
+#: strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on Mac OS X 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: strings.hrc:285
+#: strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: strings.hrc:286
+#: strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: strings.hrc:287
+#: strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: strings.hrc:288
+#: strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr ""
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr ""
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr ""
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr ""
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr ""
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr ""
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
-msgstr ""
+msgstr "Адырқәа рбаза атаблица"
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr ""
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr ""
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr ""
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr ""
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr ""
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
-#: strings.hrc:306
+#: strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr ""
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr ""
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr ""
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr ""
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr ""
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr ""
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr ""
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr ""
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr ""
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr ""
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr ""
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr ""
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr ""
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Аформула"
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr ""
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: strings.hrc:328
+#: strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr ""
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr ""
-#: strings.hrc:330
+#: strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr ""
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr ""
-#: strings.hrc:332
+#: strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr ""
-#: strings.hrc:333
+#: strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr ""
-#: strings.hrc:334
+#: strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
-#: strings.hrc:335
+#: strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 аформула"
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
-#: strings.hrc:343
+#: strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr ""
-#: strings.hrc:344
+#: strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr ""
-#: strings.hrc:345
+#: strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument аформула"
-#: strings.hrc:346
+#: strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr ""
-#: strings.hrc:347
+#: strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr ""
-#: strings.hrc:348
+#: strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr ""
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr ""
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr ""
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr ""
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr ""
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "Mythes Thesaurus"
msgstr ""
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index 66f67f9a92c..daae00171a8 100644
--- a/source/ab/svx/messages.po
+++ b/source/ab/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-24 14:55+0100\n"
-"PO-Revision-Date: 2017-11-18 10:37+0000\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"PO-Revision-Date: 2017-11-29 16:23+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511001469.000000\n"
+"X-POOTLE-MTIME: 1511972597.000000\n"
#: fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -280,6 +280,173 @@ msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr ""
+#: numberingtype.hrc:29
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "None"
+msgstr ""
+
+#. SVX_NUM_NUMBER_NONE
+#: numberingtype.hrc:30
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Bullet"
+msgstr ""
+
+#. SVX_NUM_CHAR_SPECIAL
+#: numberingtype.hrc:31
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Graphics"
+msgstr ""
+
+#. SVX_NUM_BITMAP
+#: numberingtype.hrc:32
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Linked graphics"
+msgstr ""
+
+#. SVX_NUM_BITMAP|0x80
+#: numberingtype.hrc:33
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "1, 2, 3, ..."
+msgstr ""
+
+#. SVX_NUM_ARABIC
+#: numberingtype.hrc:34
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "A, B, C, ..."
+msgstr ""
+
+#. SVX_NUM_CHARS_UPPER_LETTER
+#: numberingtype.hrc:35
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "a, b, c, ..."
+msgstr ""
+
+#. SVX_NUM_CHARS_LOWER_LETTER
+#: numberingtype.hrc:36
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "I, II, III, ..."
+msgstr ""
+
+#. SVX_NUM_ROMAN_UPPER
+#: numberingtype.hrc:37
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "i, ii, iii, ..."
+msgstr ""
+
+#. SVX_NUM_ROMAN_LOWER
+#: numberingtype.hrc:38
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "A, .., AA, .., AAA, ..."
+msgstr ""
+
+#. SVX_NUM_CHARS_UPPER_LETTER_N
+#: numberingtype.hrc:39
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "a, .., aa, .., aaa, ..."
+msgstr ""
+
+#. SVX_NUM_CHARS_LOWER_LETTER_N
+#: numberingtype.hrc:40
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Native Numbering"
+msgstr ""
+
+#. NATIVE_NUMBERING
+#: numberingtype.hrc:41
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_BG
+#: numberingtype.hrc:42
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, аб, ... (Bulgarian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_BG
+#: numberingtype.hrc:43
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_N_BG
+#: numberingtype.hrc:44
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, бб, ... (Bulgarian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_N_BG
+#: numberingtype.hrc:45
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Аб, ... (Russian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_RU
+#: numberingtype.hrc:46
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, аб, ... (Russian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_RU
+#: numberingtype.hrc:47
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Бб, ... (Russian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_N_RU
+#: numberingtype.hrc:48
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, бб, ... (Russian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_N_RU
+#: numberingtype.hrc:49
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Аб, ... (Serbian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_SR
+#: numberingtype.hrc:50
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, аб, ... (Serbian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_SR
+#: numberingtype.hrc:51
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Бб, ... (Serbian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_N_SR
+#: numberingtype.hrc:52
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, бб, ... (Serbian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_N_SR
+#: numberingtype.hrc:53
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Α, Β, Γ, ... (Greek Upper Letter)"
+msgstr ""
+
+#. CHARS_GREEK_UPPER_LETTER
+#: numberingtype.hrc:54
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "α, β, γ, ... (Greek Lower Letter)"
+msgstr ""
+
+#. CHARS_GREEK_LOWER_LETTER
+#: numberingtype.hrc:55
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "א...י, יא...כ, ..."
+msgstr ""
+
+#. NUMBER_HEBREW
+#: numberingtype.hrc:56
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "א...ת, אא...תת, ..."
+msgstr ""
+
#: samecontent.hrc:18
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "All Pages"
@@ -640,7 +807,7 @@ msgstr ""
#: tabwin.hrc:27
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: tabwin.hrc:28
msgctxt "RID_RSC_TABWIN_PREFIX"
@@ -1565,7 +1732,7 @@ msgstr ""
#: addinstancedialog.ui:146
msgctxt "addinstancedialog|browse"
msgid "_Browse..."
-msgstr ""
+msgstr "_Аҭыҧхәаҧшра..."
#: addinstancedialog.ui:159
msgctxt "addinstancedialog|link"
@@ -3734,7 +3901,7 @@ msgstr ""
#: formnavimenu.ui:12
msgctxt "formnavimenu|new"
msgid "_New"
-msgstr ""
+msgstr "Иаҧҵатәуп"
#: formnavimenu.ui:22
msgctxt "formnavimenu|form"
@@ -4449,7 +4616,7 @@ msgstr ""
#: passwd.ui:229
msgctxt "passwd|label2"
msgid "New Password"
-msgstr ""
+msgstr "Ажәамаӡа ҿыц"
#: presetmenu.ui:12
msgctxt "presetmenu|rename"
@@ -5381,7 +5548,7 @@ msgstr ""
#: sidebarparagraph.ui:26
msgctxt "sidebarparagraph|numberbullet|tooltip_text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Амаркерқәеи аномерркреи"
#: sidebarparagraph.ui:71
msgctxt "sidebarparagraph|horizontalalignment|tooltip_text"
@@ -8114,7 +8281,7 @@ msgstr ""
#: strings.hrc:482
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
-msgstr ""
+msgstr "Иаарҧштәуп амаркерқәа"
#: strings.hrc:483
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
@@ -8129,7 +8296,7 @@ msgstr ""
#: strings.hrc:485
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
-msgstr ""
+msgstr "Амаркерқәеи аномерркреи"
#: strings.hrc:486
msgctxt "SIP_EE_PARA_LRSPACE"
@@ -8365,22 +8532,22 @@ msgstr ""
#: strings.hrc:533
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
-msgstr ""
+msgstr "Атаблица астиль"
#: strings.hrc:534
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
-msgstr ""
+msgstr "Атаблица астиль апараметрқәа"
#: strings.hrc:535
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: strings.hrc:536
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
-msgstr ""
+msgstr "Атаблицақәа"
#: strings.hrc:537
msgctxt "STR_ObjNameSingulFONTWORK"
@@ -8701,2765 +8868,2706 @@ msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr ""
-#. Elements of the Tango color palette
-#: strings.hrc:605
-msgctxt "RID_SVXSTR_COLOR_BUTTERL"
-msgid "Butter Light"
-msgstr ""
-
-#: strings.hrc:606
-msgctxt "RID_SVXSTR_COLOR_BUTTERM"
-msgid "Butter Medium"
-msgstr ""
-
-#: strings.hrc:607
-msgctxt "RID_SVXSTR_COLOR_BUTTERD"
-msgid "Butter Dark"
-msgstr ""
-
-#: strings.hrc:608
-msgctxt "RID_SVXSTR_COLOR_ORANGEL"
-msgid "Orange Light"
-msgstr ""
-
-#: strings.hrc:609
-msgctxt "RID_SVXSTR_COLOR_ORANGEM"
-msgid "Orange Medium"
-msgstr ""
-
-#: strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_ORANGED"
-msgid "Orange Dark"
-msgstr ""
-
-#: strings.hrc:611
-msgctxt "RID_SVXSTR_COLOR_CHOCOLATEL"
-msgid "Chocolate Light"
-msgstr ""
-
-#: strings.hrc:612
-msgctxt "RID_SVXSTR_COLOR_CHOCOLATEM"
-msgid "Chocolate Medium"
-msgstr ""
-
-#: strings.hrc:613
-msgctxt "RID_SVXSTR_COLOR_CHOCOLATED"
-msgid "Chocolate Dark"
-msgstr ""
-
-#: strings.hrc:614
-msgctxt "RID_SVXSTR_COLOR_CHAMELEONL"
-msgid "Chameleon Light"
-msgstr ""
-
-#: strings.hrc:615
-msgctxt "RID_SVXSTR_COLOR_CHAMELEONM"
-msgid "Chameleon Medium"
-msgstr ""
-
-#: strings.hrc:616
-msgctxt "RID_SVXSTR_COLOR_CHAMELEOND"
-msgid "Chameleon Dark"
-msgstr ""
-
-#: strings.hrc:617
-msgctxt "RID_SVXSTR_COLOR_SKYBLUEL"
-msgid "Sky Blue Light"
-msgstr ""
-
-#: strings.hrc:618
-msgctxt "RID_SVXSTR_COLOR_SKYBLUEM"
-msgid "Sky Blue Medium"
-msgstr ""
-
-#: strings.hrc:619
-msgctxt "RID_SVXSTR_COLOR_SKYBLUED"
-msgid "Sky Blue Dark"
-msgstr ""
-
-#: strings.hrc:620
-msgctxt "RID_SVXSTR_COLOR_PLUML"
-msgid "Plum Light"
-msgstr ""
-
-#: strings.hrc:621
-msgctxt "RID_SVXSTR_COLOR_PLUMM"
-msgid "Plum Medium"
-msgstr ""
-
-#: strings.hrc:622
-msgctxt "RID_SVXSTR_COLOR_PLUMD"
-msgid "Plum Dark"
-msgstr ""
-
-#: strings.hrc:623
-msgctxt "RID_SVXSTR_COLOR_SCARLETREDL"
-msgid "Scarlet Red Light"
-msgstr ""
-
-#: strings.hrc:624
-msgctxt "RID_SVXSTR_COLOR_SCARLETREDM"
-msgid "Scarlet Red Medium"
-msgstr ""
-
-#: strings.hrc:625
-msgctxt "RID_SVXSTR_COLOR_SCARLETREDD"
-msgid "Scarlet Red Dark"
-msgstr ""
-
-#: strings.hrc:626
-msgctxt "RID_SVXSTR_COLOR_ALUMINIUM"
-msgid "Aluminium"
-msgstr ""
-
#. Old default color names, probably often used in saved files
-#: strings.hrc:628
+#: strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr ""
-#: strings.hrc:629
+#: strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr ""
-#: strings.hrc:630
+#: strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr ""
-#: strings.hrc:631
+#: strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr ""
-#: strings.hrc:632
+#: strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr ""
-#: strings.hrc:633
+#: strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr ""
-#: strings.hrc:634
+#: strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr ""
-#: strings.hrc:635
+#: strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr ""
-#: strings.hrc:636
+#: strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr ""
-#: strings.hrc:637
+#: strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr ""
-#: strings.hrc:638
+#: strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr ""
-#: strings.hrc:639
+#: strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr ""
-#: strings.hrc:640
+#: strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr ""
-#: strings.hrc:641
+#: strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr ""
-#: strings.hrc:642
+#: strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr ""
-#: strings.hrc:643
+#. 16 old AutoFormat Table Styles
+#: strings.hrc:621
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr ""
-#: strings.hrc:644
+#: strings.hrc:622
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr ""
-#: strings.hrc:645
+#: strings.hrc:623
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr ""
-#: strings.hrc:646
+#: strings.hrc:624
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr ""
-#: strings.hrc:647
+#: strings.hrc:625
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr ""
-#: strings.hrc:648
+#: strings.hrc:626
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr ""
-#: strings.hrc:649
+#: strings.hrc:627
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr ""
-#: strings.hrc:650
+#: strings.hrc:628
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr ""
-#: strings.hrc:651
+#: strings.hrc:629
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr ""
-#: strings.hrc:652
+#: strings.hrc:630
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr ""
-#: strings.hrc:653
+#: strings.hrc:631
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr ""
-#: strings.hrc:654
+#: strings.hrc:632
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr ""
-#: strings.hrc:655
+#: strings.hrc:633
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr ""
-#: strings.hrc:656
+#: strings.hrc:634
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr ""
-#: strings.hrc:657
+#: strings.hrc:635
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr ""
-#: strings.hrc:658
+#: strings.hrc:636
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr ""
-#: strings.hrc:659
+#. 10 new AutoFormat Table Styles since LibreOffice 6.0
+#: strings.hrc:638
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
+msgid "Academic"
+msgstr ""
+
+#: strings.hrc:639
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
+msgid "Box List Blue"
+msgstr ""
+
+#: strings.hrc:640
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
+msgid "Box List Green"
+msgstr ""
+
+#: strings.hrc:641
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
+msgid "Box List Red"
+msgstr ""
+
+#: strings.hrc:642
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
+msgid "Box List Yellow"
+msgstr ""
+
+#: strings.hrc:643
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
+msgid "Elegant"
+msgstr ""
+
+#: strings.hrc:644
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
+msgid "Financial"
+msgstr ""
+
+#: strings.hrc:645
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
+msgid "Simple Grid Columns"
+msgstr ""
+
+#: strings.hrc:646
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
+msgid "Simple Grid Rows"
+msgstr ""
+
+#: strings.hrc:647
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
+msgid "Simple List Shaded"
+msgstr ""
+
+#: strings.hrc:648
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr ""
-#: strings.hrc:660
+#: strings.hrc:649
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr ""
-#: strings.hrc:661
+#: strings.hrc:650
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr ""
-#: strings.hrc:662
+#: strings.hrc:651
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr ""
#. the familiar name for it
-#: strings.hrc:664
+#: strings.hrc:653
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr ""
-#: strings.hrc:665
+#: strings.hrc:654
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr ""
-#: strings.hrc:666
+#: strings.hrc:655
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr ""
-#: strings.hrc:667
+#: strings.hrc:656
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr ""
-#: strings.hrc:668
+#: strings.hrc:657
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr ""
-#: strings.hrc:669
+#: strings.hrc:658
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr ""
-#: strings.hrc:670
+#: strings.hrc:659
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr ""
-#: strings.hrc:671
+#: strings.hrc:660
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr ""
-#: strings.hrc:672
+#: strings.hrc:661
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr ""
-#: strings.hrc:673
+#: strings.hrc:662
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr ""
-#: strings.hrc:674
+#: strings.hrc:663
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr ""
-#: strings.hrc:675
+#: strings.hrc:664
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr ""
-#: strings.hrc:676
+#: strings.hrc:665
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr ""
#. l means left
-#: strings.hrc:678
+#: strings.hrc:667
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr ""
#. r means right
-#: strings.hrc:680
+#: strings.hrc:669
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr ""
#. l means left
-#: strings.hrc:682
+#: strings.hrc:671
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr ""
#. r means right
-#: strings.hrc:684
+#: strings.hrc:673
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr ""
#. l means left
-#: strings.hrc:686
+#: strings.hrc:675
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr ""
#. r means right
-#: strings.hrc:688
+#: strings.hrc:677
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr ""
#. l means left
-#: strings.hrc:690
+#: strings.hrc:679
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr ""
#. r means right
-#: strings.hrc:692
+#: strings.hrc:681
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr ""
-#: strings.hrc:693
+#: strings.hrc:682
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr ""
-#: strings.hrc:694
+#: strings.hrc:683
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr ""
-#: strings.hrc:695
+#: strings.hrc:684
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr ""
-#: strings.hrc:696
+#: strings.hrc:685
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr ""
-#: strings.hrc:697
+#: strings.hrc:686
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr ""
-#: strings.hrc:698
+#: strings.hrc:687
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr ""
-#: strings.hrc:699
+#: strings.hrc:688
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr ""
-#: strings.hrc:700
+#: strings.hrc:689
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr ""
-#: strings.hrc:701
+#: strings.hrc:690
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr ""
-#: strings.hrc:702
+#: strings.hrc:691
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr ""
-#: strings.hrc:703
+#: strings.hrc:692
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr ""
-#: strings.hrc:704
+#: strings.hrc:693
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr ""
-#: strings.hrc:705
+#: strings.hrc:694
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr ""
-#: strings.hrc:706
+#: strings.hrc:695
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr ""
-#: strings.hrc:707
+#: strings.hrc:696
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr ""
-#: strings.hrc:708
+#: strings.hrc:697
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr ""
-#: strings.hrc:709
+#: strings.hrc:698
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr ""
-#: strings.hrc:710
+#: strings.hrc:699
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr ""
-#: strings.hrc:711
+#: strings.hrc:700
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr ""
-#: strings.hrc:712
+#: strings.hrc:701
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr ""
-#: strings.hrc:713
+#: strings.hrc:702
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr ""
-#: strings.hrc:714
+#: strings.hrc:703
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr ""
-#: strings.hrc:715
+#: strings.hrc:704
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr ""
-#: strings.hrc:716
+#: strings.hrc:705
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr ""
-#: strings.hrc:717
+#: strings.hrc:706
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr ""
-#: strings.hrc:718
+#: strings.hrc:707
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr ""
-#: strings.hrc:719
+#: strings.hrc:708
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr ""
-#: strings.hrc:720
+#: strings.hrc:709
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr ""
-#: strings.hrc:721
+#: strings.hrc:710
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr ""
-#: strings.hrc:722
+#: strings.hrc:711
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr ""
-#: strings.hrc:723
+#: strings.hrc:712
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr ""
-#: strings.hrc:724
+#: strings.hrc:713
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr ""
-#: strings.hrc:725
+#: strings.hrc:714
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr ""
-#: strings.hrc:726
+#: strings.hrc:715
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr ""
-#: strings.hrc:727
+#: strings.hrc:716
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr ""
-#: strings.hrc:728
+#: strings.hrc:717
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr ""
-#: strings.hrc:729
+#: strings.hrc:718
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr ""
-#: strings.hrc:730
+#: strings.hrc:719
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr ""
-#: strings.hrc:731
+#: strings.hrc:720
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr ""
-#: strings.hrc:732
+#: strings.hrc:721
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr ""
-#: strings.hrc:733
+#: strings.hrc:722
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr ""
-#: strings.hrc:734
+#: strings.hrc:723
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr ""
-#: strings.hrc:735
+#: strings.hrc:724
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr ""
-#: strings.hrc:736
+#: strings.hrc:725
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr ""
-#: strings.hrc:737
+#: strings.hrc:726
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr ""
-#: strings.hrc:738
+#: strings.hrc:727
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr ""
-#: strings.hrc:739
+#: strings.hrc:728
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr ""
-#: strings.hrc:740
+#: strings.hrc:729
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr ""
-#: strings.hrc:741
+#: strings.hrc:730
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr ""
-#: strings.hrc:742
+#: strings.hrc:731
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr ""
-#: strings.hrc:743
+#: strings.hrc:732
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr ""
-#: strings.hrc:744
+#: strings.hrc:733
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr ""
-#: strings.hrc:745
+#: strings.hrc:734
msgctxt "RID_SVXSTR_GRDT70"
msgid "Tango Green"
msgstr ""
-#: strings.hrc:746
+#: strings.hrc:735
msgctxt "RID_SVXSTR_GRDT71"
msgid "Subtle Tango Green"
msgstr ""
-#: strings.hrc:747
+#: strings.hrc:736
msgctxt "RID_SVXSTR_GRDT72"
msgid "Tango Purple"
msgstr ""
-#: strings.hrc:748
+#: strings.hrc:737
msgctxt "RID_SVXSTR_GRDT73"
msgid "Tango Red"
msgstr ""
-#: strings.hrc:749
+#: strings.hrc:738
msgctxt "RID_SVXSTR_GRDT74"
msgid "Tango Blue"
msgstr ""
-#: strings.hrc:750
+#: strings.hrc:739
msgctxt "RID_SVXSTR_GRDT75"
msgid "Tango Yellow"
msgstr ""
-#: strings.hrc:751
+#: strings.hrc:740
msgctxt "RID_SVXSTR_GRDT76"
msgid "Tango Orange"
msgstr ""
-#: strings.hrc:752
+#: strings.hrc:741
msgctxt "RID_SVXSTR_GRDT77"
msgid "Tango Gray"
msgstr ""
-#: strings.hrc:753
+#: strings.hrc:742
msgctxt "RID_SVXSTR_GRDT78"
msgid "Clay"
msgstr ""
-#: strings.hrc:754
+#: strings.hrc:743
msgctxt "RID_SVXSTR_GRDT79"
msgid "Olive Green"
msgstr ""
-#: strings.hrc:755
+#: strings.hrc:744
msgctxt "RID_SVXSTR_GRDT80"
msgid "Silver"
msgstr ""
-#: strings.hrc:756
+#: strings.hrc:745
msgctxt "RID_SVXSTR_GRDT81"
msgid "Sunburst"
msgstr ""
-#: strings.hrc:757
+#: strings.hrc:746
msgctxt "RID_SVXSTR_GRDT82"
msgid "Brownie"
msgstr ""
-#: strings.hrc:758
+#: strings.hrc:747
msgctxt "RID_SVXSTR_GRDT83"
msgid "Sunset"
msgstr ""
-#: strings.hrc:759
+#: strings.hrc:748
msgctxt "RID_SVXSTR_GRDT84"
msgid "Deep Green"
msgstr ""
-#: strings.hrc:760
+#: strings.hrc:749
msgctxt "RID_SVXSTR_GRDT85"
msgid "Deep Orange"
msgstr ""
-#: strings.hrc:761
+#: strings.hrc:750
msgctxt "RID_SVXSTR_GRDT86"
msgid "Deep Blue"
msgstr ""
-#: strings.hrc:762
+#: strings.hrc:751
msgctxt "RID_SVXSTR_GRDT87"
msgid "Purple Haze"
msgstr ""
-#: strings.hrc:763
+#: strings.hrc:752
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 45 Degrees Wide"
msgstr ""
-#: strings.hrc:764
+#: strings.hrc:753
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 45 Degrees"
msgstr ""
-#: strings.hrc:765
+#: strings.hrc:754
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black -45 Degrees"
msgstr ""
-#: strings.hrc:766
+#: strings.hrc:755
msgctxt "RID_SVXSTR_HATCH3"
msgid "Black 90 Degrees"
msgstr ""
-#: strings.hrc:767
+#: strings.hrc:756
msgctxt "RID_SVXSTR_HATCH4"
msgid "Red Crossed 45 Degrees"
msgstr ""
-#: strings.hrc:768
+#: strings.hrc:757
msgctxt "RID_SVXSTR_HATCH5"
msgid "Red Crossed 0 Degrees"
msgstr ""
-#: strings.hrc:769
+#: strings.hrc:758
msgctxt "RID_SVXSTR_HATCH6"
msgid "Blue Crossed 45 Degrees"
msgstr ""
-#: strings.hrc:770
+#: strings.hrc:759
msgctxt "RID_SVXSTR_HATCH7"
msgid "Blue Crossed 0 Degrees"
msgstr ""
-#: strings.hrc:771
+#: strings.hrc:760
msgctxt "RID_SVXSTR_HATCH8"
msgid "Blue Triple 90 Degrees"
msgstr ""
-#: strings.hrc:772
+#: strings.hrc:761
msgctxt "RID_SVXSTR_HATCH9"
msgid "Black 0 Degrees"
msgstr ""
-#: strings.hrc:773
+#: strings.hrc:762
msgctxt "RID_SVXSTR_HATCH10"
msgid "Hatching"
msgstr ""
-#: strings.hrc:774
+#: strings.hrc:763
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr ""
-#: strings.hrc:775
+#: strings.hrc:764
msgctxt "RID_SVXSTR_BMP1"
msgid "Sky"
msgstr ""
-#: strings.hrc:776
+#: strings.hrc:765
msgctxt "RID_SVXSTR_BMP2"
msgid "Water"
msgstr ""
-#: strings.hrc:777
+#: strings.hrc:766
msgctxt "RID_SVXSTR_BMP3"
msgid "Coarse grained"
msgstr ""
-#: strings.hrc:778
+#: strings.hrc:767
msgctxt "RID_SVXSTR_BMP4"
msgid "Mercury"
msgstr ""
-#: strings.hrc:779
+#: strings.hrc:768
msgctxt "RID_SVXSTR_BMP5"
msgid "Space"
msgstr ""
-#: strings.hrc:780
+#: strings.hrc:769
msgctxt "RID_SVXSTR_BMP6"
msgid "Metal"
msgstr ""
-#: strings.hrc:781
+#: strings.hrc:770
msgctxt "RID_SVXSTR_BMP7"
msgid "Droplets"
msgstr ""
-#: strings.hrc:782
+#: strings.hrc:771
msgctxt "RID_SVXSTR_BMP8"
msgid "Marble"
msgstr ""
-#: strings.hrc:783
+#: strings.hrc:772
msgctxt "RID_SVXSTR_BMP9"
msgid "Linen"
msgstr ""
-#: strings.hrc:784
+#: strings.hrc:773
msgctxt "RID_SVXSTR_BMP10"
msgid "Stone"
msgstr ""
-#: strings.hrc:785
+#: strings.hrc:774
msgctxt "RID_SVXSTR_BMP11"
msgid "Gravel"
msgstr ""
-#: strings.hrc:786
+#: strings.hrc:775
msgctxt "RID_SVXSTR_BMP12"
msgid "Wall"
msgstr ""
-#: strings.hrc:787
+#: strings.hrc:776
msgctxt "RID_SVXSTR_BMP13"
msgid "Brownstone"
msgstr ""
-#: strings.hrc:788
+#: strings.hrc:777
msgctxt "RID_SVXSTR_BMP14"
msgid "Netting"
msgstr ""
-#: strings.hrc:789
+#: strings.hrc:778
msgctxt "RID_SVXSTR_BMP15"
msgid "Leaves"
msgstr ""
-#: strings.hrc:790
+#: strings.hrc:779
msgctxt "RID_SVXSTR_BMP16"
msgid "Artificial Turf"
msgstr ""
-#: strings.hrc:791
+#: strings.hrc:780
msgctxt "RID_SVXSTR_BMP17"
msgid "Daisy"
msgstr ""
-#: strings.hrc:792
+#: strings.hrc:781
msgctxt "RID_SVXSTR_BMP18"
msgid "Orange"
msgstr ""
-#: strings.hrc:793
+#: strings.hrc:782
msgctxt "RID_SVXSTR_BMP19"
msgid "Fiery"
msgstr ""
-#: strings.hrc:794
+#: strings.hrc:783
msgctxt "RID_SVXSTR_BMP20"
msgid "Roses"
msgstr ""
-#: strings.hrc:795
+#: strings.hrc:784
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr ""
-#: strings.hrc:796
+#: strings.hrc:785
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr ""
-#: strings.hrc:797
+#: strings.hrc:786
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr ""
-#: strings.hrc:798
+#: strings.hrc:787
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr ""
-#: strings.hrc:799
+#: strings.hrc:788
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr ""
-#: strings.hrc:800
+#: strings.hrc:789
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr ""
-#: strings.hrc:801
+#: strings.hrc:790
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr ""
-#: strings.hrc:802
+#: strings.hrc:791
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr ""
-#: strings.hrc:803
+#: strings.hrc:792
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr ""
-#: strings.hrc:804
+#: strings.hrc:793
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr ""
-#: strings.hrc:805
+#: strings.hrc:794
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr ""
-#: strings.hrc:806
+#: strings.hrc:795
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr ""
-#: strings.hrc:807
+#: strings.hrc:796
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr ""
-#: strings.hrc:808
+#: strings.hrc:797
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr ""
-#: strings.hrc:809
+#: strings.hrc:798
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr ""
-#: strings.hrc:810
+#: strings.hrc:799
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr ""
-#: strings.hrc:811
+#: strings.hrc:800
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr ""
-#: strings.hrc:812
+#: strings.hrc:801
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr ""
-#: strings.hrc:813
+#: strings.hrc:802
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr ""
-#: strings.hrc:814
+#: strings.hrc:803
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr ""
-#: strings.hrc:815
+#: strings.hrc:804
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr ""
-#: strings.hrc:816
+#: strings.hrc:805
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr ""
-#: strings.hrc:817
+#: strings.hrc:806
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr ""
-#: strings.hrc:818
+#: strings.hrc:807
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr ""
-#: strings.hrc:819
+#: strings.hrc:808
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr ""
-#: strings.hrc:820
+#: strings.hrc:809
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr ""
-#: strings.hrc:821
+#: strings.hrc:810
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr ""
-#: strings.hrc:822
+#: strings.hrc:811
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr ""
-#: strings.hrc:823
+#: strings.hrc:812
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr ""
-#: strings.hrc:824
+#: strings.hrc:813
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr ""
-#: strings.hrc:825
+#: strings.hrc:814
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr ""
-#: strings.hrc:826
+#: strings.hrc:815
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr ""
-#: strings.hrc:827
+#: strings.hrc:816
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr ""
-#: strings.hrc:828
+#: strings.hrc:817
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr ""
-#: strings.hrc:829
+#: strings.hrc:818
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr ""
-#: strings.hrc:830
+#: strings.hrc:819
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr ""
-#: strings.hrc:831
+#: strings.hrc:820
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr ""
-#: strings.hrc:832
+#: strings.hrc:821
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr ""
-#: strings.hrc:833
+#: strings.hrc:822
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr ""
-#: strings.hrc:834
+#: strings.hrc:823
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr ""
-#: strings.hrc:835
+#: strings.hrc:824
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr ""
-#: strings.hrc:836
+#: strings.hrc:825
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr ""
-#: strings.hrc:837
+#: strings.hrc:826
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr ""
-#: strings.hrc:838
+#: strings.hrc:827
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr ""
-#: strings.hrc:839
+#: strings.hrc:828
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr ""
-#: strings.hrc:840
+#: strings.hrc:829
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr ""
-#: strings.hrc:841
+#: strings.hrc:830
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr ""
-#: strings.hrc:842
+#: strings.hrc:831
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr ""
-#: strings.hrc:843
+#: strings.hrc:832
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr ""
-#: strings.hrc:844
+#: strings.hrc:833
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr ""
-#: strings.hrc:845
+#: strings.hrc:834
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr ""
-#: strings.hrc:846
+#: strings.hrc:835
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr ""
-#: strings.hrc:847
+#: strings.hrc:836
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr ""
-#: strings.hrc:848
+#: strings.hrc:837
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr ""
-#: strings.hrc:849
+#: strings.hrc:838
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr ""
-#: strings.hrc:850
+#: strings.hrc:839
msgctxt "RID_SVXSTR_DASH0"
msgid "Ultrafine Dashed"
msgstr ""
-#: strings.hrc:851
+#: strings.hrc:840
msgctxt "RID_SVXSTR_DASH1"
msgid "Fine Dashed"
msgstr ""
-#: strings.hrc:852
+#: strings.hrc:841
msgctxt "RID_SVXSTR_DASH2"
msgid "2 Dots 3 Dashes"
msgstr ""
-#: strings.hrc:853
+#: strings.hrc:842
msgctxt "RID_SVXSTR_DASH3"
msgid "Fine Dotted"
msgstr ""
-#: strings.hrc:854
+#: strings.hrc:843
msgctxt "RID_SVXSTR_DASH4"
msgid "Line with Fine Dots"
msgstr ""
-#: strings.hrc:855
+#: strings.hrc:844
msgctxt "RID_SVXSTR_DASH5"
msgid "Fine Dashed"
msgstr ""
-#: strings.hrc:856
+#: strings.hrc:845
msgctxt "RID_SVXSTR_DASH6"
msgid "3 Dashes 3 Dots"
msgstr ""
-#: strings.hrc:857
+#: strings.hrc:846
msgctxt "RID_SVXSTR_DASH7"
msgid "Ultrafine Dotted"
msgstr ""
-#: strings.hrc:858
+#: strings.hrc:847
msgctxt "RID_SVXSTR_DASH8"
msgid "Line Style 9"
msgstr ""
-#: strings.hrc:859
+#: strings.hrc:848
msgctxt "RID_SVXSTR_DASH9"
msgid "2 Dots 1 Dash"
msgstr ""
-#: strings.hrc:860
+#: strings.hrc:849
msgctxt "RID_SVXSTR_DASH10"
msgid "Dashed"
msgstr ""
-#: strings.hrc:861
+#: strings.hrc:850
msgctxt "RID_SVXSTR_DASH11"
msgid "Dashed"
msgstr ""
-#: strings.hrc:862
+#: strings.hrc:851
msgctxt "RID_SVXSTR_DASH12"
msgid "Line Style"
msgstr ""
-#: strings.hrc:863
+#: strings.hrc:852
msgctxt "RID_SVXSTR_LEND0"
msgid "Arrow concave"
msgstr ""
-#: strings.hrc:864
+#: strings.hrc:853
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr ""
-#: strings.hrc:865
+#: strings.hrc:854
msgctxt "RID_SVXSTR_LEND2"
msgid "Small arrow"
msgstr ""
-#: strings.hrc:866
+#: strings.hrc:855
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension lines"
msgstr ""
-#: strings.hrc:867
+#: strings.hrc:856
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr ""
-#: strings.hrc:868
+#: strings.hrc:857
msgctxt "RID_SVXSTR_LEND5"
msgid "Rounded short arrow"
msgstr ""
-#: strings.hrc:869
+#: strings.hrc:858
msgctxt "RID_SVXSTR_LEND6"
msgid "Symmetric arrow"
msgstr ""
-#: strings.hrc:870
+#: strings.hrc:859
msgctxt "RID_SVXSTR_LEND7"
msgid "Line arrow"
msgstr ""
-#: strings.hrc:871
+#: strings.hrc:860
msgctxt "RID_SVXSTR_LEND8"
msgid "Rounded large arrow"
msgstr ""
-#: strings.hrc:872
+#: strings.hrc:861
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr ""
-#: strings.hrc:873
+#: strings.hrc:862
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr ""
-#: strings.hrc:874
+#: strings.hrc:863
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr ""
-#: strings.hrc:875
+#: strings.hrc:864
msgctxt "RID_SVXSTR_LEND12"
msgid "Short line arrow"
msgstr ""
-#: strings.hrc:876
+#: strings.hrc:865
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr ""
-#: strings.hrc:877
+#: strings.hrc:866
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr ""
-#: strings.hrc:878
+#: strings.hrc:867
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr ""
-#: strings.hrc:879
+#: strings.hrc:868
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr ""
-#: strings.hrc:880
+#: strings.hrc:869
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr ""
-#: strings.hrc:881
+#: strings.hrc:870
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr ""
-#: strings.hrc:882
+#: strings.hrc:871
msgctxt "RID_SVXSTR_LEND19"
msgid "Half circle unfilled"
msgstr ""
-#: strings.hrc:883
+#: strings.hrc:872
msgctxt "RID_SVXSTR_LEND20"
msgid "Arrowhead"
msgstr ""
-#: strings.hrc:884
+#: strings.hrc:873
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr ""
-#: strings.hrc:885
+#: strings.hrc:874
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr ""
-#: strings.hrc:886
+#: strings.hrc:875
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr ""
-#: strings.hrc:887
+#: strings.hrc:876
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr ""
-#: strings.hrc:888
+#: strings.hrc:877
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr ""
-#: strings.hrc:889
+#: strings.hrc:878
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr ""
-#: strings.hrc:890
+#: strings.hrc:879
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr ""
-#: strings.hrc:891
+#: strings.hrc:880
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:894
+#: strings.hrc:883
msgctxt "RID_SVXSTR_COLOR_TANGO_BUTTER"
msgid "Tango: Butter"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:896
+#: strings.hrc:885
msgctxt "RID_SVXSTR_COLOR_TANGO_ORANGE"
msgid "Tango: Orange"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:898
+#: strings.hrc:887
msgctxt "RID_SVXSTR_COLOR_TANGO_CHOCOLATE"
msgid "Tango: Chocolate"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:900
+#: strings.hrc:889
msgctxt "RID_SVXSTR_COLOR_TANGO_CHAMELEON"
msgid "Tango: Chameleon"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:902
+#: strings.hrc:891
msgctxt "RID_SVXSTR_COLOR_TANGO_SKY_BLUE"
msgid "Tango: Sky Blue"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:904
+#: strings.hrc:893
msgctxt "RID_SVXSTR_COLOR_TANGO_PLUM"
msgid "Tango: Plum"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:906
+#: strings.hrc:895
msgctxt "RID_SVXSTR_COLOR_TANGO_SCARLET_RED"
msgid "Tango: Scarlet Red"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:908
+#: strings.hrc:897
msgctxt "RID_SVXSTR_COLOR_TANGO_ALUMINIUM"
msgid "Tango: Aluminium"
msgstr ""
-#: strings.hrc:909
+#: strings.hrc:898
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr ""
-#: strings.hrc:910
+#: strings.hrc:899
msgctxt "RID_SVXSTR_GALLERY_THEMEITEMS"
msgid "Theme Items"
msgstr ""
-#: strings.hrc:911
+#: strings.hrc:900
msgctxt "RID_SVXSTR_GALLERY_PREVIEW"
msgid "Preview"
msgstr ""
-#: strings.hrc:912
+#: strings.hrc:901
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr ""
-#: strings.hrc:913
+#: strings.hrc:902
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr ""
-#: strings.hrc:914
+#: strings.hrc:903
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr ""
-#: strings.hrc:915
+#: strings.hrc:904
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr ""
-#: strings.hrc:916
+#: strings.hrc:905
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr ""
-#: strings.hrc:917
+#: strings.hrc:906
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr ""
-#: strings.hrc:918
+#: strings.hrc:907
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr ""
-#: strings.hrc:919
+#: strings.hrc:908
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr ""
-#: strings.hrc:920
+#: strings.hrc:909
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr ""
-#: strings.hrc:921
+#: strings.hrc:910
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr ""
-#: strings.hrc:923
+#: strings.hrc:912
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr ""
-#: strings.hrc:924
+#: strings.hrc:913
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr ""
#. Strings for the Draw Dialog --------------------------------------------
-#: strings.hrc:927
+#: strings.hrc:916
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr ""
-#: strings.hrc:928
+#: strings.hrc:917
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr ""
-#: strings.hrc:929
+#: strings.hrc:918
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr ""
-#: strings.hrc:930
+#: strings.hrc:919
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr ""
-#: strings.hrc:931
+#: strings.hrc:920
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr ""
#. Language-Strings ------------------------------------------------------
-#: strings.hrc:934
+#: strings.hrc:923
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr ""
-#: strings.hrc:936
+#: strings.hrc:925
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr ""
-#: strings.hrc:937
+#: strings.hrc:926
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
-msgstr ""
+msgstr "Атема ҿыц"
-#: strings.hrc:938
+#: strings.hrc:927
msgctxt "RID_SVXSTR_GALLERY_CREATETHEME"
msgid "New Theme..."
-msgstr ""
+msgstr "Иаҧҵатәуп атема..."
-#: strings.hrc:939
+#: strings.hrc:928
msgctxt "RID_SVXSTR_GALLERY_TITLE"
msgid "Title"
msgstr ""
-#: strings.hrc:940
+#: strings.hrc:929
msgctxt "RID_SVXSTR_GALLERY_ICONVIEW"
msgid "Icon View"
msgstr ""
-#: strings.hrc:941
+#: strings.hrc:930
msgctxt "RID_SVXSTR_GALLERY_LISTVIEW"
msgid "Detailed View"
msgstr ""
-#: strings.hrc:943
+#: strings.hrc:932
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr ""
-#: strings.hrc:944
+#: strings.hrc:933
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr ""
-#: strings.hrc:945
+#: strings.hrc:934
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
-msgstr ""
+msgstr "Амаркерқәа"
-#: strings.hrc:946
+#: strings.hrc:935
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr ""
-#: strings.hrc:947
+#: strings.hrc:936
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr ""
-#: strings.hrc:948
+#: strings.hrc:937
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr ""
-#: strings.hrc:949
+#: strings.hrc:938
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr ""
-#: strings.hrc:950
+#: strings.hrc:939
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr ""
-#: strings.hrc:951
+#: strings.hrc:940
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr ""
-#: strings.hrc:952
+#: strings.hrc:941
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr ""
-#: strings.hrc:953
+#: strings.hrc:942
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr ""
-#: strings.hrc:954
+#: strings.hrc:943
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr ""
-#: strings.hrc:955
+#: strings.hrc:944
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr ""
-#: strings.hrc:956
+#: strings.hrc:945
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr ""
-#: strings.hrc:957
+#: strings.hrc:946
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr ""
-#: strings.hrc:958
+#: strings.hrc:947
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr ""
-#: strings.hrc:959
+#: strings.hrc:948
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr ""
-#: strings.hrc:960
+#: strings.hrc:949
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr ""
-#: strings.hrc:961
+#: strings.hrc:950
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr ""
-#: strings.hrc:962
+#: strings.hrc:951
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr ""
-#: strings.hrc:963
+#: strings.hrc:952
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr ""
-#: strings.hrc:964
+#: strings.hrc:953
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr ""
-#: strings.hrc:965
+#: strings.hrc:954
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr ""
-#: strings.hrc:966
+#: strings.hrc:955
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr ""
-#: strings.hrc:967
+#: strings.hrc:956
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr ""
-#: strings.hrc:968
+#: strings.hrc:957
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr ""
-#: strings.hrc:969
+#: strings.hrc:958
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr ""
-#: strings.hrc:970
+#: strings.hrc:959
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr ""
-#: strings.hrc:971
+#: strings.hrc:960
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr ""
-#: strings.hrc:972
+#: strings.hrc:961
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr ""
-#: strings.hrc:973
+#: strings.hrc:962
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr ""
-#: strings.hrc:974
+#: strings.hrc:963
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr ""
-#: strings.hrc:975
+#: strings.hrc:964
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr ""
-#: strings.hrc:976
+#: strings.hrc:965
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr ""
-#: strings.hrc:977
+#: strings.hrc:966
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr ""
-#: strings.hrc:978
+#: strings.hrc:967
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr ""
-#: strings.hrc:979
+#: strings.hrc:968
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr ""
-#: strings.hrc:981
+#: strings.hrc:970
msgctxt "RID_SVXSTR_ALIGN_LEFT"
msgid "~Left Align"
msgstr ""
-#: strings.hrc:982
+#: strings.hrc:971
msgctxt "RID_SVXSTR_ALIGN_CENTER"
msgid "~Center"
msgstr ""
-#: strings.hrc:983
+#: strings.hrc:972
msgctxt "RID_SVXSTR_ALIGN_RIGHT"
msgid "~Right Align"
msgstr ""
-#: strings.hrc:984
+#: strings.hrc:973
msgctxt "RID_SVXSTR_ALIGN_WORD"
msgid "~Word Justify"
msgstr ""
-#: strings.hrc:985
+#: strings.hrc:974
msgctxt "RID_SVXSTR_ALIGN_STRETCH"
msgid "S~tretch Justify"
msgstr ""
-#: strings.hrc:986
+#: strings.hrc:975
msgctxt "RID_SVXSTR_CHARS_SPACING_VERY_TIGHT"
msgid "~Very Tight"
msgstr ""
-#: strings.hrc:987
+#: strings.hrc:976
msgctxt "RID_SVXSTR_CHARS_SPACING_TIGHT"
msgid "~Tight"
msgstr ""
-#: strings.hrc:988
+#: strings.hrc:977
msgctxt "RID_SVXSTR_CHARS_SPACING_NORMAL"
msgid "~Normal"
msgstr ""
-#: strings.hrc:989
+#: strings.hrc:978
msgctxt "RID_SVXSTR_CHARS_SPACING_LOOSE"
msgid "~Loose"
msgstr ""
-#: strings.hrc:990
+#: strings.hrc:979
msgctxt "RID_SVXSTR_CHARS_SPACING_VERY_LOOSE"
msgid "Very ~Loose"
msgstr ""
-#: strings.hrc:991
+#: strings.hrc:980
msgctxt "RID_SVXSTR_CHARS_SPACING_CUSTOM"
msgid "~Custom..."
msgstr ""
-#: strings.hrc:992
+#: strings.hrc:981
msgctxt "RID_SVXSTR_CHARS_SPACING_KERN_PAIRS"
msgid "~Kern Character Pairs"
msgstr ""
-#: strings.hrc:994
+#: strings.hrc:983
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr ""
-#: strings.hrc:995
+#: strings.hrc:984
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr ""
-#: strings.hrc:996
+#: strings.hrc:985
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr ""
-#: strings.hrc:997
+#: strings.hrc:986
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr ""
-#: strings.hrc:999
+#: strings.hrc:988
msgctxt "RID_SVXSTR_PERSPECTIVE"
msgid "~Perspective"
msgstr ""
-#: strings.hrc:1000
+#: strings.hrc:989
msgctxt "RID_SVXSTR_PARALLEL"
msgid "P~arallel"
msgstr ""
-#: strings.hrc:1001
+#: strings.hrc:990
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr ""
-#: strings.hrc:1002
+#: strings.hrc:991
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr ""
-#: strings.hrc:1003
+#: strings.hrc:992
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr ""
-#: strings.hrc:1004
+#: strings.hrc:993
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr ""
-#: strings.hrc:1005
+#: strings.hrc:994
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr ""
-#: strings.hrc:1006
+#: strings.hrc:995
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr ""
-#: strings.hrc:1007
+#: strings.hrc:996
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr ""
-#: strings.hrc:1008
+#: strings.hrc:997
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr ""
-#: strings.hrc:1009
+#: strings.hrc:998
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr ""
-#: strings.hrc:1010
+#: strings.hrc:999
msgctxt "RID_SVXSTR_BRIGHT"
msgid "~Bright"
msgstr ""
-#: strings.hrc:1011
+#: strings.hrc:1000
msgctxt "RID_SVXSTR_NORMAL"
msgid "~Normal"
msgstr ""
-#: strings.hrc:1012
+#: strings.hrc:1001
msgctxt "RID_SVXSTR_DIM"
msgid "~Dim"
msgstr ""
-#: strings.hrc:1013
+#: strings.hrc:1002
msgctxt "RID_SVXSTR_WIREFRAME"
msgid "~Wire Frame"
msgstr ""
-#: strings.hrc:1014
+#: strings.hrc:1003
msgctxt "RID_SVXSTR_MATTE"
msgid "~Matt"
msgstr ""
-#: strings.hrc:1015
+#: strings.hrc:1004
msgctxt "RID_SVXSTR_PLASTIC"
msgid "~Plastic"
msgstr ""
-#: strings.hrc:1016
+#: strings.hrc:1005
msgctxt "RID_SVXSTR_METAL"
msgid "Me~tal"
msgstr ""
-#: strings.hrc:1017
+#: strings.hrc:1006
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr ""
-#: strings.hrc:1018
+#: strings.hrc:1007
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr ""
-#: strings.hrc:1019
+#: strings.hrc:1008
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr ""
-#: strings.hrc:1020
+#: strings.hrc:1009
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr ""
-#: strings.hrc:1021
+#: strings.hrc:1010
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr ""
-#: strings.hrc:1022
+#: strings.hrc:1011
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr ""
-#: strings.hrc:1023
+#: strings.hrc:1012
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr ""
-#: strings.hrc:1024
+#: strings.hrc:1013
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr ""
-#: strings.hrc:1025
+#: strings.hrc:1014
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr ""
-#: strings.hrc:1026
+#: strings.hrc:1015
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr ""
-#: strings.hrc:1027
+#: strings.hrc:1016
msgctxt "RID_SVXSTR_CUSTOM"
msgid "~Custom..."
msgstr ""
-#: strings.hrc:1028
+#: strings.hrc:1017
msgctxt "RID_SVXSTR_INFINITY"
msgid "~Infinity"
msgstr ""
-#: strings.hrc:1030
+#: strings.hrc:1019
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr ""
-#: strings.hrc:1031
+#: strings.hrc:1020
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr ""
-#: strings.hrc:1032
+#: strings.hrc:1021
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr ""
-#: strings.hrc:1033
+#: strings.hrc:1022
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr ""
-#: strings.hrc:1034
+#: strings.hrc:1023
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr ""
-#: strings.hrc:1035
+#: strings.hrc:1024
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr ""
-#: strings.hrc:1036
+#: strings.hrc:1025
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
-msgstr ""
+msgstr "Еиҭа амаркерқәа..."
-#: strings.hrc:1037
+#: strings.hrc:1026
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr ""
-#: strings.hrc:1038
+#: strings.hrc:1027
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr ""
-#: strings.hrc:1039
+#: strings.hrc:1028
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr ""
-#: strings.hrc:1040
+#: strings.hrc:1029
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr ""
-#: strings.hrc:1041
+#: strings.hrc:1030
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr ""
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: strings.hrc:1043
+#: strings.hrc:1032
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr ""
-#: strings.hrc:1044
+#: strings.hrc:1033
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr ""
-#: strings.hrc:1045
+#: strings.hrc:1034
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr ""
-#: strings.hrc:1046
+#: strings.hrc:1035
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr ""
-#: strings.hrc:1047
+#: strings.hrc:1036
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr ""
-#: strings.hrc:1049
+#: strings.hrc:1038
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr ""
-#: strings.hrc:1050
+#: strings.hrc:1039
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr ""
-#: strings.hrc:1051
+#: strings.hrc:1040
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr ""
-#: strings.hrc:1052
+#: strings.hrc:1041
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr ""
-#: strings.hrc:1053
+#: strings.hrc:1042
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr ""
-#: strings.hrc:1054
+#: strings.hrc:1043
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr ""
-#: strings.hrc:1055
+#: strings.hrc:1044
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr ""
-#: strings.hrc:1056
+#: strings.hrc:1045
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr ""
-#: strings.hrc:1057
+#: strings.hrc:1046
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr ""
-#: strings.hrc:1058
+#: strings.hrc:1047
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr ""
-#: strings.hrc:1059
+#: strings.hrc:1048
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr ""
-#: strings.hrc:1060
+#: strings.hrc:1049
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr ""
-#: strings.hrc:1061
+#: strings.hrc:1050
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr ""
-#: strings.hrc:1063
+#: strings.hrc:1052
msgctxt "RID_SVXFLOAT3D_FAVORITE"
msgid "Favorite"
msgstr ""
-#: strings.hrc:1064
+#: strings.hrc:1053
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr ""
-#: strings.hrc:1065
+#: strings.hrc:1054
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr ""
-#: strings.hrc:1066
+#: strings.hrc:1055
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr ""
-#: strings.hrc:1068
+#: strings.hrc:1057
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr ""
-#: strings.hrc:1069
+#: strings.hrc:1058
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr ""
-#: strings.hrc:1070
+#: strings.hrc:1059
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr ""
-#: strings.hrc:1071
+#: strings.hrc:1060
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr ""
-#: strings.hrc:1072
+#: strings.hrc:1061
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr ""
-#: strings.hrc:1074
+#: strings.hrc:1063
msgctxt "RID_SVXSTR_A11Y_3D_MATERIAL_COLOR"
msgid "3D material color"
msgstr ""
-#: strings.hrc:1075
+#: strings.hrc:1064
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_NONE"
msgid "None"
msgstr ""
-#: strings.hrc:1076
+#: strings.hrc:1065
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_SOLID"
msgid "Solid"
msgstr ""
-#: strings.hrc:1077
+#: strings.hrc:1066
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_HATCH"
msgid "With hatching"
msgstr ""
-#: strings.hrc:1078
+#: strings.hrc:1067
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_GRADIENT"
msgid "Gradient"
msgstr ""
-#: strings.hrc:1079
+#: strings.hrc:1068
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_BITMAP"
msgid "Bitmap"
msgstr ""
-#: strings.hrc:1080
+#: strings.hrc:1069
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr ""
-#: strings.hrc:1081
+#: strings.hrc:1070
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr ""
-#: strings.hrc:1082
+#: strings.hrc:1071
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr ""
#. SvxRectCtl
-#: strings.hrc:1084
+#: strings.hrc:1073
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr ""
-#: strings.hrc:1085
+#: strings.hrc:1074
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr ""
-#: strings.hrc:1086
+#: strings.hrc:1075
msgctxt "RID_SVXSTR_RECTCTL_ACC_ANGL_NAME"
msgid "Angle control"
msgstr ""
-#: strings.hrc:1087
+#: strings.hrc:1076
msgctxt "RID_SVXSTR_RECTCTL_ACC_ANGL_DESCR"
msgid "Selection of a major angle."
msgstr ""
-#: strings.hrc:1088
+#: strings.hrc:1077
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr ""
-#: strings.hrc:1089
+#: strings.hrc:1078
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr ""
-#: strings.hrc:1090
+#: strings.hrc:1079
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr ""
-#: strings.hrc:1091
+#: strings.hrc:1080
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr ""
-#: strings.hrc:1092
+#: strings.hrc:1081
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr ""
-#: strings.hrc:1093
+#: strings.hrc:1082
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr ""
-#: strings.hrc:1094
+#: strings.hrc:1083
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr ""
-#: strings.hrc:1095
+#: strings.hrc:1084
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr ""
-#: strings.hrc:1096
+#: strings.hrc:1085
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr ""
-#: strings.hrc:1097
+#: strings.hrc:1086
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A000"
msgid "0 degrees"
msgstr ""
-#: strings.hrc:1098
+#: strings.hrc:1087
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A045"
msgid "45 degrees"
msgstr ""
-#: strings.hrc:1099
+#: strings.hrc:1088
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A090"
msgid "90 degrees"
msgstr ""
-#: strings.hrc:1100
+#: strings.hrc:1089
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A135"
msgid "135 degrees"
msgstr ""
-#: strings.hrc:1101
+#: strings.hrc:1090
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A180"
msgid "180 degrees"
msgstr ""
-#: strings.hrc:1102
+#: strings.hrc:1091
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A225"
msgid "225 degrees"
msgstr ""
-#: strings.hrc:1103
+#: strings.hrc:1092
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A270"
msgid "270 degrees"
msgstr ""
-#: strings.hrc:1104
+#: strings.hrc:1093
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A315"
msgid "315 degrees"
msgstr ""
#. SvxGraphCtrlAccessibleContext
-#: strings.hrc:1106
+#: strings.hrc:1095
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr ""
-#: strings.hrc:1107
+#: strings.hrc:1096
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr ""
-#: strings.hrc:1108
+#: strings.hrc:1097
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr ""
-#: strings.hrc:1109
+#: strings.hrc:1098
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr ""
#. The space behind is a must.
-#: strings.hrc:1111
+#: strings.hrc:1100
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr ""
-#: strings.hrc:1113
+#: strings.hrc:1102
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr ""
-#: strings.hrc:1114
+#: strings.hrc:1103
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr ""
-#: strings.hrc:1115
+#: strings.hrc:1104
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr ""
-#: strings.hrc:1116
+#: strings.hrc:1105
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr ""
-#: strings.hrc:1117
+#: strings.hrc:1106
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr ""
-#: strings.hrc:1118
+#: strings.hrc:1107
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr ""
-#: strings.hrc:1119
+#: strings.hrc:1108
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr ""
-#: strings.hrc:1120
+#: strings.hrc:1109
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr ""
-#: strings.hrc:1121
+#: strings.hrc:1110
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr ""
-#: strings.hrc:1122
+#: strings.hrc:1111
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr ""
-#: strings.hrc:1123
+#: strings.hrc:1112
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr ""
-#: strings.hrc:1124
+#: strings.hrc:1113
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr ""
-#: strings.hrc:1125
+#: strings.hrc:1114
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr ""
-#: strings.hrc:1126
+#: strings.hrc:1115
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr ""
-#: strings.hrc:1127
+#: strings.hrc:1116
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr ""
-#: strings.hrc:1128
+#: strings.hrc:1117
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr ""
-#: strings.hrc:1129
+#: strings.hrc:1118
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr ""
-#: strings.hrc:1130
+#: strings.hrc:1119
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
"Do you want to continue anyway?"
msgstr ""
-#: strings.hrc:1131
+#: strings.hrc:1120
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr ""
-#: strings.hrc:1132
+#: strings.hrc:1121
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr ""
-#: strings.hrc:1133
+#: strings.hrc:1122
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr ""
-#: strings.hrc:1134
+#: strings.hrc:1123
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr ""
-#: strings.hrc:1135
+#: strings.hrc:1124
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr ""
-#: strings.hrc:1136
+#: strings.hrc:1125
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr ""
-#: strings.hrc:1137
+#: strings.hrc:1126
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr ""
-#: strings.hrc:1138
+#: strings.hrc:1127
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr ""
-#: strings.hrc:1139
+#: strings.hrc:1128
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr ""
-#: strings.hrc:1140
+#: strings.hrc:1129
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr ""
-#: strings.hrc:1141
+#: strings.hrc:1130
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr ""
-#: strings.hrc:1142
+#: strings.hrc:1131
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr ""
-#: strings.hrc:1143
+#: strings.hrc:1132
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr ""
-#: strings.hrc:1144
+#: strings.hrc:1133
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr ""
-#: strings.hrc:1145
+#: strings.hrc:1134
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr ""
-#: strings.hrc:1146
+#: strings.hrc:1135
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr ""
-#: strings.hrc:1147
+#: strings.hrc:1136
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr ""
-#: strings.hrc:1148
+#: strings.hrc:1137
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr ""
-#: strings.hrc:1149
+#: strings.hrc:1138
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr ""
-#: strings.hrc:1150
+#: strings.hrc:1139
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr ""
-#: strings.hrc:1151
+#: strings.hrc:1140
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr ""
-#: strings.hrc:1152
+#: strings.hrc:1141
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr ""
-#: strings.hrc:1153
+#: strings.hrc:1142
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr ""
-#: strings.hrc:1154
+#: strings.hrc:1143
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr ""
-#: strings.hrc:1155
+#: strings.hrc:1144
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr ""
-#: strings.hrc:1156
+#: strings.hrc:1145
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr ""
-#: strings.hrc:1157
+#: strings.hrc:1146
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr ""
-#: strings.hrc:1158
+#: strings.hrc:1147
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr ""
-#: strings.hrc:1159
+#: strings.hrc:1148
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr ""
-#: strings.hrc:1160
+#: strings.hrc:1149
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr ""
-#: strings.hrc:1161
+#: strings.hrc:1150
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr ""
-#: strings.hrc:1162
+#: strings.hrc:1151
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr ""
-#: strings.hrc:1163
+#: strings.hrc:1152
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr ""
-#: strings.hrc:1164
+#: strings.hrc:1153
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr ""
-#: strings.hrc:1165
+#: strings.hrc:1154
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr ""
-#: strings.hrc:1166
+#: strings.hrc:1155
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr ""
-#: strings.hrc:1167
+#: strings.hrc:1156
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr ""
-#: strings.hrc:1168
+#: strings.hrc:1157
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr ""
-#: strings.hrc:1169
+#: strings.hrc:1158
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr ""
-#: strings.hrc:1170
+#: strings.hrc:1159
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr ""
-#: strings.hrc:1171
+#: strings.hrc:1160
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr ""
-#: strings.hrc:1172
+#: strings.hrc:1161
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr ""
-#: strings.hrc:1173
+#: strings.hrc:1162
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr ""
-#: strings.hrc:1174
+#: strings.hrc:1163
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr ""
-#: strings.hrc:1175
+#: strings.hrc:1164
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr ""
-#: strings.hrc:1176
+#: strings.hrc:1165
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr ""
-#: strings.hrc:1177
+#: strings.hrc:1166
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr ""
-#: strings.hrc:1178
+#: strings.hrc:1167
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr ""
-#: strings.hrc:1179
+#: strings.hrc:1168
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr ""
-#: strings.hrc:1180
+#: strings.hrc:1169
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr ""
-#: strings.hrc:1181
+#: strings.hrc:1170
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr ""
-#: strings.hrc:1182
+#: strings.hrc:1171
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr ""
-#: strings.hrc:1183
+#: strings.hrc:1172
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr ""
-#: strings.hrc:1184
+#: strings.hrc:1173
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr ""
-#: strings.hrc:1186
+#: strings.hrc:1175
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
"Do you really want to delete this model?"
msgstr ""
-#: strings.hrc:1187
+#: strings.hrc:1176
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
"Do you really want to delete this instance?"
msgstr ""
-#: strings.hrc:1188
+#: strings.hrc:1177
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
"Do you really want to delete this element?"
msgstr ""
-#: strings.hrc:1189
+#: strings.hrc:1178
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr ""
-#: strings.hrc:1190
+#: strings.hrc:1179
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -11467,7 +11575,7 @@ msgid ""
"Do you really want to delete this submission?"
msgstr ""
-#: strings.hrc:1191
+#: strings.hrc:1180
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -11475,2216 +11583,2216 @@ msgid ""
"Do you really want to delete this binding?"
msgstr ""
-#: strings.hrc:1192
+#: strings.hrc:1181
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr ""
-#: strings.hrc:1193
+#: strings.hrc:1182
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr ""
-#: strings.hrc:1194
+#: strings.hrc:1183
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
-msgstr ""
+msgstr "Ахьӡ «%1» ыҟоуп. Иалышәх даҽа хьӡык."
-#: strings.hrc:1195
+#: strings.hrc:1184
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr ""
-#: strings.hrc:1196
+#: strings.hrc:1185
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr ""
-#: strings.hrc:1197
+#: strings.hrc:1186
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr ""
-#: strings.hrc:1198
+#: strings.hrc:1187
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr ""
-#: strings.hrc:1199
+#: strings.hrc:1188
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr ""
-#: strings.hrc:1200
+#: strings.hrc:1189
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr ""
-#: strings.hrc:1201
+#: strings.hrc:1190
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr ""
-#: strings.hrc:1202
+#: strings.hrc:1191
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr ""
-#: strings.hrc:1203
+#: strings.hrc:1192
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr ""
-#: strings.hrc:1204
+#: strings.hrc:1193
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr ""
-#: strings.hrc:1205
+#: strings.hrc:1194
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr ""
-#: strings.hrc:1206
+#: strings.hrc:1195
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr ""
-#: strings.hrc:1207
+#: strings.hrc:1196
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr ""
-#: strings.hrc:1208
+#: strings.hrc:1197
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr ""
-#: strings.hrc:1209
+#: strings.hrc:1198
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr ""
-#: strings.hrc:1210
+#: strings.hrc:1199
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr ""
-#: strings.hrc:1211
+#: strings.hrc:1200
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr ""
-#: strings.hrc:1212
+#: strings.hrc:1201
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr ""
-#: strings.hrc:1213
+#: strings.hrc:1202
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr ""
-#: strings.hrc:1214
+#: strings.hrc:1203
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr ""
-#: strings.hrc:1215
+#: strings.hrc:1204
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr ""
-#: strings.hrc:1216
+#: strings.hrc:1205
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr ""
-#: strings.hrc:1217
+#: strings.hrc:1206
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr ""
-#: strings.hrc:1218
+#: strings.hrc:1207
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr ""
-#: strings.hrc:1219
+#: strings.hrc:1208
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr ""
-#: strings.hrc:1220
+#: strings.hrc:1209
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr ""
-#: strings.hrc:1221
+#: strings.hrc:1210
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr ""
-#: strings.hrc:1222
+#: strings.hrc:1211
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr ""
-#: strings.hrc:1224
+#: strings.hrc:1213
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr ""
-#: strings.hrc:1226
+#: strings.hrc:1215
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr ""
-#: strings.hrc:1227
+#: strings.hrc:1216
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr ""
-#: strings.hrc:1228
+#: strings.hrc:1217
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr ""
-#: strings.hrc:1229
+#: strings.hrc:1218
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr ""
-#: strings.hrc:1231
+#: strings.hrc:1220
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr ""
-#: strings.hrc:1232
+#: strings.hrc:1221
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr ""
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: strings.hrc:1234
+#: strings.hrc:1223
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr ""
-#: strings.hrc:1235
+#: strings.hrc:1224
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr ""
-#: strings.hrc:1236
+#: strings.hrc:1225
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr ""
-#: strings.hrc:1237
+#: strings.hrc:1226
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you to do not trust this document."
msgstr ""
-#: strings.hrc:1238
+#: strings.hrc:1227
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr ""
-#: strings.hrc:1239
+#: strings.hrc:1228
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr ""
-#: strings.hrc:1240
+#: strings.hrc:1229
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr ""
-#: strings.hrc:1241
+#: strings.hrc:1230
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr ""
-#: strings.hrc:1242
+#: strings.hrc:1231
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr ""
-#: strings.hrc:1243
+#: strings.hrc:1232
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#: strings.hrc:1244
+#: strings.hrc:1233
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
-#: strings.hrc:1245
+#: strings.hrc:1234
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr ""
-#: strings.hrc:1246
+#: strings.hrc:1235
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
-msgstr ""
+msgstr "Ирдуны"
-#: strings.hrc:1247
+#: strings.hrc:1236
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
-msgstr ""
+msgstr "Ирхәыҷны"
-#: strings.hrc:1248
+#: strings.hrc:1237
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr ""
-#: strings.hrc:1249
+#: strings.hrc:1238
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr ""
-#: strings.hrc:1250
+#: strings.hrc:1239
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr ""
-#: strings.hrc:1251
+#: strings.hrc:1240
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr ""
-#: strings.hrc:1252
+#: strings.hrc:1241
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr ""
-#: strings.hrc:1253
+#: strings.hrc:1242
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr ""
-#: strings.hrc:1254
+#: strings.hrc:1243
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr ""
-#: strings.hrc:1255
+#: strings.hrc:1244
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr ""
-#: strings.hrc:1256
+#: strings.hrc:1245
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr ""
-#: strings.hrc:1257
+#: strings.hrc:1246
msgctxt "RID_SIDEBAR_EMPTY_PANEL_TEXT"
msgid "Properties for the task that you are performing are not available for the current selection"
msgstr ""
-#: strings.hrc:1259
+#: strings.hrc:1248
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr ""
-#: strings.hrc:1260
+#: strings.hrc:1249
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr ""
-#: strings.hrc:1261
+#: strings.hrc:1250
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr ""
-#: strings.hrc:1262
+#: strings.hrc:1251
msgctxt "RID_SVXSTR_SEARCH"
msgid "(Search)"
msgstr ""
-#: strings.hrc:1263
+#: strings.hrc:1252
msgctxt "RID_SVXSTR_REPLACE"
msgid "(Replace)"
msgstr ""
-#: strings.hrc:1264
+#: strings.hrc:1253
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr ""
-#: strings.hrc:1265
+#: strings.hrc:1254
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr ""
-#: strings.hrc:1266
+#: strings.hrc:1255
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr ""
-#: strings.hrc:1267
+#: strings.hrc:1256
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr ""
-#: strings.hrc:1269
+#: strings.hrc:1258
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr ""
-#: strings.hrc:1271
+#: strings.hrc:1260
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr ""
-#: strings.hrc:1272
+#: strings.hrc:1261
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr ""
-#: strings.hrc:1274
+#: strings.hrc:1263
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
-msgstr ""
+msgstr "Асанҭыр хәыҷқәа"
-#: strings.hrc:1275
+#: strings.hrc:1264
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
-msgstr ""
+msgstr "Асанҭыр дуқәа"
-#: strings.hrc:1276
+#: strings.hrc:1265
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr ""
-#: strings.hrc:1277
+#: strings.hrc:1266
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr ""
-#: strings.hrc:1278
+#: strings.hrc:1267
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr ""
-#: strings.hrc:1279
+#: strings.hrc:1268
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr ""
-#: strings.hrc:1280
+#: strings.hrc:1269
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Check mark bullets"
msgstr ""
-#: strings.hrc:1281
+#: strings.hrc:1270
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Tick mark bullets"
-msgstr ""
+msgstr "Иазгәаҭатәуп амаркерқәа"
-#: strings.hrc:1282
+#: strings.hrc:1271
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr ""
-#: strings.hrc:1283
+#: strings.hrc:1272
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr ""
-#: strings.hrc:1284
+#: strings.hrc:1273
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr ""
-#: strings.hrc:1285
+#: strings.hrc:1274
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr ""
-#: strings.hrc:1286
+#: strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr ""
-#: strings.hrc:1287
+#: strings.hrc:1276
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr ""
-#: strings.hrc:1288
+#: strings.hrc:1277
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr ""
-#: strings.hrc:1289
+#: strings.hrc:1278
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr ""
-#: strings.hrc:1290
+#: strings.hrc:1279
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr ""
-#: strings.hrc:1291
+#: strings.hrc:1280
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr ""
-#: strings.hrc:1292
+#: strings.hrc:1281
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr ""
-#: strings.hrc:1293
+#: strings.hrc:1282
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr ""
-#: strings.hrc:1294
+#: strings.hrc:1283
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr ""
-#: strings.hrc:1295
+#: strings.hrc:1284
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr ""
-#: strings.hrc:1296
+#: strings.hrc:1285
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr ""
-#: strings.hrc:1297
+#: strings.hrc:1286
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr ""
-#: strings.hrc:1299
+#: strings.hrc:1288
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr ""
-#: strings.hrc:1301
+#: strings.hrc:1290
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr ""
-#: strings.hrc:1303
+#: strings.hrc:1292
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr ""
-#: strings.hrc:1304
+#: strings.hrc:1293
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr ""
-#: strings.hrc:1305
+#: strings.hrc:1294
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr ""
-#: strings.hrc:1306
+#: strings.hrc:1295
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr ""
-#: strings.hrc:1308
+#: strings.hrc:1297
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr ""
-#: strings.hrc:1309
+#: strings.hrc:1298
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr ""
-#: strings.hrc:1310
+#: strings.hrc:1299
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr ""
-#: strings.hrc:1312
+#: strings.hrc:1301
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr ""
-#: strings.hrc:1313
+#: strings.hrc:1302
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr ""
-#: strings.hrc:1314
+#: strings.hrc:1303
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr ""
-#: strings.hrc:1315
+#: strings.hrc:1304
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr ""
-#: strings.hrc:1316
+#: strings.hrc:1305
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr ""
-#: strings.hrc:1317
+#: strings.hrc:1306
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr ""
-#: strings.hrc:1318
+#: strings.hrc:1307
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr ""
-#: strings.hrc:1319
+#: strings.hrc:1308
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr ""
-#: strings.hrc:1320
+#: strings.hrc:1309
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr ""
-#: strings.hrc:1321
+#: strings.hrc:1310
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr ""
-#: strings.hrc:1322
+#: strings.hrc:1311
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr ""
-#: strings.hrc:1323
+#: strings.hrc:1312
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr ""
-#: strings.hrc:1324
+#: strings.hrc:1313
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr ""
-#: strings.hrc:1326
+#: strings.hrc:1315
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr ""
-#: strings.hrc:1328
+#: strings.hrc:1317
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr ""
-#: strings.hrc:1329
+#: strings.hrc:1318
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr ""
-#: strings.hrc:1330
+#: strings.hrc:1319
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr ""
-#: strings.hrc:1331
+#: strings.hrc:1320
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr ""
-#: strings.hrc:1332
+#: strings.hrc:1321
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr ""
-#: strings.hrc:1333
+#: strings.hrc:1322
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr ""
-#: strings.hrc:1334
+#: strings.hrc:1323
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr ""
-#: strings.hrc:1335
+#: strings.hrc:1324
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr ""
-#: strings.hrc:1336
+#: strings.hrc:1325
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr ""
-#: strings.hrc:1338
+#: strings.hrc:1327
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr ""
-#: strings.hrc:1339
+#: strings.hrc:1328
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr ""
-#: strings.hrc:1340
+#: strings.hrc:1329
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr ""
-#: strings.hrc:1341
+#: strings.hrc:1330
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr ""
-#: strings.hrc:1342
+#: strings.hrc:1331
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr ""
-#: strings.hrc:1343
+#: strings.hrc:1332
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr ""
-#: strings.hrc:1344
+#: strings.hrc:1333
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr ""
-#: strings.hrc:1345
+#: strings.hrc:1334
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr ""
-#: strings.hrc:1346
+#: strings.hrc:1335
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr ""
-#: strings.hrc:1347
+#: strings.hrc:1336
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr ""
-#: strings.hrc:1348
+#: strings.hrc:1337
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr ""
-#: strings.hrc:1349
+#: strings.hrc:1338
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr ""
-#: strings.hrc:1350
+#: strings.hrc:1339
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr ""
-#: strings.hrc:1351
+#: strings.hrc:1340
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr ""
-#: strings.hrc:1352
+#: strings.hrc:1341
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr ""
-#: strings.hrc:1353
+#: strings.hrc:1342
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr ""
-#: strings.hrc:1354
+#: strings.hrc:1343
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr ""
-#: strings.hrc:1355
+#: strings.hrc:1344
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr ""
-#: strings.hrc:1356
+#: strings.hrc:1345
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr ""
-#: strings.hrc:1357
+#: strings.hrc:1346
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr ""
-#: strings.hrc:1358
+#: strings.hrc:1347
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr ""
-#: strings.hrc:1359
+#: strings.hrc:1348
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr ""
-#: strings.hrc:1360
+#: strings.hrc:1349
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr ""
-#: strings.hrc:1361
+#: strings.hrc:1350
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr ""
-#: strings.hrc:1362
+#: strings.hrc:1351
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr ""
-#: strings.hrc:1364
+#: strings.hrc:1353
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr ""
#. String for saving modified image (instead of original)
-#: strings.hrc:1367
+#: strings.hrc:1356
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
"Do you want to save the modified version instead ?"
msgstr ""
-#: strings.hrc:1369
+#: strings.hrc:1358
msgctxt "RID_SUBSETMAP"
msgid "Add to favorites"
msgstr ""
-#: strings.hrc:1370
+#: strings.hrc:1359
msgctxt "RID_SUBSETMAP"
msgid "Remove from favorites"
msgstr ""
-#: strings.hrc:1371
+#: strings.hrc:1360
msgctxt "RID_SUBSETMAP"
msgid "Insert into document"
msgstr ""
-#: strings.hrc:1372
+#: strings.hrc:1361
msgctxt "RID_SUBSETMAP"
msgid "Copy to clipboard"
msgstr ""
-#: strings.hrc:1374
+#: strings.hrc:1363
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr ""
-#: strings.hrc:1375
+#: strings.hrc:1364
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr ""
-#: strings.hrc:1376
+#: strings.hrc:1365
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr ""
-#: strings.hrc:1377
+#: strings.hrc:1366
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr ""
-#: strings.hrc:1378
+#: strings.hrc:1367
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr ""
-#: strings.hrc:1379
+#: strings.hrc:1368
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr ""
-#: strings.hrc:1380
+#: strings.hrc:1369
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr ""
-#: strings.hrc:1381
+#: strings.hrc:1370
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr ""
-#: strings.hrc:1382
+#: strings.hrc:1371
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr ""
-#: strings.hrc:1383
+#: strings.hrc:1372
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr ""
-#: strings.hrc:1384
+#: strings.hrc:1373
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr ""
-#: strings.hrc:1385
+#: strings.hrc:1374
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr ""
-#: strings.hrc:1386
+#: strings.hrc:1375
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr ""
-#: strings.hrc:1387
+#: strings.hrc:1376
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr ""
-#: strings.hrc:1388
+#: strings.hrc:1377
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr ""
-#: strings.hrc:1389
+#: strings.hrc:1378
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr ""
-#: strings.hrc:1390
+#: strings.hrc:1379
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr ""
-#: strings.hrc:1391
+#: strings.hrc:1380
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr ""
-#: strings.hrc:1392
+#: strings.hrc:1381
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr ""
-#: strings.hrc:1393
+#: strings.hrc:1382
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr ""
-#: strings.hrc:1394
+#: strings.hrc:1383
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr ""
-#: strings.hrc:1395
+#: strings.hrc:1384
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr ""
-#: strings.hrc:1396
+#: strings.hrc:1385
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr ""
-#: strings.hrc:1397
+#: strings.hrc:1386
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr ""
-#: strings.hrc:1398
+#: strings.hrc:1387
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr ""
-#: strings.hrc:1399
+#: strings.hrc:1388
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr ""
-#: strings.hrc:1400
+#: strings.hrc:1389
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr ""
-#: strings.hrc:1401
+#: strings.hrc:1390
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr ""
-#: strings.hrc:1402
+#: strings.hrc:1391
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr ""
-#: strings.hrc:1403
+#: strings.hrc:1392
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr ""
-#: strings.hrc:1404
+#: strings.hrc:1393
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr ""
-#: strings.hrc:1405
+#: strings.hrc:1394
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr ""
-#: strings.hrc:1406
+#: strings.hrc:1395
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr ""
-#: strings.hrc:1407
+#: strings.hrc:1396
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr ""
-#: strings.hrc:1408
+#: strings.hrc:1397
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr ""
-#: strings.hrc:1409
+#: strings.hrc:1398
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr ""
-#: strings.hrc:1410
+#: strings.hrc:1399
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr ""
-#: strings.hrc:1411
+#: strings.hrc:1400
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr ""
-#: strings.hrc:1412
+#: strings.hrc:1401
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr ""
-#: strings.hrc:1413
+#: strings.hrc:1402
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr ""
-#: strings.hrc:1414
+#: strings.hrc:1403
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr ""
-#: strings.hrc:1415
+#: strings.hrc:1404
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr ""
-#: strings.hrc:1416
+#: strings.hrc:1405
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr ""
-#: strings.hrc:1417
+#: strings.hrc:1406
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr ""
-#: strings.hrc:1418
+#: strings.hrc:1407
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr ""
-#: strings.hrc:1419
+#: strings.hrc:1408
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr ""
-#: strings.hrc:1420
+#: strings.hrc:1409
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr ""
-#: strings.hrc:1421
+#: strings.hrc:1410
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr ""
-#: strings.hrc:1422
+#: strings.hrc:1411
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr ""
-#: strings.hrc:1423
+#: strings.hrc:1412
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr ""
-#: strings.hrc:1424
+#: strings.hrc:1413
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr ""
-#: strings.hrc:1425
+#: strings.hrc:1414
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr ""
-#: strings.hrc:1426
+#: strings.hrc:1415
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr ""
-#: strings.hrc:1427
+#: strings.hrc:1416
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr ""
-#: strings.hrc:1428
+#: strings.hrc:1417
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr ""
-#: strings.hrc:1429
+#: strings.hrc:1418
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr ""
-#: strings.hrc:1430
+#: strings.hrc:1419
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr ""
-#: strings.hrc:1431
+#: strings.hrc:1420
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr ""
-#: strings.hrc:1432
+#: strings.hrc:1421
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr ""
-#: strings.hrc:1433
+#: strings.hrc:1422
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr ""
-#: strings.hrc:1434
+#: strings.hrc:1423
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr ""
-#: strings.hrc:1435
+#: strings.hrc:1424
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr ""
-#: strings.hrc:1436
+#: strings.hrc:1425
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr ""
-#: strings.hrc:1437
+#: strings.hrc:1426
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr ""
-#: strings.hrc:1438
+#: strings.hrc:1427
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr ""
-#: strings.hrc:1439
+#: strings.hrc:1428
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr ""
-#: strings.hrc:1440
+#: strings.hrc:1429
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr ""
-#: strings.hrc:1441
+#: strings.hrc:1430
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr ""
-#: strings.hrc:1442
+#: strings.hrc:1431
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr ""
-#: strings.hrc:1443
+#: strings.hrc:1432
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr ""
-#: strings.hrc:1444
+#: strings.hrc:1433
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr ""
-#: strings.hrc:1445
+#: strings.hrc:1434
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr ""
-#: strings.hrc:1446
+#: strings.hrc:1435
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr ""
-#: strings.hrc:1447
+#: strings.hrc:1436
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr ""
-#: strings.hrc:1448
+#: strings.hrc:1437
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr ""
-#: strings.hrc:1449
+#: strings.hrc:1438
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr ""
-#: strings.hrc:1450
+#: strings.hrc:1439
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr ""
-#: strings.hrc:1451
+#: strings.hrc:1440
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr ""
-#: strings.hrc:1452
+#: strings.hrc:1441
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr ""
-#: strings.hrc:1453
+#: strings.hrc:1442
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr ""
-#: strings.hrc:1454
+#: strings.hrc:1443
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr ""
-#: strings.hrc:1455
+#: strings.hrc:1444
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr ""
-#: strings.hrc:1456
+#: strings.hrc:1445
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr ""
-#: strings.hrc:1457
+#: strings.hrc:1446
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr ""
-#: strings.hrc:1458
+#: strings.hrc:1447
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr ""
-#: strings.hrc:1459
+#: strings.hrc:1448
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr ""
-#: strings.hrc:1460
+#: strings.hrc:1449
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr ""
-#: strings.hrc:1461
+#: strings.hrc:1450
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr ""
-#: strings.hrc:1462
+#: strings.hrc:1451
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr ""
-#: strings.hrc:1463
+#: strings.hrc:1452
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr ""
-#: strings.hrc:1464
+#: strings.hrc:1453
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr ""
-#: strings.hrc:1465
+#: strings.hrc:1454
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr ""
-#: strings.hrc:1466
+#: strings.hrc:1455
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr ""
-#: strings.hrc:1467
+#: strings.hrc:1456
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr ""
-#: strings.hrc:1468
+#: strings.hrc:1457
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr ""
-#: strings.hrc:1469
+#: strings.hrc:1458
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr ""
-#: strings.hrc:1470
+#: strings.hrc:1459
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr ""
-#: strings.hrc:1471
+#: strings.hrc:1460
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr ""
-#: strings.hrc:1472
+#: strings.hrc:1461
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr ""
-#: strings.hrc:1473
+#: strings.hrc:1462
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr ""
-#: strings.hrc:1474
+#: strings.hrc:1463
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr ""
-#: strings.hrc:1475
+#: strings.hrc:1464
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr ""
-#: strings.hrc:1476
+#: strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr ""
-#: strings.hrc:1477
+#: strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr ""
-#: strings.hrc:1478
+#: strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr ""
-#: strings.hrc:1479
+#: strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr ""
-#: strings.hrc:1480
+#: strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr ""
-#: strings.hrc:1481
+#: strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr ""
-#: strings.hrc:1482
+#: strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr ""
-#: strings.hrc:1483
+#: strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr ""
-#: strings.hrc:1484
+#: strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr ""
-#: strings.hrc:1485
+#: strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr ""
-#: strings.hrc:1486
+#: strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr ""
-#: strings.hrc:1487
+#: strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr ""
-#: strings.hrc:1488
+#: strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr ""
-#: strings.hrc:1489
+#: strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr ""
-#: strings.hrc:1490
+#: strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr ""
-#: strings.hrc:1491
+#: strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr ""
-#: strings.hrc:1492
+#: strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr ""
-#: strings.hrc:1493
+#: strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr ""
-#: strings.hrc:1494
+#: strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr ""
-#: strings.hrc:1495
+#: strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr ""
-#: strings.hrc:1496
+#: strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr ""
-#: strings.hrc:1497
+#: strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr ""
-#: strings.hrc:1498
+#: strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr ""
-#: strings.hrc:1499
+#: strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr ""
-#: strings.hrc:1500
+#: strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr ""
-#: strings.hrc:1501
+#: strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr ""
-#: strings.hrc:1502
+#: strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr ""
-#: strings.hrc:1503
+#: strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr ""
-#: strings.hrc:1504
+#: strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr ""
-#: strings.hrc:1505
+#: strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr ""
-#: strings.hrc:1506
+#: strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr ""
-#: strings.hrc:1507
+#: strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr ""
-#: strings.hrc:1508
+#: strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr ""
-#: strings.hrc:1509
+#: strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr ""
-#: strings.hrc:1510
+#: strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr ""
-#: strings.hrc:1511
+#: strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr ""
-#: strings.hrc:1512
+#: strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr ""
-#: strings.hrc:1513
+#: strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr ""
-#: strings.hrc:1514
+#: strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr ""
-#: strings.hrc:1515
+#: strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr ""
-#: strings.hrc:1516
+#: strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr ""
-#: strings.hrc:1517
+#: strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr ""
-#: strings.hrc:1518
+#: strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr ""
-#: strings.hrc:1519
+#: strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr ""
-#: strings.hrc:1520
+#: strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr ""
-#: strings.hrc:1521
+#: strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr ""
-#: strings.hrc:1522
+#: strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr ""
-#: strings.hrc:1523
+#: strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr ""
-#: strings.hrc:1524
+#: strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr ""
-#: strings.hrc:1525
+#: strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr ""
-#: strings.hrc:1526
+#: strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr ""
-#: strings.hrc:1527
+#: strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr ""
-#: strings.hrc:1528
+#: strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr ""
-#: strings.hrc:1529
+#: strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr ""
-#: strings.hrc:1530
+#: strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr ""
-#: strings.hrc:1531
+#: strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr ""
-#: strings.hrc:1532
+#: strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr ""
-#: strings.hrc:1533
+#: strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr ""
-#: strings.hrc:1534
+#: strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr ""
-#: strings.hrc:1535
+#: strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr ""
-#: strings.hrc:1536
+#: strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr ""
-#: strings.hrc:1537
+#: strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr ""
-#: strings.hrc:1538
+#: strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr ""
-#: strings.hrc:1539
+#: strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr ""
-#: strings.hrc:1540
+#: strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr ""
-#: strings.hrc:1541
+#: strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr ""
-#: strings.hrc:1542
+#: strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr ""
-#: strings.hrc:1543
+#: strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr ""
-#: strings.hrc:1544
+#: strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr ""
-#: strings.hrc:1545
+#: strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr ""
-#: strings.hrc:1546
+#: strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr ""
-#: strings.hrc:1547
+#: strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr ""
-#: strings.hrc:1548
+#: strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr ""
-#: strings.hrc:1549
+#: strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr ""
-#: strings.hrc:1550
+#: strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr ""
-#: strings.hrc:1551
+#: strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr ""
-#: strings.hrc:1552
+#: strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr ""
-#: strings.hrc:1553
+#: strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr ""
-#: strings.hrc:1554
+#: strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr ""
-#: strings.hrc:1555
+#: strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr ""
-#: strings.hrc:1556
+#: strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr ""
-#: strings.hrc:1557
+#: strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr ""
-#: strings.hrc:1558
+#: strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr ""
-#: strings.hrc:1559
+#: strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr ""
-#: strings.hrc:1560
+#: strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr ""
-#: strings.hrc:1561
+#: strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr ""
-#: strings.hrc:1562
+#: strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr ""
-#: strings.hrc:1563
+#: strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr ""
-#: strings.hrc:1564
+#: strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr ""
-#: strings.hrc:1565
+#: strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr ""
-#: strings.hrc:1566
+#: strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr ""
-#: strings.hrc:1567
+#: strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr ""
-#: strings.hrc:1568
+#: strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr ""
-#: strings.hrc:1569
+#: strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr ""
-#: strings.hrc:1570
+#: strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr ""
-#: strings.hrc:1571
+#: strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr ""
-#: strings.hrc:1572
+#: strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr ""
-#: strings.hrc:1573
+#: strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr ""
-#: strings.hrc:1574
+#: strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr ""
-#: strings.hrc:1575
+#: strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr ""
-#: strings.hrc:1576
+#: strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr ""
-#: strings.hrc:1577
+#: strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr ""
-#: strings.hrc:1578
+#: strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr ""
-#: strings.hrc:1579
+#: strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr ""
-#: strings.hrc:1580
+#: strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr ""
-#: strings.hrc:1581
+#: strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr ""
-#: strings.hrc:1582
+#: strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr ""
-#: strings.hrc:1583
+#: strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr ""
-#: strings.hrc:1584
+#: strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr ""
-#: strings.hrc:1585
+#: strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr ""
-#: strings.hrc:1586
+#: strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr ""
-#: strings.hrc:1587
+#: strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr ""
-#: strings.hrc:1588
+#: strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr ""
-#: strings.hrc:1589
+#: strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr ""
-#: strings.hrc:1590
+#: strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr ""
-#: strings.hrc:1591
+#: strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr ""
-#: strings.hrc:1592
+#: strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr ""
-#: strings.hrc:1593
+#: strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr ""
-#: strings.hrc:1594
+#: strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr ""
-#: strings.hrc:1595
+#: strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
-#: strings.hrc:1596
+#: strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
-#: strings.hrc:1597
+#: strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
-#: strings.hrc:1598
+#: strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr ""
-#: strings.hrc:1599
+#: strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
-#: strings.hrc:1600
+#: strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
-#: strings.hrc:1601
+#: strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
-#: strings.hrc:1602
+#: strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
-#: strings.hrc:1603
+#: strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
-#: strings.hrc:1604
+#: strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
-#: strings.hrc:1605
+#: strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr ""
-#: strings.hrc:1606
+#: strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr ""
-#: strings.hrc:1607
+#: strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
-#: strings.hrc:1608
+#: strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
-#: strings.hrc:1609
+#: strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
-#: strings.hrc:1610
+#: strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr ""
-#: strings.hrc:1611
+#: strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
-#: strings.hrc:1612
+#: strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr ""
-#: strings.hrc:1613
+#: strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
-#: strings.hrc:1614
+#: strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr ""
-#: strings.hrc:1615
+#: strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
-#: strings.hrc:1616
+#: strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
-#: strings.hrc:1617
+#: strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
-#: strings.hrc:1618
+#: strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
-#: strings.hrc:1619
+#: strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
-#: strings.hrc:1620
+#: strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
-#: strings.hrc:1621
+#: strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
-#: strings.hrc:1622
+#: strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
-#: strings.hrc:1623
+#: strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
-#: strings.hrc:1624
+#: strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr ""
-#: strings.hrc:1625
+#: strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
-#: strings.hrc:1626
+#: strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
-#: strings.hrc:1627
+#: strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
-#: strings.hrc:1628
+#: strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
-#: strings.hrc:1629
+#: strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
-#: strings.hrc:1630
+#: strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr ""
-#: strings.hrc:1631
+#: strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
-#: strings.hrc:1632
+#: strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
-#: strings.hrc:1633
+#: strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
-#: strings.hrc:1634
+#: strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
-#: strings.hrc:1635
+#: strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
-#: strings.hrc:1636
+#: strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
-#: strings.hrc:1637
+#: strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
-#: strings.hrc:1638
+#: strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
-#: strings.hrc:1639
+#: strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr ""
-#: strings.hrc:1640
+#: strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
-#: strings.hrc:1641
+#: strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
-#: strings.hrc:1642
+#: strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
-#: strings.hrc:1643
+#: strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr ""
-#: strings.hrc:1644
+#: strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Newa"
-msgstr ""
+msgstr "Нева"
-#: strings.hrc:1645
+#: strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr ""
-#: strings.hrc:1646
+#: strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
-#: strings.hrc:1647
+#: strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
-#: strings.hrc:1648
+#: strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr ""
-#: strings.hrc:1649
+#: strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr ""
-#: strings.hrc:1650
+#: strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
-#: strings.hrc:1651
+#: strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
-#: strings.hrc:1652
+#: strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
-#: strings.hrc:1653
+#: strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr ""
-#: strings.hrc:1654
+#: strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index 1623671f6ef..b387699c540 100644
--- a/source/ab/sw/messages.po
+++ b/source/ab/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-18 10:38+0000\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"PO-Revision-Date: 2017-11-29 16:26+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511001498.000000\n"
+"X-POOTLE-MTIME: 1511972804.000000\n"
#: app.hrc:30
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -489,7 +489,7 @@ msgstr ""
#: strings.hrc:31
msgctxt "STR_POOLCHR_BUL_LEVEL"
msgid "Bullets"
-msgstr ""
+msgstr "Ахьӡынҵа амаркерқәа"
#: strings.hrc:32
msgctxt "STR_POOLCHR_INET_NORMAL"
@@ -978,7 +978,7 @@ msgstr ""
#: strings.hrc:132
msgctxt "STR_POOLCOLL_TABLE_HDLN"
msgid "Table Heading"
-msgstr ""
+msgstr "Атаблица ахы"
#: strings.hrc:133
msgctxt "STR_POOLCOLL_FRAME"
@@ -1008,7 +1008,7 @@ msgstr ""
#: strings.hrc:138
msgctxt "STR_POOLCOLL_LABEL_TABLE"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: strings.hrc:139
msgctxt "STR_POOLCOLL_LABEL_FRAME"
@@ -1198,7 +1198,7 @@ msgstr ""
#: strings.hrc:176
msgctxt "STR_POOLCOLL_TOX_TABLES1"
msgid "Table Index 1"
-msgstr ""
+msgstr "Атаблицақәа рыхьӡынҵа 1"
#: strings.hrc:177
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
@@ -1373,480 +1373,400 @@ msgctxt "STR_COLUMN_VALUESET_ITEM4"
msgid "2 columns with different size (left < right)"
msgstr ""
-#. Table styles
+#. Table styles, Writer internal, others are taken from Svx
#: strings.hrc:215
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Style"
msgstr ""
-#: strings.hrc:216
-msgctxt "STR_TABSTYLE_3D"
-msgid "3D"
-msgstr ""
-
#: strings.hrc:217
-msgctxt "STR_TABSTYLE_BLACK1"
-msgid "Black 1"
-msgstr ""
-
-#: strings.hrc:218
-msgctxt "STR_TABSTYLE_BLACK2"
-msgid "Black 2"
-msgstr ""
-
-#: strings.hrc:219
-msgctxt "STR_TABSTYLE_BLUE"
-msgid "Blue"
-msgstr ""
-
-#: strings.hrc:220
-msgctxt "STR_TABSTYLE_BROWN"
-msgid "Brown"
-msgstr ""
-
-#: strings.hrc:221
-msgctxt "STR_TABSTYLE_CURRENCY"
-msgid "Currency"
-msgstr ""
-
-#: strings.hrc:222
-msgctxt "STR_TABSTYLE_CURRENCY_3D"
-msgid "Currency 3D"
-msgstr ""
-
-#: strings.hrc:223
-msgctxt "STR_TABSTYLE_CURRENCY_GRAY"
-msgid "Currency Gray"
-msgstr ""
-
-#: strings.hrc:224
-msgctxt "STR_TABSTYLE_CURRENCY_LAVENDER"
-msgid "Currency Lavender"
-msgstr ""
-
-#: strings.hrc:225
-msgctxt "STR_TABSTYLE_CURRENCY_TURQUOISE"
-msgid "Currency Turquoise"
-msgstr ""
-
-#: strings.hrc:226
-msgctxt "STR_TABSTYLE_GRAY"
-msgid "Gray"
-msgstr ""
-
-#: strings.hrc:227
-msgctxt "STR_TABSTYLE_GREEN"
-msgid "Green"
-msgstr ""
-
-#: strings.hrc:228
-msgctxt "STR_TABSTYLE_LAVENDER"
-msgid "Lavender"
-msgstr ""
-
-#: strings.hrc:229
-msgctxt "STR_TABSTYLE_RED"
-msgid "Red"
-msgstr ""
-
-#: strings.hrc:230
-msgctxt "STR_TABSTYLE_TURQUOISE"
-msgid "Turquoise"
-msgstr ""
-
-#: strings.hrc:231
-msgctxt "STR_TABSTYLE_YELLOW"
-msgid "Yellow"
-msgstr ""
-
-#: strings.hrc:233
msgctxt "STR_PARAGRAPHSTYLEFAMILY"
msgid "Paragraph Styles"
msgstr ""
-#: strings.hrc:234
+#: strings.hrc:218
msgctxt "STR_CHARACTERSTYLEFAMILY"
msgid "Character Styles"
msgstr ""
-#: strings.hrc:235
+#: strings.hrc:219
msgctxt "STR_FRAMESTYLEFAMILY"
msgid "Frame Styles"
msgstr ""
-#: strings.hrc:236
+#: strings.hrc:220
msgctxt "STR_PAGESTYLEFAMILY"
msgid "Page Styles"
msgstr ""
-#: strings.hrc:237
+#: strings.hrc:221
msgctxt "STR_LISTSTYLEFAMILY"
msgid "List Styles"
msgstr ""
-#: strings.hrc:238
+#: strings.hrc:222
msgctxt "STR_TABLESTYLEFAMILY"
msgid "Table Styles"
-msgstr ""
+msgstr "Атаблицақәа рстиль"
-#: strings.hrc:239
+#: strings.hrc:223
msgctxt "STR_ENV_TITLE"
msgid "Envelope"
msgstr ""
-#: strings.hrc:240
+#: strings.hrc:224
msgctxt "STR_LAB_TITLE"
msgid "Labels"
msgstr ""
#. ShortName!!!
-#: strings.hrc:242
+#: strings.hrc:226
msgctxt "STR_HUMAN_SWDOC_NAME"
msgid "Text"
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:227
msgctxt "STR_WRITER_DOCUMENT_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr ""
-#: strings.hrc:244
+#: strings.hrc:228
msgctxt "STR_CANTOPEN"
msgid "Cannot open document."
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:229
msgctxt "STR_CANTCREATE"
msgid "Can't create document."
msgstr ""
-#: strings.hrc:246
+#: strings.hrc:230
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
msgstr ""
-#: strings.hrc:247
+#: strings.hrc:231
msgctxt "STR_LOAD_GLOBAL_DOC"
msgid "Name and Path of Master Document"
msgstr ""
-#: strings.hrc:248
+#: strings.hrc:232
msgctxt "STR_LOAD_HTML_DOC"
msgid "Name and Path of the HTML Document"
msgstr ""
-#: strings.hrc:249
+#: strings.hrc:233
msgctxt "STR_JAVA_EDIT"
msgid "Edit Script"
msgstr ""
-#: strings.hrc:250
+#: strings.hrc:234
msgctxt "STR_REMOVE_WARNING"
msgid "The following characters are not valid and have been removed: "
msgstr ""
-#: strings.hrc:251
+#: strings.hrc:235
msgctxt "STR_BOOKMARK_DEF_NAME"
msgid "Bookmark"
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:236
msgctxt "STR_BOOKMARK_NAME"
msgid "Name"
msgstr ""
-#: strings.hrc:253
+#: strings.hrc:237
msgctxt "STR_BOOKMARK_TEXT"
msgid "Text"
msgstr ""
-#: strings.hrc:254
+#: strings.hrc:238
msgctxt "SW_STR_NONE"
msgid "[None]"
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:239
msgctxt "STR_CAPTION_BEGINNING"
msgid "Start"
msgstr ""
-#: strings.hrc:256
+#: strings.hrc:240
msgctxt "STR_CAPTION_END"
msgid "End"
msgstr ""
-#: strings.hrc:257
+#: strings.hrc:241
msgctxt "STR_CAPTION_ABOVE"
msgid "Above"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:242
msgctxt "STR_CAPTION_BELOW"
msgid "Below"
msgstr ""
-#: strings.hrc:259
+#: strings.hrc:243
msgctxt "SW_STR_READONLY"
msgid "read-only"
msgstr ""
-#: strings.hrc:260
+#: strings.hrc:244
msgctxt "STR_READONLY_PATH"
msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?"
msgstr ""
-#: strings.hrc:261
+#: strings.hrc:245
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr ""
#. Statusbar-titles
-#: strings.hrc:263
+#: strings.hrc:247
msgctxt "STR_STATSTR_W4WREAD"
msgid "Importing document..."
msgstr ""
-#: strings.hrc:264
+#: strings.hrc:248
msgctxt "STR_STATSTR_W4WWRITE"
msgid "Exporting document..."
msgstr ""
-#: strings.hrc:265
+#: strings.hrc:249
msgctxt "STR_STATSTR_SWGWRITE"
msgid "Saving document..."
msgstr ""
-#: strings.hrc:266
+#: strings.hrc:250
msgctxt "STR_STATSTR_REFORMAT"
msgid "Repagination..."
msgstr ""
-#: strings.hrc:267
+#: strings.hrc:251
msgctxt "STR_STATSTR_AUTOFORMAT"
msgid "Formatting document automatically..."
msgstr ""
-#: strings.hrc:268
+#: strings.hrc:252
msgctxt "STR_STATSTR_SEARCH"
msgid "Search..."
msgstr ""
-#: strings.hrc:269
+#: strings.hrc:253
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
msgstr ""
-#: strings.hrc:270
+#: strings.hrc:254
msgctxt "STR_STATSTR_SPELL"
msgid "Spellcheck..."
msgstr ""
-#: strings.hrc:271
+#: strings.hrc:255
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
msgstr ""
-#: strings.hrc:272
+#: strings.hrc:256
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
msgstr ""
-#: strings.hrc:273
+#: strings.hrc:257
msgctxt "STR_STATSTR_TOX_UPDATE"
msgid "Updating Index..."
msgstr ""
-#: strings.hrc:274
+#: strings.hrc:258
msgctxt "STR_STATSTR_SUMMARY"
msgid "Creating abstract..."
msgstr ""
-#: strings.hrc:275
+#: strings.hrc:259
msgctxt "STR_STATSTR_SWGPRTOLENOTIFY"
msgid "Adapt Objects..."
msgstr ""
-#: strings.hrc:276
+#: strings.hrc:260
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
-#: strings.hrc:277
+#: strings.hrc:261
msgctxt "STR_GRAPHIC_DEFNAME"
msgid "Image"
msgstr ""
-#: strings.hrc:278
+#: strings.hrc:262
msgctxt "STR_OBJECT_DEFNAME"
msgid "Object"
msgstr ""
-#: strings.hrc:279
+#: strings.hrc:263
msgctxt "STR_FRAME_DEFNAME"
msgid "Frame"
msgstr ""
-#: strings.hrc:280
+#: strings.hrc:264
msgctxt "STR_SHAPE_DEFNAME"
msgid "Shape"
msgstr ""
-#: strings.hrc:281
+#: strings.hrc:265
msgctxt "STR_REGION_DEFNAME"
msgid "Section"
msgstr ""
-#: strings.hrc:282
+#: strings.hrc:266
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
msgstr ""
-#: strings.hrc:283
+#: strings.hrc:267
msgctxt "STR_EMPTYPAGE"
msgid "blank page"
msgstr ""
-#: strings.hrc:284
+#: strings.hrc:268
msgctxt "STR_ABSTRACT_TITLE"
msgid "Abstract: "
msgstr ""
-#: strings.hrc:285
+#: strings.hrc:269
msgctxt "STR_FDLG_TEMPLATE_NAME"
msgid "separated by: "
msgstr ""
-#: strings.hrc:286
+#: strings.hrc:270
msgctxt "STR_FDLG_OUTLINE_LEVEL"
msgid "Outline: Level "
msgstr ""
-#: strings.hrc:287
+#: strings.hrc:271
msgctxt "STR_FDLG_STYLE"
msgid "Style: "
msgstr ""
-#: strings.hrc:288
+#: strings.hrc:272
msgctxt "STR_PAGEOFFSET"
msgid "Page number: "
msgstr ""
-#: strings.hrc:289
+#: strings.hrc:273
msgctxt "STR_PAGEBREAK"
msgid "Break before new page"
msgstr ""
-#: strings.hrc:290
+#: strings.hrc:274
msgctxt "STR_WESTERN_FONT"
msgid "Western text: "
msgstr ""
-#: strings.hrc:291
+#: strings.hrc:275
msgctxt "STR_CJK_FONT"
msgid "Asian text: "
msgstr ""
-#: strings.hrc:292
+#: strings.hrc:276
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
msgid "Unknown Author"
msgstr ""
-#: strings.hrc:293
+#: strings.hrc:277
msgctxt "STR_DELETE_NOTE_AUTHOR"
msgid "Delete ~All Comments by $1"
msgstr ""
-#: strings.hrc:294
+#: strings.hrc:278
msgctxt "STR_HIDE_NOTE_AUTHOR"
msgid "H~ide All Comments by $1"
msgstr ""
-#: strings.hrc:295
+#: strings.hrc:279
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Outline Numbering"
msgstr ""
-#: strings.hrc:296
+#: strings.hrc:280
msgctxt "STR_STATUSBAR_WORDCOUNT_NO_SELECTION"
msgid "%1 words, %2 characters"
msgstr ""
-#: strings.hrc:297
+#: strings.hrc:281
msgctxt "STR_STATUSBAR_WORDCOUNT"
msgid "%1 words, %2 characters selected"
msgstr ""
-#: strings.hrc:298
+#: strings.hrc:282
msgctxt "STR_CONVERT_TEXT_TABLE"
msgid "Convert Text to Table"
msgstr ""
-#: strings.hrc:299
+#: strings.hrc:283
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr ""
-#: strings.hrc:300
+#: strings.hrc:284
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr ""
-#: strings.hrc:301
+#: strings.hrc:285
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr ""
-#: strings.hrc:302
+#: strings.hrc:286
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "The following AutoFormat entry will be deleted:"
msgstr ""
-#: strings.hrc:303
+#: strings.hrc:287
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr ""
-#: strings.hrc:304
+#: strings.hrc:288
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr ""
-#: strings.hrc:305
+#: strings.hrc:289
msgctxt "STR_JAN"
msgid "Jan"
msgstr ""
-#: strings.hrc:306
+#: strings.hrc:290
msgctxt "STR_FEB"
msgid "Feb"
msgstr ""
-#: strings.hrc:307
+#: strings.hrc:291
msgctxt "STR_MAR"
msgid "Mar"
msgstr ""
-#: strings.hrc:308
+#: strings.hrc:292
msgctxt "STR_NORTH"
msgid "North"
msgstr ""
-#: strings.hrc:309
+#: strings.hrc:293
msgctxt "STR_MID"
msgid "Mid"
msgstr ""
-#: strings.hrc:310
+#: strings.hrc:294
msgctxt "STR_SOUTH"
msgid "South"
msgstr ""
-#: strings.hrc:311
+#: strings.hrc:295
msgctxt "STR_SUM"
msgid "Sum"
msgstr ""
-#: strings.hrc:312
+#: strings.hrc:296
msgctxt "STR_INVALID_AUTOFORMAT_NAME"
msgid ""
"You have entered an invalid name.\n"
@@ -1854,2435 +1774,2435 @@ msgid ""
"Try again using a different name."
msgstr ""
-#: strings.hrc:313
+#: strings.hrc:297
msgctxt "STR_NUMERIC"
msgid "Numeric"
msgstr ""
-#: strings.hrc:314
+#: strings.hrc:298
msgctxt "STR_ROW"
msgid "Rows"
msgstr ""
-#: strings.hrc:315
+#: strings.hrc:299
msgctxt "STR_COL"
msgid "Column"
msgstr ""
-#: strings.hrc:316
+#: strings.hrc:300
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
msgstr ""
-#: strings.hrc:317
+#: strings.hrc:301
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
msgstr ""
-#: strings.hrc:318
+#: strings.hrc:302
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
msgid "Spacing between %1 and %2"
msgstr ""
-#: strings.hrc:319
+#: strings.hrc:303
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
msgstr ""
-#: strings.hrc:320
+#: strings.hrc:304
msgctxt "STR_CAPTION_TABLE"
msgid "%PRODUCTNAME Writer Table"
-msgstr ""
+msgstr "Атаблица %PRODUCTNAME Writer"
-#: strings.hrc:321
+#: strings.hrc:305
msgctxt "STR_CAPTION_FRAME"
msgid "%PRODUCTNAME Writer Frame"
msgstr ""
-#: strings.hrc:322
+#: strings.hrc:306
msgctxt "STR_CAPTION_GRAPHIC"
msgid "%PRODUCTNAME Writer Image"
msgstr ""
-#: strings.hrc:323
+#: strings.hrc:307
msgctxt "STR_CAPTION_OLE"
msgid "Other OLE Objects"
msgstr ""
-#: strings.hrc:324
+#: strings.hrc:308
msgctxt "STR_WRONG_TABLENAME"
msgid "The name of the table must not contain spaces."
msgstr ""
-#: strings.hrc:325
+#: strings.hrc:309
msgctxt "STR_ERR_TABLE_MERGE"
msgid "Selected table cells are too complex to merge."
msgstr ""
-#: strings.hrc:326
+#: strings.hrc:310
msgctxt "STR_SRTERR"
msgid "Cannot sort selection"
msgstr ""
#. Miscellaneous
-#: strings.hrc:329
+#: strings.hrc:313
msgctxt "STR_EVENT_OBJECT_SELECT"
msgid "Click object"
msgstr ""
-#: strings.hrc:330
+#: strings.hrc:314
msgctxt "STR_EVENT_START_INS_GLOSSARY"
msgid "Before inserting AutoText"
msgstr ""
-#: strings.hrc:331
+#: strings.hrc:315
msgctxt "STR_EVENT_END_INS_GLOSSARY"
msgid "After inserting AutoText"
msgstr ""
-#: strings.hrc:332
+#: strings.hrc:316
msgctxt "STR_EVENT_MOUSEOVER_OBJECT"
msgid "Mouse over object"
msgstr ""
-#: strings.hrc:333
+#: strings.hrc:317
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
msgstr ""
-#: strings.hrc:334
+#: strings.hrc:318
msgctxt "STR_EVENT_MOUSEOUT_OBJECT"
msgid "Mouse leaves object"
msgstr ""
-#: strings.hrc:335
+#: strings.hrc:319
msgctxt "STR_EVENT_IMAGE_LOAD"
msgid "Image loaded successfully"
msgstr ""
-#: strings.hrc:336
+#: strings.hrc:320
msgctxt "STR_EVENT_IMAGE_ABORT"
msgid "Image loading terminated"
msgstr ""
-#: strings.hrc:337
+#: strings.hrc:321
msgctxt "STR_EVENT_IMAGE_ERROR"
msgid "Could not load image"
msgstr ""
-#: strings.hrc:338
+#: strings.hrc:322
msgctxt "STR_EVENT_FRM_KEYINPUT_A"
msgid "Input of alphanumeric characters"
msgstr ""
-#: strings.hrc:339
+#: strings.hrc:323
msgctxt "STR_EVENT_FRM_KEYINPUT_NOA"
msgid "Input of non-alphanumeric characters"
msgstr ""
-#: strings.hrc:340
+#: strings.hrc:324
msgctxt "STR_EVENT_FRM_RESIZE"
msgid "Resize frame"
msgstr ""
-#: strings.hrc:341
+#: strings.hrc:325
msgctxt "STR_EVENT_FRM_MOVE"
msgid "Move frame"
msgstr ""
-#: strings.hrc:342
+#: strings.hrc:326
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
msgstr ""
-#: strings.hrc:343
+#: strings.hrc:327
msgctxt "STR_CONTENT_TYPE_TABLE"
msgid "Tables"
-msgstr ""
+msgstr "Атаблицақәа"
-#: strings.hrc:344
+#: strings.hrc:328
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Text frames"
msgstr ""
-#: strings.hrc:345
+#: strings.hrc:329
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
msgstr ""
-#: strings.hrc:346
+#: strings.hrc:330
msgctxt "STR_CONTENT_TYPE_OLE"
msgid "OLE objects"
msgstr ""
-#: strings.hrc:347
+#: strings.hrc:331
msgctxt "STR_CONTENT_TYPE_BOOKMARK"
msgid "Bookmarks"
msgstr ""
-#: strings.hrc:348
+#: strings.hrc:332
msgctxt "STR_CONTENT_TYPE_REGION"
msgid "Sections"
msgstr ""
-#: strings.hrc:349
+#: strings.hrc:333
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
msgstr ""
-#: strings.hrc:350
+#: strings.hrc:334
msgctxt "STR_CONTENT_TYPE_REFERENCE"
msgid "References"
msgstr ""
-#: strings.hrc:351
+#: strings.hrc:335
msgctxt "STR_CONTENT_TYPE_INDEX"
msgid "Indexes"
msgstr ""
-#: strings.hrc:352
+#: strings.hrc:336
msgctxt "STR_CONTENT_TYPE_DRAWOBJECT"
msgid "Drawing objects"
msgstr ""
-#: strings.hrc:353
+#: strings.hrc:337
msgctxt "STR_CONTENT_TYPE_POSTIT"
msgid "Comments"
msgstr ""
-#: strings.hrc:354
+#: strings.hrc:338
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
msgstr ""
-#: strings.hrc:355
+#: strings.hrc:339
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
msgstr ""
-#: strings.hrc:356
+#: strings.hrc:340
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
msgstr ""
-#: strings.hrc:357
+#: strings.hrc:341
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from chapter 1.1. This is the entry for the table of contents."
msgstr ""
-#: strings.hrc:358
+#: strings.hrc:342
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
msgstr ""
-#: strings.hrc:359
+#: strings.hrc:343
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12"
msgid "This is the content from chapter 1.2. This keyword is a main entry."
msgstr ""
-#: strings.hrc:360
+#: strings.hrc:344
msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1"
msgid "Table 1: This is table 1"
-msgstr ""
+msgstr "Атаблица 1: Ари атаблица 1"
-#: strings.hrc:361
+#: strings.hrc:345
msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1"
msgid "Image 1: This is image 1"
msgstr ""
-#: strings.hrc:362
+#: strings.hrc:346
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
msgstr ""
-#: strings.hrc:363
+#: strings.hrc:347
msgctxt "STR_CONTENT_TYPE_SINGLE_TABLE"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
-#: strings.hrc:364
+#: strings.hrc:348
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Text frame"
msgstr ""
-#: strings.hrc:365
+#: strings.hrc:349
msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC"
msgid "Image"
msgstr ""
-#: strings.hrc:366
+#: strings.hrc:350
msgctxt "STR_CONTENT_TYPE_SINGLE_OLE"
msgid "OLE object"
msgstr ""
-#: strings.hrc:367
+#: strings.hrc:351
msgctxt "STR_CONTENT_TYPE_SINGLE_BOOKMARK"
msgid "Bookmark"
msgstr ""
-#: strings.hrc:368
+#: strings.hrc:352
msgctxt "STR_CONTENT_TYPE_SINGLE_REGION"
msgid "Section"
msgstr ""
-#: strings.hrc:369
+#: strings.hrc:353
msgctxt "STR_CONTENT_TYPE_SINGLE_URLFIELD"
msgid "Hyperlink"
msgstr ""
-#: strings.hrc:370
+#: strings.hrc:354
msgctxt "STR_CONTENT_TYPE_SINGLE_REFERENCE"
msgid "Reference"
msgstr ""
-#: strings.hrc:371
+#: strings.hrc:355
msgctxt "STR_CONTENT_TYPE_SINGLE_INDEX"
msgid "Index"
msgstr ""
-#: strings.hrc:372
+#: strings.hrc:356
msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT"
msgid "Comment"
msgstr ""
-#: strings.hrc:373
+#: strings.hrc:357
msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT"
msgid "Draw object"
msgstr ""
-#: strings.hrc:374
+#: strings.hrc:358
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr ""
-#: strings.hrc:375
+#: strings.hrc:359
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr ""
-#: strings.hrc:376
+#: strings.hrc:360
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
"in a different document"
msgstr ""
-#: strings.hrc:377
+#: strings.hrc:361
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr ""
-#: strings.hrc:380
+#: strings.hrc:364
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr ""
-#: strings.hrc:381
+#: strings.hrc:365
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr ""
-#: strings.hrc:382
+#: strings.hrc:366
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr ""
-#: strings.hrc:383
+#: strings.hrc:367
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr ""
-#: strings.hrc:384
+#: strings.hrc:368
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
-msgstr ""
+msgstr "Абзац ҿыц"
-#: strings.hrc:385
+#: strings.hrc:369
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr ""
-#: strings.hrc:386
+#: strings.hrc:370
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "Ихархәатәуп атрибутқәа"
-#: strings.hrc:387
+#: strings.hrc:371
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "Ихархәатәуп астиль: $1"
-#: strings.hrc:388
+#: strings.hrc:372
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr ""
-#: strings.hrc:389
+#: strings.hrc:373
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr ""
-#: strings.hrc:390
+#: strings.hrc:374
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr ""
-#: strings.hrc:391
+#: strings.hrc:375
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr ""
-#: strings.hrc:392
+#: strings.hrc:376
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr ""
-#: strings.hrc:393
+#: strings.hrc:377
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr ""
-#: strings.hrc:394
+#: strings.hrc:378
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr ""
-#: strings.hrc:395
+#: strings.hrc:379
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr ""
-#: strings.hrc:396
+#: strings.hrc:380
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
-msgstr ""
+msgstr "Ибжьаргылатәуп атаблица: $1$2$3"
-#: strings.hrc:397
+#: strings.hrc:381
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr ""
-#: strings.hrc:398
+#: strings.hrc:382
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr ""
-#: strings.hrc:399
+#: strings.hrc:383
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr ""
-#: strings.hrc:400
+#: strings.hrc:384
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr ""
-#: strings.hrc:401
+#: strings.hrc:385
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr ""
-#: strings.hrc:402
+#: strings.hrc:386
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr ""
-#: strings.hrc:403
+#: strings.hrc:387
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr ""
-#: strings.hrc:404
+#: strings.hrc:388
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr ""
-#: strings.hrc:405
+#: strings.hrc:389
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr ""
-#: strings.hrc:406
+#: strings.hrc:390
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr ""
-#: strings.hrc:407
+#: strings.hrc:391
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr ""
-#: strings.hrc:408
+#: strings.hrc:392
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr ""
-#: strings.hrc:409
+#: strings.hrc:393
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr ""
-#: strings.hrc:410
+#: strings.hrc:394
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
-msgstr ""
+msgstr "Атаблица ахы"
-#: strings.hrc:411
+#: strings.hrc:395
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr ""
-#: strings.hrc:412
+#: strings.hrc:396
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr ""
-#: strings.hrc:413
+#: strings.hrc:397
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr ""
-#: strings.hrc:414
+#: strings.hrc:398
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr ""
-#: strings.hrc:415
+#: strings.hrc:399
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr ""
-#: strings.hrc:416
+#: strings.hrc:400
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr ""
-#: strings.hrc:417
+#: strings.hrc:401
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr ""
-#: strings.hrc:418
+#: strings.hrc:402
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr ""
-#: strings.hrc:419
+#: strings.hrc:403
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr ""
-#: strings.hrc:420
+#: strings.hrc:404
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr ""
-#: strings.hrc:421
+#: strings.hrc:405
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr ""
-#: strings.hrc:422
+#: strings.hrc:406
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr ""
-#: strings.hrc:423
+#: strings.hrc:407
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr ""
-#: strings.hrc:424
+#: strings.hrc:408
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr ""
-#: strings.hrc:425
+#: strings.hrc:409
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr ""
-#: strings.hrc:426
+#: strings.hrc:410
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr ""
-#: strings.hrc:427
+#: strings.hrc:411
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr ""
-#: strings.hrc:428
+#: strings.hrc:412
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr ""
-#: strings.hrc:429
+#: strings.hrc:413
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr ""
-#: strings.hrc:430
+#: strings.hrc:414
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr ""
-#: strings.hrc:431
+#: strings.hrc:415
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr ""
-#: strings.hrc:432
+#: strings.hrc:416
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr ""
-#: strings.hrc:433
+#: strings.hrc:417
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr ""
-#: strings.hrc:434
+#: strings.hrc:418
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr ""
-#: strings.hrc:435
+#: strings.hrc:419
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr ""
-#: strings.hrc:436
+#: strings.hrc:420
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr ""
-#: strings.hrc:437
+#: strings.hrc:421
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
-msgstr ""
+msgstr "Еидҵатәуп атаблица"
-#: strings.hrc:438
+#: strings.hrc:422
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr ""
-#: strings.hrc:439
+#: strings.hrc:423
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr ""
-#: strings.hrc:440
+#: strings.hrc:424
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr ""
-#: strings.hrc:441
+#: strings.hrc:425
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr ""
-#: strings.hrc:442
+#: strings.hrc:426
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr ""
-#: strings.hrc:443
+#: strings.hrc:427
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr ""
-#: strings.hrc:444
+#: strings.hrc:428
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr ""
-#: strings.hrc:445
+#: strings.hrc:429
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr ""
-#: strings.hrc:446
+#: strings.hrc:430
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
-msgstr "Ихархәуатәуп атаблица атрибутқәа "
+msgstr "Ихархәуатәуп атаблица атрибутқәа"
-#: strings.hrc:447
+#: strings.hrc:431
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
-msgstr ""
+msgstr "Атаблица автоформат"
-#: strings.hrc:448
+#: strings.hrc:432
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr ""
-#: strings.hrc:449
+#: strings.hrc:433
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr ""
-#: strings.hrc:450
+#: strings.hrc:434
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr ""
-#: strings.hrc:451
+#: strings.hrc:435
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr ""
-#: strings.hrc:452
+#: strings.hrc:436
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr ""
-#: strings.hrc:453
+#: strings.hrc:437
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr ""
-#: strings.hrc:454
+#: strings.hrc:438
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr ""
-#: strings.hrc:455
+#: strings.hrc:439
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr ""
-#: strings.hrc:456
+#: strings.hrc:440
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr ""
-#: strings.hrc:457
+#: strings.hrc:441
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr ""
-#: strings.hrc:458
+#: strings.hrc:442
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
-msgstr ""
+msgstr "Атаблица акопиа ахыхтәуп"
-#: strings.hrc:459
+#: strings.hrc:443
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
-msgstr ""
+msgstr "Атаблица акопиа ахыхтәуп"
-#: strings.hrc:460
+#: strings.hrc:444
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr ""
-#: strings.hrc:461
+#: strings.hrc:445
msgctxt "STR_UNDO_CHAIN"
msgid "Link text frames"
msgstr ""
-#: strings.hrc:462
+#: strings.hrc:446
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink text frames"
msgstr ""
-#: strings.hrc:463
+#: strings.hrc:447
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr ""
-#: strings.hrc:464
+#: strings.hrc:448
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr ""
-#: strings.hrc:465
+#: strings.hrc:449
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "Ианыхтәуп афреим астиль: $1"
-#: strings.hrc:466
+#: strings.hrc:450
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr ""
-#: strings.hrc:467
+#: strings.hrc:451
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr ""
-#: strings.hrc:468
+#: strings.hrc:452
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr ""
-#: strings.hrc:469
+#: strings.hrc:453
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr ""
-#: strings.hrc:470
+#: strings.hrc:454
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr ""
-#: strings.hrc:471
+#: strings.hrc:455
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
-msgstr ""
+msgstr "Атаблица/аиндекс ҧсахуп"
-#: strings.hrc:472
+#: strings.hrc:456
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr ""
-#: strings.hrc:473
+#: strings.hrc:457
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr ""
-#: strings.hrc:474
+#: strings.hrc:458
msgctxt "STR_LDOTS"
msgid "..."
msgstr ""
-#: strings.hrc:475
+#: strings.hrc:459
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr ""
-#: strings.hrc:476
+#: strings.hrc:460
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr ""
-#: strings.hrc:477
+#: strings.hrc:461
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr ""
-#: strings.hrc:478
+#: strings.hrc:462
msgctxt "STR_YIELDS"
msgid "→"
msgstr ""
-#: strings.hrc:479
+#: strings.hrc:463
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr ""
-#: strings.hrc:480
+#: strings.hrc:464
msgctxt "STR_UNDO_TABS"
msgid "$1 tab(s)"
msgstr ""
-#: strings.hrc:481
+#: strings.hrc:465
msgctxt "STR_UNDO_NLS"
msgid "$1 line break(s)"
msgstr ""
-#: strings.hrc:482
+#: strings.hrc:466
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr ""
-#: strings.hrc:483
+#: strings.hrc:467
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr ""
-#: strings.hrc:484
+#: strings.hrc:468
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr ""
-#: strings.hrc:485
+#: strings.hrc:469
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr ""
-#: strings.hrc:486
+#: strings.hrc:470
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr ""
-#: strings.hrc:487
+#: strings.hrc:471
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
-msgstr ""
+msgstr "Атаблица ҧсахуп"
-#: strings.hrc:488
+#: strings.hrc:472
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr ""
-#: strings.hrc:489
+#: strings.hrc:473
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
-#: strings.hrc:490
+#: strings.hrc:474
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr ""
-#: strings.hrc:491
+#: strings.hrc:475
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr ""
-#: strings.hrc:492
+#: strings.hrc:476
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr ""
-#: strings.hrc:493
+#: strings.hrc:477
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr ""
-#: strings.hrc:494
+#: strings.hrc:478
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr ""
-#: strings.hrc:495
+#: strings.hrc:479
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr ""
-#: strings.hrc:496
+#: strings.hrc:480
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr ""
-#: strings.hrc:497
+#: strings.hrc:481
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr ""
-#: strings.hrc:498
+#: strings.hrc:482
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr ""
-#: strings.hrc:499
+#: strings.hrc:483
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr ""
-#: strings.hrc:500
+#: strings.hrc:484
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr ""
-#: strings.hrc:501
+#: strings.hrc:485
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr ""
-#: strings.hrc:502
+#: strings.hrc:486
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr ""
-#: strings.hrc:503
+#: strings.hrc:487
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr ""
-#: strings.hrc:504
+#: strings.hrc:488
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr ""
-#: strings.hrc:505
+#: strings.hrc:489
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr ""
-#: strings.hrc:506
+#: strings.hrc:490
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr ""
-#: strings.hrc:507
+#: strings.hrc:491
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr ""
-#: strings.hrc:508
+#: strings.hrc:492
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr ""
-#: strings.hrc:509
+#: strings.hrc:493
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr ""
-#: strings.hrc:510
+#: strings.hrc:494
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr ""
-#: strings.hrc:511
+#: strings.hrc:495
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr ""
-#: strings.hrc:512
+#: strings.hrc:496
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr ""
-#: strings.hrc:513
+#: strings.hrc:497
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr ""
-#: strings.hrc:514
+#: strings.hrc:498
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr ""
-#: strings.hrc:515
+#: strings.hrc:499
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr ""
-#: strings.hrc:516
+#: strings.hrc:500
msgctxt "STR_FIELD"
msgid "field"
msgstr ""
#. undo: STR_PARAGRAPHS, string.text
-#: strings.hrc:518
+#: strings.hrc:502
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr ""
-#: strings.hrc:519
+#: strings.hrc:503
msgctxt "STR_FRAME"
msgid "frame"
msgstr ""
-#: strings.hrc:520
+#: strings.hrc:504
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr ""
-#: strings.hrc:521
+#: strings.hrc:505
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "аформула"
-#: strings.hrc:522
+#: strings.hrc:506
msgctxt "STR_CHART"
msgid "chart"
msgstr ""
-#: strings.hrc:523
+#: strings.hrc:507
msgctxt "STR_NOTE"
msgid "comment"
msgstr ""
-#: strings.hrc:524
+#: strings.hrc:508
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr ""
-#: strings.hrc:525
+#: strings.hrc:509
msgctxt "STR_SCRIPT"
msgid "script"
msgstr ""
-#: strings.hrc:526
+#: strings.hrc:510
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr ""
-#: strings.hrc:527
+#: strings.hrc:511
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr ""
-#: strings.hrc:528
+#: strings.hrc:512
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr ""
-#: strings.hrc:529
+#: strings.hrc:513
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr ""
-#: strings.hrc:530
+#: strings.hrc:514
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr ""
-#: strings.hrc:531
+#: strings.hrc:515
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
-msgstr ""
+msgstr "атаблица: $1$2$3"
-#: strings.hrc:532
+#: strings.hrc:516
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr ""
-#: strings.hrc:533
+#: strings.hrc:517
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr ""
-#: strings.hrc:534
+#: strings.hrc:518
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr ""
-#: strings.hrc:535
+#: strings.hrc:519
msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
msgid "Change object description of $1"
msgstr ""
-#: strings.hrc:536
+#: strings.hrc:520
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
-msgstr ""
+msgstr "Иаҧҵатәуп атаблица астиль: $1"
-#: strings.hrc:537
+#: strings.hrc:521
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
-msgstr ""
+msgstr "Ианыхтәуп атаблица астиль: $1"
-#: strings.hrc:538
+#: strings.hrc:522
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "Ирҿыцтәуп атаблица астиль: $1"
-#: strings.hrc:539
+#: strings.hrc:523
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
-msgstr ""
+msgstr "Ианыхтәуп атаблица"
-#: strings.hrc:541
+#: strings.hrc:525
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr ""
-#: strings.hrc:542
+#: strings.hrc:526
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr ""
-#: strings.hrc:543
+#: strings.hrc:527
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr ""
-#: strings.hrc:544
+#: strings.hrc:528
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr ""
-#: strings.hrc:545
+#: strings.hrc:529
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr ""
-#: strings.hrc:546
+#: strings.hrc:530
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr ""
-#: strings.hrc:547
+#: strings.hrc:531
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr ""
-#: strings.hrc:548
+#: strings.hrc:532
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr ""
-#: strings.hrc:549
+#: strings.hrc:533
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr ""
-#: strings.hrc:550
+#: strings.hrc:534
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr ""
-#: strings.hrc:551
+#: strings.hrc:535
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr ""
-#: strings.hrc:552
+#: strings.hrc:536
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr ""
-#: strings.hrc:553
+#: strings.hrc:537
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr ""
-#: strings.hrc:554
+#: strings.hrc:538
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr ""
-#: strings.hrc:555
+#: strings.hrc:539
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr ""
-#: strings.hrc:556
+#: strings.hrc:540
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr ""
-#: strings.hrc:557
+#: strings.hrc:541
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr ""
-#: strings.hrc:558
+#: strings.hrc:542
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr ""
-#: strings.hrc:559
+#: strings.hrc:543
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr ""
-#: strings.hrc:560
+#: strings.hrc:544
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr ""
-#: strings.hrc:562
+#: strings.hrc:546
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr ""
-#: strings.hrc:563
+#: strings.hrc:547
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr ""
-#: strings.hrc:564
+#: strings.hrc:548
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr ""
-#: strings.hrc:566
+#: strings.hrc:550
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr ""
-#: strings.hrc:568
+#: strings.hrc:552
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr ""
-#: strings.hrc:569
+#: strings.hrc:553
#, c-format
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr ""
-#: strings.hrc:570
+#: strings.hrc:554
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr ""
-#: strings.hrc:571
+#: strings.hrc:555
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr ""
-#: strings.hrc:572
+#: strings.hrc:556
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr ""
-#: strings.hrc:573
+#: strings.hrc:557
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr ""
-#: strings.hrc:574
+#: strings.hrc:558
msgctxt "STR_STYLE_FAMILY_NUMBERING"
msgid "Numbering"
msgstr ""
-#: strings.hrc:575
+#: strings.hrc:559
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
-#: strings.hrc:576
+#: strings.hrc:560
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr ""
-#: strings.hrc:578
+#: strings.hrc:562
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr ""
-#: strings.hrc:579
+#: strings.hrc:563
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr ""
-#: strings.hrc:580
+#: strings.hrc:564
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr ""
-#: strings.hrc:581
+#: strings.hrc:565
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr ""
-#: strings.hrc:582
+#: strings.hrc:566
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr ""
-#: strings.hrc:583
+#: strings.hrc:567
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr ""
-#: strings.hrc:584
+#: strings.hrc:568
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "P~ictures and other graphic objects"
msgstr ""
-#: strings.hrc:585
+#: strings.hrc:569
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr ""
-#: strings.hrc:586
+#: strings.hrc:570
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr ""
-#: strings.hrc:587
+#: strings.hrc:571
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr ""
-#: strings.hrc:588
+#: strings.hrc:572
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr ""
-#: strings.hrc:589
+#: strings.hrc:573
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr ""
-#: strings.hrc:590
+#: strings.hrc:574
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages"
msgstr ""
-#: strings.hrc:591
+#: strings.hrc:575
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr ""
-#: strings.hrc:592
+#: strings.hrc:576
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr ""
-#: strings.hrc:593
+#: strings.hrc:577
msgctxt "STR_PRINTOPTUI_PRINT"
msgid "Print"
msgstr ""
-#: strings.hrc:594
+#: strings.hrc:578
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr ""
-#: strings.hrc:595
+#: strings.hrc:579
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr ""
-#: strings.hrc:596
+#: strings.hrc:580
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr ""
-#: strings.hrc:597
+#: strings.hrc:581
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr ""
-#: strings.hrc:598
+#: strings.hrc:582
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr ""
-#: strings.hrc:599
+#: strings.hrc:583
msgctxt "STR_PRINTOPTUI_PAGE_SIDES"
msgid "Page sides"
msgstr ""
-#: strings.hrc:600
+#: strings.hrc:584
msgctxt "STR_PRINTOPTUI_ALL_PAGES"
msgid "All pages"
msgstr ""
-#: strings.hrc:601
+#: strings.hrc:585
msgctxt "STR_PRINTOPTUI_BACK_PAGES"
msgid "Back sides / left pages"
msgstr ""
-#: strings.hrc:602
+#: strings.hrc:586
msgctxt "STR_PRINTOPTUI_FONT_PAGES"
msgid "Front sides / right pages"
msgstr ""
-#: strings.hrc:603
+#: strings.hrc:587
msgctxt "STR_PRINTOPTUI_INCLUDE"
msgid "Include"
msgstr ""
-#: strings.hrc:604
+#: strings.hrc:588
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr ""
-#: strings.hrc:605
+#: strings.hrc:589
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr ""
-#: strings.hrc:606
+#: strings.hrc:590
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr ""
-#: strings.hrc:607
+#: strings.hrc:591
msgctxt "STR_PRINTOPTUI_RANGE_COPIES"
msgid "Range and copies"
msgstr ""
-#: strings.hrc:608
+#: strings.hrc:592
msgctxt "STR_PRINTOPTUI_ALLPAGES"
msgid "~All pages"
msgstr ""
-#: strings.hrc:609
+#: strings.hrc:593
msgctxt "STR_PRINTOPTUI_SOMEPAGES"
msgid "Pa~ges"
msgstr ""
-#: strings.hrc:610
+#: strings.hrc:594
msgctxt "STR_PRINTOPTUI_SELECTION"
msgid "~Selection"
msgstr ""
-#: strings.hrc:611
+#: strings.hrc:595
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr ""
-#: strings.hrc:613
+#: strings.hrc:597
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr ""
-#: strings.hrc:614
+#: strings.hrc:598
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "Аҟәыхра"
-#: strings.hrc:615
+#: strings.hrc:599
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "Ихархәатәуп"
-#: strings.hrc:616
+#: strings.hrc:600
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "Аформулақәа рпанель"
-#: strings.hrc:617
+#: strings.hrc:601
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr "Аформула атип"
-#: strings.hrc:618
+#: strings.hrc:602
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "Аформула атеқст"
-#: strings.hrc:620
+#: strings.hrc:604
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr ""
-#: strings.hrc:621
+#: strings.hrc:605
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr ""
-#: strings.hrc:622
+#: strings.hrc:606
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr ""
-#: strings.hrc:623
+#: strings.hrc:607
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
-#: strings.hrc:624
+#: strings.hrc:608
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr ""
-#: strings.hrc:625
+#: strings.hrc:609
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr ""
-#: strings.hrc:626
+#: strings.hrc:610
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr ""
-#: strings.hrc:627
+#: strings.hrc:611
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr ""
-#: strings.hrc:628
+#: strings.hrc:612
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr ""
-#: strings.hrc:629
+#: strings.hrc:613
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr ""
-#: strings.hrc:630
+#: strings.hrc:614
msgctxt "STR_ACTIVE"
msgid "active"
msgstr ""
-#: strings.hrc:631
+#: strings.hrc:615
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr ""
-#: strings.hrc:632
+#: strings.hrc:616
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
-#: strings.hrc:633
+#: strings.hrc:617
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "Ирҿыцтәуп"
-#: strings.hrc:634
+#: strings.hrc:618
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr ""
-#: strings.hrc:635
+#: strings.hrc:619
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr ""
-#: strings.hrc:636
+#: strings.hrc:620
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr ""
-#: strings.hrc:637
+#: strings.hrc:621
msgctxt "STR_INDEX"
msgid "~Index"
msgstr ""
-#: strings.hrc:638
+#: strings.hrc:622
msgctxt "STR_FILE"
msgid "File"
msgstr ""
-#: strings.hrc:639
+#: strings.hrc:623
msgctxt "STR_NEW_FILE"
msgid "New Document"
-msgstr ""
+msgstr "Иаҧҵатәуп адокумент"
-#: strings.hrc:640
+#: strings.hrc:624
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr ""
-#: strings.hrc:641
+#: strings.hrc:625
msgctxt "STR_DELETE"
msgid "Delete"
msgstr ""
-#: strings.hrc:642
+#: strings.hrc:626
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr ""
-#: strings.hrc:643
+#: strings.hrc:627
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
-#: strings.hrc:644
+#: strings.hrc:628
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
-#: strings.hrc:645
+#: strings.hrc:629
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr ""
-#: strings.hrc:646
+#: strings.hrc:630
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr ""
-#: strings.hrc:647
+#: strings.hrc:631
msgctxt "STR_REMOVE_INDEX"
msgid "~Remove Index"
msgstr ""
-#: strings.hrc:648
+#: strings.hrc:632
msgctxt "STR_REMOVE_TBL_PROTECTION"
msgid "~Unprotect"
msgstr ""
-#: strings.hrc:649
+#: strings.hrc:633
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr ""
-#: strings.hrc:650
+#: strings.hrc:634
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr ""
-#: strings.hrc:651
+#: strings.hrc:635
msgctxt "STR_RENAME"
msgid "~Rename"
msgstr ""
-#: strings.hrc:652
+#: strings.hrc:636
msgctxt "STR_READONLY_IDX"
msgid "Read-~only"
msgstr ""
-#: strings.hrc:653
+#: strings.hrc:637
msgctxt "STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
-#: strings.hrc:654
+#: strings.hrc:638
msgctxt "STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
-#: strings.hrc:655
+#: strings.hrc:639
msgctxt "STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
-#: strings.hrc:657
+#: strings.hrc:641
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr ""
-#: strings.hrc:658
+#: strings.hrc:642
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ""
-#: strings.hrc:659
+#: strings.hrc:643
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr ""
-#: strings.hrc:660
+#: strings.hrc:644
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ""
-#: strings.hrc:661
+#: strings.hrc:645
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ""
-#: strings.hrc:662
+#: strings.hrc:646
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ""
#. Error calculator
-#: strings.hrc:665
+#: strings.hrc:649
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr ""
-#: strings.hrc:666
+#: strings.hrc:650
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr ""
-#: strings.hrc:667
+#: strings.hrc:651
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr ""
-#: strings.hrc:668
+#: strings.hrc:652
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr ""
-#: strings.hrc:669
+#: strings.hrc:653
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr ""
-#: strings.hrc:670
+#: strings.hrc:654
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr ""
-#: strings.hrc:671
+#: strings.hrc:655
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr ""
-#: strings.hrc:672
+#: strings.hrc:656
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr ""
-#: strings.hrc:673
+#: strings.hrc:657
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr ""
-#: strings.hrc:674
+#: strings.hrc:658
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr ""
-#: strings.hrc:675
+#: strings.hrc:659
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr ""
-#: strings.hrc:676
+#: strings.hrc:660
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr ""
-#: strings.hrc:677
+#: strings.hrc:661
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr ""
-#: strings.hrc:678
+#: strings.hrc:662
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
-#: strings.hrc:679
+#: strings.hrc:663
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr ""
-#: strings.hrc:680
+#: strings.hrc:664
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr ""
-#: strings.hrc:681
+#: strings.hrc:665
msgctxt "STR_TOC"
msgid "Table of Contents"
-msgstr ""
+msgstr "Ахы"
-#: strings.hrc:682
+#: strings.hrc:666
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr ""
-#: strings.hrc:683
+#: strings.hrc:667
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr ""
-#: strings.hrc:684
+#: strings.hrc:668
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
-msgstr ""
+msgstr "Атаблицақәа рыхьӡынҵа"
-#: strings.hrc:685
+#: strings.hrc:669
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
-msgstr ""
+msgstr "Аобиеқтқәа рыхьӡынҵа"
-#: strings.hrc:686
+#: strings.hrc:670
msgctxt "STR_TOX_ILL"
msgid "Illustration Index"
msgstr ""
-#: strings.hrc:687
+#: strings.hrc:671
#, c-format
msgctxt "STR_LINK_CTRL_CLICK"
msgid "%s-Click to follow link"
msgstr ""
-#: strings.hrc:688
+#: strings.hrc:672
msgctxt "STR_LINK_CLICK"
msgid "Click to follow link"
msgstr ""
#. SubType DocInfo
-#: strings.hrc:690
+#: strings.hrc:674
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr ""
-#: strings.hrc:691
+#: strings.hrc:675
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr ""
-#: strings.hrc:692
+#: strings.hrc:676
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr ""
-#: strings.hrc:693
+#: strings.hrc:677
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr ""
-#: strings.hrc:694
+#: strings.hrc:678
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr ""
-#: strings.hrc:695
+#: strings.hrc:679
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr ""
-#: strings.hrc:696
+#: strings.hrc:680
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr ""
-#: strings.hrc:697
+#: strings.hrc:681
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr ""
-#: strings.hrc:698
+#: strings.hrc:682
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr ""
-#: strings.hrc:699
+#: strings.hrc:683
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr ""
-#: strings.hrc:700
+#: strings.hrc:684
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr ""
-#: strings.hrc:701
+#: strings.hrc:685
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr ""
-#: strings.hrc:702
+#: strings.hrc:686
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr ""
-#: strings.hrc:703
+#: strings.hrc:687
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr ""
-#: strings.hrc:704
+#: strings.hrc:688
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr ""
-#: strings.hrc:705
+#: strings.hrc:689
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr ""
-#: strings.hrc:706
+#: strings.hrc:690
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr ""
-#: strings.hrc:707
+#: strings.hrc:691
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr ""
-#: strings.hrc:708
+#: strings.hrc:692
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr ""
-#: strings.hrc:709
+#: strings.hrc:693
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr ""
-#: strings.hrc:710
+#: strings.hrc:694
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr ""
-#: strings.hrc:711
+#: strings.hrc:695
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr ""
-#: strings.hrc:712
+#: strings.hrc:696
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr ""
-#: strings.hrc:713
+#: strings.hrc:697
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr ""
-#: strings.hrc:714
+#: strings.hrc:698
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr ""
-#: strings.hrc:715
+#: strings.hrc:699
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr ""
-#: strings.hrc:716
+#: strings.hrc:700
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr ""
-#: strings.hrc:717
+#: strings.hrc:701
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "E-mail"
msgstr ""
-#: strings.hrc:718
+#: strings.hrc:702
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr ""
-#: strings.hrc:719
+#: strings.hrc:703
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr ""
-#: strings.hrc:720
+#: strings.hrc:704
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr ""
-#: strings.hrc:721
+#: strings.hrc:705
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr ""
-#: strings.hrc:722
+#: strings.hrc:706
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr ""
-#: strings.hrc:723
+#: strings.hrc:707
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr ""
-#: strings.hrc:724
+#: strings.hrc:708
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr ""
-#: strings.hrc:725
+#: strings.hrc:709
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr ""
-#: strings.hrc:726
+#: strings.hrc:710
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr ""
-#: strings.hrc:727
+#: strings.hrc:711
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr ""
-#: strings.hrc:728
+#: strings.hrc:712
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr ""
-#: strings.hrc:729
+#: strings.hrc:713
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr ""
-#: strings.hrc:730
+#: strings.hrc:714
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr ""
-#: strings.hrc:731
+#: strings.hrc:715
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr ""
-#: strings.hrc:732
+#: strings.hrc:716
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr ""
-#: strings.hrc:733
+#: strings.hrc:717
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr ""
-#: strings.hrc:734
+#: strings.hrc:718
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr ""
-#: strings.hrc:735
+#: strings.hrc:719
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr ""
-#: strings.hrc:736
+#: strings.hrc:720
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr ""
-#: strings.hrc:737
+#: strings.hrc:721
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr ""
-#: strings.hrc:738
+#: strings.hrc:722
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr ""
-#: strings.hrc:739
+#: strings.hrc:723
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr ""
-#: strings.hrc:740
+#: strings.hrc:724
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr ""
-#: strings.hrc:741
+#: strings.hrc:725
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr ""
-#: strings.hrc:742
+#: strings.hrc:726
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr ""
-#: strings.hrc:743
+#: strings.hrc:727
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr ""
-#: strings.hrc:744
+#: strings.hrc:728
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr ""
-#: strings.hrc:745
+#: strings.hrc:729
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr ""
-#: strings.hrc:746
+#: strings.hrc:730
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr ""
-#: strings.hrc:747
+#: strings.hrc:731
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr ""
-#: strings.hrc:748
+#: strings.hrc:732
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr ""
-#: strings.hrc:749
+#: strings.hrc:733
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr ""
-#: strings.hrc:750
+#: strings.hrc:734
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr ""
-#: strings.hrc:751
+#: strings.hrc:735
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr ""
-#: strings.hrc:752
+#: strings.hrc:736
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr ""
-#: strings.hrc:753
+#: strings.hrc:737
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr ""
-#: strings.hrc:754
+#: strings.hrc:738
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr ""
-#: strings.hrc:756
+#: strings.hrc:740
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr ""
-#: strings.hrc:757
+#: strings.hrc:741
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr ""
-#: strings.hrc:758
+#: strings.hrc:742
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr ""
-#: strings.hrc:760
+#: strings.hrc:744
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr ""
-#: strings.hrc:761
+#: strings.hrc:745
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr ""
-#: strings.hrc:762
+#: strings.hrc:746
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr ""
-#: strings.hrc:764
+#: strings.hrc:748
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr ""
-#: strings.hrc:765
+#: strings.hrc:749
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr ""
-#: strings.hrc:766
+#: strings.hrc:750
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr ""
-#: strings.hrc:767
+#: strings.hrc:751
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr ""
-#: strings.hrc:768
+#: strings.hrc:752
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr ""
-#: strings.hrc:769
+#: strings.hrc:753
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr ""
-#: strings.hrc:770
+#: strings.hrc:754
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr ""
-#: strings.hrc:771
+#: strings.hrc:755
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr ""
-#: strings.hrc:773
+#: strings.hrc:757
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr ""
-#: strings.hrc:774
+#: strings.hrc:758
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr ""
-#: strings.hrc:775
+#: strings.hrc:759
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr ""
-#: strings.hrc:776
+#: strings.hrc:760
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr ""
-#: strings.hrc:777
+#: strings.hrc:761
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr ""
-#: strings.hrc:778
+#: strings.hrc:762
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME Writer"
msgstr ""
-#: strings.hrc:779
+#: strings.hrc:763
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image [%PRODUCTNAME Writer]"
msgstr ""
-#: strings.hrc:780
+#: strings.hrc:764
msgctxt "STR_PRIVATEOLE"
msgid "Object [%PRODUCTNAME Writer]"
msgstr ""
-#: strings.hrc:781
+#: strings.hrc:765
msgctxt "STR_DDEFORMAT"
msgid "DDE link"
msgstr ""
-#: strings.hrc:783
+#: strings.hrc:767
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr ""
-#: strings.hrc:784
+#: strings.hrc:768
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr ""
-#: strings.hrc:785
+#: strings.hrc:769
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr ""
-#: strings.hrc:786
+#: strings.hrc:770
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr ""
-#: strings.hrc:787
+#: strings.hrc:771
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr ""
-#: strings.hrc:788
+#: strings.hrc:772
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr ""
-#: strings.hrc:790
+#: strings.hrc:774
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr ""
-#: strings.hrc:791
+#: strings.hrc:775
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr ""
-#: strings.hrc:792
+#: strings.hrc:776
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr ""
-#: strings.hrc:793
+#: strings.hrc:777
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr ""
-#: strings.hrc:794
+#: strings.hrc:778
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr ""
-#: strings.hrc:795
+#: strings.hrc:779
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr ""
-#: strings.hrc:796
+#: strings.hrc:780
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr ""
-#: strings.hrc:797
+#: strings.hrc:781
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr ""
-#: strings.hrc:798
+#: strings.hrc:782
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr ""
-#: strings.hrc:799
+#: strings.hrc:783
msgctxt "ST_TEXT"
msgid "Text"
msgstr ""
-#: strings.hrc:800
+#: strings.hrc:784
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr ""
-#: strings.hrc:801
+#: strings.hrc:785
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr ""
-#: strings.hrc:802
+#: strings.hrc:786
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr ""
-#: strings.hrc:803
+#: strings.hrc:787
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr ""
-#: strings.hrc:804
+#: strings.hrc:788
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr ""
-#: strings.hrc:805
+#: strings.hrc:789
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr ""
-#: strings.hrc:807
+#: strings.hrc:791
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr ""
-#: strings.hrc:808
+#: strings.hrc:792
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: strings.hrc:809
+#: strings.hrc:793
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr ""
-#: strings.hrc:810
+#: strings.hrc:794
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr ""
-#: strings.hrc:811
+#: strings.hrc:795
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr ""
-#: strings.hrc:812
+#: strings.hrc:796
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr ""
-#: strings.hrc:813
+#: strings.hrc:797
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr ""
-#: strings.hrc:814
+#: strings.hrc:798
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr ""
-#: strings.hrc:815
+#: strings.hrc:799
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr ""
-#: strings.hrc:816
+#: strings.hrc:800
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr ""
-#: strings.hrc:817
+#: strings.hrc:801
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr ""
-#: strings.hrc:818
+#: strings.hrc:802
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr ""
-#: strings.hrc:819
+#: strings.hrc:803
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr ""
-#: strings.hrc:820
+#: strings.hrc:804
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by e-mail, %PRODUCTNAME requires information about the e-mail account to be used.\n"
@@ -4290,82 +4210,82 @@ msgid ""
"Do you want to enter e-mail account information now?"
msgstr ""
-#: strings.hrc:821
+#: strings.hrc:805
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr ""
-#: strings.hrc:823
+#: strings.hrc:807
msgctxt "ST_STARTING"
msgid "Select starting document"
msgstr ""
-#: strings.hrc:824
+#: strings.hrc:808
msgctxt "ST_DOCUMENTTYPE"
msgid "Select document type"
msgstr ""
-#: strings.hrc:825
+#: strings.hrc:809
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert address block"
msgstr ""
-#: strings.hrc:826
+#: strings.hrc:810
msgctxt "ST_ADDRESSLIST"
msgid "Select address list"
msgstr ""
-#: strings.hrc:827
+#: strings.hrc:811
msgctxt "ST_GREETINGSLINE"
msgid "Create salutation"
msgstr ""
-#: strings.hrc:828
+#: strings.hrc:812
msgctxt "ST_LAYOUT"
msgid "Adjust layout"
msgstr ""
-#: strings.hrc:829
+#: strings.hrc:813
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr ""
-#: strings.hrc:830
+#: strings.hrc:814
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr ""
-#: strings.hrc:831
+#: strings.hrc:815
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr ""
-#: strings.hrc:833
+#: strings.hrc:817
msgctxt "ST_NAME"
msgid "Name"
msgstr ""
-#: strings.hrc:834
+#: strings.hrc:818
msgctxt "ST_TYPE"
msgid "Type"
msgstr ""
-#: strings.hrc:835
+#: strings.hrc:819
msgctxt "ST_TABLE"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
-#: strings.hrc:836
+#: strings.hrc:820
msgctxt "ST_QUERY"
msgid "Query"
msgstr ""
-#: strings.hrc:838
+#: strings.hrc:822
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr ""
-#: strings.hrc:839
+#: strings.hrc:823
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr ""
@@ -4374,212 +4294,212 @@ msgstr ""
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: strings.hrc:845
+#: strings.hrc:829
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr ""
-#: strings.hrc:846
+#: strings.hrc:830
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr ""
-#: strings.hrc:847
+#: strings.hrc:831
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr ""
-#: strings.hrc:848
+#: strings.hrc:832
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr ""
-#: strings.hrc:849
+#: strings.hrc:833
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr ""
-#: strings.hrc:850
+#: strings.hrc:834
msgctxt "STR_PAGENUMBERFLD"
msgid "Page numbers"
msgstr ""
-#: strings.hrc:851
+#: strings.hrc:835
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr ""
-#: strings.hrc:852
+#: strings.hrc:836
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr ""
-#: strings.hrc:853
+#: strings.hrc:837
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr ""
-#: strings.hrc:854
+#: strings.hrc:838
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr ""
#. range functions
-#: strings.hrc:856
+#: strings.hrc:840
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr ""
-#: strings.hrc:857
+#: strings.hrc:841
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr ""
-#: strings.hrc:858
+#: strings.hrc:842
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "Ибжьаргылатәуп аформула"
-#: strings.hrc:859
+#: strings.hrc:843
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr ""
-#: strings.hrc:860
+#: strings.hrc:844
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr ""
-#: strings.hrc:861
+#: strings.hrc:845
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr ""
-#: strings.hrc:862
+#: strings.hrc:846
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr ""
-#: strings.hrc:863
+#: strings.hrc:847
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr ""
-#: strings.hrc:864
+#: strings.hrc:848
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr ""
-#: strings.hrc:865
+#: strings.hrc:849
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr ""
-#: strings.hrc:866
+#: strings.hrc:850
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr ""
-#: strings.hrc:867
+#: strings.hrc:851
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr ""
-#: strings.hrc:868
+#: strings.hrc:852
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr ""
-#: strings.hrc:869
+#: strings.hrc:853
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr ""
-#: strings.hrc:870
+#: strings.hrc:854
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr ""
-#: strings.hrc:871
+#: strings.hrc:855
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr ""
#. range references
-#: strings.hrc:873
+#: strings.hrc:857
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr ""
-#: strings.hrc:874
+#: strings.hrc:858
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr ""
#. range database
-#: strings.hrc:876
+#: strings.hrc:860
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr ""
-#: strings.hrc:877
+#: strings.hrc:861
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr ""
-#: strings.hrc:878
+#: strings.hrc:862
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr ""
-#: strings.hrc:879
+#: strings.hrc:863
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr ""
-#: strings.hrc:880
+#: strings.hrc:864
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr ""
-#: strings.hrc:881
+#: strings.hrc:865
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr ""
-#: strings.hrc:882
+#: strings.hrc:866
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr ""
#. range user fields
-#: strings.hrc:884
+#: strings.hrc:868
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr ""
-#: strings.hrc:885
+#: strings.hrc:869
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr ""
-#: strings.hrc:886
+#: strings.hrc:870
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr ""
-#: strings.hrc:887
+#: strings.hrc:871
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr ""
-#: strings.hrc:888
+#: strings.hrc:872
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr ""
#. range DocumentInfo
-#: strings.hrc:890
+#: strings.hrc:874
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr ""
@@ -4587,74 +4507,74 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: strings.hrc:894
+#: strings.hrc:878
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr ""
-#: strings.hrc:895
+#: strings.hrc:879
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr ""
-#: strings.hrc:896
+#: strings.hrc:880
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr ""
-#: strings.hrc:897
+#: strings.hrc:881
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr ""
#. SubCmd Statistic
-#: strings.hrc:899
+#: strings.hrc:883
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
-msgstr ""
+msgstr "Атаблицақәа"
-#: strings.hrc:900
+#: strings.hrc:884
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr ""
-#: strings.hrc:901
+#: strings.hrc:885
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr ""
-#: strings.hrc:902
+#: strings.hrc:886
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr ""
-#: strings.hrc:903
+#: strings.hrc:887
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr ""
-#: strings.hrc:904
+#: strings.hrc:888
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr ""
-#: strings.hrc:905
+#: strings.hrc:889
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr ""
#. SubCmd DDETypes
-#: strings.hrc:907
+#: strings.hrc:891
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr ""
-#: strings.hrc:908
+#: strings.hrc:892
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr ""
-#: strings.hrc:909
+#: strings.hrc:893
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr ""
@@ -4662,87 +4582,87 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: strings.hrc:914
+#: strings.hrc:898
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr ""
-#: strings.hrc:915
+#: strings.hrc:899
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr ""
-#: strings.hrc:916
+#: strings.hrc:900
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr ""
-#: strings.hrc:917
+#: strings.hrc:901
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr ""
-#: strings.hrc:918
+#: strings.hrc:902
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr ""
-#: strings.hrc:919
+#: strings.hrc:903
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr ""
-#: strings.hrc:920
+#: strings.hrc:904
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr ""
-#: strings.hrc:921
+#: strings.hrc:905
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr ""
-#: strings.hrc:922
+#: strings.hrc:906
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr ""
-#: strings.hrc:923
+#: strings.hrc:907
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr ""
-#: strings.hrc:924
+#: strings.hrc:908
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr ""
-#: strings.hrc:925
+#: strings.hrc:909
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr ""
-#: strings.hrc:926
+#: strings.hrc:910
msgctxt "FLD_EU_FAX"
msgid "FAX"
msgstr ""
-#: strings.hrc:927
+#: strings.hrc:911
msgctxt "FLD_EU_EMAIL"
msgid "E-mail"
msgstr ""
-#: strings.hrc:928
+#: strings.hrc:912
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr ""
-#: strings.hrc:929
+#: strings.hrc:913
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr ""
-#: strings.hrc:930
+#: strings.hrc:914
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr ""
@@ -4751,32 +4671,32 @@ msgstr ""
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: strings.hrc:935
+#: strings.hrc:919
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr ""
-#: strings.hrc:936
+#: strings.hrc:920
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr ""
-#: strings.hrc:937
+#: strings.hrc:921
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr ""
-#: strings.hrc:938
+#: strings.hrc:922
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr ""
-#: strings.hrc:939
+#: strings.hrc:923
msgctxt "FMT_FF_UI_NAME"
msgid "Style"
msgstr ""
-#: strings.hrc:940
+#: strings.hrc:924
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr ""
@@ -4784,22 +4704,22 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: strings.hrc:944
+#: strings.hrc:928
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr ""
-#: strings.hrc:945
+#: strings.hrc:929
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr ""
-#: strings.hrc:946
+#: strings.hrc:930
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr ""
-#: strings.hrc:947
+#: strings.hrc:931
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr ""
@@ -4807,47 +4727,47 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: strings.hrc:951
+#: strings.hrc:935
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr ""
-#: strings.hrc:952
+#: strings.hrc:936
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr ""
-#: strings.hrc:953
+#: strings.hrc:937
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr ""
-#: strings.hrc:954
+#: strings.hrc:938
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr ""
-#: strings.hrc:955
+#: strings.hrc:939
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr ""
-#: strings.hrc:956
+#: strings.hrc:940
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr ""
-#: strings.hrc:957
+#: strings.hrc:941
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr ""
-#: strings.hrc:958
+#: strings.hrc:942
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr ""
-#: strings.hrc:959
+#: strings.hrc:943
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr ""
@@ -4855,12 +4775,12 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: strings.hrc:963
+#: strings.hrc:947
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr ""
-#: strings.hrc:964
+#: strings.hrc:948
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr ""
@@ -4868,42 +4788,42 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: strings.hrc:968
+#: strings.hrc:952
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr ""
-#: strings.hrc:969
+#: strings.hrc:953
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr ""
-#: strings.hrc:970
+#: strings.hrc:954
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr ""
-#: strings.hrc:971
+#: strings.hrc:955
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr ""
-#: strings.hrc:972
+#: strings.hrc:956
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "Аформула"
-#: strings.hrc:973
+#: strings.hrc:957
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr ""
-#: strings.hrc:974
+#: strings.hrc:958
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr ""
-#: strings.hrc:975
+#: strings.hrc:959
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr ""
@@ -4911,17 +4831,17 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: strings.hrc:979
+#: strings.hrc:963
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr ""
-#: strings.hrc:980
+#: strings.hrc:964
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr ""
-#: strings.hrc:981
+#: strings.hrc:965
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr ""
@@ -4929,57 +4849,57 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: strings.hrc:985
+#: strings.hrc:969
msgctxt "FMT_REF_TEXT"
msgid "Reference"
msgstr ""
-#: strings.hrc:986
+#: strings.hrc:970
msgctxt "FMT_REF_PAGE"
msgid "Page"
msgstr ""
-#: strings.hrc:987
+#: strings.hrc:971
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr ""
-#: strings.hrc:988
+#: strings.hrc:972
msgctxt "FMT_REF_UPDOWN"
msgid "Above/Below"
msgstr ""
-#: strings.hrc:989
+#: strings.hrc:973
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "As Page Style"
msgstr ""
-#: strings.hrc:990
+#: strings.hrc:974
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr ""
-#: strings.hrc:991
+#: strings.hrc:975
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr ""
-#: strings.hrc:992
+#: strings.hrc:976
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr ""
-#: strings.hrc:993
+#: strings.hrc:977
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr ""
-#: strings.hrc:994
+#: strings.hrc:978
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr ""
-#: strings.hrc:995
+#: strings.hrc:979
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr ""
@@ -4987,27 +4907,27 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: strings.hrc:999
+#: strings.hrc:983
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr ""
-#: strings.hrc:1000
+#: strings.hrc:984
msgctxt "FMT_MARK_TABLE"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
-#: strings.hrc:1001
+#: strings.hrc:985
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr ""
-#: strings.hrc:1002
+#: strings.hrc:986
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr ""
-#: strings.hrc:1003
+#: strings.hrc:987
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr ""
@@ -5015,1035 +4935,1035 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: strings.hrc:1007
+#: strings.hrc:991
msgctxt "STR_COND"
msgid "~Condition"
msgstr ""
-#: strings.hrc:1008
+#: strings.hrc:992
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr ""
-#: strings.hrc:1009
+#: strings.hrc:993
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr ""
-#: strings.hrc:1010
+#: strings.hrc:994
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr ""
-#: strings.hrc:1011
+#: strings.hrc:995
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr ""
-#: strings.hrc:1012
+#: strings.hrc:996
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr ""
-#: strings.hrc:1013
+#: strings.hrc:997
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr ""
-#: strings.hrc:1014
+#: strings.hrc:998
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr ""
-#: strings.hrc:1015
+#: strings.hrc:999
msgctxt "STR_VALUE"
msgid "Value"
msgstr ""
-#: strings.hrc:1016
+#: strings.hrc:1000
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "Аформула"
-#: strings.hrc:1017
+#: strings.hrc:1001
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr ""
-#: strings.hrc:1019
+#: strings.hrc:1003
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr ""
-#: strings.hrc:1021
+#: strings.hrc:1005
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr ""
-#: strings.hrc:1022
+#: strings.hrc:1006
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr ""
-#: strings.hrc:1023
+#: strings.hrc:1007
msgctxt "STR_WIDTH"
msgid "Width"
msgstr ""
-#: strings.hrc:1024
+#: strings.hrc:1008
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr ""
-#: strings.hrc:1025
+#: strings.hrc:1009
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr ""
-#: strings.hrc:1026
+#: strings.hrc:1010
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr ""
-#: strings.hrc:1027
+#: strings.hrc:1011
msgctxt "STR_COLS"
msgid "Columns"
msgstr ""
-#: strings.hrc:1028
+#: strings.hrc:1012
msgctxt "STR_ROWS"
msgid "Rows"
msgstr ""
-#: strings.hrc:1030
+#: strings.hrc:1014
msgctxt "STR_SERVICE_UNAVAILABLE"
msgid "The following service is not available: "
msgstr ""
-#: strings.hrc:1032
+#: strings.hrc:1016
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr ""
-#: strings.hrc:1033
+#: strings.hrc:1017
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr ""
-#: strings.hrc:1034
+#: strings.hrc:1018
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr ""
-#: strings.hrc:1035
+#: strings.hrc:1019
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr ""
-#: strings.hrc:1036
+#: strings.hrc:1020
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Navigator window or right-click for bookmark list."
msgstr ""
-#: strings.hrc:1037
+#: strings.hrc:1021
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Navigator window."
msgstr ""
-#: strings.hrc:1038
+#: strings.hrc:1022
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr ""
#. Strings for textual attributes.
-#: strings.hrc:1041
+#: strings.hrc:1025
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr ""
-#: strings.hrc:1042
+#: strings.hrc:1026
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr ""
-#: strings.hrc:1043
+#: strings.hrc:1027
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr ""
-#: strings.hrc:1044
+#: strings.hrc:1028
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr ""
-#: strings.hrc:1045
+#: strings.hrc:1029
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr ""
-#: strings.hrc:1046
+#: strings.hrc:1030
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr ""
-#: strings.hrc:1047
+#: strings.hrc:1031
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr ""
-#: strings.hrc:1048
+#: strings.hrc:1032
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr ""
-#: strings.hrc:1049
+#: strings.hrc:1033
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr ""
-#: strings.hrc:1050
+#: strings.hrc:1034
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr ""
-#: strings.hrc:1051
+#: strings.hrc:1035
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr ""
-#: strings.hrc:1052
+#: strings.hrc:1036
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr ""
-#: strings.hrc:1053
+#: strings.hrc:1037
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr ""
-#: strings.hrc:1054
+#: strings.hrc:1038
msgctxt "STR_HEADER"
msgid "Header"
msgstr ""
-#: strings.hrc:1055
+#: strings.hrc:1039
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr ""
-#: strings.hrc:1056
+#: strings.hrc:1040
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal wrap"
msgstr ""
-#: strings.hrc:1057
+#: strings.hrc:1041
msgctxt "STR_SURROUND_NONE"
msgid "No wrap"
msgstr ""
-#: strings.hrc:1058
+#: strings.hrc:1042
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr ""
-#: strings.hrc:1059
+#: strings.hrc:1043
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel wrap"
msgstr ""
-#: strings.hrc:1060
+#: strings.hrc:1044
msgctxt "STR_SURROUND_LEFT"
msgid "Left wrap"
msgstr ""
-#: strings.hrc:1061
+#: strings.hrc:1045
msgctxt "STR_SURROUND_RIGHT"
msgid "Right wrap"
msgstr ""
-#: strings.hrc:1062
+#: strings.hrc:1046
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr ""
-#: strings.hrc:1063
+#: strings.hrc:1047
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr ""
-#: strings.hrc:1064
+#: strings.hrc:1048
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr ""
-#: strings.hrc:1065
+#: strings.hrc:1049
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr ""
-#: strings.hrc:1066
+#: strings.hrc:1050
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr ""
-#: strings.hrc:1067
+#: strings.hrc:1051
msgctxt "STR_FLY_AS_CHAR"
msgid "to character"
msgstr ""
-#: strings.hrc:1068
+#: strings.hrc:1052
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr ""
-#: strings.hrc:1069
+#: strings.hrc:1053
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
-#: strings.hrc:1070
+#: strings.hrc:1054
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
-#: strings.hrc:1071
+#: strings.hrc:1055
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
-#: strings.hrc:1072
+#: strings.hrc:1056
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr ""
-#: strings.hrc:1073
+#: strings.hrc:1057
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr ""
-#: strings.hrc:1074
+#: strings.hrc:1058
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr ""
-#: strings.hrc:1075
+#: strings.hrc:1059
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr ""
-#: strings.hrc:1076
+#: strings.hrc:1060
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr ""
-#: strings.hrc:1077
+#: strings.hrc:1061
msgctxt "STR_REGISTER_ON"
msgid "Register-true"
msgstr ""
-#: strings.hrc:1078
+#: strings.hrc:1062
msgctxt "STR_REGISTER_OFF"
msgid "Not register-true"
msgstr ""
-#: strings.hrc:1079
+#: strings.hrc:1063
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
-#: strings.hrc:1080
+#: strings.hrc:1064
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr ""
-#: strings.hrc:1081
+#: strings.hrc:1065
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
-#: strings.hrc:1082
+#: strings.hrc:1066
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr ""
-#: strings.hrc:1083
+#: strings.hrc:1067
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr ""
-#: strings.hrc:1084
+#: strings.hrc:1068
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr ""
-#: strings.hrc:1085
+#: strings.hrc:1069
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr ""
-#: strings.hrc:1086
+#: strings.hrc:1070
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
-#: strings.hrc:1087
+#: strings.hrc:1071
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
-#: strings.hrc:1088
+#: strings.hrc:1072
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr ""
-#: strings.hrc:1089
+#: strings.hrc:1073
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr ""
-#: strings.hrc:1090
+#: strings.hrc:1074
msgctxt "STR_NUMRULE_ON"
msgid "Numbering"
msgstr ""
-#: strings.hrc:1091
+#: strings.hrc:1075
msgctxt "STR_NUMRULE_OFF"
msgid "no numbering"
msgstr ""
-#: strings.hrc:1092
+#: strings.hrc:1076
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
-#: strings.hrc:1093
+#: strings.hrc:1077
msgctxt "STR_CONNECT2"
msgid "and "
msgstr ""
-#: strings.hrc:1094
+#: strings.hrc:1078
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
-#: strings.hrc:1095
+#: strings.hrc:1079
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
-#: strings.hrc:1096
+#: strings.hrc:1080
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
-#: strings.hrc:1097
+#: strings.hrc:1081
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr ""
-#: strings.hrc:1098
+#: strings.hrc:1082
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr ""
-#: strings.hrc:1099
+#: strings.hrc:1083
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
-#: strings.hrc:1100
+#: strings.hrc:1084
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
-#: strings.hrc:1101
+#: strings.hrc:1085
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr ""
-#: strings.hrc:1102
+#: strings.hrc:1086
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
-#: strings.hrc:1103
+#: strings.hrc:1087
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr ""
-#: strings.hrc:1104
+#: strings.hrc:1088
msgctxt "STR_INVERT"
msgid "Invert"
msgstr ""
-#: strings.hrc:1105
+#: strings.hrc:1089
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
-#: strings.hrc:1106
+#: strings.hrc:1090
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr ""
-#: strings.hrc:1107
+#: strings.hrc:1091
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr ""
-#: strings.hrc:1108
+#: strings.hrc:1092
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr ""
-#: strings.hrc:1109
+#: strings.hrc:1093
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr ""
-#: strings.hrc:1110
+#: strings.hrc:1094
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr ""
-#: strings.hrc:1111
+#: strings.hrc:1095
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr ""
-#: strings.hrc:1112
+#: strings.hrc:1096
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr ""
-#: strings.hrc:1113
+#: strings.hrc:1097
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr ""
-#: strings.hrc:1114
+#: strings.hrc:1098
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr ""
-#: strings.hrc:1115
+#: strings.hrc:1099
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr ""
-#: strings.hrc:1116
+#: strings.hrc:1100
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
-#: strings.hrc:1117
+#: strings.hrc:1101
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
-#: strings.hrc:1118
+#: strings.hrc:1102
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
-#: strings.hrc:1120
+#: strings.hrc:1104
msgctxt "ST_TBL"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
-#: strings.hrc:1121
+#: strings.hrc:1105
msgctxt "ST_FRM"
msgid "Text Frame"
msgstr ""
-#: strings.hrc:1122
+#: strings.hrc:1106
msgctxt "ST_PGE"
msgid "Page"
msgstr ""
-#: strings.hrc:1123
+#: strings.hrc:1107
msgctxt "ST_DRW"
msgid "Drawing"
msgstr ""
-#: strings.hrc:1124
+#: strings.hrc:1108
msgctxt "ST_CTRL"
msgid "Control"
msgstr ""
-#: strings.hrc:1125
+#: strings.hrc:1109
msgctxt "ST_REG"
msgid "Section"
msgstr ""
-#: strings.hrc:1126
+#: strings.hrc:1110
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr ""
-#: strings.hrc:1127
+#: strings.hrc:1111
msgctxt "ST_GRF"
msgid "Graphics"
msgstr ""
-#: strings.hrc:1128
+#: strings.hrc:1112
msgctxt "ST_OLE"
msgid "OLE object"
msgstr ""
-#: strings.hrc:1129
+#: strings.hrc:1113
msgctxt "ST_OUTL"
msgid "Headings"
msgstr ""
-#: strings.hrc:1130
+#: strings.hrc:1114
msgctxt "ST_SEL"
msgid "Selection"
msgstr ""
-#: strings.hrc:1131
+#: strings.hrc:1115
msgctxt "ST_FTN"
msgid "Footnote"
msgstr ""
-#: strings.hrc:1132
+#: strings.hrc:1116
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
-#: strings.hrc:1133
+#: strings.hrc:1117
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr ""
-#: strings.hrc:1134
+#: strings.hrc:1118
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr ""
-#: strings.hrc:1135
+#: strings.hrc:1119
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
-#: strings.hrc:1136
+#: strings.hrc:1120
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Атаблица аформула"
-#: strings.hrc:1137
+#: strings.hrc:1121
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Атаблица аформула иашаӡам"
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: strings.hrc:1139
+#: strings.hrc:1123
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
-msgstr ""
+msgstr "Анаҩстәи атаблица"
-#: strings.hrc:1140
+#: strings.hrc:1124
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next text frame"
msgstr ""
-#: strings.hrc:1141
+#: strings.hrc:1125
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr ""
-#: strings.hrc:1142
+#: strings.hrc:1126
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr ""
-#: strings.hrc:1143
+#: strings.hrc:1127
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
-#: strings.hrc:1144
+#: strings.hrc:1128
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr ""
-#: strings.hrc:1145
+#: strings.hrc:1129
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr ""
-#: strings.hrc:1146
+#: strings.hrc:1130
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
-#: strings.hrc:1147
+#: strings.hrc:1131
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
-#: strings.hrc:1148
+#: strings.hrc:1132
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr ""
-#: strings.hrc:1149
+#: strings.hrc:1133
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
-#: strings.hrc:1150
+#: strings.hrc:1134
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr ""
-#: strings.hrc:1151
+#: strings.hrc:1135
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
-#: strings.hrc:1152
+#: strings.hrc:1136
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr ""
-#: strings.hrc:1153
+#: strings.hrc:1137
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
-#: strings.hrc:1154
+#: strings.hrc:1138
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr ""
-#: strings.hrc:1155
+#: strings.hrc:1139
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
-msgstr ""
+msgstr "Аҧхьатәи атаблица"
-#: strings.hrc:1156
+#: strings.hrc:1140
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous text frame"
msgstr ""
-#: strings.hrc:1157
+#: strings.hrc:1141
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr ""
-#: strings.hrc:1158
+#: strings.hrc:1142
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
-#: strings.hrc:1159
+#: strings.hrc:1143
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
-#: strings.hrc:1160
+#: strings.hrc:1144
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr ""
-#: strings.hrc:1161
+#: strings.hrc:1145
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr ""
-#: strings.hrc:1162
+#: strings.hrc:1146
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
-#: strings.hrc:1163
+#: strings.hrc:1147
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
-#: strings.hrc:1164
+#: strings.hrc:1148
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
-#: strings.hrc:1165
+#: strings.hrc:1149
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
-#: strings.hrc:1166
+#: strings.hrc:1150
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr ""
-#: strings.hrc:1167
+#: strings.hrc:1151
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
-#: strings.hrc:1168
+#: strings.hrc:1152
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr ""
-#: strings.hrc:1169
+#: strings.hrc:1153
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
-#: strings.hrc:1170
+#: strings.hrc:1154
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
-#: strings.hrc:1171
+#: strings.hrc:1155
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
-msgstr "Атаблица иаҧхьааиуа аформула"
+msgstr "Атаблица аҧхьатәи аформула"
-#: strings.hrc:1172
+#: strings.hrc:1156
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Атаблица анаҩстәи аформула"
-#: strings.hrc:1173
+#: strings.hrc:1157
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Атаблица иаҧхьааиуа игхатәу аформула"
-#: strings.hrc:1174
+#: strings.hrc:1158
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Атаблица анаҩстәи игхатәу аформула"
-#: strings.hrc:1176
+#: strings.hrc:1160
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr ""
-#: strings.hrc:1177
+#: strings.hrc:1161
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr ""
-#: strings.hrc:1178
+#: strings.hrc:1162
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
-#: strings.hrc:1179
+#: strings.hrc:1163
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
-msgstr ""
+msgstr "Атаблица ҧсахуп"
-#: strings.hrc:1180
+#: strings.hrc:1164
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr ""
-#: strings.hrc:1181
+#: strings.hrc:1165
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
-#: strings.hrc:1182
+#: strings.hrc:1166
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr ""
-#: strings.hrc:1183
+#: strings.hrc:1167
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr ""
-#: strings.hrc:1184
+#: strings.hrc:1168
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
-#: strings.hrc:1185
+#: strings.hrc:1169
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
-#: strings.hrc:1186
+#: strings.hrc:1170
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr ""
-#: strings.hrc:1187
+#: strings.hrc:1171
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr ""
-#: strings.hrc:1188
+#: strings.hrc:1172
msgctxt "STR_TABLE_COL_ADJUST"
msgid "Adjust table column"
msgstr ""
-#: strings.hrc:1189
+#: strings.hrc:1173
msgctxt "STR_TABLE_ROW_ADJUST"
msgid "Adjust table row"
msgstr ""
-#: strings.hrc:1190
+#: strings.hrc:1174
msgctxt "STR_TABLE_SELECT_ALL"
msgid "Select whole table"
-msgstr ""
+msgstr "Иалкаатәуп атаблица зегьы"
-#: strings.hrc:1191
+#: strings.hrc:1175
msgctxt "STR_TABLE_SELECT_ROW"
msgid "Select table row"
-msgstr ""
+msgstr "Иалкаатәуп атаблица ацәаҳәа"
-#: strings.hrc:1192
+#: strings.hrc:1176
msgctxt "STR_TABLE_SELECT_COL"
msgid "Select table column"
-msgstr ""
+msgstr "Иалкаатәуп атаблица аиҵагыла"
-#: strings.hrc:1193
+#: strings.hrc:1177
#, c-format
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
-#: strings.hrc:1194
+#: strings.hrc:1178
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
-#: strings.hrc:1195
+#: strings.hrc:1179
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
-#: strings.hrc:1196
+#: strings.hrc:1180
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
-#: strings.hrc:1197
+#: strings.hrc:1181
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
-#: strings.hrc:1198
+#: strings.hrc:1182
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
-#: strings.hrc:1199
+#: strings.hrc:1183
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
-#: strings.hrc:1200
+#: strings.hrc:1184
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
-#: strings.hrc:1201
+#: strings.hrc:1185
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
-#: strings.hrc:1202
+#: strings.hrc:1186
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr ""
-#: strings.hrc:1203
+#: strings.hrc:1187
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr ""
-#: strings.hrc:1204
+#: strings.hrc:1188
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr ""
-#: strings.hrc:1205
+#: strings.hrc:1189
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr ""
-#: strings.hrc:1207
+#: strings.hrc:1191
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr ""
-#: strings.hrc:1208
+#: strings.hrc:1192
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr ""
-#: strings.hrc:1209
+#: strings.hrc:1193
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr ""
-#: strings.hrc:1210
+#: strings.hrc:1194
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr ""
-#: strings.hrc:1211
+#: strings.hrc:1195
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr ""
-#: strings.hrc:1212
+#: strings.hrc:1196
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr ""
-#: strings.hrc:1213
+#: strings.hrc:1197
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr ""
-#: strings.hrc:1214
+#: strings.hrc:1198
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr ""
-#: strings.hrc:1215
+#: strings.hrc:1199
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr ""
-#: strings.hrc:1216
+#: strings.hrc:1200
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr ""
-#: strings.hrc:1217
+#: strings.hrc:1201
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr ""
-#: strings.hrc:1218
+#: strings.hrc:1202
msgctxt "STR_REDLINE_FORMATED"
msgid "Formats"
msgstr ""
-#: strings.hrc:1219
+#: strings.hrc:1203
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
-msgstr ""
+msgstr "Атаблица аредакциазура"
-#: strings.hrc:1220
+#: strings.hrc:1204
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr ""
-#: strings.hrc:1221
+#: strings.hrc:1205
msgctxt "STR_REDLINE_TITLE"
msgid "AutoCorrect"
msgstr ""
-#: strings.hrc:1222
+#: strings.hrc:1206
msgctxt "STR_REDLINE_MSG"
msgid ""
"AutoCorrect completed.\n"
@@ -6051,249 +5971,249 @@ msgid ""
"or accept or reject particular changes."
msgstr ""
-#: strings.hrc:1223
+#: strings.hrc:1207
msgctxt "STR_REDLINE_ACCEPT_ALL"
msgid "Accept All"
msgstr ""
-#: strings.hrc:1224
+#: strings.hrc:1208
msgctxt "STR_REDLINE_REJECT_ALL"
msgid "Reject All"
msgstr ""
-#: strings.hrc:1225
+#: strings.hrc:1209
msgctxt "STR_REDLINE_EDIT"
msgid "Edit Changes"
msgstr ""
-#: strings.hrc:1226
+#: strings.hrc:1210
msgctxt "STR_PAGE"
msgid "Page "
msgstr ""
-#: strings.hrc:1227
+#: strings.hrc:1211
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr ""
-#: strings.hrc:1228
+#: strings.hrc:1212
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. Strings for gallery/background
-#: strings.hrc:1230
+#: strings.hrc:1214
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr ""
-#: strings.hrc:1231
+#: strings.hrc:1215
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr ""
-#: strings.hrc:1232
+#: strings.hrc:1216
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr ""
-#: strings.hrc:1233
+#: strings.hrc:1217
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr ""
-#: strings.hrc:1234
+#: strings.hrc:1218
msgctxt "STR_SWBG_TABLE"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
-#: strings.hrc:1235
+#: strings.hrc:1219
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
-msgstr ""
+msgstr "Атаблица ацәаҳәа"
-#: strings.hrc:1236
+#: strings.hrc:1220
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
-msgstr ""
+msgstr "Атаблица абларҭа"
-#: strings.hrc:1237
+#: strings.hrc:1221
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr ""
-#: strings.hrc:1238
+#: strings.hrc:1222
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr ""
-#: strings.hrc:1239
+#: strings.hrc:1223
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr ""
#. End: strings for gallery/background
-#: strings.hrc:1242
+#: strings.hrc:1226
msgctxt "STR_HUMAN_SWWEBDOC_NAME"
msgid "HTML"
msgstr ""
-#: strings.hrc:1243
+#: strings.hrc:1227
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr ""
-#: strings.hrc:1245
+#: strings.hrc:1229
msgctxt "STR_TITLE"
msgid "Title"
msgstr ""
-#: strings.hrc:1246
+#: strings.hrc:1230
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr ""
-#: strings.hrc:1247
+#: strings.hrc:1231
msgctxt "STR_LEVEL"
msgid "Level "
msgstr ""
-#: strings.hrc:1248
+#: strings.hrc:1232
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr ""
-#: strings.hrc:1249
+#: strings.hrc:1233
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr ""
-#: strings.hrc:1250
+#: strings.hrc:1234
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr ""
-#: strings.hrc:1251
+#: strings.hrc:1235
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr ""
-#: strings.hrc:1252
+#: strings.hrc:1236
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
-#: strings.hrc:1253
+#: strings.hrc:1237
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
-#: strings.hrc:1254
+#: strings.hrc:1238
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
-#: strings.hrc:1255
+#: strings.hrc:1239
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
-#: strings.hrc:1256
+#: strings.hrc:1240
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
-#: strings.hrc:1257
+#: strings.hrc:1241
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
-#: strings.hrc:1258
+#: strings.hrc:1242
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
-#: strings.hrc:1259
+#: strings.hrc:1243
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
-#: strings.hrc:1260
+#: strings.hrc:1244
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
-#: strings.hrc:1261
+#: strings.hrc:1245
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr ""
-#: strings.hrc:1262
+#: strings.hrc:1246
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr ""
-#: strings.hrc:1263
+#: strings.hrc:1247
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr ""
-#: strings.hrc:1264
+#: strings.hrc:1248
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr ""
-#: strings.hrc:1265
+#: strings.hrc:1249
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr ""
-#: strings.hrc:1266
+#: strings.hrc:1250
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr ""
-#: strings.hrc:1267
+#: strings.hrc:1251
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr ""
-#: strings.hrc:1268
+#: strings.hrc:1252
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr ""
-#: strings.hrc:1269
+#: strings.hrc:1253
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr ""
-#: strings.hrc:1270
+#: strings.hrc:1254
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr ""
-#: strings.hrc:1271
+#: strings.hrc:1255
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
-#: strings.hrc:1272
+#: strings.hrc:1256
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
-#: strings.hrc:1273
+#: strings.hrc:1257
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
-#: strings.hrc:1274
+#: strings.hrc:1258
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
-#: strings.hrc:1275
+#: strings.hrc:1259
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -6301,252 +6221,252 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: strings.hrc:1280
+#: strings.hrc:1264
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr ""
-#: strings.hrc:1281
+#: strings.hrc:1265
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr ""
-#: strings.hrc:1282
+#: strings.hrc:1266
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr ""
-#: strings.hrc:1283
+#: strings.hrc:1267
msgctxt "STR_FRMUI_LINE_TOP"
msgid "Top of line"
msgstr ""
-#: strings.hrc:1284
+#: strings.hrc:1268
msgctxt "STR_FRMUI_LINE_BOTTOM"
msgid "Bottom of line"
msgstr ""
-#: strings.hrc:1285
+#: strings.hrc:1269
msgctxt "STR_FRMUI_LINE_CENTER"
msgid "Center of line"
msgstr ""
-#: strings.hrc:1286
+#: strings.hrc:1270
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr ""
-#: strings.hrc:1287
+#: strings.hrc:1271
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr ""
-#: strings.hrc:1288
+#: strings.hrc:1272
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr ""
-#: strings.hrc:1289
+#: strings.hrc:1273
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr ""
-#: strings.hrc:1290
+#: strings.hrc:1274
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr ""
-#: strings.hrc:1292
+#: strings.hrc:1276
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr ""
-#: strings.hrc:1293
+#: strings.hrc:1277
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr ""
-#: strings.hrc:1295
+#: strings.hrc:1279
msgctxt "STR_HUMAN_SWGLOBDOC_NAME"
msgid "Master Document"
msgstr ""
-#: strings.hrc:1296
+#: strings.hrc:1280
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr ""
-#: strings.hrc:1298
+#: strings.hrc:1282
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
-#: strings.hrc:1299
+#: strings.hrc:1283
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
-#: strings.hrc:1300
+#: strings.hrc:1284
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
-#: strings.hrc:1302
+#: strings.hrc:1286
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
-#: strings.hrc:1303
+#: strings.hrc:1287
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr ""
-#: strings.hrc:1304
+#: strings.hrc:1288
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr ""
-#: strings.hrc:1305
+#: strings.hrc:1289
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr ""
-#: strings.hrc:1306
+#: strings.hrc:1290
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr ""
-#: strings.hrc:1307
+#: strings.hrc:1291
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
-#: strings.hrc:1309
+#: strings.hrc:1293
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
-#: strings.hrc:1310
+#: strings.hrc:1294
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
-#: strings.hrc:1311
+#: strings.hrc:1295
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
-#: strings.hrc:1312
+#: strings.hrc:1296
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
-#: strings.hrc:1313
+#: strings.hrc:1297
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr ""
-#: strings.hrc:1314
+#: strings.hrc:1298
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr ""
-#: strings.hrc:1315
+#: strings.hrc:1299
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
-#: strings.hrc:1316
+#: strings.hrc:1300
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr ""
-#: strings.hrc:1317
+#: strings.hrc:1301
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr ""
-#: strings.hrc:1318
+#: strings.hrc:1302
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr ""
-#: strings.hrc:1319
+#: strings.hrc:1303
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr ""
-#: strings.hrc:1320
+#: strings.hrc:1304
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr ""
-#: strings.hrc:1321
+#: strings.hrc:1305
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr ""
-#: strings.hrc:1322
+#: strings.hrc:1306
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
-#: strings.hrc:1323
+#: strings.hrc:1307
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
-#: strings.hrc:1325
+#: strings.hrc:1309
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr ""
-#: strings.hrc:1326
+#: strings.hrc:1310
msgctxt "ST_TASK"
msgid "Task"
msgstr ""
-#: strings.hrc:1327
+#: strings.hrc:1311
msgctxt "ST_STATUS"
msgid "Status"
msgstr ""
-#: strings.hrc:1328
+#: strings.hrc:1312
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
-#: strings.hrc:1329
+#: strings.hrc:1313
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
-#: strings.hrc:1330
+#: strings.hrc:1314
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
-#: strings.hrc:1332
+#: strings.hrc:1316
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr ""
-#: strings.hrc:1334
+#: strings.hrc:1318
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Аформула атеқст"
-#: strings.hrc:1336
+#: strings.hrc:1320
msgctxt "STR_MENU_ZOOM"
msgid "~Zoom"
-msgstr ""
+msgstr "Амасштаб"
-#: strings.hrc:1337
+#: strings.hrc:1321
msgctxt "STR_MENU_UP"
msgid "~Upwards"
msgstr ""
-#: strings.hrc:1338
+#: strings.hrc:1322
msgctxt "STR_MENU_DOWN"
msgid "Do~wnwards"
msgstr ""
@@ -6554,7 +6474,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: strings.hrc:1344
+#: strings.hrc:1328
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -6562,27 +6482,27 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: strings.hrc:1349
+#: strings.hrc:1333
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
-#: strings.hrc:1350
+#: strings.hrc:1334
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
-#: strings.hrc:1351
+#: strings.hrc:1335
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
-#: strings.hrc:1352
+#: strings.hrc:1336
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr ""
-#: strings.hrc:1353
+#: strings.hrc:1337
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
@@ -6620,7 +6540,7 @@ msgstr ""
#: utlui.hrc:33
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Bullets replaced"
-msgstr ""
+msgstr "Амаркерқәа ҧсахуп"
#: utlui.hrc:34
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -6680,7 +6600,7 @@ msgstr ""
#: utlui.hrc:46
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Bullet\" or \"Numbering\" Style"
-msgstr ""
+msgstr "Иқәыргылатәуп астиль «Ахьӡынҵа» ма «Аномерркра»"
#: utlui.hrc:47
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -6800,7 +6720,7 @@ msgstr ""
#: alreadyexistsdialog.ui:126
msgctxt "alreadyexistsdialog|label1"
msgid "New document name:"
-msgstr ""
+msgstr "Адокумент ахьӡ ҿыц:"
#: annotationmenu.ui:12
msgctxt "annotationmenu|reply"
@@ -7120,12 +7040,12 @@ msgstr ""
#: autotext.ui:383
msgctxt "autotext|new"
msgid "_New"
-msgstr ""
+msgstr "Иаҧҵатәуп"
#: autotext.ui:391
msgctxt "autotext|newtext"
msgid "New (text only)"
-msgstr ""
+msgstr "Иаҧҵатәуп (атеқст мацара)"
#: autotext.ui:399
msgctxt "autotext|copy"
@@ -7215,7 +7135,7 @@ msgstr ""
#: bulletsandnumbering.ui:8
msgctxt "bulletsandnumbering|BulletsAndNumberingDialog"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Амаркерқәеи аномерркреи"
#: bulletsandnumbering.ui:39
msgctxt "bulletsandnumbering|user"
@@ -7230,7 +7150,7 @@ msgstr ""
#: bulletsandnumbering.ui:120
msgctxt "bulletsandnumbering|bullets"
msgid "Bullets"
-msgstr ""
+msgstr "Амаркерқәа"
#: bulletsandnumbering.ui:142
msgctxt "bulletsandnumbering|singlenum"
@@ -7470,7 +7390,7 @@ msgstr ""
#: cardmediumpage.ui:180
msgctxt "cardmediumpage|label7"
msgid "Table:"
-msgstr ""
+msgstr "Атаблица:"
#: cardmediumpage.ui:218
msgctxt "cardmediumpage|label8"
@@ -7605,7 +7525,7 @@ msgstr ""
#: charurlpage.ui:138
msgctxt "charurlpage|urlpb"
msgid "Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: charurlpage.ui:188
msgctxt "charurlpage|label32"
@@ -7757,12 +7677,12 @@ msgctxt "columnpage|applytoft"
msgid "_Apply to:"
msgstr ""
-#: columnpage.ui:724
+#: columnpage.ui:725
msgctxt "columnpage|textdirectionft"
msgid "Text _direction:"
msgstr ""
-#: columnpage.ui:780
+#: columnpage.ui:782
msgctxt "columnpage|label2"
msgid "Settings"
msgstr ""
@@ -7815,7 +7735,7 @@ msgstr ""
#: conditionpage.ui:200
msgctxt "conditionpage|filter"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: conditionpage.ui:201
msgctxt "conditionpage|filter"
@@ -8075,7 +7995,7 @@ msgstr ""
#: createaddresslist.ui:239
msgctxt "createaddresslist|NEW"
msgid "_New"
-msgstr ""
+msgstr "Иаҧҵатәуп"
#: createaddresslist.ui:254
msgctxt "createaddresslist|DELETE"
@@ -8315,7 +8235,7 @@ msgstr ""
#: editsectiondialog.ui:258
msgctxt "editsectiondialog|file"
msgid "Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: editsectiondialog.ui:286
msgctxt "editsectiondialog|sectionft"
@@ -8450,7 +8370,7 @@ msgstr ""
#: envaddresspage.ui:144
msgctxt "envaddresspage|label7"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: envaddresspage.ui:190
msgctxt "envaddresspage|label8"
@@ -8480,7 +8400,7 @@ msgstr ""
#: envdialog.ui:21
msgctxt "envdialog|ok"
msgid "_New Document"
-msgstr ""
+msgstr "Иаҧҵатәуп адокумент"
#: envdialog.ui:37
msgctxt "envdialog|user"
@@ -8725,7 +8645,7 @@ msgstr ""
#: exchangedatabases.ui:135
msgctxt "exchangedatabases|browse"
msgid "Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: exchangedatabases.ui:156
msgctxt "exchangedatabases|label7"
@@ -8827,7 +8747,7 @@ msgstr ""
#: flddbpage.ui:256
msgctxt "flddbpage|browse"
msgid "Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: flddbpage.ui:297
msgctxt "flddbpage|fromdatabasecb"
@@ -9684,187 +9604,187 @@ msgctxt "frmaddpage|description_label"
msgid "_Description:"
msgstr ""
-#: frmaddpage.ui:242
+#: frmaddpage.ui:243
msgctxt "frmaddpage|label1"
msgid "Names"
msgstr ""
-#: frmaddpage.ui:281
+#: frmaddpage.ui:282
msgctxt "frmaddpage|label2"
msgid "_Vertical alignment"
msgstr ""
-#: frmaddpage.ui:308
+#: frmaddpage.ui:309
msgctxt "frmaddpage|label7"
msgid "Content Alignment"
msgstr ""
-#: frmaddpage.ui:344
+#: frmaddpage.ui:345
msgctxt "frmaddpage|protectcontent"
msgid "_Contents"
msgstr ""
-#: frmaddpage.ui:359
+#: frmaddpage.ui:360
msgctxt "frmaddpage|protectframe"
msgid "P_osition"
msgstr ""
-#: frmaddpage.ui:374
+#: frmaddpage.ui:375
msgctxt "frmaddpage|protectsize"
msgid "_Size"
msgstr "Ашәагаа"
-#: frmaddpage.ui:395
+#: frmaddpage.ui:396
msgctxt "frmaddpage|label8"
msgid "Protect"
msgstr ""
-#: frmaddpage.ui:440
+#: frmaddpage.ui:441
msgctxt "frmaddpage|editinreadonly"
msgid "_Editable in read-only document"
msgstr ""
-#: frmaddpage.ui:455
+#: frmaddpage.ui:456
msgctxt "frmaddpage|printframe"
msgid "Prin_t"
msgstr ""
-#: frmaddpage.ui:480
+#: frmaddpage.ui:481
msgctxt "frmaddpage|textflow_label"
msgid "_Text direction:"
msgstr ""
-#: frmaddpage.ui:515
+#: frmaddpage.ui:516
msgctxt "frmaddpage|label3"
msgid "Properties"
msgstr ""
-#: frmtypepage.ui:75
+#: frmtypepage.ui:73
msgctxt "frmtypepage|autowidth"
msgid "AutoSize"
msgstr "Авто-зыҧшаара"
-#: frmtypepage.ui:101
+#: frmtypepage.ui:97
msgctxt "frmtypepage|autowidthft"
msgid "_Width (at least)"
msgstr ""
-#: frmtypepage.ui:117
+#: frmtypepage.ui:111
msgctxt "frmtypepage|widthft"
msgid "_Width"
msgstr ""
-#: frmtypepage.ui:143
+#: frmtypepage.ui:134
msgctxt "frmtypepage|relwidth"
msgid "Relat_ive to"
msgstr ""
-#: frmtypepage.ui:210
+#: frmtypepage.ui:198
msgctxt "frmtypepage|autoheight"
msgid "AutoSize"
msgstr "Авто-зыҧшаара"
-#: frmtypepage.ui:236
+#: frmtypepage.ui:222
msgctxt "frmtypepage|autoheightft"
msgid "H_eight (at least)"
msgstr ""
-#: frmtypepage.ui:252
+#: frmtypepage.ui:236
msgctxt "frmtypepage|heightft"
msgid "H_eight"
msgstr ""
-#: frmtypepage.ui:278
+#: frmtypepage.ui:259
msgctxt "frmtypepage|relheight"
msgid "Re_lative to"
msgstr ""
-#: frmtypepage.ui:323
+#: frmtypepage.ui:304
msgctxt "frmtypepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: frmtypepage.ui:340
+#: frmtypepage.ui:319
msgctxt "frmtypepage|origsize"
msgid "_Original Size"
msgstr "Ахалагаратә шәагаа:"
-#: frmtypepage.ui:362
+#: frmtypepage.ui:339
msgctxt "frmtypepage|label2"
msgid "Size"
msgstr "Ашәагаа"
-#: frmtypepage.ui:424
+#: frmtypepage.ui:395
msgctxt "frmtypepage|topage"
msgid "To _page"
msgstr ""
-#: frmtypepage.ui:443
+#: frmtypepage.ui:412
msgctxt "frmtypepage|topara"
msgid "To paragrap_h"
msgstr ""
-#: frmtypepage.ui:461
+#: frmtypepage.ui:428
msgctxt "frmtypepage|tochar"
msgid "To cha_racter"
msgstr ""
-#: frmtypepage.ui:479
+#: frmtypepage.ui:444
msgctxt "frmtypepage|aschar"
msgid "_As character"
msgstr ""
-#: frmtypepage.ui:497
+#: frmtypepage.ui:460
msgctxt "frmtypepage|toframe"
msgid "To _frame"
msgstr ""
-#: frmtypepage.ui:521
+#: frmtypepage.ui:482
msgctxt "frmtypepage|label1"
msgid "Anchor"
msgstr ""
-#: frmtypepage.ui:566
+#: frmtypepage.ui:522
msgctxt "frmtypepage|horiposft"
msgid "Hori_zontal"
msgstr ""
-#: frmtypepage.ui:582
+#: frmtypepage.ui:536
msgctxt "frmtypepage|horibyft"
msgid "b_y"
msgstr ""
-#: frmtypepage.ui:598
+#: frmtypepage.ui:550
msgctxt "frmtypepage|vertbyft"
msgid "by"
msgstr ""
-#: frmtypepage.ui:614
+#: frmtypepage.ui:564
msgctxt "frmtypepage|horitoft"
msgid "_to"
msgstr ""
-#: frmtypepage.ui:674
+#: frmtypepage.ui:611
msgctxt "frmtypepage|vertposft"
msgid "_Vertical"
msgstr ""
-#: frmtypepage.ui:720
+#: frmtypepage.ui:648
msgctxt "frmtypepage|verttoft"
msgid "t_o"
msgstr ""
-#: frmtypepage.ui:747
+#: frmtypepage.ui:670
msgctxt "frmtypepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: frmtypepage.ui:765
+#: frmtypepage.ui:687
msgctxt "frmtypepage|followtextflow"
msgid "Follow text flow"
msgstr ""
-#: frmtypepage.ui:789
+#: frmtypepage.ui:710
msgctxt "frmtypepage|label11"
msgid "Position"
msgstr ""
@@ -9887,7 +9807,7 @@ msgstr ""
#: frmurlpage.ui:116
msgctxt "frmurlpage|search"
msgid "_Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: frmurlpage.ui:171
msgctxt "frmurlpage|label1"
@@ -10507,7 +10427,7 @@ msgstr ""
#: insertscript.ui:86
msgctxt "insertscript|browse"
msgid "Browse…"
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: insertscript.ui:99
msgctxt "insertscript|text"
@@ -10552,7 +10472,7 @@ msgstr ""
#: inserttable.ui:29
msgctxt "inserttable|InsertTableDialog"
msgid "Insert Table"
-msgstr ""
+msgstr "Ибжьаргылатәуп атаблица"
#: inserttable.ui:43
msgctxt "inserttable|ok"
@@ -10622,7 +10542,7 @@ msgstr ""
#: labeldialog.ui:22
msgctxt "labeldialog|ok"
msgid "_New Document"
-msgstr ""
+msgstr "Иаҧҵатәуп адокумент"
#: labeldialog.ui:106
msgctxt "labeldialog|medium"
@@ -11147,7 +11067,7 @@ msgstr ""
#: mergetabledialog.ui:7
msgctxt "mergetabledialog|MergeTableDialog"
msgid "Merge Tables"
-msgstr ""
+msgstr "Еидҵатәуп атаблицақәа"
#: mergetabledialog.ui:90
msgctxt "mergetabledialog|prev"
@@ -11332,7 +11252,7 @@ msgstr ""
#: mmlayoutpage.ui:347
msgctxt "mmlayoutpage|label7"
msgid "_Zoom"
-msgstr ""
+msgstr "Амасштаб"
#: mmlayoutpage.ui:363
msgctxt "mmlayoutpage|zoom"
@@ -11392,7 +11312,7 @@ msgstr ""
#: mmmailbody.ui:292
msgctxt "mmmailbody|newfemale"
msgid "_New..."
-msgstr ""
+msgstr "Иаҧҵатәуп..."
#: mmmailbody.ui:309
msgctxt "mmmailbody|newmale"
@@ -11662,7 +11582,7 @@ msgstr ""
#: mmsalutationpage.ui:341
msgctxt "mmsalutationpage|newfemale"
msgid "_New..."
-msgstr ""
+msgstr "Иаҧҵатәуп..."
#: mmsalutationpage.ui:357
msgctxt "mmsalutationpage|newmale"
@@ -11992,7 +11912,7 @@ msgstr ""
#: notebookbar.ui:1799
msgctxt "notebookbar|numberbullet|tooltip_text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Амаркерқәеи аномерркреи"
#: notebookbar.ui:1852
msgctxt "notebookbar|level|tooltip_text"
@@ -12152,7 +12072,7 @@ msgstr ""
#: notebookbar.ui:5056
msgctxt "notebookbar|ZoomSection|tooltip_text"
msgid "Zoom"
-msgstr ""
+msgstr "Амасштаб"
#: notebookbar.ui:5177
msgctxt "notebookbar|ViewLabel"
@@ -12172,7 +12092,7 @@ msgstr ""
#: notebookbar.ui:5850
msgctxt "notebookbar|TableLabel"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: notebookbar.ui:5869
msgctxt "notebookbar|BasicsSection|tooltip_text"
@@ -12317,7 +12237,7 @@ msgstr ""
#: notebookbar_compact.ui:6478
msgctxt "notebookbar_compact|TableLabel"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: notebookbar_compact.ui:7105
msgctxt "notebookbar_compact|graphicB"
@@ -12609,241 +12529,241 @@ msgctxt "notebookbar_groupedbar_full|Quotation2"
msgid "Quotation"
msgstr ""
-#: notebookbar_groupedbar_full.ui:3953
+#: notebookbar_groupedbar_full.ui:3934
+msgctxt "notebookbar_groupedbar_full|menub"
+msgid "_Menu"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3986
+msgctxt "notebookbar_groupedbar_full|toolsb"
+msgid "_Tools"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:4040
+msgctxt "notebookbar_groupedbar_full|helpb"
+msgid "_Help"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:4147
msgctxt "notebookbar_groupedbar_full|fileb"
msgid "_File"
msgstr ""
-#: notebookbar_groupedbar_full.ui:4175
+#: notebookbar_groupedbar_full.ui:4384
msgctxt "notebookbar_groupedbar_full|editb"
msgid "_Edit"
msgstr ""
-#: notebookbar_groupedbar_full.ui:4371
+#: notebookbar_groupedbar_full.ui:4580
msgctxt "notebookbar_groupedbar_full|paragraphstyleb"
msgid "St_yles"
msgstr ""
-#: notebookbar_groupedbar_full.ui:4655
+#: notebookbar_groupedbar_full.ui:4867
msgctxt "notebookbar_groupedbar_full|formatb"
msgid "F_ormat"
msgstr ""
-#: notebookbar_groupedbar_full.ui:5006
+#: notebookbar_groupedbar_full.ui:5218
msgctxt "notebookbar_groupedbar_full|paragraphb"
msgid "_Paragraph"
msgstr ""
-#: notebookbar_groupedbar_full.ui:5242
+#: notebookbar_groupedbar_full.ui:5457
msgctxt "notebookbar_groupedbar_full|insertb"
msgid "_Insert"
msgstr ""
-#: notebookbar_groupedbar_full.ui:5467
+#: notebookbar_groupedbar_full.ui:5685
msgctxt "notebookbar_groupedbar_full|referenceb"
msgid "Referen_ce"
msgstr ""
-#: notebookbar_groupedbar_full.ui:5665
+#: notebookbar_groupedbar_full.ui:5886
msgctxt "notebookbar_groupedbar_full|reviewb"
msgid "_Review"
msgstr ""
-#: notebookbar_groupedbar_full.ui:5811
+#: notebookbar_groupedbar_full.ui:6035
msgctxt "notebookbar_groupedbar_full|viewb"
msgid "_View"
msgstr ""
-#: notebookbar_groupedbar_full.ui:6069
+#: notebookbar_groupedbar_full.ui:6296
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr ""
-#: notebookbar_groupedbar_full.ui:6499
+#: notebookbar_groupedbar_full.ui:6726
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr ""
-#: notebookbar_groupedbar_full.ui:6672
+#: notebookbar_groupedbar_full.ui:6902
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr ""
-#: notebookbar_groupedbar_full.ui:6923
+#: notebookbar_groupedbar_full.ui:7156
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr ""
-#: notebookbar_groupedbar_full.ui:7097
+#: notebookbar_groupedbar_full.ui:7333
msgctxt "notebookbar_groupedbar_full|paragraphstylet"
msgid "St_yles"
msgstr ""
-#: notebookbar_groupedbar_full.ui:7381
+#: notebookbar_groupedbar_full.ui:7620
msgctxt "notebookbar_groupedbar_full|formatt"
msgid "F_ormat"
msgstr ""
-#: notebookbar_groupedbar_full.ui:7732
+#: notebookbar_groupedbar_full.ui:7971
msgctxt "notebookbar_groupedbar_full|paragrapht"
msgid "_Paragraph"
msgstr ""
-#: notebookbar_groupedbar_full.ui:7956
+#: notebookbar_groupedbar_full.ui:8198
msgctxt "notebookbar_groupedbar_full|tabled"
msgid "T_able"
msgstr ""
-#: notebookbar_groupedbar_full.ui:8151
+#: notebookbar_groupedbar_full.ui:8396
msgctxt "notebookbar_groupedbar_full|rowscolumnst"
msgid "R_ows"
msgstr ""
-#: notebookbar_groupedbar_full.ui:8349
+#: notebookbar_groupedbar_full.ui:8597
msgctxt "notebookbar_groupedbar_full|merged"
msgid "_Merge"
msgstr ""
-#: notebookbar_groupedbar_full.ui:8585
+#: notebookbar_groupedbar_full.ui:8825
msgctxt "notebookbar_groupedbar_full|selectt"
msgid "Sele_ct"
msgstr ""
-#: notebookbar_groupedbar_full.ui:8811
+#: notebookbar_groupedbar_full.ui:9054
msgctxt "notebookbar_groupedbar_full|calculatet"
msgid "_Calc"
msgstr ""
-#: notebookbar_groupedbar_full.ui:9036
+#: notebookbar_groupedbar_full.ui:9282
msgctxt "notebookbar_groupedbar_full|referencet"
msgid "Referen_ce"
msgstr ""
-#: notebookbar_groupedbar_full.ui:9169
+#: notebookbar_groupedbar_full.ui:9418
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr ""
-#: notebookbar_groupedbar_full.ui:9394
+#: notebookbar_groupedbar_full.ui:9646
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr ""
-#: notebookbar_groupedbar_full.ui:9606
+#: notebookbar_groupedbar_full.ui:9858
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr ""
-#: notebookbar_groupedbar_full.ui:9808
+#: notebookbar_groupedbar_full.ui:10060
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr ""
-#: notebookbar_groupedbar_full.ui:9954
+#: notebookbar_groupedbar_full.ui:10209
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr ""
-#: notebookbar_groupedbar_full.ui:10396
+#: notebookbar_groupedbar_full.ui:10654
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
-#: notebookbar_groupedbar_full.ui:10766
+#: notebookbar_groupedbar_full.ui:11024
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr ""
-#: notebookbar_groupedbar_full.ui:10993
+#: notebookbar_groupedbar_full.ui:11254
msgctxt "notebookbar_groupedbar_full|wrapb"
msgid "Wrap"
msgstr ""
-#: notebookbar_groupedbar_full.ui:11007
+#: notebookbar_groupedbar_full.ui:11268
msgctxt "notebookbar_groupedbar_full|alignb"
msgid "Align"
msgstr ""
-#: notebookbar_groupedbar_full.ui:11039
+#: notebookbar_groupedbar_full.ui:11300
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr ""
-#: notebookbar_groupedbar_full.ui:11203
+#: notebookbar_groupedbar_full.ui:11467
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr ""
-#: notebookbar_groupedbar_full.ui:11401
+#: notebookbar_groupedbar_full.ui:11668
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr ""
-#: notebookbar_groupedbar_full.ui:11577
+#: notebookbar_groupedbar_full.ui:11847
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: notebookbar_groupedbar_full.ui:11885
+#: notebookbar_groupedbar_full.ui:12158
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ormat"
msgstr ""
-#: notebookbar_groupedbar_full.ui:12151
+#: notebookbar_groupedbar_full.ui:12424
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Paragraph"
msgstr ""
-#: notebookbar_groupedbar_full.ui:12324
+#: notebookbar_groupedbar_full.ui:12600
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr ""
-#: notebookbar_groupedbar_full.ui:12474
+#: notebookbar_groupedbar_full.ui:12753
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr ""
-#: notebookbar_groupedbar_full.ui:12904
+#: notebookbar_groupedbar_full.ui:13186
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: notebookbar_groupedbar_full.ui:13141
+#: notebookbar_groupedbar_full.ui:13423
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr ""
-#: notebookbar_groupedbar_full.ui:13571
+#: notebookbar_groupedbar_full.ui:13853
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr ""
-#: notebookbar_groupedbar_full.ui:13734
+#: notebookbar_groupedbar_full.ui:14019
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr ""
-#: notebookbar_groupedbar_full.ui:13880
+#: notebookbar_groupedbar_full.ui:14168
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr ""
-#: notebookbar_groupedbar_full.ui:14027
-msgctxt "notebookbar_groupedbar_full|menub"
-msgid "_Menu"
-msgstr ""
-
-#: notebookbar_groupedbar_full.ui:14079
-msgctxt "notebookbar_groupedbar_full|toolsb"
-msgid "_Tools"
-msgstr ""
-
-#: notebookbar_groupedbar_full.ui:14133
-msgctxt "notebookbar_groupedbar_full|helpb"
-msgid "_Help"
-msgstr ""
-
#: notebookbar_groups.ui:34
msgctxt "notebookbar_groups|imagestyledefault"
msgid "Default"
@@ -13102,7 +13022,7 @@ msgstr ""
#: notebookbar_groups.ui:2002
msgctxt "notebookbar_groups|tablegrouplabel"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: notebookbar_groups.ui:2038
msgctxt "notebookbar_groups|imagestyleb"
@@ -14054,7 +13974,7 @@ msgstr ""
#: opttablepage.ui:113
msgctxt "opttablepage|label1"
msgid "New Table Defaults"
-msgstr ""
+msgstr "Атаблицаҿыц аҷыдаҟазшьақәа"
#: opttablepage.ui:149
msgctxt "opttablepage|numformatting"
@@ -14074,7 +13994,7 @@ msgstr ""
#: opttablepage.ui:202
msgctxt "opttablepage|label2"
msgid "Input in Tables"
-msgstr ""
+msgstr "Атаблицақәа рахь аҭагалара"
#: opttablepage.ui:256
msgctxt "opttablepage|label10"
@@ -14851,7 +14771,7 @@ msgstr ""
#: picturepage.ui:32
msgctxt "picturepage|browse"
msgid "Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: picturepage.ui:63
msgctxt "picturepage|label1"
@@ -15446,7 +15366,7 @@ msgstr ""
#: renameautotextdialog.ui:94
msgctxt "renameautotextdialog|label3"
msgid "_New"
-msgstr ""
+msgstr "Иаҧҵатәуп"
#: renameautotextdialog.ui:159
msgctxt "renameautotextdialog|label4"
@@ -15476,7 +15396,7 @@ msgstr ""
#: renameobjectdialog.ui:100
msgctxt "renameobjectdialog|label2"
msgid "New name"
-msgstr ""
+msgstr "Ахьӡ ҿыц"
#: renameobjectdialog.ui:132
msgctxt "renameobjectdialog|label1"
@@ -15566,7 +15486,7 @@ msgstr ""
#: sectionpage.ui:215
msgctxt "sectionpage|selectfile"
msgid "Browse..."
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: sectionpage.ui:238
msgctxt "sectionpage|label1"
@@ -15656,7 +15576,7 @@ msgstr ""
#: selectaddressdialog.ui:181
msgctxt "selectaddressdialog|changetable"
msgid "Change _Table..."
-msgstr ""
+msgstr "Иҧсахтәуп атаблица..."
#: selectaddressdialog.ui:225
msgctxt "selectaddressdialog|name"
@@ -15666,7 +15586,7 @@ msgstr ""
#: selectaddressdialog.ui:236
msgctxt "selectaddressdialog|table"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: selectaddressdialog.ui:253
msgctxt "selectaddressdialog|connecting"
@@ -15691,7 +15611,7 @@ msgstr ""
#: selectblockdialog.ui:90
msgctxt "selectblockdialog|new"
msgid "_New..."
-msgstr ""
+msgstr "Иаҧҵатәуп..."
#: selectblockdialog.ui:104
msgctxt "selectblockdialog|edit"
@@ -15741,7 +15661,7 @@ msgstr ""
#: selecttabledialog.ui:9
msgctxt "selecttabledialog|SelectTableDialog"
msgid "Select Table"
-msgstr ""
+msgstr "Иалкаатәуп атаблица"
#: selecttabledialog.ui:91
msgctxt "selecttabledialog|select"
@@ -16101,7 +16021,7 @@ msgstr ""
#: statisticsinfopage.ui:30
msgctxt "statisticsinfopage|label5"
msgid "Tables:"
-msgstr ""
+msgstr "Атаблицақәа:"
#: statisticsinfopage.ui:44
msgctxt "statisticsinfopage|label6"
@@ -16231,12 +16151,12 @@ msgstr ""
#: tableproperties.ui:8
msgctxt "tableproperties|TablePropertiesDialog"
msgid "Table Properties"
-msgstr ""
+msgstr "Атаблица аҷыдаҟазшьақәа"
#: tableproperties.ui:106
msgctxt "tableproperties|table"
msgid "Table"
-msgstr ""
+msgstr "Атаблица"
#: tableproperties.ui:128
msgctxt "tableproperties|textflow"
@@ -16436,7 +16356,7 @@ msgstr ""
#: templatedialog16.ui:144
msgctxt "templatedialog16|bullets"
msgid "Bullets"
-msgstr ""
+msgstr "Амаркерқәа"
#: templatedialog16.ui:167
msgctxt "templatedialog16|numbering"
@@ -17146,7 +17066,7 @@ msgstr ""
#: tocindexpage.ui:28
msgctxt "tocindexpage|new"
msgid "_New..."
-msgstr ""
+msgstr "Иаҧҵатәуп..."
#: tocindexpage.ui:36
msgctxt "tocindexpage|edit"
@@ -17171,7 +17091,7 @@ msgstr ""
#: tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
-msgstr ""
+msgstr "Атаблицақәа рыхьӡынҵа"
#: tocindexpage.ui:66
msgctxt "tocindexpage|liststore1"
@@ -17181,7 +17101,7 @@ msgstr ""
#: tocindexpage.ui:70
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
-msgstr ""
+msgstr "Аобиеқтқәа рыхьӡынҵа"
#: tocindexpage.ui:74
msgctxt "tocindexpage|liststore1"
@@ -17246,7 +17166,7 @@ msgstr ""
#: tocindexpage.ui:373
msgctxt "tocindexpage|fromtables"
msgid "Tables"
-msgstr ""
+msgstr "Атаблицақәа"
#: tocindexpage.ui:388
msgctxt "tocindexpage|fromframes"
@@ -17471,7 +17391,7 @@ msgstr ""
#: viewoptionspage.ui:114
msgctxt "viewoptionspage|tables"
msgid "_Tables"
-msgstr ""
+msgstr "Атаблицақәа"
#: viewoptionspage.ui:131
msgctxt "viewoptionspage|drawings"
diff --git a/source/ab/swext/mediawiki/help.po b/source/ab/swext/mediawiki/help.po
index c743cf30db6..378c24701ca 100644
--- a/source/ab/swext/mediawiki/help.po
+++ b/source/ab/swext/mediawiki/help.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-07-31 08:17+0000\n"
+"PO-Revision-Date: 2017-11-27 08:58+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1501489072.000000\n"
+"X-POOTLE-MTIME: 1511773136.000000\n"
#: help.tree
msgctxt ""
@@ -213,7 +213,7 @@ msgctxt ""
"hd_id7044892\n"
"help.text"
msgid "To Create a New Wiki Page"
-msgstr ""
+msgstr "Wiki адаҟьа ҿыц, аҧҵаразы"
#: wiki.xhp
msgctxt ""
@@ -549,7 +549,7 @@ msgctxt ""
"hd_id2162236\n"
"help.text"
msgid "Tables"
-msgstr ""
+msgstr "Атаблицақәа"
#: wikiformats.xhp
msgctxt ""
diff --git a/source/ab/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po b/source/ab/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
index bcc446f36e4..0c32487cf9d 100644
--- a/source/ab/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
+++ b/source/ab/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2017-07-21 16:14+0000\n"
+"PO-Revision-Date: 2017-11-26 15:10+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1500653652.000000\n"
+"X-POOTLE-MTIME: 1511709028.000000\n"
#: WikiExtension.xcu
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"Dlg_SendToMediaWiki_BrowserCheck\n"
"value.text"
msgid "Show in web ~browser"
-msgstr ""
+msgstr "Иаарҧштәуп абраузер аҟны"
#: WikiExtension.xcu
msgctxt ""
diff --git a/source/ab/sysui/desktop/share.po b/source/ab/sysui/desktop/share.po
index 013f9b05cda..3912a5fa862 100644
--- a/source/ab/sysui/desktop/share.po
+++ b/source/ab/sysui/desktop/share.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-05-07 21:35+0200\n"
-"PO-Revision-Date: 2017-11-18 08:52+0000\n"
+"PO-Revision-Date: 2017-11-27 09:00+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1510995165.000000\n"
+"X-POOTLE-MTIME: 1511773209.000000\n"
#: documents.ulf
msgctxt ""
@@ -501,7 +501,7 @@ msgctxt ""
"writer\n"
"LngText.text"
msgid "New Document"
-msgstr ""
+msgstr "Иаҧҵатәуп адокумент"
#: launcher_unityquicklist.ulf
msgctxt ""
@@ -509,7 +509,7 @@ msgctxt ""
"impress\n"
"LngText.text"
msgid "New Presentation"
-msgstr ""
+msgstr "Иаҧҵатәуп апрезентациа"
#: launcher_unityquicklist.ulf
msgctxt ""
@@ -517,7 +517,7 @@ msgctxt ""
"calc\n"
"LngText.text"
msgid "New Spreadsheet"
-msgstr ""
+msgstr "Иаҧҵатәуп аел. таблица"
#: launcher_unityquicklist.ulf
msgctxt ""
@@ -525,7 +525,7 @@ msgctxt ""
"base\n"
"LngText.text"
msgid "New Database"
-msgstr ""
+msgstr "Иаҧҵатәуп адырқәа рбаза"
#: launcher_unityquicklist.ulf
msgctxt ""
@@ -541,4 +541,4 @@ msgctxt ""
"draw\n"
"LngText.text"
msgid "New Drawing"
-msgstr ""
+msgstr "Иаҧҵатәуп асахьа"
diff --git a/source/ab/uui/messages.po b/source/ab/uui/messages.po
index 3c1180ea7de..1fa531e6a9e 100644
--- a/source/ab/uui/messages.po
+++ b/source/ab/uui/messages.po
@@ -4,14 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2017-11-26 15:10+0000\n"
+"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511709030.000000\n"
#: ids.hrc:27
msgctxt "RID_UUI_ERRHDL"
@@ -701,7 +703,7 @@ msgstr ""
#: logindialog.ui:222
msgctxt "logindialog|pathbtn"
msgid "_Browse…"
-msgstr ""
+msgstr "Аҭыҧхәаҧшра..."
#: logindialog.ui:244
msgctxt "logindialog|loginrealm"
diff --git a/source/ab/vcl/messages.po b/source/ab/vcl/messages.po
index 1412fd1b188..4a8917c06ba 100644
--- a/source/ab/vcl/messages.po
+++ b/source/ab/vcl/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-24 14:55+0100\n"
-"PO-Revision-Date: 2017-11-22 15:53+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-11-27 09:00+0000\n"
+"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511366025.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511773237.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: print.hrc:28
@@ -404,7 +404,7 @@ msgstr ""
#: strings.hrc:66
msgctxt "SV_BUTTONTEXT_NEW"
msgid "~New"
-msgstr ""
+msgstr "Иаҧҵатәуп"
#: strings.hrc:67
msgctxt "SV_BUTTONTEXT_EDIT"
@@ -1401,4 +1401,4 @@ msgstr ""
#: querydialog.ui:8
msgctxt "querydialog|QueryDialog"
msgid "New Data Type"
-msgstr ""
+msgstr "Адырқәа ртип ҿыц"
diff --git a/source/ab/wizards/source/resources.po b/source/ab/wizards/source/resources.po
index f6633f0b50f..e3d6593056a 100644
--- a/source/ab/wizards/source/resources.po
+++ b/source/ab/wizards/source/resources.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-10-04 11:47+0200\n"
-"PO-Revision-Date: 2017-11-18 11:19+0000\n"
+"PO-Revision-Date: 2017-11-26 10:33+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511003996.000000\n"
+"X-POOTLE-MTIME: 1511692402.000000\n"
#: resources_en_US.properties
msgctxt ""
@@ -541,7 +541,7 @@ msgctxt ""
"RID_REPORT_61\n"
"property.text"
msgid "The table '<TABLENAME>' does not exist."
-msgstr ""
+msgstr "Атеқсттә таблица «<TABLENAME>» ыҟаӡам."
#: resources_en_US.properties
msgctxt ""
@@ -2653,7 +2653,7 @@ msgctxt ""
"RID_TABLE_34\n"
"property.text"
msgid "What do you want to name your table?"
-msgstr ""
+msgstr "Атаблиц ахьӡ"
#: resources_en_US.properties
msgctxt ""
@@ -2701,7 +2701,7 @@ msgctxt ""
"RID_TABLE_40\n"
"property.text"
msgid "The table you have created could not be opened."
-msgstr ""
+msgstr "Иаҧҵоу атаблица аартра ауам."
#: resources_en_US.properties
msgctxt ""
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index f8742859706..7c11fbfc500 100644
--- a/source/af/cui/messages.po
+++ b/source/af/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-24 14:55+0100\n"
+"POT-Creation-Date: 2017-12-06 15:59+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"
@@ -358,661 +358,671 @@ msgstr "Kies lêer vir swewende raam"
#: strings.hrc:91
msgctxt "RID_SVXSTR_ALLFUNCTIONS"
-msgid "All categories"
+msgid "All commands"
msgstr ""
#: strings.hrc:92
+msgctxt "RID_SVXSTR_MACROS"
+msgid "Macros"
+msgstr ""
+
+#: strings.hrc:93
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
msgstr "My makro's"
-#: strings.hrc:93
+#: strings.hrc:94
msgctxt "RID_SVXSTR_PRODMACROS"
msgid "%PRODUCTNAME Macros"
msgstr "%PRODUCTNAME-makro's"
-#: strings.hrc:94
+#: strings.hrc:95
+msgctxt "RID_SVXSTR_NOMACRODESC"
+msgid "There is no description available for this macro."
+msgstr ""
+
+#: strings.hrc:96
msgctxt "RID_SVXSTR_SELECTOR_ADD_COMMANDS"
msgid "Add Commands"
msgstr ""
-#: strings.hrc:95
+#: strings.hrc:97
#, fuzzy
msgctxt "RID_SVXSTR_SELECTOR_RUN"
msgid "Run"
msgstr "L~aat loop"
-#: strings.hrc:96
+#: strings.hrc:98
msgctxt "RID_SVXSTR_ROW"
msgid "Insert Rows"
msgstr "Voeg rye in"
-#: strings.hrc:97
+#: strings.hrc:99
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
-#: strings.hrc:98
+#: strings.hrc:100
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
#. PPI is pixel per inch, %1 is a number
-#: strings.hrc:100
+#: strings.hrc:102
msgctxt "RID_SVXSTR_PPI"
msgid "(%1 PPI)"
msgstr ""
-#: strings.hrc:101
+#: strings.hrc:103
#, fuzzy
msgctxt "RID_SVXSTR_COL"
msgid "Insert Columns"
msgstr "~Voeg kolomme in"
-#: strings.hrc:102
+#: strings.hrc:104
#, fuzzy
msgctxt "RID_SVXSTR_AUTO_ENTRY"
msgid "Automatic"
msgstr "Outomaties"
-#: strings.hrc:103
+#: strings.hrc:105
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr ""
-#: strings.hrc:104
+#: strings.hrc:106
msgctxt "RID_SVXSTR_LOADACCELCONFIG"
msgid "Load Keyboard Configuration"
msgstr ""
-#: strings.hrc:105
+#: strings.hrc:107
msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
msgid "Save Keyboard Configuration"
msgstr ""
-#: strings.hrc:106
+#: strings.hrc:108
msgctxt "RID_SVXSTR_FILTERNAME_CFG"
msgid "Configuration (*.cfg)"
msgstr ""
-#: strings.hrc:107
+#: strings.hrc:109
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
msgid "Targets do not exist in the document."
msgstr "Teikens bestaan nie in die dokument nie."
-#: strings.hrc:108
+#: strings.hrc:110
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
msgid "Couldn't open the document."
msgstr ""
-#: strings.hrc:109
+#: strings.hrc:111
msgctxt "RID_SVXSTR_EDITHINT"
msgid "[Enter text here]"
msgstr "[Tik teks hier in]"
-#: strings.hrc:110
+#: strings.hrc:112
msgctxt "RID_SVXSTR_HANGUL"
msgid "Hangul"
msgstr "Hangoel"
-#: strings.hrc:111
+#: strings.hrc:113
msgctxt "RID_SVXSTR_HANJA"
msgid "Hanja"
msgstr "Handja"
-#: strings.hrc:112
+#: strings.hrc:114
msgctxt "RID_SVXSTR_BASICMACROS"
msgid "BASIC Macros"
msgstr ""
-#: strings.hrc:113
+#: strings.hrc:115
msgctxt "RID_SVXSTR_GROUP_STYLES"
msgid "Styles"
msgstr ""
-#: strings.hrc:115
+#: strings.hrc:117
msgctxt "RID_SVXSTR_EVENT_STARTAPP"
msgid "Start Application"
msgstr "Begin toepassing"
-#: strings.hrc:116
+#: strings.hrc:118
msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
msgid "Close Application"
msgstr "Sluit toepassing"
-#: strings.hrc:117
+#: strings.hrc:119
msgctxt "RID_SVXSTR_EVENT_NEWDOC"
msgid "New Document"
msgstr "Nuwe dokument"
-#: strings.hrc:118
+#: strings.hrc:120
msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
msgid "Document closed"
msgstr "Dokument gesluit"
-#: strings.hrc:119
+#: strings.hrc:121
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
msgid "Document is going to be closed"
msgstr "Dokument gaan gesluit word"
-#: strings.hrc:120
+#: strings.hrc:122
msgctxt "RID_SVXSTR_EVENT_OPENDOC"
msgid "Open Document"
msgstr "Open dokument"
-#: strings.hrc:121
+#: strings.hrc:123
msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
msgid "Save Document"
msgstr "Stoor dokument"
-#: strings.hrc:122
+#: strings.hrc:124
msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
msgid "Save Document As"
msgstr "Stoor dokument as"
-#: strings.hrc:123
+#: strings.hrc:125
msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
msgid "Document has been saved"
msgstr "Dokument is gestoor"
-#: strings.hrc:124
+#: strings.hrc:126
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
msgid "Document has been saved as"
msgstr "Dokument is gestoor as"
-#: strings.hrc:125
+#: strings.hrc:127
msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
msgid "Activate Document"
msgstr "Aktiveer dokument"
-#: strings.hrc:126
+#: strings.hrc:128
msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
msgid "Deactivate Document"
msgstr "Deaktiveer dokument"
-#: strings.hrc:127
+#: strings.hrc:129
msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
msgid "Print Document"
msgstr "Druk dokument"
-#: strings.hrc:128
+#: strings.hrc:130
msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
msgid "'Modified' status was changed"
msgstr "'Gewysig'-status is verander"
-#: strings.hrc:129
+#: strings.hrc:131
msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
msgid "Printing of form letters started"
msgstr "Druk van vormletters begin"
-#: strings.hrc:130
+#: strings.hrc:132
msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
msgid "Printing of form letters finished"
msgstr "Druk van vormvelde klaar"
-#: strings.hrc:131
+#: strings.hrc:133
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
msgid "Merging of form fields started"
msgstr "Saamvoeg van vormvelde begin"
-#: strings.hrc:132
+#: strings.hrc:134
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
msgid "Merging of form fields finished"
msgstr "Saamvoeg van vormvelde klaar"
-#: strings.hrc:133
+#: strings.hrc:135
msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
msgid "Changing the page count"
msgstr "Verander bladsytelling"
-#: strings.hrc:134
+#: strings.hrc:136
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
msgid "Loaded a sub component"
msgstr "'n Subkomponent gelaai"
-#: strings.hrc:135
+#: strings.hrc:137
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
msgid "Closed a sub component"
msgstr "'n Subkomponent gesluit"
-#: strings.hrc:136
+#: strings.hrc:138
msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
msgid "Fill parameters"
msgstr "Vul parameters in"
-#: strings.hrc:137
+#: strings.hrc:139
msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
msgid "Execute action"
msgstr "Voer aksie uit"
-#: strings.hrc:138
+#: strings.hrc:140
msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
msgid "After updating"
msgstr "Na bywerking"
-#: strings.hrc:139
+#: strings.hrc:141
msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
msgid "Before updating"
msgstr "Voor bywerking"
-#: strings.hrc:140
+#: strings.hrc:142
msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
msgid "Before record action"
msgstr "Voor opneemaksie"
-#: strings.hrc:141
+#: strings.hrc:143
msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
msgid "After record action"
msgstr "Na opneemaksie"
-#: strings.hrc:142
+#: strings.hrc:144
msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
msgid "Confirm deletion"
msgstr "Bevestig skrapping"
-#: strings.hrc:143
+#: strings.hrc:145
msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
msgid "Error occurred"
msgstr "Fout het voorgekom"
-#: strings.hrc:144
+#: strings.hrc:146
msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
msgid "While adjusting"
msgstr "Tydens aanpassing"
-#: strings.hrc:145
+#: strings.hrc:147
msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
msgid "When receiving focus"
msgstr "Tydens fokusontvangs"
-#: strings.hrc:146
+#: strings.hrc:148
msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
msgid "When losing focus"
msgstr "Tydens fokusverlies"
-#: strings.hrc:147
+#: strings.hrc:149
msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
msgid "Item status changed"
msgstr "Itemstatus het verander"
-#: strings.hrc:148
+#: strings.hrc:150
msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
msgid "Key pressed"
msgstr "Sleutel gedruk"
-#: strings.hrc:149
+#: strings.hrc:151
msgctxt "RID_SVXSTR_EVENT_KEYUP"
msgid "Key released"
msgstr "Sleutel laat los"
-#: strings.hrc:150
+#: strings.hrc:152
msgctxt "RID_SVXSTR_EVENT_LOADED"
msgid "When loading"
msgstr "Tydens laai"
-#: strings.hrc:151
+#: strings.hrc:153
msgctxt "RID_SVXSTR_EVENT_RELOADING"
msgid "Before reloading"
msgstr "Voor herlaai"
-#: strings.hrc:152
+#: strings.hrc:154
msgctxt "RID_SVXSTR_EVENT_RELOADED"
msgid "When reloading"
msgstr "Tydens herlaai"
-#: strings.hrc:153
+#: strings.hrc:155
msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
msgid "Mouse moved while key pressed"
msgstr "Muis het beweeg toe sleutel gedruk is"
-#: strings.hrc:154
+#: strings.hrc:156
msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
msgid "Mouse inside"
msgstr "Muis binne"
-#: strings.hrc:155
+#: strings.hrc:157
msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
msgid "Mouse outside"
msgstr "Muis buite"
-#: strings.hrc:156
+#: strings.hrc:158
msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
msgid "Mouse moved"
msgstr "Muis het beweeg"
-#: strings.hrc:157
+#: strings.hrc:159
msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
msgid "Mouse button pressed"
msgstr "Muisknoppie gedruk"
-#: strings.hrc:158
+#: strings.hrc:160
msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
msgid "Mouse button released"
msgstr "Muisknoppie gelos"
-#: strings.hrc:159
+#: strings.hrc:161
msgctxt "RID_SVXSTR_EVENT_POSITIONING"
msgid "Before record change"
msgstr "Voor rekordverandering"
-#: strings.hrc:160
+#: strings.hrc:162
msgctxt "RID_SVXSTR_EVENT_POSITIONED"
msgid "After record change"
msgstr "Na rekordverandering"
-#: strings.hrc:161
+#: strings.hrc:163
msgctxt "RID_SVXSTR_EVENT_RESETTED"
msgid "After resetting"
msgstr "Na teruglaaiing"
-#: strings.hrc:162
+#: strings.hrc:164
msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
msgid "Prior to reset"
msgstr "Voor terugstelling"
-#: strings.hrc:163
+#: strings.hrc:165
msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
msgid "Approve action"
msgstr "Keur aksie goed"
-#: strings.hrc:164
+#: strings.hrc:166
msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
msgid "Before submitting"
msgstr "Voor indiening"
-#: strings.hrc:165
+#: strings.hrc:167
msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
msgid "Text modified"
msgstr "Teks gewysig"
-#: strings.hrc:166
+#: strings.hrc:168
msgctxt "RID_SVXSTR_EVENT_UNLOADING"
msgid "Before unloading"
msgstr "Voor ontlading"
-#: strings.hrc:167
+#: strings.hrc:169
msgctxt "RID_SVXSTR_EVENT_UNLOADED"
msgid "When unloading"
msgstr "Tydens ontlaaiing"
-#: strings.hrc:168
+#: strings.hrc:170
msgctxt "RID_SVXSTR_EVENT_CHANGED"
msgid "Changed"
msgstr "Het verander"
-#: strings.hrc:169
+#: strings.hrc:171
msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
msgid "Document created"
msgstr "Dokument geskep"
-#: strings.hrc:170
+#: strings.hrc:172
msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
msgid "Document loading finished"
msgstr "Dokument klaar gelaai"
-#: strings.hrc:171
+#: strings.hrc:173
msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
msgid "Saving of document failed"
msgstr "Kon nie dokument stoor nie"
-#: strings.hrc:172
+#: strings.hrc:174
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
msgid "'Save as' has failed"
msgstr "'Stoor as' het misluk"
-#: strings.hrc:173
+#: strings.hrc:175
msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
msgid "Storing or exporting copy of document"
msgstr "Stoor of voer kopie van dokument uit"
-#: strings.hrc:174
+#: strings.hrc:176
msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
msgid "Document copy has been created"
msgstr "Dokumentkopie is geskep"
-#: strings.hrc:175
+#: strings.hrc:177
msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
msgid "Creating of document copy failed"
msgstr "Skep van dokumentkopie het misluk"
-#: strings.hrc:176
+#: strings.hrc:178
msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
msgid "View created"
msgstr "Aansig geskep"
-#: strings.hrc:177
+#: strings.hrc:179
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
msgid "View is going to be closed"
msgstr "Aansig gaan gesluit word"
-#: strings.hrc:178
+#: strings.hrc:180
msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
msgid "View closed"
msgstr "Bekyk geslote"
-#: strings.hrc:179
+#: strings.hrc:181
msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
msgid "Document title changed"
msgstr "Dokumenttitel verander"
-#: strings.hrc:180
+#: strings.hrc:182
msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
msgid "Selection changed"
msgstr ""
-#: strings.hrc:181
+#: strings.hrc:183
msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
msgid "Double click"
msgstr ""
-#: strings.hrc:182
+#: strings.hrc:184
msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
msgid "Right click"
msgstr ""
-#: strings.hrc:183
+#: strings.hrc:185
msgctxt "RID_SVXSTR_EVENT_CALCULATE"
msgid "Formulas calculated"
msgstr ""
-#: strings.hrc:184
+#: strings.hrc:186
msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
msgid "Content changed"
msgstr ""
-#: strings.hrc:186
+#: strings.hrc:188
msgctxt "RID_STR_SEARCH_ANYWHERE"
msgid "anywhere in the field"
msgstr "enige plek in die veld"
-#: strings.hrc:187
+#: strings.hrc:189
msgctxt "RID_STR_SEARCH_BEGINNING"
msgid "beginning of field"
msgstr "begin van veld"
-#: strings.hrc:188
+#: strings.hrc:190
msgctxt "RID_STR_SEARCH_END"
msgid "end of field"
msgstr "einde van veld"
-#: strings.hrc:189
+#: strings.hrc:191
msgctxt "RID_STR_SEARCH_WHOLE"
msgid "entire field"
msgstr "hele veld"
-#: strings.hrc:190
+#: strings.hrc:192
msgctxt "RID_STR_FROM_TOP"
msgid "From top"
msgstr "Vanaf bo"
-#: strings.hrc:191
+#: strings.hrc:193
msgctxt "RID_STR_FROM_BOTTOM"
msgid "From bottom"
msgstr "Van onder"
-#: strings.hrc:192
+#: strings.hrc:194
msgctxt "RID_STR_SEARCH_NORECORD"
msgid "No records corresponding to your data found."
msgstr "Geen rekords wat met u data ooreenstem is gevind nie."
-#: strings.hrc:193
+#: strings.hrc:195
msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
msgid "An unknown error occurred. The search could not be finished."
msgstr "'n Onbekende fout het voorgekom. Die soektog kon nie beëindig word nie."
-#: strings.hrc:194
+#: strings.hrc:196
msgctxt "RID_STR_OVERFLOW_FORWARD"
msgid "Overflow, search continued at the beginning"
msgstr "Oorloop, soektog aan begin voortgesit"
-#: strings.hrc:195
+#: strings.hrc:197
msgctxt "RID_STR_OVERFLOW_BACKWARD"
msgid "Overflow, search continued at the end"
msgstr "Oorloop, soektog aan einde voortgesit"
-#: strings.hrc:196
+#: strings.hrc:198
msgctxt "RID_STR_SEARCH_COUNTING"
msgid "counting records"
msgstr "besig om rekords te tel"
-#: strings.hrc:198
+#: strings.hrc:200
msgctxt "RID_SVXSTR_GALLERY_NOFILES"
msgid "<No Files>"
msgstr "<Geen Lêers>"
-#: strings.hrc:199
+#: strings.hrc:201
msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
msgid "Object;Objects"
msgstr "Objek;Objekte"
-#: strings.hrc:200
+#: strings.hrc:202
msgctxt "RID_SVXSTR_GALLERY_READONLY"
msgid "(read-only)"
msgstr "(leesalleen)"
-#: strings.hrc:201
+#: strings.hrc:203
msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
msgid "<All Files>"
msgstr "<Alle lêers>"
-#: strings.hrc:202
+#: strings.hrc:204
msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
msgid "This ID already exists..."
msgstr "Hierdie ID bestaan reeds..."
-#: strings.hrc:204
+#: strings.hrc:206
msgctxt "RID_MULTIPATH_DBL_ERR"
msgid "The path %1 already exists."
msgstr "Die pad %1 bestaan reeds."
-#: strings.hrc:205
+#: strings.hrc:207
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
msgid "Select Archives"
msgstr "Merk argief"
-#: strings.hrc:206
+#: strings.hrc:208
msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
msgid "Archives"
msgstr "Argief"
-#: strings.hrc:207
+#: strings.hrc:209
msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
msgid "The file %1 already exists."
msgstr "Die lêer %1 bestaan reeds."
-#: strings.hrc:208
+#: strings.hrc:210
msgctxt "RID_SVXSTR_ADD_IMAGE"
msgid "Add Image"
msgstr ""
-#: strings.hrc:210
+#: 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 ""
-#: strings.hrc:211
+#: strings.hrc:213
msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr ""
-#: strings.hrc:212
+#: 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 ""
-#: strings.hrc:213
+#: 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 ""
-#: strings.hrc:215
+#: strings.hrc:217
#, fuzzy
msgctxt "STR_AUTOLINK"
msgid "Automatic"
msgstr "Outomaties"
-#: strings.hrc:216
+#: strings.hrc:218
msgctxt "STR_MANUALLINK"
msgid "Manual"
msgstr "Handmatig"
-#: strings.hrc:217
+#: strings.hrc:219
msgctxt "STR_BROKENLINK"
msgid "Not available"
msgstr "Nie beskikbaar nie"
-#: strings.hrc:218
+#: strings.hrc:220
msgctxt "STR_CLOSELINKMSG"
msgid "Are you sure you want to remove the selected link?"
msgstr "Is u seker u wil die geselekteerde skakel skrap?"
-#: strings.hrc:219
+#: strings.hrc:221
msgctxt "STR_CLOSELINKMSG_MULTI"
msgid "Are you sure you want to remove the selected link?"
msgstr "Is u seker u wil die geselekteerde skakel skrap?"
-#: strings.hrc:220
+#: strings.hrc:222
msgctxt "STR_WAITINGLINK"
msgid "Waiting"
msgstr "Wagtend"
-#: strings.hrc:222
+#: strings.hrc:224
msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
msgid "Save Screenshot As..."
msgstr ""
#. $(ROW) can be a number or the caption of the row in quotes
-#: strings.hrc:225
+#: strings.hrc:227
msgctxt "RID_SVXSTR_DIAGRAM_ROW"
msgid "Data Series $(ROW)"
msgstr "Datareeks $(ROW)"
-#: strings.hrc:227
+#: strings.hrc:229
msgctxt "RID_SVXSTR_DRIVER_NAME"
msgid "Driver name"
msgstr ""
-#: strings.hrc:228
+#: strings.hrc:230
msgctxt "RID_SVXSTR_POOLED_FLAG"
msgid "Pool"
msgstr ""
-#: strings.hrc:229
+#: strings.hrc:231
msgctxt "RID_SVXSTR_POOL_TIMEOUT"
msgid "Timeout"
msgstr ""
-#: strings.hrc:230
+#: strings.hrc:232
msgctxt "RID_SVXSTR_YES"
msgid "Yes"
msgstr ""
-#: strings.hrc:231
+#: strings.hrc:233
msgctxt "RID_SVXSTR_NO"
msgid "No"
msgstr ""
-#: strings.hrc:233
+#: strings.hrc:235
msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
msgid ""
"The file\n"
@@ -1023,7 +1033,7 @@ msgstr ""
"$file$\n"
"bestaan nie."
-#: strings.hrc:234
+#: strings.hrc:236
msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
msgid ""
"The file\n"
@@ -1034,7 +1044,7 @@ msgstr ""
"$file$\n"
"bestaan nie in die plaaslike lêerstelsel nie."
-#: strings.hrc:235
+#: strings.hrc:237
msgctxt "STR_NAME_CONFLICT"
msgid ""
"The name '$file$' is already used for another database.\n"
@@ -1043,158 +1053,158 @@ msgstr ""
"Die naam '$file$' word reeds deur 'n ander databasis gebruik.\n"
"Kies asseblief 'n ander naam."
-#: strings.hrc:236
+#: strings.hrc:238
msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
msgid "Do you want to delete the entry?"
msgstr "Wil u die woordeboek skrap?"
-#: strings.hrc:238
+#: strings.hrc:240
msgctxt "RID_SVXSTR_DELQUERY"
msgid "Do you want to delete the following object?"
msgstr "Wil u die volgende objek skrap?"
-#: strings.hrc:239
+#: strings.hrc:241
msgctxt "RID_SVXSTR_DELQUERY_TITLE"
msgid "Confirm Deletion"
msgstr "Bevestig skrapping"
-#: strings.hrc:240
+#: strings.hrc:242
msgctxt "RID_SVXSTR_DELFAILED"
msgid "The selected object could not be deleted."
msgstr "Die geselekteerde objek kon nie geskrap word nie."
-#: strings.hrc:241
+#: strings.hrc:243
msgctxt "RID_SVXSTR_DELFAILED_TITLE"
msgid "Error Deleting Object"
msgstr "Kon nie objek skrap nie"
-#: strings.hrc:242
+#: strings.hrc:244
#, fuzzy
msgctxt "RID_SVXSTR_CREATEFAILED"
msgid "The object could not be created."
msgstr "Die objek kon nie ingevoeg word nie."
-#: strings.hrc:243
+#: strings.hrc:245
#, fuzzy
msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
msgid " Object with the same name already exists."
msgstr "Objek met selfde naam bestaan reeds"
-#: strings.hrc:244
+#: strings.hrc:246
#, fuzzy
msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
msgid "Error Creating Object"
msgstr "Kon nie objek skrap nie"
-#: strings.hrc:245
+#: strings.hrc:247
#, fuzzy
msgctxt "RID_SVXSTR_RENAMEFAILED"
msgid "The object could not be renamed."
msgstr "Die objek kon nie ingevoeg word nie."
-#: strings.hrc:246
+#: strings.hrc:248
msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
msgid "Error Renaming Object"
msgstr "Fout met hernoem van objek"
-#: strings.hrc:247
+#: strings.hrc:249
msgctxt "RID_SVXSTR_ERROR_TITLE"
msgid "%PRODUCTNAME Error"
msgstr "%PRODUCTNAME-fout"
-#: strings.hrc:248
+#: strings.hrc:250
#, c-format
msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr "Die skriptaal %LANGUAGENAME word nie ondersteun nie."
-#: strings.hrc:249
+#: strings.hrc:251
#, c-format
msgctxt "RID_SVXSTR_ERROR_RUNNING"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr ""
-#: strings.hrc:250
+#: strings.hrc:252
#, c-format
msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr ""
-#: strings.hrc:251
+#: strings.hrc:253
msgctxt "RID_SVXSTR_ERROR_AT_LINE"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:254
msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr ""
-#: strings.hrc:253
+#: strings.hrc:255
#, c-format
msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr ""
-#: strings.hrc:254
+#: strings.hrc:256
#, fuzzy
msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
msgid "Type:"
msgstr "Soort"
-#: strings.hrc:255
+#: strings.hrc:257
msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
msgid "Message:"
msgstr "Boodskap:"
-#: strings.hrc:257
+#: strings.hrc:259
msgctxt "RID_SVXSTR_TYPE"
msgid "Registered name"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:260
msgctxt "RID_SVXSTR_PATH"
msgid "Database file"
msgstr ""
#. abbreviation for "[Load]"
-#: strings.hrc:261
+#: strings.hrc:263
msgctxt "RID_SVXSTR_HEADER1"
msgid "[L]"
msgstr ""
#. abbreviation for "[Save]"
-#: strings.hrc:263
+#: strings.hrc:265
msgctxt "RID_SVXSTR_HEADER2"
msgid "[S]"
msgstr ""
-#: strings.hrc:264
+#: strings.hrc:266
msgctxt "RID_SVXSTR_CHG_MATH"
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr ""
-#: strings.hrc:265
+#: strings.hrc:267
msgctxt "RID_SVXSTR_CHG_WRITER"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr ""
-#: strings.hrc:266
+#: strings.hrc:268
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr ""
-#: strings.hrc:267
+#: strings.hrc:269
msgctxt "RID_SVXSTR_CHG_IMPRESS"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr ""
-#: strings.hrc:268
+#: strings.hrc:270
msgctxt "RID_SVXSTR_CHG_SMARTART"
msgid "SmartArt to %PRODUCTNAME shapes or reverse"
msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
msgid ""
"The specified name already exists.\n"
@@ -1203,112 +1213,124 @@ msgstr ""
"Die gespesifiseerde naam bestaan reeds.\n"
"Tik asseblief 'n nuwe naam."
-#: strings.hrc:271
+#. To translators:
+#. Please, try to find a similar *short* translation to avoid
+#. to get narrow "New" field in the "Edit custom dictionary" window,
+#. for example, "Model word for optional affixation and compounding"
+#. is too long, but "Grammar By" is a good name here (help page of
+#. the window contains the details).
+#. "Grammar By" text entry box of the "Edit custom dictionary" window
+#. contains an optional model word associated to the new user word,
+#. allowing its affixation or compounding during spell checking.
+#. For example, adding "Grammar By" word "fund" to the new user
+#. word "crowdfund", the spell checker will recogize "crowdfund"
+#. with suffixes of "fund": "crowdfunding", "crowdfund's" etc.
+#: strings.hrc:287
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
msgstr ""
-#: strings.hrc:272
+#: strings.hrc:288
msgctxt "STR_MODIFY"
msgid "~Replace"
msgstr ""
-#: strings.hrc:273
+#: strings.hrc:289
msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
msgid "Do you want to change the '%1' dictionary language?"
msgstr "Wil u die '%1'-woordeboektaal wysig?"
-#: strings.hrc:275
+#: strings.hrc:291
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
msgid "Do you really want to delete the color scheme?"
msgstr "Wil u regtig die kleurskema skrap?"
-#: strings.hrc:276
+#: strings.hrc:292
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
msgid "Color Scheme Deletion"
msgstr "Kleurskemaskrapping"
-#: strings.hrc:277
+#: strings.hrc:293
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
msgid "Save scheme"
msgstr "Stoor skema"
-#: strings.hrc:278
+#: strings.hrc:294
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
msgid "Name of color scheme"
msgstr "Naam van kleurskema"
-#: strings.hrc:280
+#: strings.hrc:296
msgctxt "RID_SVXSTR_SPELL"
msgid "Spelling"
msgstr ""
-#: strings.hrc:281
+#: strings.hrc:297
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
msgstr ""
-#: strings.hrc:282
+#: strings.hrc:298
msgctxt "RID_SVXSTR_THES"
msgid "Thesaurus"
msgstr ""
-#: strings.hrc:283
+#: strings.hrc:299
msgctxt "RID_SVXSTR_GRAMMAR"
msgid "Grammar"
msgstr ""
-#: strings.hrc:284
+#: strings.hrc:300
msgctxt "RID_SVXSTR_CAPITAL_WORDS"
msgid "Check uppercase words"
msgstr ""
-#: strings.hrc:285
+#: strings.hrc:301
msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
msgid "Check words with numbers "
msgstr ""
-#: strings.hrc:286
+#: strings.hrc:302
msgctxt "RID_SVXSTR_SPELL_SPECIAL"
msgid "Check special regions"
msgstr ""
-#: strings.hrc:287
+#: strings.hrc:303
msgctxt "RID_SVXSTR_SPELL_AUTO"
msgid "Check spelling as you type"
msgstr ""
-#: strings.hrc:288
+#: strings.hrc:304
msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
msgid "Check grammar as you type"
msgstr ""
-#: strings.hrc:289
+#: strings.hrc:305
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
msgstr ""
-#: strings.hrc:290
+#: strings.hrc:306
msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
msgid "Characters before line break: "
msgstr ""
-#: strings.hrc:291
+#: strings.hrc:307
msgctxt "RID_SVXSTR_NUM_POST_BREAK"
msgid "Characters after line break: "
msgstr ""
-#: strings.hrc:292
+#: strings.hrc:308
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
msgstr ""
-#: strings.hrc:293
+#: strings.hrc:309
msgctxt "RID_SVXSTR_HYPH_SPECIAL"
msgid "Hyphenate special regions"
msgstr ""
-#: strings.hrc:295
+#: strings.hrc:311
#, fuzzy
msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
msgid ""
@@ -1318,7 +1340,7 @@ msgstr ""
"Die vouer wat u gekies het, bevat nie 'n Java-looptydomgewing nie.\n"
"Kies asseblief 'n ander vouer."
-#: strings.hrc:296
+#: strings.hrc:312
#, fuzzy
msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
msgid ""
@@ -1328,17 +1350,17 @@ msgstr ""
"Die Java-looptydomgewing wat u gekies het, is nie die vereiste weergawe nie.\n"
"Kies asseblief 'n ander vouer."
-#: strings.hrc:297
+#: strings.hrc:313
msgctxt "RID_SVXSTR_OPTIONS_RESTART"
msgid "Please restart %PRODUCTNAME now so the new or modified values can take effect."
msgstr ""
-#: strings.hrc:298
+#: strings.hrc:314
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
msgstr ""
-#: strings.hrc:300
+#: strings.hrc:316
msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
msgid ""
"Invalid value!\n"
@@ -1349,68 +1371,68 @@ msgstr ""
"\n"
"Die maksimum waarde vir 'n poortnommer is 65535."
-#: strings.hrc:302
+#: strings.hrc:318
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr ""
-#: strings.hrc:303
+#: strings.hrc:319
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr ""
-#: strings.hrc:304
+#: strings.hrc:320
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr "Gebruik bogeskikte objekinstellings"
#. page direction
-#: strings.hrc:306
+#: strings.hrc:322
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr "Links na regs (horisontaal)"
-#: strings.hrc:307
+#: strings.hrc:323
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr "Regs na links (horisontaal)"
-#: strings.hrc:308
+#: strings.hrc:324
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr ""
-#: strings.hrc:309
+#: strings.hrc:325
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Links na regs (vertikaal)"
-#: strings.hrc:311
+#: strings.hrc:327
msgctxt "RID_SVXSTR_DESC_GRADIENT"
msgid "Please enter a name for the gradient:"
msgstr "Tik asseblief 'n naam vir die gradiënt in:"
-#: strings.hrc:312
+#: strings.hrc:328
msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
msgid "Please enter a name for the bitmap:"
msgstr "Tik asseblief 'n naam vir die biskaart in:"
-#: strings.hrc:313
+#: strings.hrc:329
msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
msgid "Please enter a name for the external bitmap:"
msgstr "Tik asseblief 'n naam vir die eksterne biskaart in:"
-#: strings.hrc:314
+#: strings.hrc:330
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
msgstr ""
-#: strings.hrc:315
+#: strings.hrc:331
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
msgid "Please enter a name for the line style:"
msgstr "Tik asseblief 'n naam vir die lynstyl:"
-#: strings.hrc:316
+#: strings.hrc:332
msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
msgid ""
"The line style was modified without saving. \n"
@@ -1419,297 +1441,297 @@ msgstr ""
"Die lynstyl is verander, maar nie gestoor nie. \n"
"Wysig die gekose lynstyl of voeg 'n nuwe lynstyl by."
-#: strings.hrc:317
+#: strings.hrc:333
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
msgstr "Tik asseblief 'n naam vir die arsering:"
-#: strings.hrc:318
+#: strings.hrc:334
msgctxt "RID_SVXSTR_CHANGE"
msgid "Modify"
msgstr "Wysig"
-#: strings.hrc:319
+#: strings.hrc:335
msgctxt "RID_SVXSTR_ADD"
msgid "Add"
msgstr "Voeg by"
-#: strings.hrc:320
+#: strings.hrc:336
msgctxt "RID_SVXSTR_DESC_COLOR"
msgid "Please enter a name for the new color:"
msgstr "Tik asseblief 'n naam vir die nuwe kleur:"
-#: strings.hrc:321
+#: strings.hrc:337
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
msgstr "Tabel"
-#: strings.hrc:322
+#: strings.hrc:338
msgctxt "RID_SVXSTR_DESC_LINEEND"
msgid "Please enter a name for the new arrowhead:"
msgstr "Tik asseblief 'n naam vir die nuwe pylpunt:"
-#: strings.hrc:323
+#: strings.hrc:339
msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
msgid "No %1"
msgstr "Geen %1"
-#: strings.hrc:324
+#: strings.hrc:340
msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
msgid "Family:"
msgstr ""
-#: strings.hrc:325
+#: strings.hrc:341
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
msgstr ""
-#: strings.hrc:326
+#: strings.hrc:342
msgctxt "RID_SVXSTR_CHARNAME_STYLE"
msgid "Style:"
msgstr ""
-#: strings.hrc:327
+#: strings.hrc:343
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
msgstr ""
-#: strings.hrc:328
+#: strings.hrc:344
msgctxt "RID_SVXSTR_CHARNAME_HIGHLIGHTING"
msgid "Highlight Color"
msgstr ""
-#: strings.hrc:329
+#: strings.hrc:345
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
msgstr ""
-#: strings.hrc:330
+#: strings.hrc:346
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
msgstr ""
-#: strings.hrc:331
+#: strings.hrc:347
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
msgstr ""
-#: strings.hrc:332
+#: strings.hrc:348
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr ""
-#: strings.hrc:333
+#: strings.hrc:349
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
msgstr ""
-#: strings.hrc:334
+#: strings.hrc:350
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
msgstr ""
-#: strings.hrc:335
+#: strings.hrc:351
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
msgstr ""
-#: strings.hrc:336
+#: strings.hrc:352
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
msgstr ""
-#: strings.hrc:337
+#: strings.hrc:353
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
msgstr ""
-#: strings.hrc:338
+#: strings.hrc:354
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr ""
-#: strings.hrc:339
+#: strings.hrc:355
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
msgid "Remove blank paragraphs"
msgstr ""
-#: strings.hrc:340
+#: strings.hrc:356
msgctxt "RID_SVXSTR_USER_STYLE"
msgid "Replace Custom Styles"
msgstr ""
-#: strings.hrc:341
+#: strings.hrc:357
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: "
msgstr ""
-#: strings.hrc:342
+#: strings.hrc:358
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than"
msgstr ""
-#: strings.hrc:343
+#: strings.hrc:359
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: "
msgstr ""
-#: strings.hrc:344
+#: strings.hrc:360
msgctxt "RID_SVXSTR_BORDER"
msgid "Apply border"
msgstr ""
-#: strings.hrc:345
+#: strings.hrc:361
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
msgstr ""
-#: strings.hrc:346
+#: strings.hrc:362
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
msgstr ""
-#: strings.hrc:347
+#: strings.hrc:363
msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr ""
-#: strings.hrc:348
+#: strings.hrc:364
msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
msgid "Delete spaces and tabs at end and start of line"
msgstr ""
-#: strings.hrc:349
+#: strings.hrc:365
msgctxt "RID_SVXSTR_CONNECTOR"
msgid "Connector"
msgstr ""
-#: strings.hrc:350
+#: strings.hrc:366
msgctxt "RID_SVXSTR_DIMENSION_LINE"
msgid "Dimension line"
msgstr ""
-#: strings.hrc:351
+#: strings.hrc:367
msgctxt "RID_SVXSTR_LOAD_ERROR"
msgid "The selected module could not be loaded."
msgstr ""
-#: strings.hrc:352
+#: strings.hrc:368
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
msgstr ""
-#: strings.hrc:353
+#: strings.hrc:369
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr ""
-#: strings.hrc:355
+#: strings.hrc:371
msgctxt "RID_SVXSTR_SELECTEDPERSONA"
msgid "Selected Theme: "
msgstr ""
-#: strings.hrc:356
+#: strings.hrc:372
msgctxt "RID_SVXSTR_SEARCHING"
msgid "Searching, please wait..."
msgstr ""
-#: strings.hrc:357
+#: strings.hrc:373
msgctxt "RID_SVXSTR_SEARCHERROR"
msgid "Cannot open %1, please try again later."
msgstr ""
-#: strings.hrc:358
+#: strings.hrc:374
msgctxt "RID_SVXSTR_NORESULTS"
msgid "No results found."
msgstr ""
-#: strings.hrc:359
+#: strings.hrc:375
msgctxt "RID_SVXSTR_APPLYPERSONA"
msgid "Applying Theme..."
msgstr ""
-#: strings.hrc:361
+#: strings.hrc:377
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: strings.hrc:362
+#: strings.hrc:378
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: strings.hrc:363
+#: strings.hrc:379
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: strings.hrc:364
+#: strings.hrc:380
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: strings.hrc:365
+#: strings.hrc:381
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: strings.hrc:366
+#: strings.hrc:382
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Stel net diagonale lyne op"
-#: strings.hrc:367
+#: strings.hrc:383
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: strings.hrc:368
+#: strings.hrc:384
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: strings.hrc:369
+#: strings.hrc:385
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: strings.hrc:370
+#: strings.hrc:386
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: strings.hrc:371
+#: strings.hrc:387
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: strings.hrc:372
+#: strings.hrc:388
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: strings.hrc:373
+#: strings.hrc:389
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Geen skadu"
-#: strings.hrc:374
+#: strings.hrc:390
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Gooi skaduwee na regs onder"
-#: strings.hrc:375
+#: strings.hrc:391
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Gooi skaduwee na regs bo"
-#: strings.hrc:376
+#: strings.hrc:392
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Gooi skaduwee na links onder"
-#: strings.hrc:377
+#: strings.hrc:393
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Gooi skaduwee na links bo"
@@ -9406,14 +9428,9 @@ msgid ""
msgstr ""
#: paragalignpage.ui:15
-#, fuzzy
+#: /home/cl/vc/git/libo-core/cui/uiconfig/ui/paragalignpage.ui:19
msgctxt "paragalignpage|liststoreLB_LASTLINE"
-msgid "Default"
-msgstr "Verstek"
-
-#: paragalignpage.ui:19
-msgctxt "paragalignpage|liststoreLB_LASTLINE"
-msgid "Left"
+msgid "Start"
msgstr ""
#: paragalignpage.ui:23
@@ -10559,22 +10576,22 @@ msgctxt "shadowtabpage|FT_DISTANCE"
msgid "_Distance:"
msgstr ""
-#: shadowtabpage.ui:157
+#: shadowtabpage.ui:142
msgctxt "shadowtabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr ""
-#: shadowtabpage.ui:177
+#: shadowtabpage.ui:162
msgctxt "shadowtabpage|FT_SHADOW_COLOR"
msgid "_Color:"
msgstr ""
-#: shadowtabpage.ui:220
+#: shadowtabpage.ui:205
msgctxt "shadowtabpage|CTL_COLOR_PREVIEW-atkobject"
msgid "Example"
msgstr ""
-#: shadowtabpage.ui:245
+#: shadowtabpage.ui:230
msgctxt "shadowtabpage|label"
msgid "Properties"
msgstr ""
diff --git a/source/af/filter/source/config/fragments/filters.po b/source/af/filter/source/config/fragments/filters.po
index 90e9322f51b..de08c3ad929 100644
--- a/source/af/filter/source/config/fragments/filters.po
+++ b/source/af/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
"PO-Revision-Date: 2016-12-01 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,15 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr ""
+#: DocBook_File.xcu
+msgctxt ""
+"DocBook_File.xcu\n"
+"DocBook File\n"
+"UIName\n"
+"value.text"
+msgid "DocBook"
+msgstr ""
+
#: DosWord.xcu
msgctxt ""
"DosWord.xcu\n"
@@ -646,6 +655,42 @@ msgctxt ""
msgid "MathType3.x"
msgstr ""
+#: ODG_FlatXML.xcu
+msgctxt ""
+"ODG_FlatXML.xcu\n"
+"OpenDocument Drawing Flat XML\n"
+"UIName\n"
+"value.text"
+msgid "Flat XML ODF Drawing"
+msgstr ""
+
+#: ODP_FlatXML.xcu
+msgctxt ""
+"ODP_FlatXML.xcu\n"
+"OpenDocument Presentation Flat XML\n"
+"UIName\n"
+"value.text"
+msgid "Flat XML ODF Presentation"
+msgstr ""
+
+#: ODS_FlatXML.xcu
+msgctxt ""
+"ODS_FlatXML.xcu\n"
+"OpenDocument Spreadsheet Flat XML\n"
+"UIName\n"
+"value.text"
+msgid "Flat XML ODF Spreadsheet"
+msgstr ""
+
+#: ODT_FlatXML.xcu
+msgctxt ""
+"ODT_FlatXML.xcu\n"
+"OpenDocument Text Flat XML\n"
+"UIName\n"
+"value.text"
+msgid "Flat XML ODF Text Document"
+msgstr ""
+
#: OOXML_Text.xcu
msgctxt ""
"OOXML_Text.xcu\n"
diff --git a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
index 91b337613b1..a74ca7a28ad 100644
--- a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-24 14:56+0100\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
"PO-Revision-Date: 2016-12-01 17:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1786,7 +1786,7 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:TTestDialog\n"
"Label\n"
"value.text"
-msgid "~t-test..."
+msgid "Paired ~t-test..."
msgstr ""
#: CalcCommands.xcu
@@ -8352,8 +8352,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:AdvancedMode\n"
"Label\n"
"value.text"
-msgid "Effects"
-msgstr "Effekte"
+msgid "Transformations"
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10452,8 +10452,8 @@ msgctxt ""
"..DrawWindowState.UIElements.States.private:resource/toolbar/choosemodebar\n"
"UIName\n"
"value.text"
-msgid "Mode"
-msgstr "Modus"
+msgid "Transformations"
+msgstr ""
#: DrawWindowState.xcu
msgctxt ""
@@ -23353,8 +23353,8 @@ msgctxt ""
"..ImpressWindowState.UIElements.States.private:resource/toolbar/choosemodebar\n"
"UIName\n"
"value.text"
-msgid "Mode"
-msgstr "Modus"
+msgid "Transformations"
+msgstr ""
#: ImpressWindowState.xcu
msgctxt ""
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index 6368bf63aa4..65a85819f62 100644
--- a/source/af/sc/messages.po
+++ b/source/af/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-06 15:58+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"
@@ -11811,8 +11811,8 @@ msgstr "Die vektor (ry of reikwydte) waaruit die waarde bepaal moet word."
#: scfuncs.hrc:3418
msgctxt "SC_OPCODE_MATCH"
-msgid "Defines a position in a array after comparing values."
-msgstr "Definieer 'n ligging in 'n skikking nadat waardes vergelyk is."
+msgid "Defines a position in an array after comparing values."
+msgstr ""
#: scfuncs.hrc:3419
msgctxt "SC_OPCODE_MATCH"
@@ -11841,8 +11841,8 @@ msgstr "Soort"
#: scfuncs.hrc:3424
msgctxt "SC_OPCODE_MATCH"
-msgid "Type can take the value 1, 0 or -1 and determines the criteria are to be used for comparison purposes."
-msgstr "Soort kan die waardes 1, 0 of -1 hê en bepaal die kriteria wat gebruik moet word vir vergelykingsdoeleindes."
+msgid "Type can take the value 1, 0 or -1 and determines the criteria to be used for comparison purposes."
+msgstr ""
#: scfuncs.hrc:3430
msgctxt "SC_OPCODE_OFFSET"
@@ -13771,105 +13771,115 @@ msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr ""
-#. Attribute
+#: strings.hrc:50
+msgctxt "SCSTR_TOTAL"
+msgid "%1 results found"
+msgstr ""
+
#: strings.hrc:51
+msgctxt "SCSTR_SKIPPED"
+msgid "(only %1 are listed)"
+msgstr ""
+
+#. Attribute
+#: strings.hrc:53
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Document"
msgstr "Beskerm dokument"
-#: strings.hrc:52
+#: strings.hrc:54
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect document"
msgstr "Ontbeskerm dokument"
-#: strings.hrc:53
+#: strings.hrc:55
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect sheet"
msgstr "Ontbeskerm vel"
-#: strings.hrc:54
+#: strings.hrc:56
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "Beskerm rekords"
-#: strings.hrc:55
+#: strings.hrc:57
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "Ontbeskerm rekords"
-#: strings.hrc:56
+#: strings.hrc:58
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "Wagwoord:"
-#: strings.hrc:57
+#: strings.hrc:59
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "Wagwoord (opsioneel):"
-#: strings.hrc:58
+#: strings.hrc:60
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "Verkeerde wagwoord"
-#: strings.hrc:59
+#: strings.hrc:61
msgctxt "SCSTR_END"
msgid "~End"
msgstr "~Einde"
-#: strings.hrc:60
+#: strings.hrc:62
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "Onbekend"
-#: strings.hrc:61
+#: strings.hrc:63
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "~Minimum"
-#: strings.hrc:62
+#: strings.hrc:64
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "~Maksimum"
-#: strings.hrc:63
+#: strings.hrc:65
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "~Waarde"
-#: strings.hrc:64
+#: strings.hrc:66
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "~Bron"
-#: strings.hrc:65
+#: strings.hrc:67
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "~Inskrywings"
#. for dialogues:
-#: strings.hrc:67
+#: strings.hrc:69
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "Stelsel"
-#: strings.hrc:68
+#: strings.hrc:70
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "Standaard;Teks;Datum (DMJ);Datum (MDJ);Datum (JMD);VS Engels;Versteek"
-#: strings.hrc:69
+#: strings.hrc:71
#, fuzzy
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "Keep"
-#: strings.hrc:70
+#: strings.hrc:72
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr ""
-#: strings.hrc:71
+#: strings.hrc:73
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -13880,30 +13890,30 @@ msgstr ""
"Wil u die korreksie soos hier onder aanbeveel, aanvaar?\n"
"\n"
-#: strings.hrc:72
+#: strings.hrc:74
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr ""
-#: strings.hrc:73
+#: strings.hrc:75
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "Teks"
#. Select tables dialog title
-#: strings.hrc:75
+#: strings.hrc:77
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "Kies velle"
#. Select tables dialog listbox
-#: strings.hrc:77
+#: strings.hrc:79
#, fuzzy
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "Gemerkte velle"
-#: strings.hrc:78
+#: strings.hrc:80
msgctxt "STR_REPLCELLSWARN"
msgid ""
"You are pasting data into cells that already contain data.\n"
@@ -13912,1177 +13922,1177 @@ msgstr ""
"U plak tans data in selle wat reeds data bevat.\n"
"Wil u regtig die bestaande data oorskryf?"
-#: strings.hrc:79
+#: strings.hrc:81
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "Liniaal"
-#: strings.hrc:80
+#: strings.hrc:82
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "Hierdie liniaal bestuur objekte op vaste posisies."
-#: strings.hrc:81
+#: strings.hrc:83
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "Voorskou"
-#: strings.hrc:82
+#: strings.hrc:84
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "Hierdie vel vertoon hoe die data in die dokument georden sal word."
-#: strings.hrc:83
+#: strings.hrc:85
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "Dokumentaansig"
-#: strings.hrc:84
+#: strings.hrc:86
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "Vel %1"
-#: strings.hrc:85
+#: strings.hrc:87
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "Sel %1"
-#: strings.hrc:86
+#: strings.hrc:88
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "Linkerarea"
-#: strings.hrc:87
+#: strings.hrc:89
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "Bladsyvoorskou"
-#: strings.hrc:88
+#: strings.hrc:90
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "Middelarea"
-#: strings.hrc:89
+#: strings.hrc:91
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "Regterarea"
-#: strings.hrc:90
+#: strings.hrc:92
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "Kop van bladsy %1"
-#: strings.hrc:91
+#: strings.hrc:93
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "Voet van bladsy %1"
-#: strings.hrc:92
+#: strings.hrc:94
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "Toevoerreël"
-#: strings.hrc:93
+#: strings.hrc:95
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "Dit is waar u teks, syfers of formules intik of redigeer."
-#: strings.hrc:94
+#: strings.hrc:96
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "Media-terugspeel"
-#: strings.hrc:95
+#: strings.hrc:97
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "Muisknoppie gedruk"
-#: strings.hrc:96
+#: strings.hrc:98
#, fuzzy
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "~Formulebalk"
-#: strings.hrc:97
+#: strings.hrc:99
#, fuzzy
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "%PRODUCTNAME-sigblad"
-#: strings.hrc:98
+#: strings.hrc:100
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(leesalleen)"
-#: strings.hrc:99
+#: strings.hrc:101
#, fuzzy
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "Voor~skoumodus"
-#: strings.hrc:100
+#: strings.hrc:102
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages"
msgstr ""
-#: strings.hrc:101
+#: strings.hrc:103
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr ""
-#: strings.hrc:102
+#: strings.hrc:104
msgctxt "SCSTR_PRINTOPT_PRNTCONTENT"
msgid "Print content"
msgstr ""
-#: strings.hrc:103
+#: strings.hrc:105
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "~All sheets"
msgstr ""
-#: strings.hrc:104
+#: strings.hrc:106
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "~Selected sheets"
msgstr ""
-#: strings.hrc:105
+#: strings.hrc:107
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Selected cells"
msgstr ""
-#: strings.hrc:106
+#: strings.hrc:108
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which print"
msgstr ""
-#: strings.hrc:107
+#: strings.hrc:109
msgctxt "SCSTR_PRINTOPT_ALLPAGES"
msgid "All ~pages"
msgstr ""
-#: strings.hrc:108
+#: strings.hrc:110
msgctxt "SCSTR_PRINTOPT_PAGES_"
msgid "Pa~ges"
msgstr ""
-#: strings.hrc:109
+#: strings.hrc:111
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr ""
-#: strings.hrc:110
+#: strings.hrc:112
msgctxt "SCSTR_WARN_ME_IN_FUTURE_CHECK"
msgid "Warn me about this in the future."
msgstr ""
-#: strings.hrc:111
+#: strings.hrc:113
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 ""
-#: strings.hrc:112
+#: strings.hrc:114
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr ""
-#: strings.hrc:113
+#: strings.hrc:115
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr ""
-#: strings.hrc:114
+#: strings.hrc:116
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr ""
-#: strings.hrc:115
+#: strings.hrc:117
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr ""
-#: strings.hrc:116
+#: strings.hrc:118
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr ""
-#: strings.hrc:117
+#: strings.hrc:119
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "Reikwydte bevat kolomet~ikette"
-#: strings.hrc:118
+#: strings.hrc:120
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "Reikwydte bevat ~ryetikette"
-#: strings.hrc:119
+#: strings.hrc:121
#, fuzzy
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "Ongeldige waarde."
-#: strings.hrc:120
+#: strings.hrc:122
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr ""
-#: strings.hrc:121
+#: strings.hrc:123
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr ""
-#: strings.hrc:122
+#: strings.hrc:124
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr ""
-#: strings.hrc:123
+#: strings.hrc:125
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr ""
-#: strings.hrc:124
+#: strings.hrc:126
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr ""
-#: strings.hrc:125
+#: strings.hrc:127
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr ""
-#: strings.hrc:126
+#: strings.hrc:128
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr ""
-#: strings.hrc:127
+#: strings.hrc:129
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr ""
-#: strings.hrc:128
+#: strings.hrc:130
#, fuzzy
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Naam"
-#: strings.hrc:129
+#: strings.hrc:131
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr ""
-#: strings.hrc:130
+#: strings.hrc:132
#, fuzzy
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "Wil u werklik die inskrywing # skrap?"
-#: strings.hrc:131
+#: strings.hrc:133
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~Sluit"
-#: strings.hrc:132
+#: strings.hrc:134
msgctxt "STR_JAN"
msgid "Jan"
msgstr ""
-#: strings.hrc:133
+#: strings.hrc:135
msgctxt "STR_FEB"
msgid "Feb"
msgstr ""
-#: strings.hrc:134
+#: strings.hrc:136
msgctxt "STR_MAR"
msgid "Mar"
msgstr ""
-#: strings.hrc:135
+#: strings.hrc:137
msgctxt "STR_NORTH"
msgid "North"
msgstr ""
-#: strings.hrc:136
+#: strings.hrc:138
msgctxt "STR_MID"
msgid "Mid"
msgstr ""
-#: strings.hrc:137
+#: strings.hrc:139
msgctxt "STR_SOUTH"
msgid "South"
msgstr ""
-#: strings.hrc:138
+#: strings.hrc:140
msgctxt "STR_SUM"
msgid "Total"
msgstr "Totaal"
-#: strings.hrc:139
+#: strings.hrc:141
msgctxt "STR_SHEET"
msgid "Sheet"
msgstr "Vel"
-#: strings.hrc:140
+#: strings.hrc:142
#, fuzzy
msgctxt "STR_CELL"
msgid "Cell"
msgstr "Selle"
-#: strings.hrc:141
+#: strings.hrc:143
msgctxt "STR_CONTENT"
msgid "Content"
msgstr ""
-#: strings.hrc:142
+#: strings.hrc:144
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr ""
-#: strings.hrc:143
+#: strings.hrc:145
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr ""
-#: strings.hrc:144
+#: strings.hrc:146
msgctxt "SCSTR_CONDITION"
msgid "Condition "
msgstr ""
#. content description strings are also use d in ScLinkTargetsObj
-#: strings.hrc:147
+#: strings.hrc:149
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "Inhoud"
-#: strings.hrc:148
+#: strings.hrc:150
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "Velle"
-#: strings.hrc:149
+#: strings.hrc:151
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "Omvangname"
-#: strings.hrc:150
+#: strings.hrc:152
#, fuzzy
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "Databasisomvangs"
-#: strings.hrc:151
+#: strings.hrc:153
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr ""
-#: strings.hrc:152
+#: strings.hrc:154
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "OLE-objekte"
-#: strings.hrc:153
+#: strings.hrc:155
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "Opmerkings"
-#: strings.hrc:154
+#: strings.hrc:156
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "Geskakelde areas"
-#: strings.hrc:155
+#: strings.hrc:157
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "Tekenobjekte"
-#: strings.hrc:156
+#: strings.hrc:158
msgctxt "SCSTR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
-#: strings.hrc:157
+#: strings.hrc:159
msgctxt "SCSTR_DISPLAY"
msgid "Display"
msgstr ""
-#: strings.hrc:158
+#: strings.hrc:160
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr ""
-#: strings.hrc:159
+#: strings.hrc:161
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr ""
-#: strings.hrc:160
+#: strings.hrc:162
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr ""
-#: strings.hrc:161
+#: strings.hrc:163
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr ""
-#: strings.hrc:162
+#: strings.hrc:164
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr ""
-#: strings.hrc:163
+#: strings.hrc:165
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr ""
-#: strings.hrc:165
+#: strings.hrc:167
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr ""
-#: strings.hrc:166
+#: strings.hrc:168
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr ""
-#: strings.hrc:167
+#: strings.hrc:169
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr ""
-#: strings.hrc:168
+#: strings.hrc:170
msgctxt "STR_BTN_TOGGLE_ALL"
msgid "All"
msgstr ""
-#: strings.hrc:169
+#: strings.hrc:171
msgctxt "STR_BTN_SELECT_CURRENT"
msgid "Show only the current item."
msgstr ""
-#: strings.hrc:170
+#: strings.hrc:172
msgctxt "STR_BTN_UNSELECT_CURRENT"
msgid "Hide only the current item."
msgstr ""
-#: strings.hrc:171
+#: strings.hrc:173
msgctxt "STR_EDIT_SEARCH_ITEMS"
msgid "Search items..."
msgstr ""
-#: strings.hrc:173
+#: strings.hrc:175
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "Naamkas"
-#: strings.hrc:174
+#: strings.hrc:176
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "Toevoerreël"
-#: strings.hrc:175
+#: strings.hrc:177
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "Funksieslimmerd"
-#: strings.hrc:176
+#: strings.hrc:178
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "Aanvaar"
-#: strings.hrc:177
+#: strings.hrc:179
#, fuzzy
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "Kanselleer"
-#: strings.hrc:178
+#: strings.hrc:180
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Sum"
msgstr "Som"
-#: strings.hrc:179
+#: strings.hrc:181
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr ""
-#: strings.hrc:180
+#: strings.hrc:182
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr ""
-#: strings.hrc:181
+#: strings.hrc:183
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr ""
-#: strings.hrc:183
+#: strings.hrc:185
msgctxt "STR_TITLE_CONFLICT"
msgid "Conflict"
msgstr "Konflik"
-#: strings.hrc:184
+#: strings.hrc:186
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "Outeur"
-#: strings.hrc:185
+#: strings.hrc:187
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "Datum"
-#: strings.hrc:186
+#: strings.hrc:188
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "Onbekende gebruiker"
-#: strings.hrc:188
+#: strings.hrc:190
#, fuzzy
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "Kolom ingevoeg"
-#: strings.hrc:189
+#: strings.hrc:191
#, fuzzy
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "Ry ingevoeg "
-#: strings.hrc:190
+#: strings.hrc:192
#, fuzzy
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "Blaai ingevoeg "
-#: strings.hrc:191
+#: strings.hrc:193
#, fuzzy
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "Kolom geskrap"
-#: strings.hrc:192
+#: strings.hrc:194
#, fuzzy
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "Ry geskrap"
-#: strings.hrc:193
+#: strings.hrc:195
#, fuzzy
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "Blaai geskrap"
-#: strings.hrc:194
+#: strings.hrc:196
#, fuzzy
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "Reikwydte geskuif"
-#: strings.hrc:195
+#: strings.hrc:197
#, fuzzy
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "Veranderde inhoud"
-#: strings.hrc:196
+#: strings.hrc:198
#, fuzzy
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "Veranderde inhoud"
-#: strings.hrc:197
+#: strings.hrc:199
#, fuzzy
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "Verander na "
-#: strings.hrc:198
+#: strings.hrc:200
#, fuzzy
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "Oorspronklik"
-#: strings.hrc:199
+#: strings.hrc:201
#, fuzzy
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "Wysigings uitgegooi"
-#: strings.hrc:200
+#: strings.hrc:202
#, fuzzy
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "Aanvaar"
-#: strings.hrc:201
+#: strings.hrc:203
#, fuzzy
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "Uitgegooi"
-#: strings.hrc:202
+#: strings.hrc:204
#, fuzzy
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "Geen toegang"
-#: strings.hrc:203
+#: strings.hrc:205
#, fuzzy
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<leeg>"
-#: strings.hrc:205
+#: strings.hrc:207
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "Nie beskerm nie"
-#: strings.hrc:206
+#: strings.hrc:208
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "Nie wagwoordbeskermd"
-#: strings.hrc:207
+#: strings.hrc:209
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "Huts onversoenbaar"
-#: strings.hrc:208
+#: strings.hrc:210
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "Huts versoenbaar"
-#: strings.hrc:209
+#: strings.hrc:211
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "Hertik"
#. MovingAverageDialog
-#: strings.hrc:212
+#: strings.hrc:214
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr ""
#. ExponentialSmoothingDialog
-#: strings.hrc:214
+#: strings.hrc:216
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr ""
#. AnalysisOfVarianceDialog
-#: strings.hrc:216
+#: strings.hrc:218
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr ""
-#: strings.hrc:217
+#: strings.hrc:219
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr ""
-#: strings.hrc:218
+#: strings.hrc:220
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr ""
-#: strings.hrc:219
+#: strings.hrc:221
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr ""
-#: strings.hrc:220
+#: strings.hrc:222
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr ""
-#: strings.hrc:221
+#: strings.hrc:223
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr ""
-#: strings.hrc:222
+#: strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr ""
-#: strings.hrc:223
+#: strings.hrc:225
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr ""
-#: strings.hrc:224
+#: strings.hrc:226
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr ""
-#: strings.hrc:225
+#: strings.hrc:227
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr ""
-#: strings.hrc:226
+#: strings.hrc:228
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
-#: strings.hrc:227
+#: strings.hrc:229
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr ""
-#: strings.hrc:228
+#: strings.hrc:230
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr ""
-#: strings.hrc:229
+#: strings.hrc:231
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr ""
#. CorrelationDialog
-#: strings.hrc:231
+#: strings.hrc:233
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr ""
-#: strings.hrc:232
+#: strings.hrc:234
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr ""
#. CovarianceDialog
-#: strings.hrc:234
+#: strings.hrc:236
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr ""
-#: strings.hrc:235
+#: strings.hrc:237
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr ""
#. DescriptiveStatisticsDialog
-#: strings.hrc:237
+#: strings.hrc:239
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr ""
-#: strings.hrc:238
+#: strings.hrc:240
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr ""
-#: strings.hrc:239
+#: strings.hrc:241
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr ""
-#: strings.hrc:240
+#: strings.hrc:242
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr ""
-#: strings.hrc:241
+#: strings.hrc:243
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr ""
-#: strings.hrc:242
+#: strings.hrc:244
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:245
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
-#: strings.hrc:244
+#: strings.hrc:246
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:247
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr ""
-#: strings.hrc:246
+#: strings.hrc:248
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr ""
-#: strings.hrc:247
+#: strings.hrc:249
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr ""
-#: strings.hrc:248
+#: strings.hrc:250
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr ""
-#: strings.hrc:249
+#: strings.hrc:251
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr ""
-#: strings.hrc:250
+#: strings.hrc:252
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr ""
-#: strings.hrc:251
+#: strings.hrc:253
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile "
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:254
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr ""
#. RandomNumberGeneratorDialog
-#: strings.hrc:254
+#: strings.hrc:256
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:257
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr ""
-#: strings.hrc:256
+#: strings.hrc:258
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr ""
-#: strings.hrc:257
+#: strings.hrc:259
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:260
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr ""
-#: strings.hrc:259
+#: strings.hrc:261
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr ""
-#: strings.hrc:260
+#: strings.hrc:262
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr ""
-#: strings.hrc:261
+#: strings.hrc:263
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr ""
-#: strings.hrc:262
+#: strings.hrc:264
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr ""
-#: strings.hrc:263
+#: strings.hrc:265
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr ""
-#: strings.hrc:264
+#: strings.hrc:266
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr ""
-#: strings.hrc:265
+#: strings.hrc:267
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr ""
-#: strings.hrc:266
+#: strings.hrc:268
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr ""
-#: strings.hrc:267
+#: strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
-#: strings.hrc:268
+#: strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr ""
-#: strings.hrc:269
+#: strings.hrc:271
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr ""
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr ""
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr ""
#. SamplingDialog
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr ""
#. Names of dialogs
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_FTEST"
msgid "F-test"
msgstr ""
-#: strings.hrc:277
+#: strings.hrc:279
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr ""
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_TTEST"
-msgid "t-test"
+msgid "Paired t-test"
msgstr ""
-#: strings.hrc:279
+#: strings.hrc:281
msgctxt "STR_TTEST_UNDO_NAME"
-msgid "t-test"
+msgid "Paired t-test"
msgstr ""
-#: strings.hrc:280
+#: strings.hrc:282
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr ""
-#: strings.hrc:281
+#: strings.hrc:283
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr ""
-#: strings.hrc:282
+#: strings.hrc:284
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr ""
-#: strings.hrc:283
+#: strings.hrc:285
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr ""
-#: strings.hrc:284
+#: strings.hrc:286
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr ""
#. Common
-#: strings.hrc:286
+#: strings.hrc:288
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr ""
-#: strings.hrc:287
+#: strings.hrc:289
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr ""
-#: strings.hrc:288
+#: strings.hrc:290
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr ""
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr ""
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr ""
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr ""
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr ""
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr ""
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr ""
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr ""
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr ""
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr ""
#. RegressionDialog
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr ""
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr ""
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr ""
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr ""
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr ""
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_LABEL_SLOPE"
msgid "Slope"
msgstr ""
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr ""
#. F Test
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr ""
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr ""
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr ""
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr ""
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr ""
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr ""
#. t Test
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr ""
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr ""
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr ""
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr ""
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr ""
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr ""
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr ""
#. Z Test
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr ""
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr ""
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr ""
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr ""
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr ""
@@ -20775,16 +20785,11 @@ msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr ""
-#: searchresults.ui:8
+#: searchresults.ui:9
msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: searchresults.ui:60
-msgctxt "searchresults|skipped"
-msgid "skipped $1 ..."
-msgstr ""
-
#: selectdatasource.ui:8
msgctxt "selectdatasource|SelectDataSourceDialog"
msgid "Select Data Source"
diff --git a/source/af/svtools/messages.po b/source/af/svtools/messages.po
index 3da8c58d8c7..3091e434acb 100644
--- a/source/af/svtools/messages.po
+++ b/source/af/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-06 15:58+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"
@@ -2430,6 +2430,11 @@ msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fon"
msgstr ""
+#: langtab.hrc:409
+msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
+msgid "Plautdietsch"
+msgstr ""
+
#: templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
msgid "Title"
@@ -2515,7 +2520,7 @@ msgctxt "addresstemplatedialog|label100"
msgid "Address Book Source"
msgstr ""
-#: addresstemplatedialog.ui:521
+#: addresstemplatedialog.ui:522
msgctxt "addresstemplatedialog|label23"
msgid "Field Assignment"
msgstr ""
@@ -3332,1167 +3337,1177 @@ msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-formaat sonder opmerkings"
-#: strings.hrc:98
+#: strings.hrc:97
+msgctxt "STR_FORMAT_ID_PNG_BITMAP"
+msgid "PNG Bitmap"
+msgstr ""
+
+#: strings.hrc:99
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objek % kon nie ingevoeg word nie."
-#: strings.hrc:99
+#: strings.hrc:100
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objek uit lêer % kon nie ingevoeg word nie."
-#: strings.hrc:100
+#: strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_PLUGIN"
msgid "Plug-in from document % could not be inserted."
msgstr "Inprop uit dokument % kon nie ingevoeg word nie."
-#: strings.hrc:101
+#: strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Verdere objekte"
-#: strings.hrc:102
+#: strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Onbekende brondokument"
-#: strings.hrc:104
+#: strings.hrc:105
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr ""
-#: strings.hrc:105
+#: strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Grootte"
-#: strings.hrc:106
+#: strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Datum gewysig"
-#: strings.hrc:107
+#: strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Soort"
-#: strings.hrc:108
+#: strings.hrc:109
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Grepe"
-#: strings.hrc:109
+#: strings.hrc:110
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "kilogreep"
-#: strings.hrc:110
+#: strings.hrc:111
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "megagreep"
-#: strings.hrc:111
+#: strings.hrc:112
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "gigagreep"
#. descriptions of accessible objects
-#: strings.hrc:114
+#: strings.hrc:115
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Ry: %1, Kolom: %2"
-#: strings.hrc:115
+#: strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Tipe: %1, URL: %2"
-#: strings.hrc:116
+#: strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Vouer"
-#: strings.hrc:117
+#: strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Lêer"
-#: strings.hrc:118
+#: strings.hrc:119
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Leë veld"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: strings.hrc:124
+#: strings.hrc:125
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeries"
#. default or normal sorting algorithm
-#: strings.hrc:126
+#: strings.hrc:127
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normaal"
#. default or normal sorting algorithm
-#: strings.hrc:128
+#: strings.hrc:129
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Karakterstel"
#. german dictionary word order / sorting
-#: strings.hrc:130
+#: strings.hrc:131
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Woordeboek"
#. chinese sorting algorithm
-#: strings.hrc:132
+#: strings.hrc:133
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinjin"
#. chinese sorting algorithm
-#: strings.hrc:134
+#: strings.hrc:135
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Slag"
#. chinese sorting algorithm
-#: strings.hrc:136
+#: strings.hrc:137
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikaal"
#. sorting according to the unicode code point of the character
-#: strings.hrc:138
+#: strings.hrc:139
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: strings.hrc:140
+#: strings.hrc:141
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhujin"
#. phone book sorting algorithm. e.g. German
-#: strings.hrc:142
+#: strings.hrc:143
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Foonboek"
-#: strings.hrc:143
+#: strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Foneties (alfanumeries eerste)"
-#: strings.hrc:144
+#: strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Foneties (alfanumeries laaste)"
#. alphanumeric indexentry algorithm
-#: strings.hrc:146
+#: strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeries"
#. korean dictionary indexentry algorithm
-#: strings.hrc:148
+#: strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Woordeboek"
#. chinese sorting algorithm
-#: strings.hrc:150
+#: strings.hrc:151
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinjin"
#. chinese indexentry algorithm
-#: strings.hrc:152
+#: strings.hrc:153
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikaal"
#. chinese indexentry algorithm
-#: strings.hrc:154
+#: strings.hrc:155
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Slag"
#. chinese indexentry algorithm
-#: strings.hrc:156
+#: strings.hrc:157
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhujin"
-#: strings.hrc:157
+#: strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Foneties (alfanumeries eerste, gegroepeer volgens lettergrepe)"
-#: strings.hrc:158
+#: strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Foneties (alfanumeries eerste, gegroepeer volgens konsonante)"
-#: strings.hrc:159
+#: strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Foneties (alfanumeries laaste, gegroepeer volgens lettergrepe)"
-#: strings.hrc:160
+#: strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Foneties (alfanumeries laaste, gegroepeer volgens konsonante)"
-#: strings.hrc:162
+#: strings.hrc:163
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr "Dag"
-#: strings.hrc:163
+#: strings.hrc:164
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr "Week"
-#: strings.hrc:164
+#: strings.hrc:165
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Vandag"
-#: strings.hrc:165
+#: strings.hrc:166
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Geen"
-#: strings.hrc:167
+#: strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Lig"
-#: strings.hrc:168
+#: strings.hrc:169
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Ligte skuinsdruk"
-#: strings.hrc:169
+#: strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Gewoon"
-#: strings.hrc:170
+#: strings.hrc:171
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "~Skuinsdruk"
-#: strings.hrc:171
+#: strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Vetdruk"
-#: strings.hrc:172
+#: strings.hrc:173
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Vet skuinsdruk"
-#: strings.hrc:173
+#: strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Swart"
-#: strings.hrc:174
+#: strings.hrc:175
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Swart skuinsdruk"
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr ""
-#: strings.hrc:176
+#: strings.hrc:177
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: strings.hrc:177
+#: strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr ""
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: strings.hrc:180
+#: strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: strings.hrc:183
+#: strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: strings.hrc:185
+#: strings.hrc:186
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: strings.hrc:186
+#: strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: strings.hrc:187
+#: strings.hrc:188
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: strings.hrc:188
+#: strings.hrc:189
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Selfde font sal gebruik word vir die drukker en die skerm."
-#: strings.hrc:189
+#: strings.hrc:190
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Hierdie is 'n drukkerfont. Die skermvoorkoms mag verskil."
-#: strings.hrc:190
+#: strings.hrc:191
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Hierdie fontstyl sal nageboots word of die naaste ooreenstemmende styl sal gebruik word."
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Hierdie font is nie geïnstalleer nie. Die naaste beskikbare font sal gebruik word."
-#: strings.hrc:193
+#: strings.hrc:194
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Blaai..."
-#: strings.hrc:194
+#: strings.hrc:195
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Skuif opmerking"
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Skuif links"
-#: strings.hrc:196
+#: strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Skuif regs"
-#: strings.hrc:197
+#: strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Skuif ondertoe"
-#: strings.hrc:198
+#: strings.hrc:199
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr ""
-#: strings.hrc:200
+#: strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr ""
-#: strings.hrc:203
+#: strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bis drempel"
-#: strings.hrc:204
+#: strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-bis-versag"
-#: strings.hrc:205
+#: strings.hrc:206
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bis-gryskleur"
-#: strings.hrc:206
+#: strings.hrc:207
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: strings.hrc:207
+#: strings.hrc:208
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bis-gryskleur"
-#: strings.hrc:208
+#: strings.hrc:209
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: strings.hrc:209
+#: strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bis- ware kleur"
-#: strings.hrc:210
+#: strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: strings.hrc:211
+#: strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: strings.hrc:213
+#: strings.hrc:214
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr ""
-#: strings.hrc:214
+#: strings.hrc:215
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr ""
-#: strings.hrc:215
+#: strings.hrc:216
+msgctxt "STR_SVT_OTHER_CMIS"
+msgid "Other CMIS"
+msgstr ""
+
+#: strings.hrc:217
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: strings.hrc:216
+#: strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr ""
-#: strings.hrc:217
+#: strings.hrc:219
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: strings.hrc:218
+#: strings.hrc:220
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: strings.hrc:219
+#: strings.hrc:221
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
-#: strings.hrc:220
+#: strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr ""
-#: strings.hrc:221
+#: strings.hrc:223
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: strings.hrc:222
+#: strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: strings.hrc:223
+#: strings.hrc:225
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: strings.hrc:224
+#: strings.hrc:226
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: strings.hrc:225
+#: strings.hrc:227
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr ""
-#: strings.hrc:226
+#: strings.hrc:228
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: strings.hrc:227
+#: strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: strings.hrc:228
+#: strings.hrc:230
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: strings.hrc:229
+#: strings.hrc:231
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: strings.hrc:230
+#: strings.hrc:232
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: strings.hrc:231
+#: strings.hrc:233
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: strings.hrc:232
+#: strings.hrc:234
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: strings.hrc:233
+#: strings.hrc:235
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: strings.hrc:234
+#: strings.hrc:236
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: strings.hrc:235
+#: strings.hrc:237
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr ""
-#: strings.hrc:236
+#: strings.hrc:238
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: strings.hrc:237
+#: strings.hrc:239
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
-#: strings.hrc:238
+#: strings.hrc:240
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: strings.hrc:239
+#: strings.hrc:241
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: strings.hrc:240
+#: strings.hrc:242
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
-#: strings.hrc:241
+#: strings.hrc:243
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:245
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Klaar"
-#: strings.hrc:244
+#: strings.hrc:246
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:247
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
-#: strings.hrc:246
+#: strings.hrc:248
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Stappe"
-#: strings.hrc:248
+#: strings.hrc:250
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<geen>"
-#: strings.hrc:249
+#: strings.hrc:251
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Maatskappy"
-#: strings.hrc:250
+#: strings.hrc:252
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Afdeling"
-#: strings.hrc:251
+#: strings.hrc:253
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Voornaam"
-#: strings.hrc:252
+#: strings.hrc:254
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Van"
-#: strings.hrc:253
+#: strings.hrc:255
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Straat"
-#: strings.hrc:254
+#: strings.hrc:256
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Land"
-#: strings.hrc:255
+#: strings.hrc:257
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Poskode"
-#: strings.hrc:256
+#: strings.hrc:258
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Stad"
-#: strings.hrc:257
+#: strings.hrc:259
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
-#: strings.hrc:258
+#: strings.hrc:260
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posisie"
-#: strings.hrc:259
+#: strings.hrc:261
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Adresvorm"
-#: strings.hrc:260
+#: strings.hrc:262
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Voorletters"
-#: strings.hrc:261
+#: strings.hrc:263
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Komplimentêre afsluiting"
-#: strings.hrc:262
+#: strings.hrc:264
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: Tuis"
-#: strings.hrc:263
+#: strings.hrc:265
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: Werk"
-#: strings.hrc:264
+#: strings.hrc:266
msgctxt "STR_FIELD_FAX"
msgid "FAX"
msgstr "FAKS"
-#: strings.hrc:265
+#: strings.hrc:267
msgctxt "STR_FIELD_EMAIL"
msgid "E-mail"
msgstr "E-pos"
-#: strings.hrc:266
+#: strings.hrc:268
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: strings.hrc:267
+#: strings.hrc:269
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
-#: strings.hrc:268
+#: strings.hrc:270
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Gebruiker 1"
-#: strings.hrc:269
+#: strings.hrc:271
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Gebruiker 2"
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Gebruiker 3"
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Gebruiker 4"
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: strings.hrc:273
+#: strings.hrc:275
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Provinsie"
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: Kantoor"
-#: strings.hrc:275
+#: strings.hrc:277
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Roeper"
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Selfoon"
-#: strings.hrc:277
+#: strings.hrc:279
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: ander"
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
-#: strings.hrc:279
+#: strings.hrc:281
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Nooi"
-#: strings.hrc:281
+#: strings.hrc:283
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: strings.hrc:283
+#: strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: strings.hrc:284
+#: strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on Mac OS X 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: strings.hrc:285
+#: strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: strings.hrc:286
+#: strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: strings.hrc:287
+#: strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: strings.hrc:288
+#: strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE vereis"
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Selekteer JRE"
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE is defektief"
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Bronkode"
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Boekmerklêer"
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafika"
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Opstellinglêer"
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Toepassing"
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Databasistabel"
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Stelsellêer"
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word-dokument"
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Hulplêer"
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-dokument"
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Argieflêer"
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Rekordlêer"
-#: strings.hrc:305
+#: strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0-sjabloon"
-#: strings.hrc:306
+#: strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0-meesterdokument"
-#: strings.hrc:307
+#: strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0-sjabloon"
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekslêer"
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Skakel"
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0-sjabloon"
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel-dokument"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel-sjabloon"
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Groeplêer"
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Lêer"
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Vouer"
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Teksdokument"
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Sigblad"
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Voorlegging"
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Tekening"
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-dokument"
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Meesterdokument"
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formule"
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Databasis"
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: strings.hrc:328
+#: strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Plaaslike skyf"
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Skyfaandrywer"
-#: strings.hrc:330
+#: strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM-skyf"
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Netwerkverbinding"
-#: strings.hrc:332
+#: strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint-dokument"
-#: strings.hrc:333
+#: strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-sjabloon"
-#: strings.hrc:334
+#: strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-vertoning"
-#: strings.hrc:335
+#: strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-dokument"
-#: strings.hrc:343
+#: strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-databasis"
-#: strings.hrc:344
+#: strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument-tekening"
-#: strings.hrc:345
+#: strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument-formule"
-#: strings.hrc:346
+#: strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-meesterdokument"
-#: strings.hrc:347
+#: strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-voorlegging"
-#: strings.hrc:348
+#: strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-sigblad"
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-teks"
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-sigbladsjabloon"
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-tekeningsjabloon"
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-voorleggingsjabloon"
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-tekssjabloon"
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME-uitbreiding"
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "Mythes Thesaurus"
msgstr ""
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index 7f7165e1146..5c63f272960 100644
--- a/source/af/svx/messages.po
+++ b/source/af/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-24 14:55+0100\n"
+"POT-Creation-Date: 2017-12-06 15:59+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"
@@ -289,6 +289,173 @@ msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr "Diagonale randlyn van onder links na bo regs"
+#: numberingtype.hrc:29
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "None"
+msgstr ""
+
+#. SVX_NUM_NUMBER_NONE
+#: numberingtype.hrc:30
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Bullet"
+msgstr ""
+
+#. SVX_NUM_CHAR_SPECIAL
+#: numberingtype.hrc:31
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Graphics"
+msgstr ""
+
+#. SVX_NUM_BITMAP
+#: numberingtype.hrc:32
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Linked graphics"
+msgstr ""
+
+#. SVX_NUM_BITMAP|0x80
+#: numberingtype.hrc:33
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "1, 2, 3, ..."
+msgstr ""
+
+#. SVX_NUM_ARABIC
+#: numberingtype.hrc:34
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "A, B, C, ..."
+msgstr ""
+
+#. SVX_NUM_CHARS_UPPER_LETTER
+#: numberingtype.hrc:35
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "a, b, c, ..."
+msgstr ""
+
+#. SVX_NUM_CHARS_LOWER_LETTER
+#: numberingtype.hrc:36
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "I, II, III, ..."
+msgstr ""
+
+#. SVX_NUM_ROMAN_UPPER
+#: numberingtype.hrc:37
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "i, ii, iii, ..."
+msgstr ""
+
+#. SVX_NUM_ROMAN_LOWER
+#: numberingtype.hrc:38
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "A, .., AA, .., AAA, ..."
+msgstr ""
+
+#. SVX_NUM_CHARS_UPPER_LETTER_N
+#: numberingtype.hrc:39
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "a, .., aa, .., aaa, ..."
+msgstr ""
+
+#. SVX_NUM_CHARS_LOWER_LETTER_N
+#: numberingtype.hrc:40
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Native Numbering"
+msgstr ""
+
+#. NATIVE_NUMBERING
+#: numberingtype.hrc:41
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_BG
+#: numberingtype.hrc:42
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, аб, ... (Bulgarian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_BG
+#: numberingtype.hrc:43
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_N_BG
+#: numberingtype.hrc:44
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, бб, ... (Bulgarian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_N_BG
+#: numberingtype.hrc:45
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Аб, ... (Russian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_RU
+#: numberingtype.hrc:46
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, аб, ... (Russian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_RU
+#: numberingtype.hrc:47
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Бб, ... (Russian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_N_RU
+#: numberingtype.hrc:48
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, бб, ... (Russian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_N_RU
+#: numberingtype.hrc:49
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Аб, ... (Serbian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_SR
+#: numberingtype.hrc:50
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, аб, ... (Serbian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_SR
+#: numberingtype.hrc:51
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Бб, ... (Serbian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_N_SR
+#: numberingtype.hrc:52
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, бб, ... (Serbian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_N_SR
+#: numberingtype.hrc:53
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Α, Β, Γ, ... (Greek Upper Letter)"
+msgstr ""
+
+#. CHARS_GREEK_UPPER_LETTER
+#: numberingtype.hrc:54
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "α, β, γ, ... (Greek Lower Letter)"
+msgstr ""
+
+#. CHARS_GREEK_LOWER_LETTER
+#: numberingtype.hrc:55
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "א...י, יא...כ, ..."
+msgstr ""
+
+#. NUMBER_HEBREW
+#: numberingtype.hrc:56
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "א...ת, אא...תת, ..."
+msgstr ""
+
#: samecontent.hrc:18
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "All Pages"
@@ -8735,2799 +8902,2740 @@ msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr ""
-#. Elements of the Tango color palette
-#: strings.hrc:605
-msgctxt "RID_SVXSTR_COLOR_BUTTERL"
-msgid "Butter Light"
-msgstr ""
-
-#: strings.hrc:606
-msgctxt "RID_SVXSTR_COLOR_BUTTERM"
-msgid "Butter Medium"
-msgstr ""
-
-#: strings.hrc:607
-msgctxt "RID_SVXSTR_COLOR_BUTTERD"
-msgid "Butter Dark"
-msgstr ""
-
-#: strings.hrc:608
-msgctxt "RID_SVXSTR_COLOR_ORANGEL"
-msgid "Orange Light"
-msgstr ""
-
-#: strings.hrc:609
-msgctxt "RID_SVXSTR_COLOR_ORANGEM"
-msgid "Orange Medium"
-msgstr ""
-
-#: strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_ORANGED"
-msgid "Orange Dark"
-msgstr ""
-
-#: strings.hrc:611
-msgctxt "RID_SVXSTR_COLOR_CHOCOLATEL"
-msgid "Chocolate Light"
-msgstr ""
-
-#: strings.hrc:612
-msgctxt "RID_SVXSTR_COLOR_CHOCOLATEM"
-msgid "Chocolate Medium"
-msgstr ""
-
-#: strings.hrc:613
-msgctxt "RID_SVXSTR_COLOR_CHOCOLATED"
-msgid "Chocolate Dark"
-msgstr ""
-
-#: strings.hrc:614
-msgctxt "RID_SVXSTR_COLOR_CHAMELEONL"
-msgid "Chameleon Light"
-msgstr ""
-
-#: strings.hrc:615
-msgctxt "RID_SVXSTR_COLOR_CHAMELEONM"
-msgid "Chameleon Medium"
-msgstr ""
-
-#: strings.hrc:616
-msgctxt "RID_SVXSTR_COLOR_CHAMELEOND"
-msgid "Chameleon Dark"
-msgstr ""
-
-#: strings.hrc:617
-msgctxt "RID_SVXSTR_COLOR_SKYBLUEL"
-msgid "Sky Blue Light"
-msgstr ""
-
-#: strings.hrc:618
-msgctxt "RID_SVXSTR_COLOR_SKYBLUEM"
-msgid "Sky Blue Medium"
-msgstr ""
-
-#: strings.hrc:619
-msgctxt "RID_SVXSTR_COLOR_SKYBLUED"
-msgid "Sky Blue Dark"
-msgstr ""
-
-#: strings.hrc:620
-msgctxt "RID_SVXSTR_COLOR_PLUML"
-msgid "Plum Light"
-msgstr ""
-
-#: strings.hrc:621
-msgctxt "RID_SVXSTR_COLOR_PLUMM"
-msgid "Plum Medium"
-msgstr ""
-
-#: strings.hrc:622
-msgctxt "RID_SVXSTR_COLOR_PLUMD"
-msgid "Plum Dark"
-msgstr ""
-
-#: strings.hrc:623
-msgctxt "RID_SVXSTR_COLOR_SCARLETREDL"
-msgid "Scarlet Red Light"
-msgstr ""
-
-#: strings.hrc:624
-msgctxt "RID_SVXSTR_COLOR_SCARLETREDM"
-msgid "Scarlet Red Medium"
-msgstr ""
-
-#: strings.hrc:625
-msgctxt "RID_SVXSTR_COLOR_SCARLETREDD"
-msgid "Scarlet Red Dark"
-msgstr ""
-
-#: strings.hrc:626
-msgctxt "RID_SVXSTR_COLOR_ALUMINIUM"
-msgid "Aluminium"
-msgstr ""
-
#. Old default color names, probably often used in saved files
-#: strings.hrc:628
+#: strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr ""
-#: strings.hrc:629
+#: strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr ""
-#: strings.hrc:630
+#: strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr ""
-#: strings.hrc:631
+#: strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr ""
-#: strings.hrc:632
+#: strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr ""
-#: strings.hrc:633
+#: strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr ""
-#: strings.hrc:634
+#: strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr ""
-#: strings.hrc:635
+#: strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr ""
-#: strings.hrc:636
+#: strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr ""
-#: strings.hrc:637
+#: strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr ""
-#: strings.hrc:638
+#: strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "Grafiek"
-#: strings.hrc:639
+#: strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr ""
-#: strings.hrc:640
+#: strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr ""
-#: strings.hrc:641
+#: strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr ""
-#: strings.hrc:642
+#: strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "Turkoois"
-#: strings.hrc:643
+#. 16 old AutoFormat Table Styles
+#: strings.hrc:621
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "3-D"
-#: strings.hrc:644
+#: strings.hrc:622
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "Swart 1"
-#: strings.hrc:645
+#: strings.hrc:623
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "Swart 2"
-#: strings.hrc:646
+#: strings.hrc:624
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "Blou"
-#: strings.hrc:647
+#: strings.hrc:625
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "Bruin"
-#: strings.hrc:648
+#: strings.hrc:626
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "Valuta"
-#: strings.hrc:649
+#: strings.hrc:627
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "Valuta 3-D"
-#: strings.hrc:650
+#: strings.hrc:628
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "Valutagrys"
-#: strings.hrc:651
+#: strings.hrc:629
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "Valutalila"
-#: strings.hrc:652
+#: strings.hrc:630
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "Valutaturkoois"
-#: strings.hrc:653
+#: strings.hrc:631
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "Grys"
-#: strings.hrc:654
+#: strings.hrc:632
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "Groen"
-#: strings.hrc:655
+#: strings.hrc:633
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "Lila"
-#: strings.hrc:656
+#: strings.hrc:634
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "Rooi"
-#: strings.hrc:657
+#: strings.hrc:635
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "Turkoois"
-#: strings.hrc:658
+#: strings.hrc:636
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "Geel"
-#: strings.hrc:659
+#. 10 new AutoFormat Table Styles since LibreOffice 6.0
+#: strings.hrc:638
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
+msgid "Academic"
+msgstr ""
+
+#: strings.hrc:639
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
+msgid "Box List Blue"
+msgstr ""
+
+#: strings.hrc:640
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
+msgid "Box List Green"
+msgstr ""
+
+#: strings.hrc:641
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
+msgid "Box List Red"
+msgstr ""
+
+#: strings.hrc:642
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
+msgid "Box List Yellow"
+msgstr ""
+
+#: strings.hrc:643
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
+msgid "Elegant"
+msgstr ""
+
+#: strings.hrc:644
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
+msgid "Financial"
+msgstr ""
+
+#: strings.hrc:645
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
+msgid "Simple Grid Columns"
+msgstr ""
+
+#: strings.hrc:646
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
+msgid "Simple Grid Rows"
+msgstr ""
+
+#: strings.hrc:647
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
+msgid "Simple List Shaded"
+msgstr ""
+
+#: strings.hrc:648
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "Lynlas gemiddeld"
-#: strings.hrc:660
+#: strings.hrc:649
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "Lynlas skuins"
-#: strings.hrc:661
+#: strings.hrc:650
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "Lynlas mitre"
-#: strings.hrc:662
+#: strings.hrc:651
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "Lynlas rond"
#. the familiar name for it
-#: strings.hrc:664
+#: strings.hrc:653
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr ""
-#: strings.hrc:665
+#: strings.hrc:654
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr ""
-#: strings.hrc:666
+#: strings.hrc:655
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr ""
-#: strings.hrc:667
+#: strings.hrc:656
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "Gradiënt"
-#: strings.hrc:668
+#: strings.hrc:657
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "Lineêr blou/wit"
-#: strings.hrc:669
+#: strings.hrc:658
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "Lineêr magenta/groen"
-#: strings.hrc:670
+#: strings.hrc:659
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "Lineêr geel/bruin"
-#: strings.hrc:671
+#: strings.hrc:660
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "Radiaal groen/swart"
-#: strings.hrc:672
+#: strings.hrc:661
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "Radiaal rooi/geel"
-#: strings.hrc:673
+#: strings.hrc:662
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "Reghoekig rooi/wit"
-#: strings.hrc:674
+#: strings.hrc:663
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "Vierkantig geel/wit"
-#: strings.hrc:675
+#: strings.hrc:664
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "Ellipsoïed blougrys/ligblou"
-#: strings.hrc:676
+#: strings.hrc:665
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "Aksiaal ligrooi/wit"
#. l means left
-#: strings.hrc:678
+#: strings.hrc:667
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "Diagonaal 1l"
#. r means right
-#: strings.hrc:680
+#: strings.hrc:669
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "Diagonaal 1r"
#. l means left
-#: strings.hrc:682
+#: strings.hrc:671
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "Diagonaal 2l"
#. r means right
-#: strings.hrc:684
+#: strings.hrc:673
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "Diagonaal 2r"
#. l means left
-#: strings.hrc:686
+#: strings.hrc:675
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "Diagonaal 3l"
#. r means right
-#: strings.hrc:688
+#: strings.hrc:677
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "Diagonaal 3r"
#. l means left
-#: strings.hrc:690
+#: strings.hrc:679
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "Diagonaal 4l"
#. r means right
-#: strings.hrc:692
+#: strings.hrc:681
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "Diagonaal 4r"
-#: strings.hrc:693
+#: strings.hrc:682
#, fuzzy
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "Diagonaal op"
-#: strings.hrc:694
+#: strings.hrc:683
#, fuzzy
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "Diagonaal af"
-#: strings.hrc:695
+#: strings.hrc:684
#, fuzzy
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "Diagonaal af"
-#: strings.hrc:696
+#: strings.hrc:685
#, fuzzy
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "Diagonaal af"
-#: strings.hrc:697
+#: strings.hrc:686
#, fuzzy
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "Diagonale strepe"
-#: strings.hrc:698
+#: strings.hrc:687
#, fuzzy
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "Diagonaal af"
-#: strings.hrc:699
+#: strings.hrc:688
#, fuzzy
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "Gevoude hoek"
-#: strings.hrc:700
+#: strings.hrc:689
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr ""
-#: strings.hrc:701
+#: strings.hrc:690
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr ""
-#: strings.hrc:702
+#: strings.hrc:691
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr ""
-#: strings.hrc:703
+#: strings.hrc:692
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr ""
-#: strings.hrc:704
+#: strings.hrc:693
#, fuzzy
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "Valutaturkoois"
-#: strings.hrc:705
+#: strings.hrc:694
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr ""
-#: strings.hrc:706
+#: strings.hrc:695
#, fuzzy
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "Van bo links"
-#: strings.hrc:707
+#: strings.hrc:696
#, fuzzy
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "Van bo links"
-#: strings.hrc:708
+#: strings.hrc:697
#, fuzzy
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "Van bo links"
-#: strings.hrc:709
+#: strings.hrc:698
#, fuzzy
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "Van bo links"
-#: strings.hrc:710
+#: strings.hrc:699
#, fuzzy
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "Van bo links"
-#: strings.hrc:711
+#: strings.hrc:700
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr ""
-#: strings.hrc:712
+#: strings.hrc:701
#, fuzzy
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "Van bo links"
-#: strings.hrc:713
+#: strings.hrc:702
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "Horisontaal"
-#: strings.hrc:714
+#: strings.hrc:703
#, fuzzy
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "Horisontaal uit"
-#: strings.hrc:715
+#: strings.hrc:704
#, fuzzy
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "Horisontaal in"
-#: strings.hrc:716
+#: strings.hrc:705
#, fuzzy
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "Horisontale reël"
-#: strings.hrc:717
+#: strings.hrc:706
#, fuzzy
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "Horisontaal"
-#: strings.hrc:718
+#: strings.hrc:707
#, fuzzy
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "Hori~sontale liniaal"
-#: strings.hrc:719
+#: strings.hrc:708
#, fuzzy
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "Horisontaal uit"
-#: strings.hrc:720
+#: strings.hrc:709
#, fuzzy
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "Radiaal"
-#: strings.hrc:721
+#: strings.hrc:710
#, fuzzy
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "Radiaal"
-#: strings.hrc:722
+#: strings.hrc:711
#, fuzzy
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "Radiaal groen/swart"
-#: strings.hrc:723
+#: strings.hrc:712
#, fuzzy
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "~Dataomvang"
-#: strings.hrc:724
+#: strings.hrc:713
#, fuzzy
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "Radiaal"
-#: strings.hrc:725
+#: strings.hrc:714
#, fuzzy
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "Turkoois"
-#: strings.hrc:726
+#: strings.hrc:715
#, fuzzy
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "Violet"
-#: strings.hrc:727
+#: strings.hrc:716
#, fuzzy
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "Vertikaal"
-#: strings.hrc:728
+#: strings.hrc:717
#, fuzzy
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "Vertikale reël"
-#: strings.hrc:729
+#: strings.hrc:718
#, fuzzy
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "Vertikaal in"
-#: strings.hrc:730
+#: strings.hrc:719
#, fuzzy
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "Vertikale reël"
-#: strings.hrc:731
+#: strings.hrc:720
#, fuzzy
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "Vertikale liniaal"
-#: strings.hrc:732
+#: strings.hrc:721
#, fuzzy
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "Verti~kale liniaal"
-#: strings.hrc:733
+#: strings.hrc:722
#, fuzzy
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "Vertikaal uit"
-#: strings.hrc:734
+#: strings.hrc:723
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr ""
-#: strings.hrc:735
+#: strings.hrc:724
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr ""
-#: strings.hrc:736
+#: strings.hrc:725
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr ""
-#: strings.hrc:737
+#: strings.hrc:726
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr ""
-#: strings.hrc:738
+#: strings.hrc:727
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr ""
-#: strings.hrc:739
+#: strings.hrc:728
#, fuzzy
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "Lug"
-#: strings.hrc:740
+#: strings.hrc:729
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr ""
-#: strings.hrc:741
+#: strings.hrc:730
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr ""
-#: strings.hrc:742
+#: strings.hrc:731
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr ""
-#: strings.hrc:743
+#: strings.hrc:732
#, fuzzy
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "Regs"
-#: strings.hrc:744
+#: strings.hrc:733
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr ""
-#: strings.hrc:745
+#: strings.hrc:734
msgctxt "RID_SVXSTR_GRDT70"
msgid "Tango Green"
msgstr ""
-#: strings.hrc:746
+#: strings.hrc:735
msgctxt "RID_SVXSTR_GRDT71"
msgid "Subtle Tango Green"
msgstr ""
-#: strings.hrc:747
+#: strings.hrc:736
msgctxt "RID_SVXSTR_GRDT72"
msgid "Tango Purple"
msgstr ""
-#: strings.hrc:748
+#: strings.hrc:737
msgctxt "RID_SVXSTR_GRDT73"
msgid "Tango Red"
msgstr ""
-#: strings.hrc:749
+#: strings.hrc:738
msgctxt "RID_SVXSTR_GRDT74"
msgid "Tango Blue"
msgstr ""
-#: strings.hrc:750
+#: strings.hrc:739
msgctxt "RID_SVXSTR_GRDT75"
msgid "Tango Yellow"
msgstr ""
-#: strings.hrc:751
+#: strings.hrc:740
msgctxt "RID_SVXSTR_GRDT76"
msgid "Tango Orange"
msgstr ""
-#: strings.hrc:752
+#: strings.hrc:741
msgctxt "RID_SVXSTR_GRDT77"
msgid "Tango Gray"
msgstr ""
-#: strings.hrc:753
+#: strings.hrc:742
msgctxt "RID_SVXSTR_GRDT78"
msgid "Clay"
msgstr ""
-#: strings.hrc:754
+#: strings.hrc:743
msgctxt "RID_SVXSTR_GRDT79"
msgid "Olive Green"
msgstr ""
-#: strings.hrc:755
+#: strings.hrc:744
msgctxt "RID_SVXSTR_GRDT80"
msgid "Silver"
msgstr ""
-#: strings.hrc:756
+#: strings.hrc:745
msgctxt "RID_SVXSTR_GRDT81"
msgid "Sunburst"
msgstr ""
-#: strings.hrc:757
+#: strings.hrc:746
msgctxt "RID_SVXSTR_GRDT82"
msgid "Brownie"
msgstr ""
-#: strings.hrc:758
+#: strings.hrc:747
msgctxt "RID_SVXSTR_GRDT83"
msgid "Sunset"
msgstr ""
-#: strings.hrc:759
+#: strings.hrc:748
msgctxt "RID_SVXSTR_GRDT84"
msgid "Deep Green"
msgstr ""
-#: strings.hrc:760
+#: strings.hrc:749
msgctxt "RID_SVXSTR_GRDT85"
msgid "Deep Orange"
msgstr ""
-#: strings.hrc:761
+#: strings.hrc:750
msgctxt "RID_SVXSTR_GRDT86"
msgid "Deep Blue"
msgstr ""
-#: strings.hrc:762
+#: strings.hrc:751
msgctxt "RID_SVXSTR_GRDT87"
msgid "Purple Haze"
msgstr ""
-#: strings.hrc:763
+#: strings.hrc:752
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 45 Degrees Wide"
msgstr ""
-#: strings.hrc:764
+#: strings.hrc:753
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 45 Degrees"
msgstr ""
-#: strings.hrc:765
+#: strings.hrc:754
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black -45 Degrees"
msgstr ""
-#: strings.hrc:766
+#: strings.hrc:755
msgctxt "RID_SVXSTR_HATCH3"
msgid "Black 90 Degrees"
msgstr ""
-#: strings.hrc:767
+#: strings.hrc:756
msgctxt "RID_SVXSTR_HATCH4"
msgid "Red Crossed 45 Degrees"
msgstr ""
-#: strings.hrc:768
+#: strings.hrc:757
msgctxt "RID_SVXSTR_HATCH5"
msgid "Red Crossed 0 Degrees"
msgstr ""
-#: strings.hrc:769
+#: strings.hrc:758
msgctxt "RID_SVXSTR_HATCH6"
msgid "Blue Crossed 45 Degrees"
msgstr ""
-#: strings.hrc:770
+#: strings.hrc:759
msgctxt "RID_SVXSTR_HATCH7"
msgid "Blue Crossed 0 Degrees"
msgstr ""
-#: strings.hrc:771
+#: strings.hrc:760
msgctxt "RID_SVXSTR_HATCH8"
msgid "Blue Triple 90 Degrees"
msgstr ""
-#: strings.hrc:772
+#: strings.hrc:761
msgctxt "RID_SVXSTR_HATCH9"
msgid "Black 0 Degrees"
msgstr ""
-#: strings.hrc:773
+#: strings.hrc:762
msgctxt "RID_SVXSTR_HATCH10"
msgid "Hatching"
msgstr "Arsering"
-#: strings.hrc:774
+#: strings.hrc:763
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr ""
-#: strings.hrc:775
+#: strings.hrc:764
msgctxt "RID_SVXSTR_BMP1"
msgid "Sky"
msgstr "Lug"
-#: strings.hrc:776
+#: strings.hrc:765
msgctxt "RID_SVXSTR_BMP2"
msgid "Water"
msgstr "Water"
-#: strings.hrc:777
+#: strings.hrc:766
msgctxt "RID_SVXSTR_BMP3"
msgid "Coarse grained"
msgstr "Growwe grein"
-#: strings.hrc:778
+#: strings.hrc:767
msgctxt "RID_SVXSTR_BMP4"
msgid "Mercury"
msgstr "Kwik"
-#: strings.hrc:779
+#: strings.hrc:768
msgctxt "RID_SVXSTR_BMP5"
msgid "Space"
msgstr "Ruimte"
-#: strings.hrc:780
+#: strings.hrc:769
msgctxt "RID_SVXSTR_BMP6"
msgid "Metal"
msgstr "Metaal"
-#: strings.hrc:781
+#: strings.hrc:770
msgctxt "RID_SVXSTR_BMP7"
msgid "Droplets"
msgstr "Druppeltjies"
-#: strings.hrc:782
+#: strings.hrc:771
msgctxt "RID_SVXSTR_BMP8"
msgid "Marble"
msgstr "Marmer"
-#: strings.hrc:783
+#: strings.hrc:772
msgctxt "RID_SVXSTR_BMP9"
msgid "Linen"
msgstr "Linne"
-#: strings.hrc:784
+#: strings.hrc:773
msgctxt "RID_SVXSTR_BMP10"
msgid "Stone"
msgstr "Klip"
-#: strings.hrc:785
+#: strings.hrc:774
msgctxt "RID_SVXSTR_BMP11"
msgid "Gravel"
msgstr "Gruis"
-#: strings.hrc:786
+#: strings.hrc:775
msgctxt "RID_SVXSTR_BMP12"
msgid "Wall"
msgstr "Muur"
-#: strings.hrc:787
+#: strings.hrc:776
msgctxt "RID_SVXSTR_BMP13"
msgid "Brownstone"
msgstr "Bruinsteen"
-#: strings.hrc:788
+#: strings.hrc:777
msgctxt "RID_SVXSTR_BMP14"
msgid "Netting"
msgstr "Netting"
-#: strings.hrc:789
+#: strings.hrc:778
msgctxt "RID_SVXSTR_BMP15"
msgid "Leaves"
msgstr "Blare"
-#: strings.hrc:790
+#: strings.hrc:779
msgctxt "RID_SVXSTR_BMP16"
msgid "Artificial Turf"
msgstr "Kunsgras"
-#: strings.hrc:791
+#: strings.hrc:780
msgctxt "RID_SVXSTR_BMP17"
msgid "Daisy"
msgstr "Gousblom"
-#: strings.hrc:792
+#: strings.hrc:781
msgctxt "RID_SVXSTR_BMP18"
msgid "Orange"
msgstr "Oranje"
-#: strings.hrc:793
+#: strings.hrc:782
msgctxt "RID_SVXSTR_BMP19"
msgid "Fiery"
msgstr "Vurig"
-#: strings.hrc:794
+#: strings.hrc:783
msgctxt "RID_SVXSTR_BMP20"
msgid "Roses"
msgstr "Rose"
-#: strings.hrc:795
+#: strings.hrc:784
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "Biskaart"
-#: strings.hrc:796
+#: strings.hrc:785
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr ""
-#: strings.hrc:797
+#: strings.hrc:786
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr ""
-#: strings.hrc:798
+#: strings.hrc:787
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr ""
-#: strings.hrc:799
+#: strings.hrc:788
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr ""
-#: strings.hrc:800
+#: strings.hrc:789
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr ""
-#: strings.hrc:801
+#: strings.hrc:790
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr ""
-#: strings.hrc:802
+#: strings.hrc:791
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr ""
-#: strings.hrc:803
+#: strings.hrc:792
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr ""
-#: strings.hrc:804
+#: strings.hrc:793
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr ""
-#: strings.hrc:805
+#: strings.hrc:794
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr ""
-#: strings.hrc:806
+#: strings.hrc:795
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr ""
-#: strings.hrc:807
+#: strings.hrc:796
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr ""
-#: strings.hrc:808
+#: strings.hrc:797
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr ""
-#: strings.hrc:809
+#: strings.hrc:798
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr ""
-#: strings.hrc:810
+#: strings.hrc:799
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr ""
-#: strings.hrc:811
+#: strings.hrc:800
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr ""
-#: strings.hrc:812
+#: strings.hrc:801
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr ""
-#: strings.hrc:813
+#: strings.hrc:802
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr ""
-#: strings.hrc:814
+#: strings.hrc:803
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr ""
-#: strings.hrc:815
+#: strings.hrc:804
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr ""
-#: strings.hrc:816
+#: strings.hrc:805
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr ""
-#: strings.hrc:817
+#: strings.hrc:806
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr ""
-#: strings.hrc:818
+#: strings.hrc:807
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr ""
-#: strings.hrc:819
+#: strings.hrc:808
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr ""
-#: strings.hrc:820
+#: strings.hrc:809
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr ""
-#: strings.hrc:821
+#: strings.hrc:810
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr ""
-#: strings.hrc:822
+#: strings.hrc:811
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr ""
-#: strings.hrc:823
+#: strings.hrc:812
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr ""
-#: strings.hrc:824
+#: strings.hrc:813
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr ""
-#: strings.hrc:825
+#: strings.hrc:814
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr ""
-#: strings.hrc:826
+#: strings.hrc:815
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr ""
-#: strings.hrc:827
+#: strings.hrc:816
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr ""
-#: strings.hrc:828
+#: strings.hrc:817
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr ""
-#: strings.hrc:829
+#: strings.hrc:818
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr ""
-#: strings.hrc:830
+#: strings.hrc:819
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr ""
-#: strings.hrc:831
+#: strings.hrc:820
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr ""
-#: strings.hrc:832
+#: strings.hrc:821
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr ""
-#: strings.hrc:833
+#: strings.hrc:822
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr ""
-#: strings.hrc:834
+#: strings.hrc:823
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr ""
-#: strings.hrc:835
+#: strings.hrc:824
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr ""
-#: strings.hrc:836
+#: strings.hrc:825
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr ""
-#: strings.hrc:837
+#: strings.hrc:826
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr ""
-#: strings.hrc:838
+#: strings.hrc:827
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr ""
-#: strings.hrc:839
+#: strings.hrc:828
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr ""
-#: strings.hrc:840
+#: strings.hrc:829
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr ""
-#: strings.hrc:841
+#: strings.hrc:830
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr ""
-#: strings.hrc:842
+#: strings.hrc:831
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr ""
-#: strings.hrc:843
+#: strings.hrc:832
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr ""
-#: strings.hrc:844
+#: strings.hrc:833
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr ""
-#: strings.hrc:845
+#: strings.hrc:834
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr ""
-#: strings.hrc:846
+#: strings.hrc:835
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr ""
-#: strings.hrc:847
+#: strings.hrc:836
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr ""
-#: strings.hrc:848
+#: strings.hrc:837
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr ""
-#: strings.hrc:849
+#: strings.hrc:838
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr ""
-#: strings.hrc:850
+#: strings.hrc:839
#, fuzzy
msgctxt "RID_SVXSTR_DASH0"
msgid "Ultrafine Dashed"
msgstr "Ultrafyn strepies"
-#: strings.hrc:851
+#: strings.hrc:840
#, fuzzy
msgctxt "RID_SVXSTR_DASH1"
msgid "Fine Dashed"
msgstr "Fyn strepies"
-#: strings.hrc:852
+#: strings.hrc:841
msgctxt "RID_SVXSTR_DASH2"
msgid "2 Dots 3 Dashes"
msgstr "2 stippels 3 strepie"
-#: strings.hrc:853
+#: strings.hrc:842
#, fuzzy
msgctxt "RID_SVXSTR_DASH3"
msgid "Fine Dotted"
msgstr "Fyn stippels"
-#: strings.hrc:854
+#: strings.hrc:843
#, fuzzy
msgctxt "RID_SVXSTR_DASH4"
msgid "Line with Fine Dots"
msgstr "Lyn met fyn stippels"
-#: strings.hrc:855
+#: strings.hrc:844
#, fuzzy
msgctxt "RID_SVXSTR_DASH5"
msgid "Fine Dashed"
msgstr "Fyn strepies"
-#: strings.hrc:856
+#: strings.hrc:845
msgctxt "RID_SVXSTR_DASH6"
msgid "3 Dashes 3 Dots"
msgstr ""
-#: strings.hrc:857
+#: strings.hrc:846
#, fuzzy
msgctxt "RID_SVXSTR_DASH7"
msgid "Ultrafine Dotted"
msgstr "Ultrafyn strepies"
-#: strings.hrc:858
+#: strings.hrc:847
#, fuzzy
msgctxt "RID_SVXSTR_DASH8"
msgid "Line Style 9"
msgstr "Lynstyl 9"
-#: strings.hrc:859
+#: strings.hrc:848
#, fuzzy
msgctxt "RID_SVXSTR_DASH9"
msgid "2 Dots 1 Dash"
msgstr "2 stippels 1 strepie"
-#: strings.hrc:860
+#: strings.hrc:849
msgctxt "RID_SVXSTR_DASH10"
msgid "Dashed"
msgstr "Gestreep"
-#: strings.hrc:861
+#: strings.hrc:850
msgctxt "RID_SVXSTR_DASH11"
msgid "Dashed"
msgstr "Gestreep"
-#: strings.hrc:862
+#: strings.hrc:851
#, fuzzy
msgctxt "RID_SVXSTR_DASH12"
msgid "Line Style"
msgstr "Lynstyl"
-#: strings.hrc:863
+#: strings.hrc:852
msgctxt "RID_SVXSTR_LEND0"
msgid "Arrow concave"
msgstr "Pyltjie konkaaf"
-#: strings.hrc:864
+#: strings.hrc:853
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "Vierkant 45"
-#: strings.hrc:865
+#: strings.hrc:854
msgctxt "RID_SVXSTR_LEND2"
msgid "Small arrow"
msgstr "Klein pyltjie"
-#: strings.hrc:866
+#: strings.hrc:855
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension lines"
msgstr "Dimensielyne"
-#: strings.hrc:867
+#: strings.hrc:856
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "Dubbelpyltjie"
-#: strings.hrc:868
+#: strings.hrc:857
msgctxt "RID_SVXSTR_LEND5"
msgid "Rounded short arrow"
msgstr "Geronde kort pyltjie"
-#: strings.hrc:869
+#: strings.hrc:858
msgctxt "RID_SVXSTR_LEND6"
msgid "Symmetric arrow"
msgstr "Simmetriese pyltjie"
-#: strings.hrc:870
+#: strings.hrc:859
msgctxt "RID_SVXSTR_LEND7"
msgid "Line arrow"
msgstr "Lynpyltjie"
-#: strings.hrc:871
+#: strings.hrc:860
msgctxt "RID_SVXSTR_LEND8"
msgid "Rounded large arrow"
msgstr "Geronde groot pyl"
-#: strings.hrc:872
+#: strings.hrc:861
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "Sirkel"
-#: strings.hrc:873
+#: strings.hrc:862
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "Vierkant"
-#: strings.hrc:874
+#: strings.hrc:863
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "Pyltjie"
-#: strings.hrc:875
+#: strings.hrc:864
msgctxt "RID_SVXSTR_LEND12"
msgid "Short line arrow"
msgstr ""
-#: strings.hrc:876
+#: strings.hrc:865
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr ""
-#: strings.hrc:877
+#: strings.hrc:866
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr ""
-#: strings.hrc:878
+#: strings.hrc:867
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "Diamant"
-#: strings.hrc:879
+#: strings.hrc:868
#, fuzzy
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "Sirkel, oningevul"
-#: strings.hrc:880
+#: strings.hrc:869
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "Vierkant 45, oningevul"
-#: strings.hrc:881
+#: strings.hrc:870
#, fuzzy
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "Vierkant, oningevul"
-#: strings.hrc:882
+#: strings.hrc:871
msgctxt "RID_SVXSTR_LEND19"
msgid "Half circle unfilled"
msgstr ""
-#: strings.hrc:883
+#: strings.hrc:872
#, fuzzy
msgctxt "RID_SVXSTR_LEND20"
msgid "Arrowhead"
msgstr "Pylpunte"
-#: strings.hrc:884
+#: strings.hrc:873
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "Deursigtigheid"
-#: strings.hrc:885
+#: strings.hrc:874
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr ""
-#: strings.hrc:886
+#: strings.hrc:875
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr ""
-#: strings.hrc:887
+#: strings.hrc:876
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr ""
-#: strings.hrc:888
+#: strings.hrc:877
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr ""
-#: strings.hrc:889
+#: strings.hrc:878
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr ""
-#: strings.hrc:890
+#: strings.hrc:879
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr ""
-#: strings.hrc:891
+#: strings.hrc:880
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:894
+#: strings.hrc:883
msgctxt "RID_SVXSTR_COLOR_TANGO_BUTTER"
msgid "Tango: Butter"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:896
+#: strings.hrc:885
msgctxt "RID_SVXSTR_COLOR_TANGO_ORANGE"
msgid "Tango: Orange"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:898
+#: strings.hrc:887
msgctxt "RID_SVXSTR_COLOR_TANGO_CHOCOLATE"
msgid "Tango: Chocolate"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:900
+#: strings.hrc:889
msgctxt "RID_SVXSTR_COLOR_TANGO_CHAMELEON"
msgid "Tango: Chameleon"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:902
+#: strings.hrc:891
msgctxt "RID_SVXSTR_COLOR_TANGO_SKY_BLUE"
msgid "Tango: Sky Blue"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:904
+#: strings.hrc:893
msgctxt "RID_SVXSTR_COLOR_TANGO_PLUM"
msgid "Tango: Plum"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:906
+#: strings.hrc:895
msgctxt "RID_SVXSTR_COLOR_TANGO_SCARLET_RED"
msgid "Tango: Scarlet Red"
msgstr ""
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:908
+#: strings.hrc:897
msgctxt "RID_SVXSTR_COLOR_TANGO_ALUMINIUM"
msgid "Tango: Aluminium"
msgstr ""
-#: strings.hrc:909
+#: strings.hrc:898
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "Galerytema"
-#: strings.hrc:910
+#: strings.hrc:899
#, fuzzy
msgctxt "RID_SVXSTR_GALLERY_THEMEITEMS"
msgid "Theme Items"
msgstr "Tema-ID"
-#: strings.hrc:911
+#: strings.hrc:900
msgctxt "RID_SVXSTR_GALLERY_PREVIEW"
msgid "Preview"
msgstr "Voorskou"
-#: strings.hrc:912
+#: strings.hrc:901
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "Suksesvol herwin"
-#: strings.hrc:913
+#: strings.hrc:902
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "Oorspronklike dokument herwin"
-#: strings.hrc:914
+#: strings.hrc:903
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "Herwinning het misluk"
-#: strings.hrc:915
+#: strings.hrc:904
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "Herwinning onderweg"
-#: strings.hrc:916
+#: strings.hrc:905
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "Nog nie herwin nie"
-#: strings.hrc:917
+#: strings.hrc:906
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr ""
-#: strings.hrc:918
+#: strings.hrc:907
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr ""
-#: strings.hrc:919
+#: strings.hrc:908
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "~Klaar"
-#: strings.hrc:920
+#: strings.hrc:909
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr ""
-#: strings.hrc:921
+#: strings.hrc:910
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr ""
-#: strings.hrc:923
+#: strings.hrc:912
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr ""
-#: strings.hrc:924
+#: strings.hrc:913
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr ""
#. Strings for the Draw Dialog --------------------------------------------
-#: strings.hrc:927
+#: strings.hrc:916
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "Voeg objek(te) in"
-#: strings.hrc:928
+#: strings.hrc:917
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "Roteer 3-D-objek"
-#: strings.hrc:929
+#: strings.hrc:918
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "Skep ekstrusieobjek"
-#: strings.hrc:930
+#: strings.hrc:919
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "Skep rotasieobjek"
-#: strings.hrc:931
+#: strings.hrc:920
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "Verdeel 3-D-objek"
#. Language-Strings ------------------------------------------------------
-#: strings.hrc:934
+#: strings.hrc:923
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[Almal]"
-#: strings.hrc:936
+#: strings.hrc:925
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "Grafikafilter"
-#: strings.hrc:937
+#: strings.hrc:926
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "Nuwe tema"
-#: strings.hrc:938
+#: strings.hrc:927
msgctxt "RID_SVXSTR_GALLERY_CREATETHEME"
msgid "New Theme..."
msgstr "Nuwe tema..."
-#: strings.hrc:939
+#: strings.hrc:928
msgctxt "RID_SVXSTR_GALLERY_TITLE"
msgid "Title"
msgstr "Titel"
-#: strings.hrc:940
+#: strings.hrc:929
msgctxt "RID_SVXSTR_GALLERY_ICONVIEW"
msgid "Icon View"
msgstr "Ikoonoorsig"
-#: strings.hrc:941
+#: strings.hrc:930
msgctxt "RID_SVXSTR_GALLERY_LISTVIEW"
msgid "Detailed View"
msgstr "Gedetailleerde aansig"
-#: strings.hrc:943
+#: strings.hrc:932
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "3-D-effekte"
-#: strings.hrc:944
+#: strings.hrc:933
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "Animasies"
-#: strings.hrc:945
+#: strings.hrc:934
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "Koeëltjies"
-#: strings.hrc:946
+#: strings.hrc:935
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "Kantoor"
-#: strings.hrc:947
+#: strings.hrc:936
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "Vlaggies"
-#: strings.hrc:948
+#: strings.hrc:937
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "Vloeidiagramme"
-#: strings.hrc:949
+#: strings.hrc:938
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "Emotikons"
-#: strings.hrc:950
+#: strings.hrc:939
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr ""
-#: strings.hrc:951
+#: strings.hrc:940
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "Agtergronde"
-#: strings.hrc:952
+#: strings.hrc:941
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "Tuisblad"
-#: strings.hrc:953
+#: strings.hrc:942
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "Interaksie"
-#: strings.hrc:954
+#: strings.hrc:943
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "Kaarte"
-#: strings.hrc:955
+#: strings.hrc:944
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "Mense"
-#: strings.hrc:956
+#: strings.hrc:945
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "Oppervlakke"
-#: strings.hrc:957
+#: strings.hrc:946
#, fuzzy
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "Rekenaars"
-#: strings.hrc:958
+#: strings.hrc:947
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr ""
-#: strings.hrc:959
+#: strings.hrc:948
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr ""
-#: strings.hrc:960
+#: strings.hrc:949
#, fuzzy
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "Finansies"
-#: strings.hrc:961
+#: strings.hrc:950
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr ""
-#: strings.hrc:962
+#: strings.hrc:951
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr ""
-#: strings.hrc:963
+#: strings.hrc:952
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "Klanke"
-#: strings.hrc:964
+#: strings.hrc:953
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "Simbole"
-#: strings.hrc:965
+#: strings.hrc:954
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "My tema"
-#: strings.hrc:966
+#: strings.hrc:955
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "Pyltjies"
-#: strings.hrc:967
+#: strings.hrc:956
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "Ballonne"
-#: strings.hrc:968
+#: strings.hrc:957
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "Sleutelbord"
-#: strings.hrc:969
+#: strings.hrc:958
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "Tyd"
-#: strings.hrc:970
+#: strings.hrc:959
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "Voorlegging"
-#: strings.hrc:971
+#: strings.hrc:960
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
-#: strings.hrc:972
+#: strings.hrc:961
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "Navigasie"
-#: strings.hrc:973
+#: strings.hrc:962
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "Kommunikasie"
-#: strings.hrc:974
+#: strings.hrc:963
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "Finansies"
-#: strings.hrc:975
+#: strings.hrc:964
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "Rekenaars"
-#: strings.hrc:976
+#: strings.hrc:965
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "Klimaat"
-#: strings.hrc:977
+#: strings.hrc:966
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "Skool & Universiteit"
-#: strings.hrc:978
+#: strings.hrc:967
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "Probleemoplossing"
-#: strings.hrc:979
+#: strings.hrc:968
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "Skermboontjies"
-#: strings.hrc:981
+#: strings.hrc:970
msgctxt "RID_SVXSTR_ALIGN_LEFT"
msgid "~Left Align"
msgstr "~Linksbelyn"
-#: strings.hrc:982
+#: strings.hrc:971
msgctxt "RID_SVXSTR_ALIGN_CENTER"
msgid "~Center"
msgstr "~Middel"
-#: strings.hrc:983
+#: strings.hrc:972
msgctxt "RID_SVXSTR_ALIGN_RIGHT"
msgid "~Right Align"
msgstr "~Regsbelyn"
-#: strings.hrc:984
+#: strings.hrc:973
msgctxt "RID_SVXSTR_ALIGN_WORD"
msgid "~Word Justify"
msgstr "~Woordbelyn"
-#: strings.hrc:985
+#: strings.hrc:974
msgctxt "RID_SVXSTR_ALIGN_STRETCH"
msgid "S~tretch Justify"
msgstr "R~ek belyning"
-#: strings.hrc:986
+#: strings.hrc:975
msgctxt "RID_SVXSTR_CHARS_SPACING_VERY_TIGHT"
msgid "~Very Tight"
msgstr "~Baie knap"
-#: strings.hrc:987
+#: strings.hrc:976
msgctxt "RID_SVXSTR_CHARS_SPACING_TIGHT"
msgid "~Tight"
msgstr "~Knap"
-#: strings.hrc:988
+#: strings.hrc:977
msgctxt "RID_SVXSTR_CHARS_SPACING_NORMAL"
msgid "~Normal"
msgstr "~Normaal"
-#: strings.hrc:989
+#: strings.hrc:978
msgctxt "RID_SVXSTR_CHARS_SPACING_LOOSE"
msgid "~Loose"
msgstr "~Lossies"
-#: strings.hrc:990
+#: strings.hrc:979
msgctxt "RID_SVXSTR_CHARS_SPACING_VERY_LOOSE"
msgid "Very ~Loose"
msgstr "~Baie lossies"
-#: strings.hrc:991
+#: strings.hrc:980
msgctxt "RID_SVXSTR_CHARS_SPACING_CUSTOM"
msgid "~Custom..."
msgstr "~Pasmaak..."
-#: strings.hrc:992
+#: strings.hrc:981
msgctxt "RID_SVXSTR_CHARS_SPACING_KERN_PAIRS"
msgid "~Kern Character Pairs"
msgstr "~Druk karakterpare saam"
-#: strings.hrc:994
+#: strings.hrc:983
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "Seleksie druk"
-#: strings.hrc:995
+#: strings.hrc:984
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "Wil u die seleksie of die hele dokument druk?"
-#: strings.hrc:996
+#: strings.hrc:985
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "~Alles"
-#: strings.hrc:997
+#: strings.hrc:986
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "~Seleksie"
-#: strings.hrc:999
+#: strings.hrc:988
msgctxt "RID_SVXSTR_PERSPECTIVE"
msgid "~Perspective"
msgstr "~Perspektief"
-#: strings.hrc:1000
+#: strings.hrc:989
msgctxt "RID_SVXSTR_PARALLEL"
msgid "P~arallel"
msgstr "P~arallel"
-#: strings.hrc:1001
+#: strings.hrc:990
#, fuzzy
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "Ekstrusie noordwes"
-#: strings.hrc:1002
+#: strings.hrc:991
#, fuzzy
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "Ekstrusie noord"
-#: strings.hrc:1003
+#: strings.hrc:992
#, fuzzy
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "Ekstrusie noordoos"
-#: strings.hrc:1004
+#: strings.hrc:993
#, fuzzy
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "Ekstrusie wes"
-#: strings.hrc:1005
+#: strings.hrc:994
#, fuzzy
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "Ekstrusie agtertoe"
-#: strings.hrc:1006
+#: strings.hrc:995
#, fuzzy
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "Ekstrusie oos"
-#: strings.hrc:1007
+#: strings.hrc:996
#, fuzzy
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "Ekstrusie suidwes"
-#: strings.hrc:1008
+#: strings.hrc:997
#, fuzzy
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "Ekstrusie suid"
-#: strings.hrc:1009
+#: strings.hrc:998
#, fuzzy
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "Ekstrusie suidoos"
-#: strings.hrc:1010
+#: strings.hrc:999
msgctxt "RID_SVXSTR_BRIGHT"
msgid "~Bright"
msgstr "~Helder"
-#: strings.hrc:1011
+#: strings.hrc:1000
msgctxt "RID_SVXSTR_NORMAL"
msgid "~Normal"
msgstr "~Normaal"
-#: strings.hrc:1012
+#: strings.hrc:1001
msgctxt "RID_SVXSTR_DIM"
msgid "~Dim"
msgstr "~Vaag"
-#: strings.hrc:1013
+#: strings.hrc:1002
msgctxt "RID_SVXSTR_WIREFRAME"
msgid "~Wire Frame"
msgstr "~Draadraam"
-#: strings.hrc:1014
+#: strings.hrc:1003
msgctxt "RID_SVXSTR_MATTE"
msgid "~Matt"
msgstr "~Mat"
-#: strings.hrc:1015
+#: strings.hrc:1004
msgctxt "RID_SVXSTR_PLASTIC"
msgid "~Plastic"
msgstr "~Plastiek"
-#: strings.hrc:1016
+#: strings.hrc:1005
msgctxt "RID_SVXSTR_METAL"
msgid "Me~tal"
msgstr "Me~taal"
-#: strings.hrc:1017
+#: strings.hrc:1006
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "~0 cm"
-#: strings.hrc:1018
+#: strings.hrc:1007
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "~1 cm"
-#: strings.hrc:1019
+#: strings.hrc:1008
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "~2.5 cm"
-#: strings.hrc:1020
+#: strings.hrc:1009
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "~5 cm"
-#: strings.hrc:1021
+#: strings.hrc:1010
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 ~cm"
-#: strings.hrc:1022
+#: strings.hrc:1011
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 duim"
-#: strings.hrc:1023
+#: strings.hrc:1012
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0,~5 duim"
-#: strings.hrc:1024
+#: strings.hrc:1013
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "~1 duim"
-#: strings.hrc:1025
+#: strings.hrc:1014
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "~2 duim"
-#: strings.hrc:1026
+#: strings.hrc:1015
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "~4 duim"
-#: strings.hrc:1027
+#: strings.hrc:1016
msgctxt "RID_SVXSTR_CUSTOM"
msgid "~Custom..."
msgstr "~Pasmaak..."
-#: strings.hrc:1028
+#: strings.hrc:1017
msgctxt "RID_SVXSTR_INFINITY"
msgid "~Infinity"
msgstr "~Oneindigheid"
-#: strings.hrc:1030
+#: strings.hrc:1019
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr ""
-#: strings.hrc:1031
+#: strings.hrc:1020
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr ""
-#: strings.hrc:1032
+#: strings.hrc:1021
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr ""
-#: strings.hrc:1033
+#: strings.hrc:1022
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "Grense"
-#: strings.hrc:1034
+#: strings.hrc:1023
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "Randstrookstyl"
-#: strings.hrc:1035
+#: strings.hrc:1024
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr ""
-#: strings.hrc:1036
+#: strings.hrc:1025
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr ""
-#: strings.hrc:1037
+#: strings.hrc:1026
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr ""
-#: strings.hrc:1038
+#: strings.hrc:1027
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "Bladsye"
-#: strings.hrc:1039
+#: strings.hrc:1028
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "Maak formatering skoon"
-#: strings.hrc:1040
+#: strings.hrc:1029
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr ""
-#: strings.hrc:1041
+#: strings.hrc:1030
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr ""
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: strings.hrc:1043
+#: strings.hrc:1032
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr ""
-#: strings.hrc:1044
+#: strings.hrc:1033
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr ""
-#: strings.hrc:1045
+#: strings.hrc:1034
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr ""
-#: strings.hrc:1046
+#: strings.hrc:1035
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr ""
-#: strings.hrc:1047
+#: strings.hrc:1036
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr ""
-#: strings.hrc:1049
+#: strings.hrc:1038
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "Ekstrusie"
-#: strings.hrc:1050
+#: strings.hrc:1039
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "Pas ekstrusie aan/af"
-#: strings.hrc:1051
+#: strings.hrc:1040
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "Kantel af"
-#: strings.hrc:1052
+#: strings.hrc:1041
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "Kantel op"
-#: strings.hrc:1053
+#: strings.hrc:1042
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "Kantel links"
-#: strings.hrc:1054
+#: strings.hrc:1043
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "Kantel regs"
-#: strings.hrc:1055
+#: strings.hrc:1044
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "Verander ekstrusiediepte"
-#: strings.hrc:1056
+#: strings.hrc:1045
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "Verander gerigtheid"
-#: strings.hrc:1057
+#: strings.hrc:1046
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "Verander projeksiesoort"
-#: strings.hrc:1058
+#: strings.hrc:1047
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "Verander beligting"
-#: strings.hrc:1059
+#: strings.hrc:1048
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "Verander helderheid"
-#: strings.hrc:1060
+#: strings.hrc:1049
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "Verander ekstrusieoppervlak"
-#: strings.hrc:1061
+#: strings.hrc:1050
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "Verander ekstrusiekleur"
-#: strings.hrc:1063
+#: strings.hrc:1052
msgctxt "RID_SVXFLOAT3D_FAVORITE"
msgid "Favorite"
msgstr "Gunsteling"
-#: strings.hrc:1064
+#: strings.hrc:1053
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R:"
-#: strings.hrc:1065
+#: strings.hrc:1054
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G:"
-#: strings.hrc:1066
+#: strings.hrc:1055
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B:"
-#: strings.hrc:1068
+#: strings.hrc:1057
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "Fontwerk"
-#: strings.hrc:1069
+#: strings.hrc:1058
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "Pas Fontwerk-vorm toe"
-#: strings.hrc:1070
+#: strings.hrc:1059
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "Pas Fontwerk-selfdeletterhoogtes toe"
-#: strings.hrc:1071
+#: strings.hrc:1060
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "Pas Fontwerk-belyning toe"
-#: strings.hrc:1072
+#: strings.hrc:1061
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "Pas Fontwerk-karakterspasiëring toe"
-#: strings.hrc:1074
+#: strings.hrc:1063
msgctxt "RID_SVXSTR_A11Y_3D_MATERIAL_COLOR"
msgid "3D material color"
msgstr "3-D-materiaalkleur"
-#: strings.hrc:1075
+#: strings.hrc:1064
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_NONE"
msgid "None"
msgstr "Geen"
-#: strings.hrc:1076
+#: strings.hrc:1065
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_SOLID"
msgid "Solid"
msgstr "Solied"
-#: strings.hrc:1077
+#: strings.hrc:1066
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_HATCH"
msgid "With hatching"
msgstr "Met hutsing"
-#: strings.hrc:1078
+#: strings.hrc:1067
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_GRADIENT"
msgid "Gradient"
msgstr "Gradiënt"
-#: strings.hrc:1079
+#: strings.hrc:1068
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_BITMAP"
msgid "Bitmap"
msgstr "Biskaart"
-#: strings.hrc:1080
+#: strings.hrc:1069
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "met"
-#: strings.hrc:1081
+#: strings.hrc:1070
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "Styl"
-#: strings.hrc:1082
+#: strings.hrc:1071
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "en"
#. SvxRectCtl
-#: strings.hrc:1084
+#: strings.hrc:1073
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "Hoekbeheer"
-#: strings.hrc:1085
+#: strings.hrc:1074
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "Seleksie van 'n hoekpunt."
-#: strings.hrc:1086
+#: strings.hrc:1075
msgctxt "RID_SVXSTR_RECTCTL_ACC_ANGL_NAME"
msgid "Angle control"
msgstr "Hoekbeheer"
-#: strings.hrc:1087
+#: strings.hrc:1076
msgctxt "RID_SVXSTR_RECTCTL_ACC_ANGL_DESCR"
msgid "Selection of a major angle."
msgstr "Seleksie van 'n groot hoek."
-#: strings.hrc:1088
+#: strings.hrc:1077
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "Bo links"
-#: strings.hrc:1089
+#: strings.hrc:1078
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "Bo middel"
-#: strings.hrc:1090
+#: strings.hrc:1079
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "Bo regs"
-#: strings.hrc:1091
+#: strings.hrc:1080
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "Links middel"
-#: strings.hrc:1092
+#: strings.hrc:1081
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "Sentreer"
-#: strings.hrc:1093
+#: strings.hrc:1082
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "Regs middel"
-#: strings.hrc:1094
+#: strings.hrc:1083
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "Onder links"
-#: strings.hrc:1095
+#: strings.hrc:1084
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "Onder middel"
-#: strings.hrc:1096
+#: strings.hrc:1085
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "Onder regs"
-#: strings.hrc:1097
+#: strings.hrc:1086
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A000"
msgid "0 degrees"
msgstr "0 grade"
-#: strings.hrc:1098
+#: strings.hrc:1087
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A045"
msgid "45 degrees"
msgstr "45 grade"
-#: strings.hrc:1099
+#: strings.hrc:1088
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A090"
msgid "90 degrees"
msgstr "90 grade"
-#: strings.hrc:1100
+#: strings.hrc:1089
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A135"
msgid "135 degrees"
msgstr "135 grade"
-#: strings.hrc:1101
+#: strings.hrc:1090
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A180"
msgid "180 degrees"
msgstr "180 grade"
-#: strings.hrc:1102
+#: strings.hrc:1091
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A225"
msgid "225 degrees"
msgstr "225 grade"
-#: strings.hrc:1103
+#: strings.hrc:1092
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A270"
msgid "270 degrees"
msgstr "270 grade"
-#: strings.hrc:1104
+#: strings.hrc:1093
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A315"
msgid "315 degrees"
msgstr "315 grade"
#. SvxGraphCtrlAccessibleContext
-#: strings.hrc:1106
+#: strings.hrc:1095
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "Kontoerbeheer"
-#: strings.hrc:1107
+#: strings.hrc:1096
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "Dit is waar u die kontoer kan redigeer."
-#: strings.hrc:1108
+#: strings.hrc:1097
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "Spesialekarakter-keuse"
-#: strings.hrc:1109
+#: strings.hrc:1098
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "Kies spesiale karakters in hierdie area."
#. The space behind is a must.
-#: strings.hrc:1111
+#: strings.hrc:1100
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "Karakterkode "
-#: strings.hrc:1113
+#: strings.hrc:1102
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "Toevoer benodig in veld '#'. Tik asseblief 'n waarde in."
-#: strings.hrc:1114
+#: strings.hrc:1103
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Vorms"
-#: strings.hrc:1115
+#: strings.hrc:1104
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "Geen beheer geselekteer nie"
-#: strings.hrc:1116
+#: strings.hrc:1105
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Eienskappe: "
-#: strings.hrc:1117
+#: strings.hrc:1106
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "Vormeienskappe"
-#: strings.hrc:1118
+#: strings.hrc:1107
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "Vormnavigator"
-#: strings.hrc:1119
+#: strings.hrc:1108
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "Vorm"
-#: strings.hrc:1120
+#: strings.hrc:1109
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "Vorm"
-#: strings.hrc:1121
+#: strings.hrc:1110
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "Versteekte kontrole"
-#: strings.hrc:1122
+#: strings.hrc:1111
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "Beheer"
-#: strings.hrc:1123
+#: strings.hrc:1112
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "Rekord"
-#: strings.hrc:1124
+#: strings.hrc:1113
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "van"
-#: strings.hrc:1125
+#: strings.hrc:1114
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "Voeg veld by:"
-#: strings.hrc:1126
+#: strings.hrc:1115
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "Kan nie data na databasis skryf nie"
-#: strings.hrc:1127
+#: strings.hrc:1116
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Sintaksfout in navraaguitdrukking"
-#: strings.hrc:1128
+#: strings.hrc:1117
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "U beoog om 1 rekord te skrap."
-#: strings.hrc:1129
+#: strings.hrc:1118
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "# rekords sal geskrap word."
-#: strings.hrc:1130
+#: strings.hrc:1119
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
"Do you want to continue anyway?"
msgstr ""
-#: strings.hrc:1131
+#: strings.hrc:1120
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "Navigasiebalk"
-#: strings.hrc:1132
+#: strings.hrc:1121
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "Kol"
-#: strings.hrc:1133
+#: strings.hrc:1122
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "Stel eienskap '#' op"
-#: strings.hrc:1134
+#: strings.hrc:1123
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "Voeg in houer in"
-#: strings.hrc:1135
+#: strings.hrc:1124
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Skrap #"
-#: strings.hrc:1136
+#: strings.hrc:1125
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "Skrap # objekte"
-#: strings.hrc:1137
+#: strings.hrc:1126
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "Vervang 'n houerelement"
-#: strings.hrc:1138
+#: strings.hrc:1127
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "Vervang beheer"
-#: strings.hrc:1139
+#: strings.hrc:1128
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr "Druk knoppie"
-#: strings.hrc:1140
+#: strings.hrc:1129
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr "Opsieknoppie"
-#: strings.hrc:1141
+#: strings.hrc:1130
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "Merkblokkie"
-#: strings.hrc:1142
+#: strings.hrc:1131
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "Etiketveld"
-#: strings.hrc:1143
+#: strings.hrc:1132
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "Groepkassie"
-#: strings.hrc:1144
+#: strings.hrc:1133
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "Tekskassie"
-#: strings.hrc:1145
+#: strings.hrc:1134
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr "Geformateerde veld"
-#: strings.hrc:1146
+#: strings.hrc:1135
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "Lyskassie"
-#: strings.hrc:1147
+#: strings.hrc:1136
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr "Kombinasiekassie"
-#: strings.hrc:1148
+#: strings.hrc:1137
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "Beeldknoppie"
-#: strings.hrc:1149
+#: strings.hrc:1138
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr "Beeldbeheer"
-#: strings.hrc:1150
+#: strings.hrc:1139
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "Lêerseleksie"
-#: strings.hrc:1151
+#: strings.hrc:1140
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Datum-veld"
-#: strings.hrc:1152
+#: strings.hrc:1141
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "Tyd-veld"
-#: strings.hrc:1153
+#: strings.hrc:1142
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "Numeriese veld"
-#: strings.hrc:1154
+#: strings.hrc:1143
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "Geldeenheidveld"
-#: strings.hrc:1155
+#: strings.hrc:1144
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "Patroonveld"
-#: strings.hrc:1156
+#: strings.hrc:1145
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "Tabelbeheer "
-#: strings.hrc:1157
+#: strings.hrc:1146
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "Rolstaaf"
-#: strings.hrc:1158
+#: strings.hrc:1147
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "Spinknoppie"
-#: strings.hrc:1159
+#: strings.hrc:1148
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "Navigasiebalk"
-#: strings.hrc:1160
+#: strings.hrc:1149
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "Veelvoudige seleksie"
-#: strings.hrc:1161
+#: strings.hrc:1150
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "Geen dataverwante beheerinstrumente in huidige vorm nie!"
-#: strings.hrc:1162
+#: strings.hrc:1151
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (Datum)"
-#: strings.hrc:1163
+#: strings.hrc:1152
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (Tyd)"
-#: strings.hrc:1164
+#: strings.hrc:1153
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "Filternavigator"
-#: strings.hrc:1165
+#: strings.hrc:1154
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "Filter vir"
-#: strings.hrc:1166
+#: strings.hrc:1155
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "Of"
-#: strings.hrc:1167
+#: strings.hrc:1156
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "Geldige gebinde beheerinstrumente wat in die tabelaansig gebruik kan word bestaan nie in die huidige vorm nie."
-#: strings.hrc:1168
+#: strings.hrc:1157
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<OutoVeld>"
-#: strings.hrc:1169
+#: strings.hrc:1158
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "Sintaksfout in SQL-stelling"
-#: strings.hrc:1170
+#: strings.hrc:1159
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "Die waarde #1 kan nie saam met LIKE gebruik word nie."
-#: strings.hrc:1171
+#: strings.hrc:1160
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "LIKE kan nie saam met hierdie veld gebruik word nie."
-#: strings.hrc:1172
+#: strings.hrc:1161
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "Die waarde wat ingevoer is, is nie 'n geldige datum nie. Tik asseblief 'n datum in 'n geldige formaat in, byvoorbeeld MM/DD/JJ."
-#: strings.hrc:1173
+#: strings.hrc:1162
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "Die veld kan nie met 'n heelgetal vergelyk word nie."
-#: strings.hrc:1174
+#: strings.hrc:1163
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "Die databasis bevat nie 'n tabel genaamd \"#\" nie."
-#: strings.hrc:1175
+#: strings.hrc:1164
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "Die databasis bevat nie 'n tabel of 'n navraag genaamd \"#\" nie."
-#: strings.hrc:1176
+#: strings.hrc:1165
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "Die databasis bevat reeds 'n tabel of 'n aansig genaamd \"#\"."
-#: strings.hrc:1177
+#: strings.hrc:1166
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "Die databasis bevat reeds 'n navraag genaamd \"#\"."
-#: strings.hrc:1178
+#: strings.hrc:1167
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "Die kolom \"#1\" is onbekend in die tabel \"#2\"."
-#: strings.hrc:1179
+#: strings.hrc:1168
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "Die veld kan nie met 'n wisselpuntgetal vergelyk word nie."
-#: strings.hrc:1180
+#: strings.hrc:1169
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "Die toegevoerde kriterium kan nie met hierdie veld vergelyk word nie."
-#: strings.hrc:1181
+#: strings.hrc:1170
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "Datanavigator"
-#: strings.hrc:1182
+#: strings.hrc:1171
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (leesalleen)"
-#: strings.hrc:1183
+#: strings.hrc:1172
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Die lêer bestaan reeds. Oorheenskryf?"
-#: strings.hrc:1184
+#: strings.hrc:1173
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "#object#-etiket"
-#: strings.hrc:1186
+#: strings.hrc:1175
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
@@ -11537,7 +11645,7 @@ msgstr ""
"Om die model '$MODELNAME' te skrap, sal alle kontroles wat tans aan hierdie model gebind is affekteer.\n"
"Wil u werklik hierdie model skrap?"
-#: strings.hrc:1187
+#: strings.hrc:1176
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
@@ -11547,7 +11655,7 @@ msgstr ""
"Om die model '$INSTANCENAME' te skrap, sal alle kontroles wat tans aan hierdie instans gebind is affekteer.\n"
"Wil u werklik hierdie instans skrap?"
-#: strings.hrc:1188
+#: strings.hrc:1177
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
@@ -11557,12 +11665,12 @@ msgstr ""
"Om die model '$ELEMENTNAME' te skrap, sal alle kontroles wat tans aan hierdie element gebind is affekteer.\n"
"Wil u werklik hierdie element skrap?"
-#: strings.hrc:1189
+#: strings.hrc:1178
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "Wil u werklik die attribuut '$ATTRIBUTENAME' skrap?"
-#: strings.hrc:1190
+#: strings.hrc:1179
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
@@ -11574,7 +11682,7 @@ msgstr ""
"\n"
"Wil u regtig hierdie indiening skrap?"
-#: strings.hrc:1191
+#: strings.hrc:1180
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
@@ -11586,2238 +11694,2238 @@ msgstr ""
"\n"
"Wil u regtig hierdie binding skrap?"
-#: strings.hrc:1192
+#: strings.hrc:1181
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "Die naam '%1' is nie geldig in XML nie. Tik asseblief 'n ander naam in."
-#: strings.hrc:1193
+#: strings.hrc:1182
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "Die voorvoegsel '%1' is nie geldig in XML nie. Tik asseblief 'n ander voorvoegsel in."
-#: strings.hrc:1194
+#: strings.hrc:1183
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "Die naam '%1' bestaan reeds. Tik asseblief 'n nuwe naam in."
-#: strings.hrc:1195
+#: strings.hrc:1184
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "Die indiening moet 'n naam hê."
-#: strings.hrc:1196
+#: strings.hrc:1185
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr ""
-#: strings.hrc:1197
+#: strings.hrc:1186
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr ""
-#: strings.hrc:1198
+#: strings.hrc:1187
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr ""
-#: strings.hrc:1199
+#: strings.hrc:1188
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr ""
-#: strings.hrc:1200
+#: strings.hrc:1189
#, fuzzy
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "~Instanse"
-#: strings.hrc:1201
+#: strings.hrc:1190
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr ""
-#: strings.hrc:1202
+#: strings.hrc:1191
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "Binding: "
-#: strings.hrc:1203
+#: strings.hrc:1192
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "Verwysing: "
-#: strings.hrc:1204
+#: strings.hrc:1193
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "Aksie: "
-#: strings.hrc:1205
+#: strings.hrc:1194
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "Metode: "
-#: strings.hrc:1206
+#: strings.hrc:1195
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "Vervang: "
-#: strings.hrc:1207
+#: strings.hrc:1196
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "Voeg element by"
-#: strings.hrc:1208
+#: strings.hrc:1197
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "Redigeer element"
-#: strings.hrc:1209
+#: strings.hrc:1198
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "Skrap element"
-#: strings.hrc:1210
+#: strings.hrc:1199
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "Voeg attribuut by"
-#: strings.hrc:1211
+#: strings.hrc:1200
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "Redigeer attribuut"
-#: strings.hrc:1212
+#: strings.hrc:1201
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "Skrap attribuut"
-#: strings.hrc:1213
+#: strings.hrc:1202
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "Voeg binding by"
-#: strings.hrc:1214
+#: strings.hrc:1203
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "Redigeer binding"
-#: strings.hrc:1215
+#: strings.hrc:1204
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "Skrap binding"
-#: strings.hrc:1216
+#: strings.hrc:1205
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "Voeg indiening by"
-#: strings.hrc:1217
+#: strings.hrc:1206
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "Redigeer indiening"
-#: strings.hrc:1218
+#: strings.hrc:1207
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "Skrap indiening"
-#: strings.hrc:1219
+#: strings.hrc:1208
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr ""
-#: strings.hrc:1220
+#: strings.hrc:1209
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr ""
-#: strings.hrc:1221
+#: strings.hrc:1210
#, fuzzy
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "Bindings"
-#: strings.hrc:1222
+#: strings.hrc:1211
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr ""
-#: strings.hrc:1224
+#: strings.hrc:1213
#, fuzzy
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "Is u seker u wil die %PRODUCTNAME-dokumentherwinning kanselleer?"
-#: strings.hrc:1226
+#: strings.hrc:1215
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "Links"
-#: strings.hrc:1227
+#: strings.hrc:1216
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "Regs"
-#: strings.hrc:1228
+#: strings.hrc:1217
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "Sentreer"
-#: strings.hrc:1229
+#: strings.hrc:1218
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "Desimaal"
-#: strings.hrc:1231
+#: strings.hrc:1220
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr ""
-#: strings.hrc:1232
+#: strings.hrc:1221
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr ""
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: strings.hrc:1234
+#: strings.hrc:1223
#, fuzzy
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "~Oorheenskryf"
-#: strings.hrc:1235
+#: strings.hrc:1224
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "Digitale handtekening: Die dokument se handtekening is OK."
-#: strings.hrc:1236
+#: strings.hrc:1225
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "Digitale handtekening: Die dokument se handtekening is OK, maar die sertifikaat kon nie gevalideer word nie."
-#: strings.hrc:1237
+#: strings.hrc:1226
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you to do not trust this document."
msgstr "Digitale handtekening: Die dokument se handtekening pas nie by die dokument se inhoud nie. Ons beveel sterk aan dat jy nie hierdie dokument vertrou nie."
-#: strings.hrc:1238
+#: strings.hrc:1227
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "Digitale handtekening: Die dokument is nie onderteken nie."
-#: strings.hrc:1239
+#: strings.hrc:1228
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "Digitale handtekening: Die dokumenthandtekening en die sertifikaat is goed, maar nie alle dele van die dokument is onderteken nie."
-#: strings.hrc:1240
+#: strings.hrc:1229
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr ""
-#: strings.hrc:1241
+#: strings.hrc:1230
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr ""
-#: strings.hrc:1242
+#: strings.hrc:1231
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "Laai tans dokument..."
-#: strings.hrc:1243
+#: strings.hrc:1232
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
-#: strings.hrc:1244
+#: strings.hrc:1233
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
-#: strings.hrc:1245
+#: strings.hrc:1234
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr ""
-#: strings.hrc:1246
+#: strings.hrc:1235
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr ""
-#: strings.hrc:1247
+#: strings.hrc:1236
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr ""
-#: strings.hrc:1248
+#: strings.hrc:1237
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr ""
-#: strings.hrc:1249
+#: strings.hrc:1238
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr ""
-#: strings.hrc:1250
+#: strings.hrc:1239
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr ""
-#: strings.hrc:1251
+#: strings.hrc:1240
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr ""
-#: strings.hrc:1252
+#: strings.hrc:1241
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr ""
-#: strings.hrc:1253
+#: strings.hrc:1242
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr ""
-#: strings.hrc:1254
+#: strings.hrc:1243
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "Hele bladsy"
-#: strings.hrc:1255
+#: strings.hrc:1244
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "Bladsywydte"
-#: strings.hrc:1256
+#: strings.hrc:1245
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr ""
-#: strings.hrc:1257
+#: strings.hrc:1246
msgctxt "RID_SIDEBAR_EMPTY_PANEL_TEXT"
msgid "Properties for the task that you are performing are not available for the current selection"
msgstr ""
-#: strings.hrc:1259
+#: strings.hrc:1248
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "Style ingesluit"
-#: strings.hrc:1260
+#: strings.hrc:1249
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr ""
-#: strings.hrc:1261
+#: strings.hrc:1250
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr ""
-#: strings.hrc:1262
+#: strings.hrc:1251
msgctxt "RID_SVXSTR_SEARCH"
msgid "(Search)"
msgstr "(Soek)"
-#: strings.hrc:1263
+#: strings.hrc:1252
msgctxt "RID_SVXSTR_REPLACE"
msgid "(Replace)"
msgstr "(Vervang)"
-#: strings.hrc:1264
+#: strings.hrc:1253
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr ""
-#: strings.hrc:1265
+#: strings.hrc:1254
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr ""
-#: strings.hrc:1266
+#: strings.hrc:1255
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr ""
-#: strings.hrc:1267
+#: strings.hrc:1256
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr ""
-#: strings.hrc:1269
+#: strings.hrc:1258
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "Kleurpalet"
-#: strings.hrc:1271
+#: strings.hrc:1260
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr ""
-#: strings.hrc:1272
+#: strings.hrc:1261
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr ""
-#: strings.hrc:1274
+#: strings.hrc:1263
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "Soliede klein sirkelvormige koeëltjies"
-#: strings.hrc:1275
+#: strings.hrc:1264
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "Soliede groot sirkelvormige koeëltjies"
-#: strings.hrc:1276
+#: strings.hrc:1265
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "Soliede ruitvormige koeëltjies"
-#: strings.hrc:1277
+#: strings.hrc:1266
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "Soliede groot vierkantige koeëltjies"
-#: strings.hrc:1278
+#: strings.hrc:1267
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "Regswysende pyltjies ingevul"
-#: strings.hrc:1279
+#: strings.hrc:1268
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "Regswysende pyltjie-koeëltjies"
-#: strings.hrc:1280
+#: strings.hrc:1269
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Check mark bullets"
msgstr "Kruisie-koeëltjies"
-#: strings.hrc:1281
+#: strings.hrc:1270
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Tick mark bullets"
msgstr "Regmerkie-koeëltjies"
-#: strings.hrc:1282
+#: strings.hrc:1271
#, fuzzy
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "Nommer (1) (2) (3)"
-#: strings.hrc:1283
+#: strings.hrc:1272
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "Nommer 1. 2. 3."
-#: strings.hrc:1284
+#: strings.hrc:1273
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "Nommer (1) (2) (3)"
-#: strings.hrc:1285
+#: strings.hrc:1274
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "Bokas Romeinse syfer I. II. III."
-#: strings.hrc:1286
+#: strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "Bokasletter A) B) C)"
-#: strings.hrc:1287
+#: strings.hrc:1276
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "Onderkasletter a) b) c)"
-#: strings.hrc:1288
+#: strings.hrc:1277
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "Onderkasletter (a) (b) (c)"
-#: strings.hrc:1289
+#: strings.hrc:1278
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "Onderkas Romeinse syfer i. ii. iii."
-#: strings.hrc:1290
+#: strings.hrc:1279
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "Numeries, numeries, onderkasletters, soliede klein sirkelvormige koeëltjie"
-#: strings.hrc:1291
+#: strings.hrc:1280
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "Numeries, onderkasletters, soliede klein sirkelvormige koeëltjie"
-#: strings.hrc:1292
+#: strings.hrc:1281
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "Numeries, onderkasletters, onderkas Romeins, bokasletters, soliede klein sirkelvormige koeëltjie"
-#: strings.hrc:1293
+#: strings.hrc:1282
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "Numeries"
-#: strings.hrc:1294
+#: strings.hrc:1283
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "Bokas Romeins, bokasletters, onderkas Romeins, onderkasletters, soliede klein sirkelvormige koeëltjie"
-#: strings.hrc:1295
+#: strings.hrc:1284
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "Bokasletters, bokas romein, onderkasletters, onderkas romein, soliede klein ronde koeëltjie"
-#: strings.hrc:1296
+#: strings.hrc:1285
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "Numeries met alle subvlakke"
-#: strings.hrc:1297
+#: strings.hrc:1286
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "Regswysende koeëltjie, regswysende pyltjiekoeëltjie, soliede ruitvormige koeëltjie, soliede klein sirkelvormige koeëltjie"
-#: strings.hrc:1299
+#: strings.hrc:1288
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr ""
-#: strings.hrc:1301
+#: strings.hrc:1290
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "Tabelontwerpstyle"
-#: strings.hrc:1303
+#: strings.hrc:1292
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "Aksies om te ontdoen: $(ARG1)"
-#: strings.hrc:1304
+#: strings.hrc:1293
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "Aksies om te ontdoen: $(ARG1)"
-#: strings.hrc:1305
+#: strings.hrc:1294
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "Aksies om te herdoen: $(ARG1)"
-#: strings.hrc:1306
+#: strings.hrc:1295
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "Aksies om te herdoen: $(ARG1)"
-#: strings.hrc:1308
+#: strings.hrc:1297
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr ""
-#: strings.hrc:1309
+#: strings.hrc:1298
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr ""
-#: strings.hrc:1310
+#: strings.hrc:1299
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr ""
-#: strings.hrc:1312
+#: strings.hrc:1301
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr ""
-#: strings.hrc:1313
+#: strings.hrc:1302
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr ""
-#: strings.hrc:1314
+#: strings.hrc:1303
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr ""
-#: strings.hrc:1315
+#: strings.hrc:1304
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr ""
-#: strings.hrc:1316
+#: strings.hrc:1305
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr ""
-#: strings.hrc:1317
+#: strings.hrc:1306
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr ""
-#: strings.hrc:1318
+#: strings.hrc:1307
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr ""
-#: strings.hrc:1319
+#: strings.hrc:1308
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr ""
-#: strings.hrc:1320
+#: strings.hrc:1309
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr ""
-#: strings.hrc:1321
+#: strings.hrc:1310
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr ""
-#: strings.hrc:1322
+#: strings.hrc:1311
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr ""
-#: strings.hrc:1323
+#: strings.hrc:1312
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr ""
-#: strings.hrc:1324
+#: strings.hrc:1313
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr ""
-#: strings.hrc:1326
+#: strings.hrc:1315
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr ""
-#: strings.hrc:1328
+#: strings.hrc:1317
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr ""
-#: strings.hrc:1329
+#: strings.hrc:1318
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "Rooi"
-#: strings.hrc:1330
+#: strings.hrc:1319
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "Groen"
-#: strings.hrc:1331
+#: strings.hrc:1320
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "Blou"
-#: strings.hrc:1332
+#: strings.hrc:1321
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Helderheid"
-#: strings.hrc:1333
+#: strings.hrc:1322
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "Kontras"
-#: strings.hrc:1334
+#: strings.hrc:1323
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
-#: strings.hrc:1335
+#: strings.hrc:1324
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "Deursigtigheid"
-#: strings.hrc:1336
+#: strings.hrc:1325
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "Snoei"
-#: strings.hrc:1338
+#: strings.hrc:1327
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "Verstek oriëntasie"
-#: strings.hrc:1339
+#: strings.hrc:1328
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "Van bo na onder"
-#: strings.hrc:1340
+#: strings.hrc:1329
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "Onder na bo"
-#: strings.hrc:1341
+#: strings.hrc:1330
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "Gestapel"
-#: strings.hrc:1342
+#: strings.hrc:1331
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "Linkerkantlyn: "
-#: strings.hrc:1343
+#: strings.hrc:1332
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "Boonste kantlyn: "
-#: strings.hrc:1344
+#: strings.hrc:1333
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "Regterkantlyn: "
-#: strings.hrc:1345
+#: strings.hrc:1334
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "Onderste kantlyn: "
-#: strings.hrc:1346
+#: strings.hrc:1335
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "Bladsybeskrywing: "
-#: strings.hrc:1347
+#: strings.hrc:1336
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "Hoofletters"
-#: strings.hrc:1348
+#: strings.hrc:1337
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "Onderkas"
-#: strings.hrc:1349
+#: strings.hrc:1338
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "Bokas Romein"
-#: strings.hrc:1350
+#: strings.hrc:1339
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "Onderkas Romein"
-#: strings.hrc:1351
+#: strings.hrc:1340
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "Arabies"
-#: strings.hrc:1352
+#: strings.hrc:1341
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "Geen"
-#: strings.hrc:1353
+#: strings.hrc:1342
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "Landskap"
-#: strings.hrc:1354
+#: strings.hrc:1343
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "Regop"
-#: strings.hrc:1355
+#: strings.hrc:1344
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "Links"
-#: strings.hrc:1356
+#: strings.hrc:1345
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "Regs"
-#: strings.hrc:1357
+#: strings.hrc:1346
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Almal"
-#: strings.hrc:1358
+#: strings.hrc:1347
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "Spieëlbeeld"
-#: strings.hrc:1359
+#: strings.hrc:1348
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Outeur: "
-#: strings.hrc:1360
+#: strings.hrc:1349
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "Datum: "
-#: strings.hrc:1361
+#: strings.hrc:1350
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "Teks: "
-#: strings.hrc:1362
+#: strings.hrc:1351
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "Karakteragtergrond"
-#: strings.hrc:1364
+#: strings.hrc:1353
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "Kleurpalet"
#. String for saving modified image (instead of original)
-#: strings.hrc:1367
+#: strings.hrc:1356
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
"Do you want to save the modified version instead ?"
msgstr ""
-#: strings.hrc:1369
+#: strings.hrc:1358
msgctxt "RID_SUBSETMAP"
msgid "Add to favorites"
msgstr ""
-#: strings.hrc:1370
+#: strings.hrc:1359
msgctxt "RID_SUBSETMAP"
msgid "Remove from favorites"
msgstr ""
-#: strings.hrc:1371
+#: strings.hrc:1360
msgctxt "RID_SUBSETMAP"
msgid "Insert into document"
msgstr ""
-#: strings.hrc:1372
+#: strings.hrc:1361
msgctxt "RID_SUBSETMAP"
msgid "Copy to clipboard"
msgstr ""
-#: strings.hrc:1374
+#: strings.hrc:1363
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "Basiese Latyn"
-#: strings.hrc:1375
+#: strings.hrc:1364
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "Latyn-1"
-#: strings.hrc:1376
+#: strings.hrc:1365
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "Latyn uitgebrei-A"
-#: strings.hrc:1377
+#: strings.hrc:1366
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "Latyn uitgebrei-B"
-#: strings.hrc:1378
+#: strings.hrc:1367
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "IPA-uitbreidings"
-#: strings.hrc:1379
+#: strings.hrc:1368
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "Spasiewysigingsletters"
-#: strings.hrc:1380
+#: strings.hrc:1369
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "Kombinerende diakritiese tekens"
-#: strings.hrc:1381
+#: strings.hrc:1370
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "Basiese Grieks"
-#: strings.hrc:1382
+#: strings.hrc:1371
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "Griekse simbole en Kopties"
-#: strings.hrc:1383
+#: strings.hrc:1372
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "Cyrillies"
-#: strings.hrc:1384
+#: strings.hrc:1373
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "Armeens"
-#: strings.hrc:1385
+#: strings.hrc:1374
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "Basiese Hebreeus"
-#: strings.hrc:1386
+#: strings.hrc:1375
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "Hebreeus uitgebrei"
-#: strings.hrc:1387
+#: strings.hrc:1376
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "Basiese Arabies"
-#: strings.hrc:1388
+#: strings.hrc:1377
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "Arabies uitgebrei"
-#: strings.hrc:1389
+#: strings.hrc:1378
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "Devanagari"
-#: strings.hrc:1390
+#: strings.hrc:1379
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "Bengaals"
-#: strings.hrc:1391
+#: strings.hrc:1380
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "Gurmukhi"
-#: strings.hrc:1392
+#: strings.hrc:1381
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "Goedjarati"
-#: strings.hrc:1393
+#: strings.hrc:1382
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr ""
-#: strings.hrc:1394
+#: strings.hrc:1383
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "Tamil"
-#: strings.hrc:1395
+#: strings.hrc:1384
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "Teloegoe"
-#: strings.hrc:1396
+#: strings.hrc:1385
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "Kannada"
-#: strings.hrc:1397
+#: strings.hrc:1386
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "Malabaars"
-#: strings.hrc:1398
+#: strings.hrc:1387
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "Thais"
-#: strings.hrc:1399
+#: strings.hrc:1388
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "Lao"
-#: strings.hrc:1400
+#: strings.hrc:1389
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "Basiese Georgies"
-#: strings.hrc:1401
+#: strings.hrc:1390
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "Georgies uitgebrei"
-#: strings.hrc:1402
+#: strings.hrc:1391
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "Hangoel Jamo"
-#: strings.hrc:1403
+#: strings.hrc:1392
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "Latyn uitgebrei bykomend"
-#: strings.hrc:1404
+#: strings.hrc:1393
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "Grieks uitgebrei"
-#: strings.hrc:1405
+#: strings.hrc:1394
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "Algemene leestekens"
-#: strings.hrc:1406
+#: strings.hrc:1395
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "Superskrifte en subskrifte"
-#: strings.hrc:1407
+#: strings.hrc:1396
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "Geldeenheidsimbole"
-#: strings.hrc:1408
+#: strings.hrc:1397
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "Kombinerende diakritiese simbole"
-#: strings.hrc:1409
+#: strings.hrc:1398
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "Letteragtige simbole"
-#: strings.hrc:1410
+#: strings.hrc:1399
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "Getalvorms"
-#: strings.hrc:1411
+#: strings.hrc:1400
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "Pyltjies"
-#: strings.hrc:1412
+#: strings.hrc:1401
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "Wiskundige operateure"
-#: strings.hrc:1413
+#: strings.hrc:1402
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "Diverse tegniese"
-#: strings.hrc:1414
+#: strings.hrc:1403
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "Beheer prentjies"
-#: strings.hrc:1415
+#: strings.hrc:1404
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "Optiese karakterherkenning"
-#: strings.hrc:1416
+#: strings.hrc:1405
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "Ingeslote alfanumeriese karakters"
-#: strings.hrc:1417
+#: strings.hrc:1406
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "Kassietekening"
-#: strings.hrc:1418
+#: strings.hrc:1407
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "Blokelemente"
-#: strings.hrc:1419
+#: strings.hrc:1408
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "Geometriese vorms"
-#: strings.hrc:1420
+#: strings.hrc:1409
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "Diverse simbole"
-#: strings.hrc:1421
+#: strings.hrc:1410
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "Dingbats"
-#: strings.hrc:1422
+#: strings.hrc:1411
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "CJK-simbole en leestekens"
-#: strings.hrc:1423
+#: strings.hrc:1412
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "Hiragana"
-#: strings.hrc:1424
+#: strings.hrc:1413
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "Katakana"
-#: strings.hrc:1425
+#: strings.hrc:1414
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "Bopomofo"
-#: strings.hrc:1426
+#: strings.hrc:1415
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "Hangoel-versoenbaarheid Jamo"
-#: strings.hrc:1427
+#: strings.hrc:1416
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "CJK Diverse"
-#: strings.hrc:1428
+#: strings.hrc:1417
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "Ingeslote CJK-letters en -maande"
-#: strings.hrc:1429
+#: strings.hrc:1418
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "CJK-versoenbaarheid"
-#: strings.hrc:1430
+#: strings.hrc:1419
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "Hangoel"
-#: strings.hrc:1431
+#: strings.hrc:1420
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "CJK Unified-ideogramme"
-#: strings.hrc:1432
+#: strings.hrc:1421
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "CJK Unified-ideogramme uitbreiding-A"
-#: strings.hrc:1433
+#: strings.hrc:1422
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "Area vir private gebruik"
-#: strings.hrc:1434
+#: strings.hrc:1423
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "CJK-versoenbare ideogramme"
-#: strings.hrc:1435
+#: strings.hrc:1424
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "Alfabetiese aanbiedingsvorms"
-#: strings.hrc:1436
+#: strings.hrc:1425
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "Arabiese aanbiedingsvorms-A"
-#: strings.hrc:1437
+#: strings.hrc:1426
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "Kombinerende halftekens"
-#: strings.hrc:1438
+#: strings.hrc:1427
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "CJK-versoenbaarheidsvorms"
-#: strings.hrc:1439
+#: strings.hrc:1428
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "Klein vormvariante"
-#: strings.hrc:1440
+#: strings.hrc:1429
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "Arabiese aanbiedingsvorms-B"
-#: strings.hrc:1441
+#: strings.hrc:1430
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "Halfbreedte- en volbreedtevorms"
-#: strings.hrc:1442
+#: strings.hrc:1431
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "Spesiales"
-#: strings.hrc:1443
+#: strings.hrc:1432
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr ""
-#: strings.hrc:1444
+#: strings.hrc:1433
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr ""
-#: strings.hrc:1445
+#: strings.hrc:1434
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr ""
-#: strings.hrc:1446
+#: strings.hrc:1435
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr ""
-#: strings.hrc:1447
+#: strings.hrc:1436
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr ""
-#: strings.hrc:1448
+#: strings.hrc:1437
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr ""
-#: strings.hrc:1449
+#: strings.hrc:1438
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr ""
-#: strings.hrc:1450
+#: strings.hrc:1439
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr ""
-#: strings.hrc:1451
+#: strings.hrc:1440
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "CJK Unified-ideogramme uitbreiding-A"
-#: strings.hrc:1452
+#: strings.hrc:1441
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "CJK Unified-ideogramme uitbreiding-A"
-#: strings.hrc:1453
+#: strings.hrc:1442
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "CJK Unified-ideogramme uitbreiding-A"
-#: strings.hrc:1454
+#: strings.hrc:1443
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr ""
-#: strings.hrc:1455
+#: strings.hrc:1444
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr ""
-#: strings.hrc:1456
+#: strings.hrc:1445
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "Cyrillies aanvullend"
-#: strings.hrc:1457
+#: strings.hrc:1446
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr ""
-#: strings.hrc:1458
+#: strings.hrc:1447
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr ""
-#: strings.hrc:1459
+#: strings.hrc:1448
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr ""
-#: strings.hrc:1460
+#: strings.hrc:1449
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr ""
-#: strings.hrc:1461
+#: strings.hrc:1450
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr ""
-#: strings.hrc:1462
+#: strings.hrc:1451
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr ""
-#: strings.hrc:1463
+#: strings.hrc:1452
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr ""
-#: strings.hrc:1464
+#: strings.hrc:1453
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr ""
-#: strings.hrc:1465
+#: strings.hrc:1454
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr ""
-#: strings.hrc:1466
+#: strings.hrc:1455
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr ""
-#: strings.hrc:1467
+#: strings.hrc:1456
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr ""
-#: strings.hrc:1468
+#: strings.hrc:1457
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr ""
-#: strings.hrc:1469
+#: strings.hrc:1458
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr ""
-#: strings.hrc:1470
+#: strings.hrc:1459
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr ""
-#: strings.hrc:1471
+#: strings.hrc:1460
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr ""
-#: strings.hrc:1472
+#: strings.hrc:1461
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "Sinhalees"
-#: strings.hrc:1473
+#: strings.hrc:1462
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "Tibetaans"
-#: strings.hrc:1474
+#: strings.hrc:1463
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "Birmaans"
-#: strings.hrc:1475
+#: strings.hrc:1464
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "Khmer"
-#: strings.hrc:1476
+#: strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "Ogham"
-#: strings.hrc:1477
+#: strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "Runies"
-#: strings.hrc:1478
+#: strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "Siries"
-#: strings.hrc:1479
+#: strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "Thaana"
-#: strings.hrc:1480
+#: strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "Etiopies"
-#: strings.hrc:1481
+#: strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "Cherokee"
-#: strings.hrc:1482
+#: strings.hrc:1471
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "Kanadiese inheemse lettergrepe"
-#: strings.hrc:1483
+#: strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "Mongools"
-#: strings.hrc:1484
+#: strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "Diverse wiskundige simbole-A"
-#: strings.hrc:1485
+#: strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "Aanvullende pyltjies-A"
-#: strings.hrc:1486
+#: strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "Braille-patrone"
-#: strings.hrc:1487
+#: strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "Aanvullende pyltjies-B"
-#: strings.hrc:1488
+#: strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "Diverse wiskundige simbole-B"
-#: strings.hrc:1489
+#: strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "CJK-radikale aanvullend"
-#: strings.hrc:1490
+#: strings.hrc:1479
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "Kanxi-radikale"
-#: strings.hrc:1491
+#: strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "Ideografiese beskrywende karakters"
-#: strings.hrc:1492
+#: strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "Tagalog"
-#: strings.hrc:1493
+#: strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "Hanunoo"
-#: strings.hrc:1494
+#: strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "Tagbanwa"
-#: strings.hrc:1495
+#: strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "Buhid"
-#: strings.hrc:1496
+#: strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "Kanbun"
-#: strings.hrc:1497
+#: strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "Bopomofo uitgebrei"
-#: strings.hrc:1498
+#: strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "Katakana fonetiese simbole"
-#: strings.hrc:1499
+#: strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr ""
-#: strings.hrc:1500
+#: strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr ""
-#: strings.hrc:1501
+#: strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr ""
-#: strings.hrc:1502
+#: strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr ""
-#: strings.hrc:1503
+#: strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr ""
-#: strings.hrc:1504
+#: strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr ""
-#: strings.hrc:1505
+#: strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr ""
-#: strings.hrc:1506
+#: strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr ""
-#: strings.hrc:1507
+#: strings.hrc:1496
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "Kombinerende diakritiese tekens"
-#: strings.hrc:1508
+#: strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr ""
-#: strings.hrc:1509
+#: strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr ""
-#: strings.hrc:1510
+#: strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr ""
-#: strings.hrc:1511
+#: strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr ""
-#: strings.hrc:1512
+#: strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr ""
-#: strings.hrc:1513
+#: strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr ""
-#: strings.hrc:1514
+#: strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr ""
-#: strings.hrc:1515
+#: strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr ""
-#: strings.hrc:1516
+#: strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr ""
-#: strings.hrc:1517
+#: strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr ""
-#: strings.hrc:1518
+#: strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr ""
-#: strings.hrc:1519
+#: strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr ""
-#: strings.hrc:1520
+#: strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr ""
-#: strings.hrc:1521
+#: strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr ""
-#: strings.hrc:1522
+#: strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr ""
-#: strings.hrc:1523
+#: strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr ""
-#: strings.hrc:1524
+#: strings.hrc:1513
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "Latyn uitgebrei-A"
-#: strings.hrc:1525
+#: strings.hrc:1514
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "Latyn uitgebrei-A"
-#: strings.hrc:1526
+#: strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr ""
-#: strings.hrc:1527
+#: strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr ""
-#: strings.hrc:1528
+#: strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr ""
-#: strings.hrc:1529
+#: strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr ""
-#: strings.hrc:1530
+#: strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr ""
-#: strings.hrc:1531
+#: strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr ""
-#: strings.hrc:1532
+#: strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr ""
-#: strings.hrc:1533
+#: strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr ""
-#: strings.hrc:1534
+#: strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr ""
-#: strings.hrc:1535
+#: strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr ""
-#: strings.hrc:1536
+#: strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr ""
-#: strings.hrc:1537
+#: strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr ""
-#: strings.hrc:1538
+#: strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr ""
-#: strings.hrc:1539
+#: strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr ""
-#: strings.hrc:1540
+#: strings.hrc:1529
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Grafiek"
-#: strings.hrc:1541
+#: strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr ""
-#: strings.hrc:1542
+#: strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr ""
-#: strings.hrc:1543
+#: strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr ""
-#: strings.hrc:1544
+#: strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr ""
-#: strings.hrc:1545
+#: strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr ""
-#: strings.hrc:1546
+#: strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr ""
-#: strings.hrc:1547
+#: strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr ""
-#: strings.hrc:1548
+#: strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr ""
-#: strings.hrc:1549
+#: strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr ""
-#: strings.hrc:1550
+#: strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr ""
-#: strings.hrc:1551
+#: strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr ""
-#: strings.hrc:1552
+#: strings.hrc:1541
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Lys"
-#: strings.hrc:1553
+#: strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr ""
-#: strings.hrc:1554
+#: strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr ""
-#: strings.hrc:1555
+#: strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr ""
-#: strings.hrc:1556
+#: strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr ""
-#: strings.hrc:1557
+#: strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr ""
-#: strings.hrc:1558
+#: strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr ""
-#: strings.hrc:1559
+#: strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr ""
-#: strings.hrc:1560
+#: strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr ""
-#: strings.hrc:1561
+#: strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr ""
-#: strings.hrc:1562
+#: strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr ""
-#: strings.hrc:1563
+#: strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr ""
-#: strings.hrc:1564
+#: strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr ""
-#: strings.hrc:1565
+#: strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr ""
-#: strings.hrc:1566
+#: strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr ""
-#: strings.hrc:1567
+#: strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr ""
-#: strings.hrc:1568
+#: strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr ""
-#: strings.hrc:1569
+#: strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr ""
-#: strings.hrc:1570
+#: strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr ""
-#: strings.hrc:1571
+#: strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr ""
-#: strings.hrc:1572
+#: strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr ""
-#: strings.hrc:1573
+#: strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr ""
-#: strings.hrc:1574
+#: strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr ""
-#: strings.hrc:1575
+#: strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr ""
-#: strings.hrc:1576
+#: strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr ""
-#: strings.hrc:1577
+#: strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr ""
-#: strings.hrc:1578
+#: strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr ""
-#: strings.hrc:1579
+#: strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr ""
-#: strings.hrc:1580
+#: strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr ""
-#: strings.hrc:1581
+#: strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr ""
-#: strings.hrc:1582
+#: strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr ""
-#: strings.hrc:1583
+#: strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr ""
-#: strings.hrc:1584
+#: strings.hrc:1573
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "Arabies uitgebrei"
-#: strings.hrc:1585
+#: strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr ""
-#: strings.hrc:1586
+#: strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr ""
-#: strings.hrc:1587
+#: strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr ""
-#: strings.hrc:1588
+#: strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr ""
-#: strings.hrc:1589
+#: strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr ""
-#: strings.hrc:1590
+#: strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr ""
-#: strings.hrc:1591
+#: strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr ""
-#: strings.hrc:1592
+#: strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr ""
-#: strings.hrc:1593
+#: strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr ""
-#: strings.hrc:1594
+#: strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr ""
-#: strings.hrc:1595
+#: strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
-#: strings.hrc:1596
+#: strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
-#: strings.hrc:1597
+#: strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
-#: strings.hrc:1598
+#: strings.hrc:1587
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "Kombinerende diakritiese tekens"
-#: strings.hrc:1599
+#: strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
-#: strings.hrc:1600
+#: strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
-#: strings.hrc:1601
+#: strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
-#: strings.hrc:1602
+#: strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
-#: strings.hrc:1603
+#: strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
-#: strings.hrc:1604
+#: strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
-#: strings.hrc:1605
+#: strings.hrc:1594
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "Latyn uitgebrei-A"
-#: strings.hrc:1606
+#: strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr ""
-#: strings.hrc:1607
+#: strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
-#: strings.hrc:1608
+#: strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
-#: strings.hrc:1609
+#: strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
-#: strings.hrc:1610
+#: strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr ""
-#: strings.hrc:1611
+#: strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
-#: strings.hrc:1612
+#: strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr ""
-#: strings.hrc:1613
+#: strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
-#: strings.hrc:1614
+#: strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr ""
-#: strings.hrc:1615
+#: strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
-#: strings.hrc:1616
+#: strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
-#: strings.hrc:1617
+#: strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
-#: strings.hrc:1618
+#: strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
-#: strings.hrc:1619
+#: strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
-#: strings.hrc:1620
+#: strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
-#: strings.hrc:1621
+#: strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
-#: strings.hrc:1622
+#: strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
-#: strings.hrc:1623
+#: strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
-#: strings.hrc:1624
+#: strings.hrc:1613
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "Aanvullende pyltjies-A"
-#: strings.hrc:1625
+#: strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
-#: strings.hrc:1626
+#: strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
-#: strings.hrc:1627
+#: strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
-#: strings.hrc:1628
+#: strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
-#: strings.hrc:1629
+#: strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
-#: strings.hrc:1630
+#: strings.hrc:1619
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "CJK Unified-ideogramme uitbreiding-A"
-#: strings.hrc:1631
+#: strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
-#: strings.hrc:1632
+#: strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
-#: strings.hrc:1633
+#: strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
-#: strings.hrc:1634
+#: strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
-#: strings.hrc:1635
+#: strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
-#: strings.hrc:1636
+#: strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
-#: strings.hrc:1637
+#: strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
-#: strings.hrc:1638
+#: strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
-#: strings.hrc:1639
+#: strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr ""
-#: strings.hrc:1640
+#: strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
-#: strings.hrc:1641
+#: strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
-#: strings.hrc:1642
+#: strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
-#: strings.hrc:1643
+#: strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr ""
-#: strings.hrc:1644
+#: strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr ""
-#: strings.hrc:1645
+#: strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr ""
-#: strings.hrc:1646
+#: strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
-#: strings.hrc:1647
+#: strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
-#: strings.hrc:1648
+#: strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr ""
-#: strings.hrc:1649
+#: strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr ""
-#: strings.hrc:1650
+#: strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
-#: strings.hrc:1651
+#: strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
-#: strings.hrc:1652
+#: strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
-#: strings.hrc:1653
+#: strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr ""
-#: strings.hrc:1654
+#: strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index 57007694065..518785725e3 100644
--- a/source/af/sw/messages.po
+++ b/source/af/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-06 15:59+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"
@@ -1390,484 +1390,404 @@ msgctxt "STR_COLUMN_VALUESET_ITEM4"
msgid "2 columns with different size (left < right)"
msgstr ""
-#. Table styles
+#. Table styles, Writer internal, others are taken from Svx
#: strings.hrc:215
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Style"
msgstr ""
-#: strings.hrc:216
-msgctxt "STR_TABSTYLE_3D"
-msgid "3D"
-msgstr ""
-
#: strings.hrc:217
-msgctxt "STR_TABSTYLE_BLACK1"
-msgid "Black 1"
-msgstr ""
-
-#: strings.hrc:218
-msgctxt "STR_TABSTYLE_BLACK2"
-msgid "Black 2"
-msgstr ""
-
-#: strings.hrc:219
-msgctxt "STR_TABSTYLE_BLUE"
-msgid "Blue"
-msgstr ""
-
-#: strings.hrc:220
-msgctxt "STR_TABSTYLE_BROWN"
-msgid "Brown"
-msgstr ""
-
-#: strings.hrc:221
-msgctxt "STR_TABSTYLE_CURRENCY"
-msgid "Currency"
-msgstr ""
-
-#: strings.hrc:222
-msgctxt "STR_TABSTYLE_CURRENCY_3D"
-msgid "Currency 3D"
-msgstr ""
-
-#: strings.hrc:223
-msgctxt "STR_TABSTYLE_CURRENCY_GRAY"
-msgid "Currency Gray"
-msgstr ""
-
-#: strings.hrc:224
-msgctxt "STR_TABSTYLE_CURRENCY_LAVENDER"
-msgid "Currency Lavender"
-msgstr ""
-
-#: strings.hrc:225
-msgctxt "STR_TABSTYLE_CURRENCY_TURQUOISE"
-msgid "Currency Turquoise"
-msgstr ""
-
-#: strings.hrc:226
-msgctxt "STR_TABSTYLE_GRAY"
-msgid "Gray"
-msgstr ""
-
-#: strings.hrc:227
-msgctxt "STR_TABSTYLE_GREEN"
-msgid "Green"
-msgstr ""
-
-#: strings.hrc:228
-msgctxt "STR_TABSTYLE_LAVENDER"
-msgid "Lavender"
-msgstr ""
-
-#: strings.hrc:229
-msgctxt "STR_TABSTYLE_RED"
-msgid "Red"
-msgstr ""
-
-#: strings.hrc:230
-msgctxt "STR_TABSTYLE_TURQUOISE"
-msgid "Turquoise"
-msgstr ""
-
-#: strings.hrc:231
-msgctxt "STR_TABSTYLE_YELLOW"
-msgid "Yellow"
-msgstr ""
-
-#: strings.hrc:233
msgctxt "STR_PARAGRAPHSTYLEFAMILY"
msgid "Paragraph Styles"
msgstr ""
-#: strings.hrc:234
+#: strings.hrc:218
msgctxt "STR_CHARACTERSTYLEFAMILY"
msgid "Character Styles"
msgstr ""
-#: strings.hrc:235
+#: strings.hrc:219
msgctxt "STR_FRAMESTYLEFAMILY"
msgid "Frame Styles"
msgstr ""
-#: strings.hrc:236
+#: strings.hrc:220
msgctxt "STR_PAGESTYLEFAMILY"
msgid "Page Styles"
msgstr ""
-#: strings.hrc:237
+#: strings.hrc:221
msgctxt "STR_LISTSTYLEFAMILY"
msgid "List Styles"
msgstr ""
-#: strings.hrc:238
+#: strings.hrc:222
msgctxt "STR_TABLESTYLEFAMILY"
msgid "Table Styles"
msgstr ""
-#: strings.hrc:239
+#: strings.hrc:223
msgctxt "STR_ENV_TITLE"
msgid "Envelope"
msgstr "Koevert"
-#: strings.hrc:240
+#: strings.hrc:224
msgctxt "STR_LAB_TITLE"
msgid "Labels"
msgstr "Etikette"
#. ShortName!!!
-#: strings.hrc:242
+#: strings.hrc:226
msgctxt "STR_HUMAN_SWDOC_NAME"
msgid "Text"
msgstr "Teks"
-#: strings.hrc:243
+#: strings.hrc:227
msgctxt "STR_WRITER_DOCUMENT_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-teksdokument"
-#: strings.hrc:244
+#: strings.hrc:228
msgctxt "STR_CANTOPEN"
msgid "Cannot open document."
msgstr "Kan nie dokument open nie."
-#: strings.hrc:245
+#: strings.hrc:229
msgctxt "STR_CANTCREATE"
msgid "Can't create document."
msgstr "Kan nie dokument skep nie."
-#: strings.hrc:246
+#: strings.hrc:230
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
msgstr "Filter kan nie gevind word nie."
-#: strings.hrc:247
+#: strings.hrc:231
msgctxt "STR_LOAD_GLOBAL_DOC"
msgid "Name and Path of Master Document"
msgstr "Naam en pad van meesterdokument"
-#: strings.hrc:248
+#: strings.hrc:232
msgctxt "STR_LOAD_HTML_DOC"
msgid "Name and Path of the HTML Document"
msgstr "Naam en pad van HTML-dokument"
-#: strings.hrc:249
+#: strings.hrc:233
msgctxt "STR_JAVA_EDIT"
msgid "Edit Script"
msgstr ""
-#: strings.hrc:250
+#: strings.hrc:234
msgctxt "STR_REMOVE_WARNING"
msgid "The following characters are not valid and have been removed: "
msgstr ""
-#: strings.hrc:251
+#: strings.hrc:235
msgctxt "STR_BOOKMARK_DEF_NAME"
msgid "Bookmark"
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:236
#, fuzzy
msgctxt "STR_BOOKMARK_NAME"
msgid "Name"
msgstr "Naam"
-#: strings.hrc:253
+#: strings.hrc:237
#, fuzzy
msgctxt "STR_BOOKMARK_TEXT"
msgid "Text"
msgstr "Teks"
-#: strings.hrc:254
+#: strings.hrc:238
msgctxt "SW_STR_NONE"
msgid "[None]"
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:239
msgctxt "STR_CAPTION_BEGINNING"
msgid "Start"
msgstr ""
-#: strings.hrc:256
+#: strings.hrc:240
msgctxt "STR_CAPTION_END"
msgid "End"
msgstr ""
-#: strings.hrc:257
+#: strings.hrc:241
msgctxt "STR_CAPTION_ABOVE"
msgid "Above"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:242
msgctxt "STR_CAPTION_BELOW"
msgid "Below"
msgstr ""
-#: strings.hrc:259
+#: strings.hrc:243
msgctxt "SW_STR_READONLY"
msgid "read-only"
msgstr ""
-#: strings.hrc:260
+#: strings.hrc:244
msgctxt "STR_READONLY_PATH"
msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?"
msgstr ""
-#: strings.hrc:261
+#: strings.hrc:245
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr "Statistieke"
#. Statusbar-titles
-#: strings.hrc:263
+#: strings.hrc:247
msgctxt "STR_STATSTR_W4WREAD"
msgid "Importing document..."
msgstr "Trek tans dokument in..."
-#: strings.hrc:264
+#: strings.hrc:248
msgctxt "STR_STATSTR_W4WWRITE"
msgid "Exporting document..."
msgstr "Voer tans dokument uit..."
-#: strings.hrc:265
+#: strings.hrc:249
msgctxt "STR_STATSTR_SWGWRITE"
msgid "Saving document..."
msgstr "Stoor tans dokument..."
-#: strings.hrc:266
+#: strings.hrc:250
msgctxt "STR_STATSTR_REFORMAT"
msgid "Repagination..."
msgstr "Herrangskik bladsye..."
-#: strings.hrc:267
+#: strings.hrc:251
msgctxt "STR_STATSTR_AUTOFORMAT"
msgid "Formatting document automatically..."
msgstr "Formateer dokument tans outomaties..."
-#: strings.hrc:268
+#: strings.hrc:252
msgctxt "STR_STATSTR_SEARCH"
msgid "Search..."
msgstr "Soek..."
-#: strings.hrc:269
+#: strings.hrc:253
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
msgstr "Letter"
-#: strings.hrc:270
+#: strings.hrc:254
msgctxt "STR_STATSTR_SPELL"
msgid "Spellcheck..."
msgstr "Speltoets..."
-#: strings.hrc:271
+#: strings.hrc:255
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
msgstr "Woordafbreking..."
-#: strings.hrc:272
+#: strings.hrc:256
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
msgstr "Voeg tans indeks in..."
-#: strings.hrc:273
+#: strings.hrc:257
msgctxt "STR_STATSTR_TOX_UPDATE"
msgid "Updating Index..."
msgstr "Werk tans indeks by..."
-#: strings.hrc:274
+#: strings.hrc:258
msgctxt "STR_STATSTR_SUMMARY"
msgid "Creating abstract..."
msgstr "Skep tans abstrak..."
-#: strings.hrc:275
+#: strings.hrc:259
msgctxt "STR_STATSTR_SWGPRTOLENOTIFY"
msgid "Adapt Objects..."
msgstr "Pas objekte aan..."
-#: strings.hrc:276
+#: strings.hrc:260
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
msgstr "Tabel"
-#: strings.hrc:277
+#: strings.hrc:261
msgctxt "STR_GRAPHIC_DEFNAME"
msgid "Image"
msgstr ""
-#: strings.hrc:278
+#: strings.hrc:262
msgctxt "STR_OBJECT_DEFNAME"
msgid "Object"
msgstr "Objek"
-#: strings.hrc:279
+#: strings.hrc:263
msgctxt "STR_FRAME_DEFNAME"
msgid "Frame"
msgstr "Raam"
-#: strings.hrc:280
+#: strings.hrc:264
msgctxt "STR_SHAPE_DEFNAME"
msgid "Shape"
msgstr ""
-#: strings.hrc:281
+#: strings.hrc:265
msgctxt "STR_REGION_DEFNAME"
msgid "Section"
msgstr "Seksie"
-#: strings.hrc:282
+#: strings.hrc:266
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
msgstr "Nommering"
-#: strings.hrc:283
+#: strings.hrc:267
msgctxt "STR_EMPTYPAGE"
msgid "blank page"
msgstr "skoon bladsy"
-#: strings.hrc:284
+#: strings.hrc:268
msgctxt "STR_ABSTRACT_TITLE"
msgid "Abstract: "
msgstr "Abstrak: "
-#: strings.hrc:285
+#: strings.hrc:269
msgctxt "STR_FDLG_TEMPLATE_NAME"
msgid "separated by: "
msgstr "geskei deur: "
-#: strings.hrc:286
+#: strings.hrc:270
msgctxt "STR_FDLG_OUTLINE_LEVEL"
msgid "Outline: Level "
msgstr "Skema: Vlak "
-#: strings.hrc:287
+#: strings.hrc:271
msgctxt "STR_FDLG_STYLE"
msgid "Style: "
msgstr "Styl: "
-#: strings.hrc:288
+#: strings.hrc:272
msgctxt "STR_PAGEOFFSET"
msgid "Page number: "
msgstr "Bladsynommer: "
-#: strings.hrc:289
+#: strings.hrc:273
msgctxt "STR_PAGEBREAK"
msgid "Break before new page"
msgstr "Breek voor nuwe bladsy"
-#: strings.hrc:290
+#: strings.hrc:274
msgctxt "STR_WESTERN_FONT"
msgid "Western text: "
msgstr "Westerse teks: "
-#: strings.hrc:291
+#: strings.hrc:275
msgctxt "STR_CJK_FONT"
msgid "Asian text: "
msgstr "Asiatiese teks: "
-#: strings.hrc:292
+#: strings.hrc:276
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
msgid "Unknown Author"
msgstr "Onbekende outeur"
-#: strings.hrc:293
+#: strings.hrc:277
#, fuzzy
msgctxt "STR_DELETE_NOTE_AUTHOR"
msgid "Delete ~All Comments by $1"
msgstr "Skrap ~alle opmerkings deur $1"
-#: strings.hrc:294
+#: strings.hrc:278
#, fuzzy
msgctxt "STR_HIDE_NOTE_AUTHOR"
msgid "H~ide All Comments by $1"
msgstr "Skrap ~alle opmerkings deur $1"
-#: strings.hrc:295
+#: strings.hrc:279
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Outline Numbering"
msgstr "Skemanommering"
-#: strings.hrc:296
+#: strings.hrc:280
msgctxt "STR_STATUSBAR_WORDCOUNT_NO_SELECTION"
msgid "%1 words, %2 characters"
msgstr ""
-#: strings.hrc:297
+#: strings.hrc:281
msgctxt "STR_STATUSBAR_WORDCOUNT"
msgid "%1 words, %2 characters selected"
msgstr ""
-#: strings.hrc:298
+#: strings.hrc:282
msgctxt "STR_CONVERT_TEXT_TABLE"
msgid "Convert Text to Table"
msgstr "Skakel teks om na tabel"
-#: strings.hrc:299
+#: strings.hrc:283
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Voeg Outoformateer by"
-#: strings.hrc:300
+#: strings.hrc:284
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Naam"
-#: strings.hrc:301
+#: strings.hrc:285
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Skrap OutoFormaat"
-#: strings.hrc:302
+#: strings.hrc:286
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "The following AutoFormat entry will be deleted:"
msgstr "Die volgende OutoFormaat-inskrywing sal geskrap word:"
-#: strings.hrc:303
+#: strings.hrc:287
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Hernoem Outoformateer"
-#: strings.hrc:304
+#: strings.hrc:288
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~Sluit"
-#: strings.hrc:305
+#: strings.hrc:289
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Jan"
-#: strings.hrc:306
+#: strings.hrc:290
msgctxt "STR_FEB"
msgid "Feb"
msgstr "Feb"
-#: strings.hrc:307
+#: strings.hrc:291
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Mrt"
-#: strings.hrc:308
+#: strings.hrc:292
msgctxt "STR_NORTH"
msgid "North"
msgstr "Noord"
-#: strings.hrc:309
+#: strings.hrc:293
msgctxt "STR_MID"
msgid "Mid"
msgstr "Mid"
-#: strings.hrc:310
+#: strings.hrc:294
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Suid"
-#: strings.hrc:311
+#: strings.hrc:295
msgctxt "STR_SUM"
msgid "Sum"
msgstr "Som"
-#: strings.hrc:312
+#: strings.hrc:296
msgctxt "STR_INVALID_AUTOFORMAT_NAME"
msgid ""
"You have entered an invalid name.\n"
@@ -1878,316 +1798,316 @@ msgstr ""
"Die verlangde OutoFormaat kon nie geskep word nie. \n"
"Probeer weer met 'n ander naam."
-#: strings.hrc:313
+#: strings.hrc:297
msgctxt "STR_NUMERIC"
msgid "Numeric"
msgstr "Numeries"
-#: strings.hrc:314
+#: strings.hrc:298
msgctxt "STR_ROW"
msgid "Rows"
msgstr "Rye"
-#: strings.hrc:315
+#: strings.hrc:299
#, fuzzy
msgctxt "STR_COL"
msgid "Column"
msgstr "Kolo~m"
-#: strings.hrc:316
+#: strings.hrc:300
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
msgstr "Redigeer bibliografie inskrywing"
-#: strings.hrc:317
+#: strings.hrc:301
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
msgstr "Voeg bibliografiese inskrywing in"
-#: strings.hrc:318
+#: strings.hrc:302
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
msgid "Spacing between %1 and %2"
msgstr ""
-#: strings.hrc:319
+#: strings.hrc:303
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
msgstr ""
-#: strings.hrc:320
+#: strings.hrc:304
msgctxt "STR_CAPTION_TABLE"
msgid "%PRODUCTNAME Writer Table"
msgstr ""
-#: strings.hrc:321
+#: strings.hrc:305
msgctxt "STR_CAPTION_FRAME"
msgid "%PRODUCTNAME Writer Frame"
msgstr ""
-#: strings.hrc:322
+#: strings.hrc:306
msgctxt "STR_CAPTION_GRAPHIC"
msgid "%PRODUCTNAME Writer Image"
msgstr ""
-#: strings.hrc:323
+#: strings.hrc:307
msgctxt "STR_CAPTION_OLE"
msgid "Other OLE Objects"
msgstr ""
-#: strings.hrc:324
+#: strings.hrc:308
msgctxt "STR_WRONG_TABLENAME"
msgid "The name of the table must not contain spaces."
msgstr ""
-#: strings.hrc:325
+#: strings.hrc:309
msgctxt "STR_ERR_TABLE_MERGE"
msgid "Selected table cells are too complex to merge."
msgstr ""
-#: strings.hrc:326
+#: strings.hrc:310
msgctxt "STR_SRTERR"
msgid "Cannot sort selection"
msgstr ""
#. Miscellaneous
-#: strings.hrc:329
+#: strings.hrc:313
msgctxt "STR_EVENT_OBJECT_SELECT"
msgid "Click object"
msgstr "Kliek objek"
-#: strings.hrc:330
+#: strings.hrc:314
msgctxt "STR_EVENT_START_INS_GLOSSARY"
msgid "Before inserting AutoText"
msgstr "Voordat OutoTeks ingevoeg word"
-#: strings.hrc:331
+#: strings.hrc:315
msgctxt "STR_EVENT_END_INS_GLOSSARY"
msgid "After inserting AutoText"
msgstr "Nadat OutoTeks ingevoeg is"
-#: strings.hrc:332
+#: strings.hrc:316
msgctxt "STR_EVENT_MOUSEOVER_OBJECT"
msgid "Mouse over object"
msgstr "Muis oor objek"
-#: strings.hrc:333
+#: strings.hrc:317
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
msgstr "Aktiveer hiperskakel"
-#: strings.hrc:334
+#: strings.hrc:318
msgctxt "STR_EVENT_MOUSEOUT_OBJECT"
msgid "Mouse leaves object"
msgstr "Muis verlaat objek"
-#: strings.hrc:335
+#: strings.hrc:319
msgctxt "STR_EVENT_IMAGE_LOAD"
msgid "Image loaded successfully"
msgstr ""
-#: strings.hrc:336
+#: strings.hrc:320
msgctxt "STR_EVENT_IMAGE_ABORT"
msgid "Image loading terminated"
msgstr ""
-#: strings.hrc:337
+#: strings.hrc:321
msgctxt "STR_EVENT_IMAGE_ERROR"
msgid "Could not load image"
msgstr ""
-#: strings.hrc:338
+#: strings.hrc:322
msgctxt "STR_EVENT_FRM_KEYINPUT_A"
msgid "Input of alphanumeric characters"
msgstr "Invoer van alfanumeriese karakters"
-#: strings.hrc:339
+#: strings.hrc:323
msgctxt "STR_EVENT_FRM_KEYINPUT_NOA"
msgid "Input of non-alphanumeric characters"
msgstr "Invoer van niealfanumeriese karakters"
-#: strings.hrc:340
+#: strings.hrc:324
msgctxt "STR_EVENT_FRM_RESIZE"
msgid "Resize frame"
msgstr "Verstel raamgrootte"
-#: strings.hrc:341
+#: strings.hrc:325
msgctxt "STR_EVENT_FRM_MOVE"
msgid "Move frame"
msgstr "Skuif raam"
-#: strings.hrc:342
+#: strings.hrc:326
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
msgstr "Opskrifte"
-#: strings.hrc:343
+#: strings.hrc:327
msgctxt "STR_CONTENT_TYPE_TABLE"
msgid "Tables"
msgstr "Tabelle"
-#: strings.hrc:344
+#: strings.hrc:328
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Text frames"
msgstr "Teksrame"
-#: strings.hrc:345
+#: strings.hrc:329
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
msgstr ""
-#: strings.hrc:346
+#: strings.hrc:330
msgctxt "STR_CONTENT_TYPE_OLE"
msgid "OLE objects"
msgstr "OLE-objekte"
-#: strings.hrc:347
+#: strings.hrc:331
msgctxt "STR_CONTENT_TYPE_BOOKMARK"
msgid "Bookmarks"
msgstr "Boekmerke"
-#: strings.hrc:348
+#: strings.hrc:332
msgctxt "STR_CONTENT_TYPE_REGION"
msgid "Sections"
msgstr "Seksies"
-#: strings.hrc:349
+#: strings.hrc:333
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
msgstr "Hiperskakels"
-#: strings.hrc:350
+#: strings.hrc:334
msgctxt "STR_CONTENT_TYPE_REFERENCE"
msgid "References"
msgstr "Verwysings"
-#: strings.hrc:351
+#: strings.hrc:335
msgctxt "STR_CONTENT_TYPE_INDEX"
msgid "Indexes"
msgstr "Indekse"
-#: strings.hrc:352
+#: strings.hrc:336
#, fuzzy
msgctxt "STR_CONTENT_TYPE_DRAWOBJECT"
msgid "Drawing objects"
msgstr "Teken objekte"
-#: strings.hrc:353
+#: strings.hrc:337
msgctxt "STR_CONTENT_TYPE_POSTIT"
msgid "Comments"
msgstr "Opmerkings"
-#: strings.hrc:354
+#: strings.hrc:338
#, fuzzy
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
msgstr "Opskrif 1"
-#: strings.hrc:355
+#: strings.hrc:339
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
msgstr ""
-#: strings.hrc:356
+#: strings.hrc:340
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
msgstr "Opskrif 1.1"
-#: strings.hrc:357
+#: strings.hrc:341
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from chapter 1.1. This is the entry for the table of contents."
msgstr ""
-#: strings.hrc:358
+#: strings.hrc:342
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
msgstr "Opskrif 1.2"
-#: strings.hrc:359
+#: strings.hrc:343
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12"
msgid "This is the content from chapter 1.2. This keyword is a main entry."
msgstr ""
-#: strings.hrc:360
+#: strings.hrc:344
msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1"
msgid "Table 1: This is table 1"
msgstr ""
-#: strings.hrc:361
+#: strings.hrc:345
msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1"
msgid "Image 1: This is image 1"
msgstr ""
-#: strings.hrc:362
+#: strings.hrc:346
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
msgstr "Opskrif"
-#: strings.hrc:363
+#: strings.hrc:347
msgctxt "STR_CONTENT_TYPE_SINGLE_TABLE"
msgid "Table"
msgstr "Tabel"
-#: strings.hrc:364
+#: strings.hrc:348
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Text frame"
msgstr "Teksraam"
-#: strings.hrc:365
+#: strings.hrc:349
msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC"
msgid "Image"
msgstr ""
-#: strings.hrc:366
+#: strings.hrc:350
msgctxt "STR_CONTENT_TYPE_SINGLE_OLE"
msgid "OLE object"
msgstr "OLE-objek"
-#: strings.hrc:367
+#: strings.hrc:351
msgctxt "STR_CONTENT_TYPE_SINGLE_BOOKMARK"
msgid "Bookmark"
msgstr "Boekmerk"
-#: strings.hrc:368
+#: strings.hrc:352
msgctxt "STR_CONTENT_TYPE_SINGLE_REGION"
msgid "Section"
msgstr "Seksie"
-#: strings.hrc:369
+#: strings.hrc:353
msgctxt "STR_CONTENT_TYPE_SINGLE_URLFIELD"
msgid "Hyperlink"
msgstr "Hiperskakel"
-#: strings.hrc:370
+#: strings.hrc:354
msgctxt "STR_CONTENT_TYPE_SINGLE_REFERENCE"
msgid "Reference"
msgstr "Verwysing"
-#: strings.hrc:371
+#: strings.hrc:355
msgctxt "STR_CONTENT_TYPE_SINGLE_INDEX"
msgid "Index"
msgstr "Indeks"
-#: strings.hrc:372
+#: strings.hrc:356
msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT"
msgid "Comment"
msgstr "Opmerking"
-#: strings.hrc:373
+#: strings.hrc:357
msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT"
msgid "Draw object"
msgstr "Teken objek"
-#: strings.hrc:374
+#: strings.hrc:358
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "Bykomende formate..."
-#: strings.hrc:375
+#: strings.hrc:359
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[Stelsel]"
-#: strings.hrc:376
+#: strings.hrc:360
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -2196,2162 +2116,2162 @@ msgstr ""
"Die interaktiewe woordafbreking is reeds aktief\n"
"in 'n ander dokument"
-#: strings.hrc:377
+#: strings.hrc:361
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "Woordafbreking"
-#: strings.hrc:380
+#: strings.hrc:364
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "nie moontlik nie"
-#: strings.hrc:381
+#: strings.hrc:365
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "Skrap $1"
-#: strings.hrc:382
+#: strings.hrc:366
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "Voeg $1 in"
-#: strings.hrc:383
+#: strings.hrc:367
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "Oorheenskryf: $1"
-#: strings.hrc:384
+#: strings.hrc:368
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "Nuwe paragraaf"
-#: strings.hrc:385
+#: strings.hrc:369
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "Skuif"
-#: strings.hrc:386
+#: strings.hrc:370
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "Pas attribute toe"
-#: strings.hrc:387
+#: strings.hrc:371
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "Pas style toe: $1"
-#: strings.hrc:388
+#: strings.hrc:372
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "Laai attribute terug"
-#: strings.hrc:389
+#: strings.hrc:373
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "Verander styl: $1"
-#: strings.hrc:390
+#: strings.hrc:374
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "Voeg lêer in"
-#: strings.hrc:391
+#: strings.hrc:375
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "Voeg Outoteks in"
-#: strings.hrc:392
+#: strings.hrc:376
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "Skrap boekmerk: $1"
-#: strings.hrc:393
+#: strings.hrc:377
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "Voeg boekmerk in: $1"
-#: strings.hrc:394
+#: strings.hrc:378
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "Rangskik tabel"
-#: strings.hrc:395
+#: strings.hrc:379
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "Rangskik teks"
-#: strings.hrc:396
+#: strings.hrc:380
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "Voeg tabel in: $1$2$3"
-#: strings.hrc:397
+#: strings.hrc:381
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "Skakel om teks -> tabel"
-#: strings.hrc:398
+#: strings.hrc:382
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "Skakel om tabel -> teks"
-#: strings.hrc:399
+#: strings.hrc:383
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "Kopieer: $1"
-#: strings.hrc:400
+#: strings.hrc:384
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "Vervang $1 $2 $3"
-#: strings.hrc:401
+#: strings.hrc:385
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "Voeg bladsybreuk in"
-#: strings.hrc:402
+#: strings.hrc:386
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "Voeg kolombreuk in"
-#: strings.hrc:403
+#: strings.hrc:387
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "Voeg koevert in"
-#: strings.hrc:404
+#: strings.hrc:388
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "Kopieer: $1"
-#: strings.hrc:405
+#: strings.hrc:389
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "Skuif: $1"
-#: strings.hrc:406
+#: strings.hrc:390
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "Voeg %PRODUCTNAME-grafiek in"
-#: strings.hrc:407
+#: strings.hrc:391
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "Voeg raam in"
-#: strings.hrc:408
+#: strings.hrc:392
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "Skrap raam"
-#: strings.hrc:409
+#: strings.hrc:393
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "Outoformateer"
-#: strings.hrc:410
+#: strings.hrc:394
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "Tabelopskrif"
-#: strings.hrc:411
+#: strings.hrc:395
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "Vervang: $1 $2 $3"
-#: strings.hrc:412
+#: strings.hrc:396
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "Voeg seksie in"
-#: strings.hrc:413
+#: strings.hrc:397
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "Skrap afdeling"
-#: strings.hrc:414
+#: strings.hrc:398
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "Wysig afdeling"
-#: strings.hrc:415
+#: strings.hrc:399
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "Wysig verstek waardes"
-#: strings.hrc:416
+#: strings.hrc:400
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "Vervang styl: $1 $2 $3"
-#: strings.hrc:417
+#: strings.hrc:401
#, fuzzy
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "Skrap bladsybreuke"
-#: strings.hrc:418
+#: strings.hrc:402
#, fuzzy
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "Teksrigting"
-#: strings.hrc:419
+#: strings.hrc:403
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "Lig/laat sak buitelyn"
-#: strings.hrc:420
+#: strings.hrc:404
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "Skuif buitelyn"
-#: strings.hrc:421
+#: strings.hrc:405
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "Voeg nommering in"
-#: strings.hrc:422
+#: strings.hrc:406
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "Verhef vlak"
-#: strings.hrc:423
+#: strings.hrc:407
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "Verlaag vlak"
-#: strings.hrc:424
+#: strings.hrc:408
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "Skuif paragrawe"
-#: strings.hrc:425
+#: strings.hrc:409
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "Voeg tekenobjek in: $1"
-#: strings.hrc:426
+#: strings.hrc:410
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "Nommer aan/af"
-#: strings.hrc:427
+#: strings.hrc:411
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "Vermeerder keep"
-#: strings.hrc:428
+#: strings.hrc:412
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "Verminder keep"
-#: strings.hrc:429
+#: strings.hrc:413
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "Voeg opskrif in: $1"
-#: strings.hrc:430
+#: strings.hrc:414
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "Herbegin nommering"
-#: strings.hrc:431
+#: strings.hrc:415
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "Wysig voetnota"
-#: strings.hrc:432
+#: strings.hrc:416
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "Aanvaar wysiging: $1"
-#: strings.hrc:433
+#: strings.hrc:417
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "Verwerp wysiging: $1"
-#: strings.hrc:434
+#: strings.hrc:418
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "Verdeel tabel"
-#: strings.hrc:435
+#: strings.hrc:419
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "Stop eienskap"
-#: strings.hrc:436
+#: strings.hrc:420
#, fuzzy
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "Outokorrigeer"
-#: strings.hrc:437
+#: strings.hrc:421
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "Voeg tabel saam"
-#: strings.hrc:438
+#: strings.hrc:422
#, fuzzy
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "~Verander kas"
-#: strings.hrc:439
+#: strings.hrc:423
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "Skrap nommering"
-#: strings.hrc:440
+#: strings.hrc:424
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "Tekenobjekte: $1"
-#: strings.hrc:441
+#: strings.hrc:425
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "Groepeer tekenobjekte"
-#: strings.hrc:442
+#: strings.hrc:426
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "Degroepeer tekenobjekte"
-#: strings.hrc:443
+#: strings.hrc:427
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "Skrap tekenobjekte"
-#: strings.hrc:444
+#: strings.hrc:428
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr ""
-#: strings.hrc:445
+#: strings.hrc:429
#, fuzzy
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "Skrap raam"
-#: strings.hrc:446
+#: strings.hrc:430
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "Pas tabeleienskappe toe"
-#: strings.hrc:447
+#: strings.hrc:431
#, fuzzy
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "Outoformateer tabel"
-#: strings.hrc:448
+#: strings.hrc:432
#, fuzzy
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "Voeg kolom in"
-#: strings.hrc:449
+#: strings.hrc:433
#, fuzzy
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "Voeg ry in"
-#: strings.hrc:450
+#: strings.hrc:434
#, fuzzy
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "Skrap ry/kolom"
-#: strings.hrc:451
+#: strings.hrc:435
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Skrap kolom"
-#: strings.hrc:452
+#: strings.hrc:436
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Skrap ry"
-#: strings.hrc:453
+#: strings.hrc:437
#, fuzzy
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "Verdeel selle"
-#: strings.hrc:454
+#: strings.hrc:438
#, fuzzy
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "Voeg selle saam"
-#: strings.hrc:455
+#: strings.hrc:439
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Formateer sel"
-#: strings.hrc:456
+#: strings.hrc:440
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "Voeg indeks/tabel in"
-#: strings.hrc:457
+#: strings.hrc:441
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "Verwyder indeks/tabel"
-#: strings.hrc:458
+#: strings.hrc:442
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "Kopieer tabel"
-#: strings.hrc:459
+#: strings.hrc:443
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "Kopieer tabel"
-#: strings.hrc:460
+#: strings.hrc:444
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "Stel wyser"
-#: strings.hrc:461
+#: strings.hrc:445
msgctxt "STR_UNDO_CHAIN"
msgid "Link text frames"
msgstr "Koppel teksrame"
-#: strings.hrc:462
+#: strings.hrc:446
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink text frames"
msgstr "Ontkoppel teksrame"
-#: strings.hrc:463
+#: strings.hrc:447
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "Wysig voetnota-opsies"
-#: strings.hrc:464
+#: strings.hrc:448
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "Vergelyk dokument"
-#: strings.hrc:465
+#: strings.hrc:449
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "Pas raamstyl toe: $1"
-#: strings.hrc:466
+#: strings.hrc:450
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "Robyninstelling"
-#: strings.hrc:467
+#: strings.hrc:451
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "Voeg voetnoot in"
-#: strings.hrc:468
+#: strings.hrc:452
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "voeg URL-knoppie in"
-#: strings.hrc:469
+#: strings.hrc:453
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "Voeg hiperskakel in"
-#: strings.hrc:470
+#: strings.hrc:454
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "verwyder onsigbare inhoud"
-#: strings.hrc:471
+#: strings.hrc:455
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "Tabel/indeks gewysig"
-#: strings.hrc:472
+#: strings.hrc:456
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr ""
-#: strings.hrc:473
+#: strings.hrc:457
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr ""
-#: strings.hrc:474
+#: strings.hrc:458
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
-#: strings.hrc:475
+#: strings.hrc:459
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "veelvoudige seleksie"
-#: strings.hrc:476
+#: strings.hrc:460
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "Tik: $1"
-#: strings.hrc:477
+#: strings.hrc:461
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "Plak knipbord"
-#: strings.hrc:478
+#: strings.hrc:462
msgctxt "STR_YIELDS"
msgid "→"
msgstr ""
-#: strings.hrc:479
+#: strings.hrc:463
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "voorkomste van"
-#: strings.hrc:480
+#: strings.hrc:464
msgctxt "STR_UNDO_TABS"
msgid "$1 tab(s)"
msgstr "$1 keep(e)"
-#: strings.hrc:481
+#: strings.hrc:465
msgctxt "STR_UNDO_NLS"
msgid "$1 line break(s)"
msgstr "$1 reëlbreuk(e)"
-#: strings.hrc:482
+#: strings.hrc:466
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "bladsybreuk"
-#: strings.hrc:483
+#: strings.hrc:467
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "kolombreuk"
-#: strings.hrc:484
+#: strings.hrc:468
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr ""
-#: strings.hrc:485
+#: strings.hrc:469
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr ""
-#: strings.hrc:486
+#: strings.hrc:470
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr ""
-#: strings.hrc:487
+#: strings.hrc:471
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr ""
-#: strings.hrc:488
+#: strings.hrc:472
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr ""
-#: strings.hrc:489
+#: strings.hrc:473
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
-#: strings.hrc:490
+#: strings.hrc:474
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr ""
-#: strings.hrc:491
+#: strings.hrc:475
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr ""
-#: strings.hrc:492
+#: strings.hrc:476
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr ""
-#: strings.hrc:493
+#: strings.hrc:477
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr ""
-#: strings.hrc:494
+#: strings.hrc:478
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 wysigings"
-#: strings.hrc:495
+#: strings.hrc:479
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "Wysig bladsy styl: $1"
-#: strings.hrc:496
+#: strings.hrc:480
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "Skep bladsystyl: $1"
-#: strings.hrc:497
+#: strings.hrc:481
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "Skrap bladsystyl: $1"
-#: strings.hrc:498
+#: strings.hrc:482
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "Hernoem bladsystyl: $1 $2 $3"
-#: strings.hrc:499
+#: strings.hrc:483
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "Kopstuk/voetstuk verander"
-#: strings.hrc:500
+#: strings.hrc:484
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "Veldname verander"
-#: strings.hrc:501
+#: strings.hrc:485
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "Skep paragraafstyl: $1"
-#: strings.hrc:502
+#: strings.hrc:486
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "Skrap paragraafstyl: $1"
-#: strings.hrc:503
+#: strings.hrc:487
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "Hernoem paragraafstyl: $1 $2 $3"
-#: strings.hrc:504
+#: strings.hrc:488
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "Skep karakterstyl: $1"
-#: strings.hrc:505
+#: strings.hrc:489
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "Skrap karakterstyl: $1"
-#: strings.hrc:506
+#: strings.hrc:490
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "Hernoem karakterstyl: $1 $2 $3"
-#: strings.hrc:507
+#: strings.hrc:491
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "Skep raamstyl: $1"
-#: strings.hrc:508
+#: strings.hrc:492
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "Skrap raamstyl: $1"
-#: strings.hrc:509
+#: strings.hrc:493
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "Hernoem raamstyl: $1 $2 $3"
-#: strings.hrc:510
+#: strings.hrc:494
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "Skep nommerstyl: $1"
-#: strings.hrc:511
+#: strings.hrc:495
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "Skrap nommerstyl: $1"
-#: strings.hrc:512
+#: strings.hrc:496
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "Hernoem nommerstyl: $1 $2 $3"
-#: strings.hrc:513
+#: strings.hrc:497
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "Hernoem boekmerk: $1 $2 $3"
-#: strings.hrc:514
+#: strings.hrc:498
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "Voeg indeksinskrywying in"
-#: strings.hrc:515
+#: strings.hrc:499
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "Skrap indeksinskrywing"
-#: strings.hrc:516
+#: strings.hrc:500
msgctxt "STR_FIELD"
msgid "field"
msgstr "veld"
#. undo: STR_PARAGRAPHS, string.text
-#: strings.hrc:518
+#: strings.hrc:502
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "Paragrawe"
-#: strings.hrc:519
+#: strings.hrc:503
msgctxt "STR_FRAME"
msgid "frame"
msgstr "raam"
-#: strings.hrc:520
+#: strings.hrc:504
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "OLE-objek"
-#: strings.hrc:521
+#: strings.hrc:505
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "formule"
-#: strings.hrc:522
+#: strings.hrc:506
msgctxt "STR_CHART"
msgid "chart"
msgstr "grafiek"
-#: strings.hrc:523
+#: strings.hrc:507
msgctxt "STR_NOTE"
msgid "comment"
msgstr "opmerking"
-#: strings.hrc:524
+#: strings.hrc:508
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "kruisverwysing"
-#: strings.hrc:525
+#: strings.hrc:509
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "skrip"
-#: strings.hrc:526
+#: strings.hrc:510
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "bibliografie-inskrywing"
-#: strings.hrc:527
+#: strings.hrc:511
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "spesiale karakter"
-#: strings.hrc:528
+#: strings.hrc:512
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "voetnoot"
-#: strings.hrc:529
+#: strings.hrc:513
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr ""
-#: strings.hrc:530
+#: strings.hrc:514
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "tekenobjek(te)"
-#: strings.hrc:531
+#: strings.hrc:515
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "tabel: $1$2$3"
-#: strings.hrc:532
+#: strings.hrc:516
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "paragraaf"
-#: strings.hrc:533
+#: strings.hrc:517
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr ""
-#: strings.hrc:534
+#: strings.hrc:518
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "Verander objektitel van $1"
-#: strings.hrc:535
+#: strings.hrc:519
msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
msgid "Change object description of $1"
msgstr "Verander objekbeskrywing van $1"
-#: strings.hrc:536
+#: strings.hrc:520
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr ""
-#: strings.hrc:537
+#: strings.hrc:521
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr ""
-#: strings.hrc:538
+#: strings.hrc:522
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr ""
-#: strings.hrc:539
+#: strings.hrc:523
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr ""
-#: strings.hrc:541
+#: strings.hrc:525
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "Dokumentaansig"
-#: strings.hrc:542
+#: strings.hrc:526
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "Dokumentaansig"
-#: strings.hrc:543
+#: strings.hrc:527
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "Kop $(ARG1)"
-#: strings.hrc:544
+#: strings.hrc:528
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "Kopbladsy $(ARG1)"
-#: strings.hrc:545
+#: strings.hrc:529
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "Voet $(ARG1)"
-#: strings.hrc:546
+#: strings.hrc:530
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "Voetbladsy $(ARG1)"
-#: strings.hrc:547
+#: strings.hrc:531
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "Voetnota $(ARG1)"
-#: strings.hrc:548
+#: strings.hrc:532
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "Voetnota $(ARG1)"
-#: strings.hrc:549
+#: strings.hrc:533
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "Eindnota $(ARG1)"
-#: strings.hrc:550
+#: strings.hrc:534
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "Eindnota $(ARG1)"
-#: strings.hrc:551
+#: strings.hrc:535
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) op bladsy $(ARG2)"
-#: strings.hrc:552
+#: strings.hrc:536
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "Bladsy $(ARG1)"
-#: strings.hrc:553
+#: strings.hrc:537
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "Bladsy: $(ARG1)"
-#: strings.hrc:554
+#: strings.hrc:538
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "Outeur"
-#: strings.hrc:555
+#: strings.hrc:539
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "Datum"
-#: strings.hrc:556
+#: strings.hrc:540
#, fuzzy
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "Aksie"
-#: strings.hrc:557
+#: strings.hrc:541
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr ""
-#: strings.hrc:558
+#: strings.hrc:542
#, fuzzy
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "Dokumentaansig"
-#: strings.hrc:559
+#: strings.hrc:543
#, fuzzy
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "Voor~skoumodus"
-#: strings.hrc:560
+#: strings.hrc:544
#, fuzzy
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "%PRODUCTNAME-dokumente"
-#: strings.hrc:562
+#: strings.hrc:546
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr ""
-#: strings.hrc:563
+#: strings.hrc:547
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr ""
-#: strings.hrc:564
+#: strings.hrc:548
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "Fout tydens lees van die knipbord."
-#: strings.hrc:566
+#: strings.hrc:550
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr ""
-#: strings.hrc:568
+#: strings.hrc:552
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "Ry %ROWNUMBER"
-#: strings.hrc:569
+#: strings.hrc:553
#, c-format
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "Kolom %COLUMNLETTER"
-#: strings.hrc:570
+#: strings.hrc:554
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "Karakter"
-#: strings.hrc:571
+#: strings.hrc:555
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragraaf"
-#: strings.hrc:572
+#: strings.hrc:556
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "Raam"
-#: strings.hrc:573
+#: strings.hrc:557
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "Bladsye"
-#: strings.hrc:574
+#: strings.hrc:558
msgctxt "STR_STYLE_FAMILY_NUMBERING"
msgid "Numbering"
msgstr "Nommering"
-#: strings.hrc:575
+#: strings.hrc:559
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr ""
-#: strings.hrc:576
+#: strings.hrc:560
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr ""
-#: strings.hrc:578
+#: strings.hrc:562
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr ""
-#: strings.hrc:579
+#: strings.hrc:563
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr ""
-#: strings.hrc:580
+#: strings.hrc:564
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr ""
-#: strings.hrc:581
+#: strings.hrc:565
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: strings.hrc:582
+#: strings.hrc:566
#, fuzzy
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "Opmerkings"
-#: strings.hrc:583
+#: strings.hrc:567
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr ""
-#: strings.hrc:584
+#: strings.hrc:568
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "P~ictures and other graphic objects"
msgstr ""
-#: strings.hrc:585
+#: strings.hrc:569
#, fuzzy
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "Versteekde teks"
-#: strings.hrc:586
+#: strings.hrc:570
#, fuzzy
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "Teks~plekhouer"
-#: strings.hrc:587
+#: strings.hrc:571
#, fuzzy
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "Vormkontroles"
-#: strings.hrc:588
+#: strings.hrc:572
#, fuzzy
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "Kleur"
-#: strings.hrc:589
+#: strings.hrc:573
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "Druk na lêer"
-#: strings.hrc:590
+#: strings.hrc:574
#, fuzzy
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages"
msgstr "Bladsye"
-#: strings.hrc:591
+#: strings.hrc:575
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "Voer ~outomaties ingevoegde leë bladsye uit"
-#: strings.hrc:592
+#: strings.hrc:576
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr ""
-#: strings.hrc:593
+#: strings.hrc:577
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRINT"
msgid "Print"
msgstr "Druk"
-#: strings.hrc:594
+#: strings.hrc:578
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr ""
-#: strings.hrc:595
+#: strings.hrc:579
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "Net ~opmerkings"
-#: strings.hrc:596
+#: strings.hrc:580
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr ""
-#: strings.hrc:597
+#: strings.hrc:581
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr ""
-#: strings.hrc:598
+#: strings.hrc:582
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "~Opmerkings"
-#: strings.hrc:599
+#: strings.hrc:583
msgctxt "STR_PRINTOPTUI_PAGE_SIDES"
msgid "Page sides"
msgstr ""
-#: strings.hrc:600
+#: strings.hrc:584
#, fuzzy
msgctxt "STR_PRINTOPTUI_ALL_PAGES"
msgid "All pages"
msgstr "Alle bladsye"
-#: strings.hrc:601
+#: strings.hrc:585
msgctxt "STR_PRINTOPTUI_BACK_PAGES"
msgid "Back sides / left pages"
msgstr ""
-#: strings.hrc:602
+#: strings.hrc:586
msgctxt "STR_PRINTOPTUI_FONT_PAGES"
msgid "Front sides / right pages"
msgstr ""
-#: strings.hrc:603
+#: strings.hrc:587
#, fuzzy
msgctxt "STR_PRINTOPTUI_INCLUDE"
msgid "Include"
msgstr "Sluit in"
-#: strings.hrc:604
+#: strings.hrc:588
#, fuzzy
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "Brosjures"
-#: strings.hrc:605
+#: strings.hrc:589
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr ""
-#: strings.hrc:606
+#: strings.hrc:590
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr ""
-#: strings.hrc:607
+#: strings.hrc:591
msgctxt "STR_PRINTOPTUI_RANGE_COPIES"
msgid "Range and copies"
msgstr ""
-#: strings.hrc:608
+#: strings.hrc:592
#, fuzzy
msgctxt "STR_PRINTOPTUI_ALLPAGES"
msgid "~All pages"
msgstr "Alle bladsye"
-#: strings.hrc:609
+#: strings.hrc:593
#, fuzzy
msgctxt "STR_PRINTOPTUI_SOMEPAGES"
msgid "Pa~ges"
msgstr "Bladsye"
-#: strings.hrc:610
+#: strings.hrc:594
#, fuzzy
msgctxt "STR_PRINTOPTUI_SELECTION"
msgid "~Selection"
msgstr "~Seleksie"
-#: strings.hrc:611
+#: strings.hrc:595
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr ""
-#: strings.hrc:613
+#: strings.hrc:597
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr ""
-#: strings.hrc:614
+#: strings.hrc:598
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr ""
-#: strings.hrc:615
+#: strings.hrc:599
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr ""
-#: strings.hrc:616
+#: strings.hrc:600
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr ""
-#: strings.hrc:617
+#: strings.hrc:601
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr ""
-#: strings.hrc:618
+#: strings.hrc:602
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr ""
-#: strings.hrc:620
+#: strings.hrc:604
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr ""
-#: strings.hrc:621
+#: strings.hrc:605
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr ""
-#: strings.hrc:622
+#: strings.hrc:606
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr ""
-#: strings.hrc:623
+#: strings.hrc:607
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
-#: strings.hrc:624
+#: strings.hrc:608
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr ""
-#: strings.hrc:625
+#: strings.hrc:609
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr ""
-#: strings.hrc:626
+#: strings.hrc:610
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr ""
-#: strings.hrc:627
+#: strings.hrc:611
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr ""
-#: strings.hrc:628
+#: strings.hrc:612
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr ""
-#: strings.hrc:629
+#: strings.hrc:613
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr ""
-#: strings.hrc:630
+#: strings.hrc:614
msgctxt "STR_ACTIVE"
msgid "active"
msgstr ""
-#: strings.hrc:631
+#: strings.hrc:615
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr ""
-#: strings.hrc:632
+#: strings.hrc:616
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
-#: strings.hrc:633
+#: strings.hrc:617
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr ""
-#: strings.hrc:634
+#: strings.hrc:618
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr ""
-#: strings.hrc:635
+#: strings.hrc:619
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr ""
-#: strings.hrc:636
+#: strings.hrc:620
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr ""
-#: strings.hrc:637
+#: strings.hrc:621
msgctxt "STR_INDEX"
msgid "~Index"
msgstr ""
-#: strings.hrc:638
+#: strings.hrc:622
msgctxt "STR_FILE"
msgid "File"
msgstr ""
-#: strings.hrc:639
+#: strings.hrc:623
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr ""
-#: strings.hrc:640
+#: strings.hrc:624
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr ""
-#: strings.hrc:641
+#: strings.hrc:625
msgctxt "STR_DELETE"
msgid "Delete"
msgstr ""
-#: strings.hrc:642
+#: strings.hrc:626
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr ""
-#: strings.hrc:643
+#: strings.hrc:627
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
-#: strings.hrc:644
+#: strings.hrc:628
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
-#: strings.hrc:645
+#: strings.hrc:629
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr ""
-#: strings.hrc:646
+#: strings.hrc:630
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr ""
-#: strings.hrc:647
+#: strings.hrc:631
msgctxt "STR_REMOVE_INDEX"
msgid "~Remove Index"
msgstr ""
-#: strings.hrc:648
+#: strings.hrc:632
msgctxt "STR_REMOVE_TBL_PROTECTION"
msgid "~Unprotect"
msgstr ""
-#: strings.hrc:649
+#: strings.hrc:633
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr ""
-#: strings.hrc:650
+#: strings.hrc:634
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr ""
-#: strings.hrc:651
+#: strings.hrc:635
msgctxt "STR_RENAME"
msgid "~Rename"
msgstr ""
-#: strings.hrc:652
+#: strings.hrc:636
msgctxt "STR_READONLY_IDX"
msgid "Read-~only"
msgstr ""
-#: strings.hrc:653
+#: strings.hrc:637
msgctxt "STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
-#: strings.hrc:654
+#: strings.hrc:638
msgctxt "STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
-#: strings.hrc:655
+#: strings.hrc:639
msgctxt "STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
-#: strings.hrc:657
+#: strings.hrc:641
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr ""
-#: strings.hrc:658
+#: strings.hrc:642
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ""
-#: strings.hrc:659
+#: strings.hrc:643
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr ""
-#: strings.hrc:660
+#: strings.hrc:644
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ""
-#: strings.hrc:661
+#: strings.hrc:645
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ""
-#: strings.hrc:662
+#: strings.hrc:646
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ""
#. Error calculator
-#: strings.hrc:665
+#: strings.hrc:649
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr ""
-#: strings.hrc:666
+#: strings.hrc:650
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr ""
-#: strings.hrc:667
+#: strings.hrc:651
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr ""
-#: strings.hrc:668
+#: strings.hrc:652
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr ""
-#: strings.hrc:669
+#: strings.hrc:653
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr ""
-#: strings.hrc:670
+#: strings.hrc:654
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr ""
-#: strings.hrc:671
+#: strings.hrc:655
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr ""
-#: strings.hrc:672
+#: strings.hrc:656
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr ""
-#: strings.hrc:673
+#: strings.hrc:657
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr ""
-#: strings.hrc:674
+#: strings.hrc:658
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr ""
-#: strings.hrc:675
+#: strings.hrc:659
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr ""
-#: strings.hrc:676
+#: strings.hrc:660
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr ""
-#: strings.hrc:677
+#: strings.hrc:661
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr ""
-#: strings.hrc:678
+#: strings.hrc:662
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
-#: strings.hrc:679
+#: strings.hrc:663
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr ""
-#: strings.hrc:680
+#: strings.hrc:664
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr ""
-#: strings.hrc:681
+#: strings.hrc:665
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr ""
-#: strings.hrc:682
+#: strings.hrc:666
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr ""
-#: strings.hrc:683
+#: strings.hrc:667
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr ""
-#: strings.hrc:684
+#: strings.hrc:668
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr ""
-#: strings.hrc:685
+#: strings.hrc:669
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr ""
-#: strings.hrc:686
+#: strings.hrc:670
msgctxt "STR_TOX_ILL"
msgid "Illustration Index"
msgstr ""
-#: strings.hrc:687
+#: strings.hrc:671
#, c-format
msgctxt "STR_LINK_CTRL_CLICK"
msgid "%s-Click to follow link"
msgstr ""
-#: strings.hrc:688
+#: strings.hrc:672
msgctxt "STR_LINK_CLICK"
msgid "Click to follow link"
msgstr ""
#. SubType DocInfo
-#: strings.hrc:690
+#: strings.hrc:674
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr ""
-#: strings.hrc:691
+#: strings.hrc:675
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr ""
-#: strings.hrc:692
+#: strings.hrc:676
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr ""
-#: strings.hrc:693
+#: strings.hrc:677
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr ""
-#: strings.hrc:694
+#: strings.hrc:678
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr ""
-#: strings.hrc:695
+#: strings.hrc:679
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr ""
-#: strings.hrc:696
+#: strings.hrc:680
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr ""
-#: strings.hrc:697
+#: strings.hrc:681
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr ""
-#: strings.hrc:698
+#: strings.hrc:682
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr ""
-#: strings.hrc:699
+#: strings.hrc:683
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr ""
-#: strings.hrc:700
+#: strings.hrc:684
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr ""
-#: strings.hrc:701
+#: strings.hrc:685
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr ""
-#: strings.hrc:702
+#: strings.hrc:686
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr ""
-#: strings.hrc:703
+#: strings.hrc:687
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr ""
-#: strings.hrc:704
+#: strings.hrc:688
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr ""
-#: strings.hrc:705
+#: strings.hrc:689
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr ""
-#: strings.hrc:706
+#: strings.hrc:690
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr ""
-#: strings.hrc:707
+#: strings.hrc:691
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr ""
-#: strings.hrc:708
+#: strings.hrc:692
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr ""
-#: strings.hrc:709
+#: strings.hrc:693
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr ""
-#: strings.hrc:710
+#: strings.hrc:694
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr ""
-#: strings.hrc:711
+#: strings.hrc:695
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr ""
-#: strings.hrc:712
+#: strings.hrc:696
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr ""
-#: strings.hrc:713
+#: strings.hrc:697
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr ""
-#: strings.hrc:714
+#: strings.hrc:698
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr ""
-#: strings.hrc:715
+#: strings.hrc:699
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr ""
-#: strings.hrc:716
+#: strings.hrc:700
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr ""
-#: strings.hrc:717
+#: strings.hrc:701
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "E-mail"
msgstr ""
-#: strings.hrc:718
+#: strings.hrc:702
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr ""
-#: strings.hrc:719
+#: strings.hrc:703
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr ""
-#: strings.hrc:720
+#: strings.hrc:704
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr ""
-#: strings.hrc:721
+#: strings.hrc:705
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr ""
-#: strings.hrc:722
+#: strings.hrc:706
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr ""
-#: strings.hrc:723
+#: strings.hrc:707
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr ""
-#: strings.hrc:724
+#: strings.hrc:708
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr ""
-#: strings.hrc:725
+#: strings.hrc:709
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr ""
-#: strings.hrc:726
+#: strings.hrc:710
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr ""
-#: strings.hrc:727
+#: strings.hrc:711
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr ""
-#: strings.hrc:728
+#: strings.hrc:712
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr ""
-#: strings.hrc:729
+#: strings.hrc:713
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr ""
-#: strings.hrc:730
+#: strings.hrc:714
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr ""
-#: strings.hrc:731
+#: strings.hrc:715
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr ""
-#: strings.hrc:732
+#: strings.hrc:716
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr ""
-#: strings.hrc:733
+#: strings.hrc:717
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr ""
-#: strings.hrc:734
+#: strings.hrc:718
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr ""
-#: strings.hrc:735
+#: strings.hrc:719
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr ""
-#: strings.hrc:736
+#: strings.hrc:720
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr ""
-#: strings.hrc:737
+#: strings.hrc:721
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr ""
-#: strings.hrc:738
+#: strings.hrc:722
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr ""
-#: strings.hrc:739
+#: strings.hrc:723
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr ""
-#: strings.hrc:740
+#: strings.hrc:724
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr ""
-#: strings.hrc:741
+#: strings.hrc:725
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr ""
-#: strings.hrc:742
+#: strings.hrc:726
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr ""
-#: strings.hrc:743
+#: strings.hrc:727
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr ""
-#: strings.hrc:744
+#: strings.hrc:728
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr ""
-#: strings.hrc:745
+#: strings.hrc:729
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr ""
-#: strings.hrc:746
+#: strings.hrc:730
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr ""
-#: strings.hrc:747
+#: strings.hrc:731
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr ""
-#: strings.hrc:748
+#: strings.hrc:732
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr ""
-#: strings.hrc:749
+#: strings.hrc:733
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr ""
-#: strings.hrc:750
+#: strings.hrc:734
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr ""
-#: strings.hrc:751
+#: strings.hrc:735
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr ""
-#: strings.hrc:752
+#: strings.hrc:736
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr ""
-#: strings.hrc:753
+#: strings.hrc:737
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr ""
-#: strings.hrc:754
+#: strings.hrc:738
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr ""
-#: strings.hrc:756
+#: strings.hrc:740
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "Redigeer indeksinskrywing"
-#: strings.hrc:757
+#: strings.hrc:741
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "Voeg indeksinskrywying in"
-#: strings.hrc:758
+#: strings.hrc:742
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr ""
-#: strings.hrc:760
+#: strings.hrc:744
#, fuzzy
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Opmerking"
-#: strings.hrc:761
+#: strings.hrc:745
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr ""
-#: strings.hrc:762
+#: strings.hrc:746
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr ""
-#: strings.hrc:764
+#: strings.hrc:748
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "Kortpadnaam bestaan reeds. Kies asseblief 'n ander naam."
-#: strings.hrc:765
+#: strings.hrc:749
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "Skrap OutoTeks?"
-#: strings.hrc:766
+#: strings.hrc:750
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "Skrap die kategorie "
-#: strings.hrc:767
+#: strings.hrc:751
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
-#: strings.hrc:768
+#: strings.hrc:752
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "OutoTeks :"
-#: strings.hrc:769
+#: strings.hrc:753
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "Stoor OutoTeks"
-#: strings.hrc:770
+#: strings.hrc:754
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "Daar is geen OutoTeks in hierdie lêer nie."
-#: strings.hrc:771
+#: strings.hrc:755
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr ""
-#: strings.hrc:773
+#: strings.hrc:757
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "OutoTeks vir kortpad '%1' nie gevind nie."
-#: strings.hrc:774
+#: strings.hrc:758
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr ""
-#: strings.hrc:775
+#: strings.hrc:759
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr ""
-#: strings.hrc:776
+#: strings.hrc:760
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "OutoTeks kon nie geskep word nie."
-#: strings.hrc:777
+#: strings.hrc:761
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "Verlangde knipbordformaat is nie beskikbaar nie."
-#: strings.hrc:778
+#: strings.hrc:762
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME Writer"
msgstr "%PRODUCTNAME Writer"
-#: strings.hrc:779
+#: strings.hrc:763
#, fuzzy
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image [%PRODUCTNAME Writer]"
msgstr "Objek [%PRODUCTNAME Writer]"
-#: strings.hrc:780
+#: strings.hrc:764
msgctxt "STR_PRIVATEOLE"
msgid "Object [%PRODUCTNAME Writer]"
msgstr "Objek [%PRODUCTNAME Writer]"
-#: strings.hrc:781
+#: strings.hrc:765
msgctxt "STR_DDEFORMAT"
msgid "DDE link"
msgstr "DDE-skakel"
-#: strings.hrc:783
+#: strings.hrc:767
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "Alle opmerkings"
-#: strings.hrc:784
+#: strings.hrc:768
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "Alle opmerkings"
-#: strings.hrc:785
+#: strings.hrc:769
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "Opmerkings deur "
-#: strings.hrc:786
+#: strings.hrc:770
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(geen datum)"
-#: strings.hrc:787
+#: strings.hrc:771
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(geen outeur)"
-#: strings.hrc:788
+#: strings.hrc:772
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "Antwoord aan $1"
-#: strings.hrc:790
+#: strings.hrc:774
#, fuzzy
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "Nuwe adresblok"
-#: strings.hrc:791
+#: strings.hrc:775
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr ""
-#: strings.hrc:792
+#: strings.hrc:776
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr ""
-#: strings.hrc:793
+#: strings.hrc:777
#, fuzzy
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "Aanhefelemente"
-#: strings.hrc:794
+#: strings.hrc:778
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr ""
-#: strings.hrc:795
+#: strings.hrc:779
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr ""
-#: strings.hrc:796
+#: strings.hrc:780
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr ""
-#: strings.hrc:797
+#: strings.hrc:781
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr ""
-#: strings.hrc:798
+#: strings.hrc:782
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr ""
-#: strings.hrc:799
+#: strings.hrc:783
msgctxt "ST_TEXT"
msgid "Text"
msgstr ""
-#: strings.hrc:800
+#: strings.hrc:784
#, fuzzy
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "Wys die velde toe uit u databron wat pas by die adreselemente."
-#: strings.hrc:801
+#: strings.hrc:785
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "Aanhefvoorskou"
-#: strings.hrc:802
+#: strings.hrc:786
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "Adreselemente"
-#: strings.hrc:803
+#: strings.hrc:787
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "Aanhefelemente"
-#: strings.hrc:804
+#: strings.hrc:788
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "Pas by veld:"
-#: strings.hrc:805
+#: strings.hrc:789
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "Voorskou"
-#: strings.hrc:807
+#: strings.hrc:791
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " nog nie gepas nie "
-#: strings.hrc:808
+#: strings.hrc:792
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Alle lêers"
-#: strings.hrc:809
+#: strings.hrc:793
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "Adreslyste (*.*)"
-#: strings.hrc:810
+#: strings.hrc:794
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME-basis (*.odb)"
-#: strings.hrc:811
+#: strings.hrc:795
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)"
-#: strings.hrc:812
+#: strings.hrc:796
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr ""
-#: strings.hrc:813
+#: strings.hrc:797
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "dBase (*.dbf)"
-#: strings.hrc:814
+#: strings.hrc:798
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr ""
-#: strings.hrc:815
+#: strings.hrc:799
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr ""
-#: strings.hrc:816
+#: strings.hrc:800
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "Skoonteks (*.txt)"
-#: strings.hrc:817
+#: strings.hrc:801
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "Teks kommageskei (*.csv)"
-#: strings.hrc:818
+#: strings.hrc:802
#, fuzzy
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb)"
-#: strings.hrc:819
+#: strings.hrc:803
#, fuzzy
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb)"
-#: strings.hrc:820
+#: strings.hrc:804
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by e-mail, %PRODUCTNAME requires information about the e-mail account to be used.\n"
@@ -4359,83 +4279,83 @@ msgid ""
"Do you want to enter e-mail account information now?"
msgstr ""
-#: strings.hrc:821
+#: strings.hrc:805
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "%PRODUCTNAME-adreslys (.csv)"
-#: strings.hrc:823
+#: strings.hrc:807
msgctxt "ST_STARTING"
msgid "Select starting document"
msgstr "Kies begindokument"
-#: strings.hrc:824
+#: strings.hrc:808
#, fuzzy
msgctxt "ST_DOCUMENTTYPE"
msgid "Select document type"
msgstr "Kies die dokumenttipe"
-#: strings.hrc:825
+#: strings.hrc:809
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert address block"
msgstr "Voeg adresblok in"
-#: strings.hrc:826
+#: strings.hrc:810
msgctxt "ST_ADDRESSLIST"
msgid "Select address list"
msgstr "Kies 'n adreslys"
-#: strings.hrc:827
+#: strings.hrc:811
msgctxt "ST_GREETINGSLINE"
msgid "Create salutation"
msgstr "Skep aanhef"
-#: strings.hrc:828
+#: strings.hrc:812
msgctxt "ST_LAYOUT"
msgid "Adjust layout"
msgstr "Pas uitleg aan"
-#: strings.hrc:829
+#: strings.hrc:813
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr ""
-#: strings.hrc:830
+#: strings.hrc:814
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "~Klaar"
-#: strings.hrc:831
+#: strings.hrc:815
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr ""
-#: strings.hrc:833
+#: strings.hrc:817
msgctxt "ST_NAME"
msgid "Name"
msgstr "Naam"
-#: strings.hrc:834
+#: strings.hrc:818
msgctxt "ST_TYPE"
msgid "Type"
msgstr "Soort"
-#: strings.hrc:835
+#: strings.hrc:819
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Tabel"
-#: strings.hrc:836
+#: strings.hrc:820
msgctxt "ST_QUERY"
msgid "Query"
msgstr "Navraag"
-#: strings.hrc:838
+#: strings.hrc:822
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "Wil u weer vanaf die begin van dokument toets?"
-#: strings.hrc:839
+#: strings.hrc:823
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "Die speltoets is klaar."
@@ -4444,212 +4364,212 @@ msgstr "Die speltoets is klaar."
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: strings.hrc:845
+#: strings.hrc:829
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "Datum"
-#: strings.hrc:846
+#: strings.hrc:830
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "Tyd"
-#: strings.hrc:847
+#: strings.hrc:831
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Lêernaam"
-#: strings.hrc:848
+#: strings.hrc:832
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "Databasis-naam"
-#: strings.hrc:849
+#: strings.hrc:833
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "Hoofstuk"
-#: strings.hrc:850
+#: strings.hrc:834
msgctxt "STR_PAGENUMBERFLD"
msgid "Page numbers"
msgstr "Bladsynommers"
-#: strings.hrc:851
+#: strings.hrc:835
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "Statistieke"
-#: strings.hrc:852
+#: strings.hrc:836
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Outeur"
-#: strings.hrc:853
+#: strings.hrc:837
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "Sjablone"
-#: strings.hrc:854
+#: strings.hrc:838
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "Afsender"
#. range functions
-#: strings.hrc:856
+#: strings.hrc:840
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "Stel veranderlike"
-#: strings.hrc:857
+#: strings.hrc:841
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "Vertoon veranderlike"
-#: strings.hrc:858
+#: strings.hrc:842
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "Voeg formule in"
-#: strings.hrc:859
+#: strings.hrc:843
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "Toevoerveld"
-#: strings.hrc:860
+#: strings.hrc:844
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "Toevoerveld (veranderlike)"
-#: strings.hrc:861
+#: strings.hrc:845
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "Toevoerveld (gebruiker)"
-#: strings.hrc:862
+#: strings.hrc:846
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "Voorwaardelike teks"
-#: strings.hrc:863
+#: strings.hrc:847
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "DDE-veld"
-#: strings.hrc:864
+#: strings.hrc:848
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "Voer makro uit"
-#: strings.hrc:865
+#: strings.hrc:849
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "Getalomvang"
-#: strings.hrc:866
+#: strings.hrc:850
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "Stel bladsyveranderlike"
-#: strings.hrc:867
+#: strings.hrc:851
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "Vertoon bladsyveranderlike"
-#: strings.hrc:868
+#: strings.hrc:852
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "Laai URL"
-#: strings.hrc:869
+#: strings.hrc:853
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "Plekhouer"
-#: strings.hrc:870
+#: strings.hrc:854
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "Kombineer karakters"
-#: strings.hrc:871
+#: strings.hrc:855
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "Toevoerlys"
#. range references
-#: strings.hrc:873
+#: strings.hrc:857
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "Stel verwysing"
-#: strings.hrc:874
+#: strings.hrc:858
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "Voeg verwysing in"
#. range database
-#: strings.hrc:876
+#: strings.hrc:860
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "Massapos-velde"
-#: strings.hrc:877
+#: strings.hrc:861
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "Volgende rekord"
-#: strings.hrc:878
+#: strings.hrc:862
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "Enige rekord"
-#: strings.hrc:879
+#: strings.hrc:863
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "Rekordnommer"
-#: strings.hrc:880
+#: strings.hrc:864
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "Vorige bladsy"
-#: strings.hrc:881
+#: strings.hrc:865
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "Volgende bladsy"
-#: strings.hrc:882
+#: strings.hrc:866
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "Versteekde teks"
#. range user fields
-#: strings.hrc:884
+#: strings.hrc:868
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "Gebruikerveld"
-#: strings.hrc:885
+#: strings.hrc:869
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "Nota"
-#: strings.hrc:886
+#: strings.hrc:870
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "Skrip"
-#: strings.hrc:887
+#: strings.hrc:871
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "Bibliografie-inskrywing"
-#: strings.hrc:888
+#: strings.hrc:872
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "Versteekde paragraaf"
#. range DocumentInfo
-#: strings.hrc:890
+#: strings.hrc:874
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "DokInligting"
@@ -4657,74 +4577,74 @@ msgstr "DokInligting"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: strings.hrc:894
+#: strings.hrc:878
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "Datum"
-#: strings.hrc:895
+#: strings.hrc:879
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "Datum (vaste)"
-#: strings.hrc:896
+#: strings.hrc:880
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "Tyd"
-#: strings.hrc:897
+#: strings.hrc:881
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "Tyd (vaste)"
#. SubCmd Statistic
-#: strings.hrc:899
+#: strings.hrc:883
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Tabelle"
-#: strings.hrc:900
+#: strings.hrc:884
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Karakters"
-#: strings.hrc:901
+#: strings.hrc:885
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "Woorde"
-#: strings.hrc:902
+#: strings.hrc:886
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "Paragrawe"
-#: strings.hrc:903
+#: strings.hrc:887
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr ""
-#: strings.hrc:904
+#: strings.hrc:888
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "Objekte"
-#: strings.hrc:905
+#: strings.hrc:889
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Bladsye"
#. SubCmd DDETypes
-#: strings.hrc:907
+#: strings.hrc:891
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "Outomatiese DDE"
-#: strings.hrc:908
+#: strings.hrc:892
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "Handmatige DDE"
-#: strings.hrc:909
+#: strings.hrc:893
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr ""
@@ -4732,87 +4652,87 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: strings.hrc:914
+#: strings.hrc:898
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "Maatskappy"
-#: strings.hrc:915
+#: strings.hrc:899
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "Voornaam"
-#: strings.hrc:916
+#: strings.hrc:900
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "Van"
-#: strings.hrc:917
+#: strings.hrc:901
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "Voorletters"
-#: strings.hrc:918
+#: strings.hrc:902
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "Straat"
-#: strings.hrc:919
+#: strings.hrc:903
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "Land"
-#: strings.hrc:920
+#: strings.hrc:904
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "Poskode"
-#: strings.hrc:921
+#: strings.hrc:905
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "Stad"
-#: strings.hrc:922
+#: strings.hrc:906
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Titel"
-#: strings.hrc:923
+#: strings.hrc:907
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "Posisie"
-#: strings.hrc:924
+#: strings.hrc:908
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "Foon (Huis)"
-#: strings.hrc:925
+#: strings.hrc:909
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "Foon (Werk)"
-#: strings.hrc:926
+#: strings.hrc:910
msgctxt "FLD_EU_FAX"
msgid "FAX"
msgstr "FAKS"
-#: strings.hrc:927
+#: strings.hrc:911
msgctxt "FLD_EU_EMAIL"
msgid "E-mail"
msgstr "E-pos"
-#: strings.hrc:928
+#: strings.hrc:912
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "Provinsie"
-#: strings.hrc:929
+#: strings.hrc:913
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "af"
-#: strings.hrc:930
+#: strings.hrc:914
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "aan"
@@ -4821,32 +4741,32 @@ msgstr "aan"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: strings.hrc:935
+#: strings.hrc:919
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Lêernaam"
-#: strings.hrc:936
+#: strings.hrc:920
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "Lêernaam sonder uitbreiding"
-#: strings.hrc:937
+#: strings.hrc:921
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "Pad/lêernaam"
-#: strings.hrc:938
+#: strings.hrc:922
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "Pad"
-#: strings.hrc:939
+#: strings.hrc:923
msgctxt "FMT_FF_UI_NAME"
msgid "Style"
msgstr "Styl"
-#: strings.hrc:940
+#: strings.hrc:924
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "Kategorie"
@@ -4854,22 +4774,22 @@ msgstr "Kategorie"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: strings.hrc:944
+#: strings.hrc:928
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "Naam van hoofstuk"
-#: strings.hrc:945
+#: strings.hrc:929
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "Hoofstuknommer"
-#: strings.hrc:946
+#: strings.hrc:930
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "Hoofstuknommer sonder skeisimbool"
-#: strings.hrc:947
+#: strings.hrc:931
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "Hoofstuknommer en -naam"
@@ -4877,47 +4797,47 @@ msgstr "Hoofstuknommer en -naam"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: strings.hrc:951
+#: strings.hrc:935
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr ""
-#: strings.hrc:952
+#: strings.hrc:936
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr ""
-#: strings.hrc:953
+#: strings.hrc:937
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr ""
-#: strings.hrc:954
+#: strings.hrc:938
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr ""
-#: strings.hrc:955
+#: strings.hrc:939
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "Romeinse syfers (I II III)"
-#: strings.hrc:956
+#: strings.hrc:940
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "Romeinse syfers (i ii iii)"
-#: strings.hrc:957
+#: strings.hrc:941
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "Arabiese syfers (1 2 3)"
-#: strings.hrc:958
+#: strings.hrc:942
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "As bladsystyl"
-#: strings.hrc:959
+#: strings.hrc:943
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "Teks"
@@ -4925,12 +4845,12 @@ msgstr "Teks"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: strings.hrc:963
+#: strings.hrc:947
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "Naam"
-#: strings.hrc:964
+#: strings.hrc:948
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "Voorletters"
@@ -4938,42 +4858,42 @@ msgstr "Voorletters"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: strings.hrc:968
+#: strings.hrc:952
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "Stelsel"
-#: strings.hrc:969
+#: strings.hrc:953
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "Teks"
-#: strings.hrc:970
+#: strings.hrc:954
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "Naam"
-#: strings.hrc:971
+#: strings.hrc:955
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "Teks"
-#: strings.hrc:972
+#: strings.hrc:956
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "Formule"
-#: strings.hrc:973
+#: strings.hrc:957
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "Teks"
-#: strings.hrc:974
+#: strings.hrc:958
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "Databasis"
-#: strings.hrc:975
+#: strings.hrc:959
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "Stelsel"
@@ -4981,17 +4901,17 @@ msgstr "Stelsel"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: strings.hrc:979
+#: strings.hrc:963
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Outeur"
-#: strings.hrc:980
+#: strings.hrc:964
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "Tyd"
-#: strings.hrc:981
+#: strings.hrc:965
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "Datum"
@@ -4999,57 +4919,57 @@ msgstr "Datum"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: strings.hrc:985
+#: strings.hrc:969
msgctxt "FMT_REF_TEXT"
msgid "Reference"
msgstr "Verwysing"
-#: strings.hrc:986
+#: strings.hrc:970
msgctxt "FMT_REF_PAGE"
msgid "Page"
msgstr "Bladsy"
-#: strings.hrc:987
+#: strings.hrc:971
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "Hoofstuk"
-#: strings.hrc:988
+#: strings.hrc:972
msgctxt "FMT_REF_UPDOWN"
msgid "Above/Below"
msgstr "Bo/Onder"
-#: strings.hrc:989
+#: strings.hrc:973
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "As Page Style"
msgstr "As bladsystyl"
-#: strings.hrc:990
+#: strings.hrc:974
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "Kategorie en nommer"
-#: strings.hrc:991
+#: strings.hrc:975
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "Byskrifteks"
-#: strings.hrc:992
+#: strings.hrc:976
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "Nommering"
-#: strings.hrc:993
+#: strings.hrc:977
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "Nommer"
-#: strings.hrc:994
+#: strings.hrc:978
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "Nommer (geen konteks)"
-#: strings.hrc:995
+#: strings.hrc:979
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "Nommer (volledige konteks)"
@@ -5057,27 +4977,27 @@ msgstr "Nommer (volledige konteks)"
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: strings.hrc:999
+#: strings.hrc:983
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "Teks"
-#: strings.hrc:1000
+#: strings.hrc:984
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Tabel"
-#: strings.hrc:1001
+#: strings.hrc:985
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "Raam"
-#: strings.hrc:1002
+#: strings.hrc:986
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr ""
-#: strings.hrc:1003
+#: strings.hrc:987
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "Objek"
@@ -5085,1036 +5005,1036 @@ msgstr "Objek"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: strings.hrc:1007
+#: strings.hrc:991
msgctxt "STR_COND"
msgid "~Condition"
msgstr "~Voorwaarde"
-#: strings.hrc:1008
+#: strings.hrc:992
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "Dan, Anders"
-#: strings.hrc:1009
+#: strings.hrc:993
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "DDE-verklaring"
-#: strings.hrc:1010
+#: strings.hrc:994
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "Versteekde t~eks"
-#: strings.hrc:1011
+#: strings.hrc:995
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "~Makronaam"
-#: strings.hrc:1012
+#: strings.hrc:996
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "~Verwysing"
-#: strings.hrc:1013
+#: strings.hrc:997
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "K~arakters"
-#: strings.hrc:1014
+#: strings.hrc:998
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "S~kikking"
-#: strings.hrc:1015
+#: strings.hrc:999
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Waarde"
-#: strings.hrc:1016
+#: strings.hrc:1000
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "Formule"
-#: strings.hrc:1017
+#: strings.hrc:1001
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr ""
-#: strings.hrc:1019
+#: strings.hrc:1003
#, fuzzy
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[Gebruiker]"
-#: strings.hrc:1021
+#: strings.hrc:1005
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "H. Hoogte"
-#: strings.hrc:1022
+#: strings.hrc:1006
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "V. Hoogte"
-#: strings.hrc:1023
+#: strings.hrc:1007
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "Wydte"
-#: strings.hrc:1024
+#: strings.hrc:1008
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "Hoogte"
-#: strings.hrc:1025
+#: strings.hrc:1009
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "Linkerkantlyn"
-#: strings.hrc:1026
+#: strings.hrc:1010
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "Bokantlyn"
-#: strings.hrc:1027
+#: strings.hrc:1011
msgctxt "STR_COLS"
msgid "Columns"
msgstr "Kolomme"
-#: strings.hrc:1028
+#: strings.hrc:1012
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "Rye"
-#: strings.hrc:1030
+#: strings.hrc:1014
msgctxt "STR_SERVICE_UNAVAILABLE"
msgid "The following service is not available: "
msgstr ""
-#: strings.hrc:1032
+#: strings.hrc:1016
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr ""
-#: strings.hrc:1033
+#: strings.hrc:1017
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr ""
-#: strings.hrc:1034
+#: strings.hrc:1018
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr ""
-#: strings.hrc:1035
+#: strings.hrc:1019
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr ""
-#: strings.hrc:1036
+#: strings.hrc:1020
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Navigator window or right-click for bookmark list."
msgstr ""
-#: strings.hrc:1037
+#: strings.hrc:1021
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Navigator window."
msgstr ""
-#: strings.hrc:1038
+#: strings.hrc:1022
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr ""
#. Strings for textual attributes.
-#: strings.hrc:1041
+#: strings.hrc:1025
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr ""
-#: strings.hrc:1042
+#: strings.hrc:1026
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr ""
-#: strings.hrc:1043
+#: strings.hrc:1027
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr ""
-#: strings.hrc:1044
+#: strings.hrc:1028
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr ""
-#: strings.hrc:1045
+#: strings.hrc:1029
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr ""
-#: strings.hrc:1046
+#: strings.hrc:1030
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr ""
-#: strings.hrc:1047
+#: strings.hrc:1031
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr ""
-#: strings.hrc:1048
+#: strings.hrc:1032
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr ""
-#: strings.hrc:1049
+#: strings.hrc:1033
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr ""
-#: strings.hrc:1050
+#: strings.hrc:1034
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr ""
-#: strings.hrc:1051
+#: strings.hrc:1035
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr ""
-#: strings.hrc:1052
+#: strings.hrc:1036
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr ""
-#: strings.hrc:1053
+#: strings.hrc:1037
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr ""
-#: strings.hrc:1054
+#: strings.hrc:1038
msgctxt "STR_HEADER"
msgid "Header"
msgstr ""
-#: strings.hrc:1055
+#: strings.hrc:1039
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr ""
-#: strings.hrc:1056
+#: strings.hrc:1040
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal wrap"
msgstr ""
-#: strings.hrc:1057
+#: strings.hrc:1041
msgctxt "STR_SURROUND_NONE"
msgid "No wrap"
msgstr ""
-#: strings.hrc:1058
+#: strings.hrc:1042
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr ""
-#: strings.hrc:1059
+#: strings.hrc:1043
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel wrap"
msgstr ""
-#: strings.hrc:1060
+#: strings.hrc:1044
msgctxt "STR_SURROUND_LEFT"
msgid "Left wrap"
msgstr ""
-#: strings.hrc:1061
+#: strings.hrc:1045
msgctxt "STR_SURROUND_RIGHT"
msgid "Right wrap"
msgstr ""
-#: strings.hrc:1062
+#: strings.hrc:1046
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr ""
-#: strings.hrc:1063
+#: strings.hrc:1047
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr ""
-#: strings.hrc:1064
+#: strings.hrc:1048
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr ""
-#: strings.hrc:1065
+#: strings.hrc:1049
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr ""
-#: strings.hrc:1066
+#: strings.hrc:1050
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr ""
-#: strings.hrc:1067
+#: strings.hrc:1051
msgctxt "STR_FLY_AS_CHAR"
msgid "to character"
msgstr ""
-#: strings.hrc:1068
+#: strings.hrc:1052
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr ""
-#: strings.hrc:1069
+#: strings.hrc:1053
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
-#: strings.hrc:1070
+#: strings.hrc:1054
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
-#: strings.hrc:1071
+#: strings.hrc:1055
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
-#: strings.hrc:1072
+#: strings.hrc:1056
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr ""
-#: strings.hrc:1073
+#: strings.hrc:1057
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr ""
-#: strings.hrc:1074
+#: strings.hrc:1058
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Bokant van lyn"
-#: strings.hrc:1075
+#: strings.hrc:1059
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr ""
-#: strings.hrc:1076
+#: strings.hrc:1060
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Onderkant van lyn"
-#: strings.hrc:1077
+#: strings.hrc:1061
msgctxt "STR_REGISTER_ON"
msgid "Register-true"
msgstr ""
-#: strings.hrc:1078
+#: strings.hrc:1062
msgctxt "STR_REGISTER_OFF"
msgid "Not register-true"
msgstr ""
-#: strings.hrc:1079
+#: strings.hrc:1063
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
-#: strings.hrc:1080
+#: strings.hrc:1064
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr ""
-#: strings.hrc:1081
+#: strings.hrc:1065
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
-#: strings.hrc:1082
+#: strings.hrc:1066
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr ""
-#: strings.hrc:1083
+#: strings.hrc:1067
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr ""
-#: strings.hrc:1084
+#: strings.hrc:1068
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr ""
-#: strings.hrc:1085
+#: strings.hrc:1069
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr ""
-#: strings.hrc:1086
+#: strings.hrc:1070
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
-#: strings.hrc:1087
+#: strings.hrc:1071
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
-#: strings.hrc:1088
+#: strings.hrc:1072
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr ""
-#: strings.hrc:1089
+#: strings.hrc:1073
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr ""
-#: strings.hrc:1090
+#: strings.hrc:1074
msgctxt "STR_NUMRULE_ON"
msgid "Numbering"
msgstr ""
-#: strings.hrc:1091
+#: strings.hrc:1075
msgctxt "STR_NUMRULE_OFF"
msgid "no numbering"
msgstr ""
-#: strings.hrc:1092
+#: strings.hrc:1076
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
-#: strings.hrc:1093
+#: strings.hrc:1077
msgctxt "STR_CONNECT2"
msgid "and "
msgstr ""
-#: strings.hrc:1094
+#: strings.hrc:1078
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
-#: strings.hrc:1095
+#: strings.hrc:1079
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
-#: strings.hrc:1096
+#: strings.hrc:1080
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
-#: strings.hrc:1097
+#: strings.hrc:1081
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr ""
-#: strings.hrc:1098
+#: strings.hrc:1082
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr ""
-#: strings.hrc:1099
+#: strings.hrc:1083
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
-#: strings.hrc:1100
+#: strings.hrc:1084
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
-#: strings.hrc:1101
+#: strings.hrc:1085
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr ""
-#: strings.hrc:1102
+#: strings.hrc:1086
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
-#: strings.hrc:1103
+#: strings.hrc:1087
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr ""
-#: strings.hrc:1104
+#: strings.hrc:1088
msgctxt "STR_INVERT"
msgid "Invert"
msgstr ""
-#: strings.hrc:1105
+#: strings.hrc:1089
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
-#: strings.hrc:1106
+#: strings.hrc:1090
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr ""
-#: strings.hrc:1107
+#: strings.hrc:1091
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr ""
-#: strings.hrc:1108
+#: strings.hrc:1092
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr ""
-#: strings.hrc:1109
+#: strings.hrc:1093
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr ""
-#: strings.hrc:1110
+#: strings.hrc:1094
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr ""
-#: strings.hrc:1111
+#: strings.hrc:1095
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr ""
-#: strings.hrc:1112
+#: strings.hrc:1096
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr ""
-#: strings.hrc:1113
+#: strings.hrc:1097
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr ""
-#: strings.hrc:1114
+#: strings.hrc:1098
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr ""
-#: strings.hrc:1115
+#: strings.hrc:1099
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr ""
-#: strings.hrc:1116
+#: strings.hrc:1100
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
-#: strings.hrc:1117
+#: strings.hrc:1101
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
-#: strings.hrc:1118
+#: strings.hrc:1102
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
-#: strings.hrc:1120
+#: strings.hrc:1104
msgctxt "ST_TBL"
msgid "Table"
msgstr ""
-#: strings.hrc:1121
+#: strings.hrc:1105
msgctxt "ST_FRM"
msgid "Text Frame"
msgstr ""
-#: strings.hrc:1122
+#: strings.hrc:1106
msgctxt "ST_PGE"
msgid "Page"
msgstr ""
-#: strings.hrc:1123
+#: strings.hrc:1107
msgctxt "ST_DRW"
msgid "Drawing"
msgstr ""
-#: strings.hrc:1124
+#: strings.hrc:1108
msgctxt "ST_CTRL"
msgid "Control"
msgstr ""
-#: strings.hrc:1125
+#: strings.hrc:1109
msgctxt "ST_REG"
msgid "Section"
msgstr ""
-#: strings.hrc:1126
+#: strings.hrc:1110
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr ""
-#: strings.hrc:1127
+#: strings.hrc:1111
msgctxt "ST_GRF"
msgid "Graphics"
msgstr ""
-#: strings.hrc:1128
+#: strings.hrc:1112
msgctxt "ST_OLE"
msgid "OLE object"
msgstr ""
-#: strings.hrc:1129
+#: strings.hrc:1113
msgctxt "ST_OUTL"
msgid "Headings"
msgstr ""
-#: strings.hrc:1130
+#: strings.hrc:1114
msgctxt "ST_SEL"
msgid "Selection"
msgstr ""
-#: strings.hrc:1131
+#: strings.hrc:1115
msgctxt "ST_FTN"
msgid "Footnote"
msgstr ""
-#: strings.hrc:1132
+#: strings.hrc:1116
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
-#: strings.hrc:1133
+#: strings.hrc:1117
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr ""
-#: strings.hrc:1134
+#: strings.hrc:1118
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr ""
-#: strings.hrc:1135
+#: strings.hrc:1119
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
-#: strings.hrc:1136
+#: strings.hrc:1120
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
-#: strings.hrc:1137
+#: strings.hrc:1121
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: strings.hrc:1139
+#: strings.hrc:1123
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
-#: strings.hrc:1140
+#: strings.hrc:1124
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next text frame"
msgstr ""
-#: strings.hrc:1141
+#: strings.hrc:1125
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr ""
-#: strings.hrc:1142
+#: strings.hrc:1126
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr ""
-#: strings.hrc:1143
+#: strings.hrc:1127
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
-#: strings.hrc:1144
+#: strings.hrc:1128
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr ""
-#: strings.hrc:1145
+#: strings.hrc:1129
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr ""
-#: strings.hrc:1146
+#: strings.hrc:1130
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
-#: strings.hrc:1147
+#: strings.hrc:1131
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
-#: strings.hrc:1148
+#: strings.hrc:1132
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr ""
-#: strings.hrc:1149
+#: strings.hrc:1133
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
-#: strings.hrc:1150
+#: strings.hrc:1134
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr ""
-#: strings.hrc:1151
+#: strings.hrc:1135
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
-#: strings.hrc:1152
+#: strings.hrc:1136
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr ""
-#: strings.hrc:1153
+#: strings.hrc:1137
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
-#: strings.hrc:1154
+#: strings.hrc:1138
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr ""
-#: strings.hrc:1155
+#: strings.hrc:1139
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr ""
-#: strings.hrc:1156
+#: strings.hrc:1140
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous text frame"
msgstr ""
-#: strings.hrc:1157
+#: strings.hrc:1141
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr ""
-#: strings.hrc:1158
+#: strings.hrc:1142
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
-#: strings.hrc:1159
+#: strings.hrc:1143
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
-#: strings.hrc:1160
+#: strings.hrc:1144
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr ""
-#: strings.hrc:1161
+#: strings.hrc:1145
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr ""
-#: strings.hrc:1162
+#: strings.hrc:1146
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
-#: strings.hrc:1163
+#: strings.hrc:1147
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
-#: strings.hrc:1164
+#: strings.hrc:1148
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
-#: strings.hrc:1165
+#: strings.hrc:1149
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
-#: strings.hrc:1166
+#: strings.hrc:1150
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr ""
-#: strings.hrc:1167
+#: strings.hrc:1151
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
-#: strings.hrc:1168
+#: strings.hrc:1152
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr ""
-#: strings.hrc:1169
+#: strings.hrc:1153
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
-#: strings.hrc:1170
+#: strings.hrc:1154
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
-#: strings.hrc:1171
+#: strings.hrc:1155
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr ""
-#: strings.hrc:1172
+#: strings.hrc:1156
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
-#: strings.hrc:1173
+#: strings.hrc:1157
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr ""
-#: strings.hrc:1174
+#: strings.hrc:1158
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr ""
-#: strings.hrc:1176
+#: strings.hrc:1160
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr ""
-#: strings.hrc:1177
+#: strings.hrc:1161
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr ""
-#: strings.hrc:1178
+#: strings.hrc:1162
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
-#: strings.hrc:1179
+#: strings.hrc:1163
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr ""
-#: strings.hrc:1180
+#: strings.hrc:1164
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr ""
-#: strings.hrc:1181
+#: strings.hrc:1165
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
-#: strings.hrc:1182
+#: strings.hrc:1166
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr ""
-#: strings.hrc:1183
+#: strings.hrc:1167
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr ""
-#: strings.hrc:1184
+#: strings.hrc:1168
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
-#: strings.hrc:1185
+#: strings.hrc:1169
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
-#: strings.hrc:1186
+#: strings.hrc:1170
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr ""
-#: strings.hrc:1187
+#: strings.hrc:1171
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr ""
-#: strings.hrc:1188
+#: strings.hrc:1172
msgctxt "STR_TABLE_COL_ADJUST"
msgid "Adjust table column"
msgstr ""
-#: strings.hrc:1189
+#: strings.hrc:1173
msgctxt "STR_TABLE_ROW_ADJUST"
msgid "Adjust table row"
msgstr ""
-#: strings.hrc:1190
+#: strings.hrc:1174
msgctxt "STR_TABLE_SELECT_ALL"
msgid "Select whole table"
msgstr ""
-#: strings.hrc:1191
+#: strings.hrc:1175
msgctxt "STR_TABLE_SELECT_ROW"
msgid "Select table row"
msgstr ""
-#: strings.hrc:1192
+#: strings.hrc:1176
msgctxt "STR_TABLE_SELECT_COL"
msgid "Select table column"
msgstr ""
-#: strings.hrc:1193
+#: strings.hrc:1177
#, c-format
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
-#: strings.hrc:1194
+#: strings.hrc:1178
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
-#: strings.hrc:1195
+#: strings.hrc:1179
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
-#: strings.hrc:1196
+#: strings.hrc:1180
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
-#: strings.hrc:1197
+#: strings.hrc:1181
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
-#: strings.hrc:1198
+#: strings.hrc:1182
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
-#: strings.hrc:1199
+#: strings.hrc:1183
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
-#: strings.hrc:1200
+#: strings.hrc:1184
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
-#: strings.hrc:1201
+#: strings.hrc:1185
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
-#: strings.hrc:1202
+#: strings.hrc:1186
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr ""
-#: strings.hrc:1203
+#: strings.hrc:1187
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr ""
-#: strings.hrc:1204
+#: strings.hrc:1188
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr ""
-#: strings.hrc:1205
+#: strings.hrc:1189
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr ""
-#: strings.hrc:1207
+#: strings.hrc:1191
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr ""
-#: strings.hrc:1208
+#: strings.hrc:1192
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr ""
-#: strings.hrc:1209
+#: strings.hrc:1193
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr ""
-#: strings.hrc:1210
+#: strings.hrc:1194
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr ""
-#: strings.hrc:1211
+#: strings.hrc:1195
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr ""
-#: strings.hrc:1212
+#: strings.hrc:1196
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr ""
-#: strings.hrc:1213
+#: strings.hrc:1197
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr ""
-#: strings.hrc:1214
+#: strings.hrc:1198
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Opmerking: "
-#: strings.hrc:1215
+#: strings.hrc:1199
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Invoeging"
-#: strings.hrc:1216
+#: strings.hrc:1200
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Skrapping"
-#: strings.hrc:1217
+#: strings.hrc:1201
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "OutoKorrigeer"
-#: strings.hrc:1218
+#: strings.hrc:1202
msgctxt "STR_REDLINE_FORMATED"
msgid "Formats"
msgstr "Formate"
-#: strings.hrc:1219
+#: strings.hrc:1203
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Tabelveranderinge"
-#: strings.hrc:1220
+#: strings.hrc:1204
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Toegepaste paragraafstyle"
-#: strings.hrc:1221
+#: strings.hrc:1205
msgctxt "STR_REDLINE_TITLE"
msgid "AutoCorrect"
msgstr "OutoKorrigeer"
-#: strings.hrc:1222
+#: strings.hrc:1206
msgctxt "STR_REDLINE_MSG"
msgid ""
"AutoCorrect completed.\n"
@@ -6125,250 +6045,250 @@ msgstr ""
"U kan alle veranderinge aanvaar of verwerp, \n"
"of sekere veranderinge aanvaar of verwerp."
-#: strings.hrc:1223
+#: strings.hrc:1207
msgctxt "STR_REDLINE_ACCEPT_ALL"
msgid "Accept All"
msgstr "Aanvaar alles"
-#: strings.hrc:1224
+#: strings.hrc:1208
msgctxt "STR_REDLINE_REJECT_ALL"
msgid "Reject All"
msgstr "Verwerp alles"
-#: strings.hrc:1225
+#: strings.hrc:1209
msgctxt "STR_REDLINE_EDIT"
msgid "Edit Changes"
msgstr "Redigeer veranderinge"
-#: strings.hrc:1226
+#: strings.hrc:1210
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Bladsy "
-#: strings.hrc:1227
+#: strings.hrc:1211
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr ""
-#: strings.hrc:1228
+#: strings.hrc:1212
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. Strings for gallery/background
-#: strings.hrc:1230
+#: strings.hrc:1214
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragraaf"
-#: strings.hrc:1231
+#: strings.hrc:1215
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr ""
-#: strings.hrc:1232
+#: strings.hrc:1216
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE-objek"
-#: strings.hrc:1233
+#: strings.hrc:1217
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Raam"
-#: strings.hrc:1234
+#: strings.hrc:1218
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Tabel"
-#: strings.hrc:1235
+#: strings.hrc:1219
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Tabelry"
-#: strings.hrc:1236
+#: strings.hrc:1220
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Tabelsel"
-#: strings.hrc:1237
+#: strings.hrc:1221
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Bladsy"
-#: strings.hrc:1238
+#: strings.hrc:1222
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Kop"
-#: strings.hrc:1239
+#: strings.hrc:1223
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Voet"
#. End: strings for gallery/background
-#: strings.hrc:1242
+#: strings.hrc:1226
msgctxt "STR_HUMAN_SWWEBDOC_NAME"
msgid "HTML"
msgstr "HTML"
-#: strings.hrc:1243
+#: strings.hrc:1227
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-HTML-dokument"
-#: strings.hrc:1245
+#: strings.hrc:1229
#, fuzzy
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Titel"
-#: strings.hrc:1246
+#: strings.hrc:1230
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Skeier"
-#: strings.hrc:1247
+#: strings.hrc:1231
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Vlak "
-#: strings.hrc:1248
+#: strings.hrc:1232
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Die lêer \"%1\" in die \"%2\" pad kon nie gevind word nie."
-#: strings.hrc:1249
+#: strings.hrc:1233
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr ""
-#: strings.hrc:1250
+#: strings.hrc:1234
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr ""
-#: strings.hrc:1251
+#: strings.hrc:1235
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr ""
-#: strings.hrc:1252
+#: strings.hrc:1236
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
-#: strings.hrc:1253
+#: strings.hrc:1237
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
-#: strings.hrc:1254
+#: strings.hrc:1238
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
-#: strings.hrc:1255
+#: strings.hrc:1239
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
-#: strings.hrc:1256
+#: strings.hrc:1240
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
-#: strings.hrc:1257
+#: strings.hrc:1241
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
-#: strings.hrc:1258
+#: strings.hrc:1242
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
-#: strings.hrc:1259
+#: strings.hrc:1243
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
-#: strings.hrc:1260
+#: strings.hrc:1244
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
-#: strings.hrc:1261
+#: strings.hrc:1245
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr ""
-#: strings.hrc:1262
+#: strings.hrc:1246
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr ""
-#: strings.hrc:1263
+#: strings.hrc:1247
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr ""
-#: strings.hrc:1264
+#: strings.hrc:1248
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr ""
-#: strings.hrc:1265
+#: strings.hrc:1249
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr ""
-#: strings.hrc:1266
+#: strings.hrc:1250
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr ""
-#: strings.hrc:1267
+#: strings.hrc:1251
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr ""
-#: strings.hrc:1268
+#: strings.hrc:1252
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr ""
-#: strings.hrc:1269
+#: strings.hrc:1253
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr ""
-#: strings.hrc:1270
+#: strings.hrc:1254
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr ""
-#: strings.hrc:1271
+#: strings.hrc:1255
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
-#: strings.hrc:1272
+#: strings.hrc:1256
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
-#: strings.hrc:1273
+#: strings.hrc:1257
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
-#: strings.hrc:1274
+#: strings.hrc:1258
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
-#: strings.hrc:1275
+#: strings.hrc:1259
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -6376,259 +6296,259 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: strings.hrc:1280
+#: strings.hrc:1264
#, fuzzy
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Basislyn ~bo"
-#: strings.hrc:1281
+#: strings.hrc:1265
#, fuzzy
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "~Basislyn onder"
-#: strings.hrc:1282
+#: strings.hrc:1266
#, fuzzy
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "~Gesentreerde Basislyne"
-#: strings.hrc:1283
+#: strings.hrc:1267
msgctxt "STR_FRMUI_LINE_TOP"
msgid "Top of line"
msgstr ""
-#: strings.hrc:1284
+#: strings.hrc:1268
msgctxt "STR_FRMUI_LINE_BOTTOM"
msgid "Bottom of line"
msgstr ""
-#: strings.hrc:1285
+#: strings.hrc:1269
#, fuzzy
msgctxt "STR_FRMUI_LINE_CENTER"
msgid "Center of line"
msgstr "Middel van reël"
-#: strings.hrc:1286
+#: strings.hrc:1270
#, fuzzy
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Voeg objek in"
-#: strings.hrc:1287
+#: strings.hrc:1271
#, fuzzy
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Redigeer objek"
-#: strings.hrc:1288
+#: strings.hrc:1272
#, fuzzy
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Sjabloon: "
-#: strings.hrc:1289
+#: strings.hrc:1273
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Grense"
-#: strings.hrc:1290
+#: strings.hrc:1274
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Agtergrond"
-#: strings.hrc:1292
+#: strings.hrc:1276
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Paragraafstyl: "
-#: strings.hrc:1293
+#: strings.hrc:1277
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr ""
-#: strings.hrc:1295
+#: strings.hrc:1279
msgctxt "STR_HUMAN_SWGLOBDOC_NAME"
msgid "Master Document"
msgstr "Meesterdokument"
-#: strings.hrc:1296
+#: strings.hrc:1280
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-meesterdokument"
-#: strings.hrc:1298
+#: strings.hrc:1282
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
-#: strings.hrc:1299
+#: strings.hrc:1283
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
-#: strings.hrc:1300
+#: strings.hrc:1284
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
-#: strings.hrc:1302
+#: strings.hrc:1286
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
-#: strings.hrc:1303
+#: strings.hrc:1287
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr ""
-#: strings.hrc:1304
+#: strings.hrc:1288
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr ""
-#: strings.hrc:1305
+#: strings.hrc:1289
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr ""
-#: strings.hrc:1306
+#: strings.hrc:1290
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr ""
-#: strings.hrc:1307
+#: strings.hrc:1291
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
-#: strings.hrc:1309
+#: strings.hrc:1293
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
-#: strings.hrc:1310
+#: strings.hrc:1294
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
-#: strings.hrc:1311
+#: strings.hrc:1295
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
-#: strings.hrc:1312
+#: strings.hrc:1296
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
-#: strings.hrc:1313
+#: strings.hrc:1297
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr ""
-#: strings.hrc:1314
+#: strings.hrc:1298
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr ""
-#: strings.hrc:1315
+#: strings.hrc:1299
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
-#: strings.hrc:1316
+#: strings.hrc:1300
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr ""
-#: strings.hrc:1317
+#: strings.hrc:1301
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr ""
-#: strings.hrc:1318
+#: strings.hrc:1302
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr ""
-#: strings.hrc:1319
+#: strings.hrc:1303
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr ""
-#: strings.hrc:1320
+#: strings.hrc:1304
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr ""
-#: strings.hrc:1321
+#: strings.hrc:1305
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr ""
-#: strings.hrc:1322
+#: strings.hrc:1306
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
-#: strings.hrc:1323
+#: strings.hrc:1307
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
-#: strings.hrc:1325
+#: strings.hrc:1309
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr ""
-#: strings.hrc:1326
+#: strings.hrc:1310
msgctxt "ST_TASK"
msgid "Task"
msgstr ""
-#: strings.hrc:1327
+#: strings.hrc:1311
msgctxt "ST_STATUS"
msgid "Status"
msgstr ""
-#: strings.hrc:1328
+#: strings.hrc:1312
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
-#: strings.hrc:1329
+#: strings.hrc:1313
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
-#: strings.hrc:1330
+#: strings.hrc:1314
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
-#: strings.hrc:1332
+#: strings.hrc:1316
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "MAATSKAPPY;CR;VOORNAAM; ;VAN;CR;ADRES;CR;STAD; ;PROV; ;POSKODE;CR;LAND;CR;"
-#: strings.hrc:1334
+#: strings.hrc:1318
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
-#: strings.hrc:1336
+#: strings.hrc:1320
msgctxt "STR_MENU_ZOOM"
msgid "~Zoom"
msgstr ""
-#: strings.hrc:1337
+#: strings.hrc:1321
msgctxt "STR_MENU_UP"
msgid "~Upwards"
msgstr ""
-#: strings.hrc:1338
+#: strings.hrc:1322
msgctxt "STR_MENU_DOWN"
msgid "Do~wnwards"
msgstr ""
@@ -6636,7 +6556,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: strings.hrc:1344
+#: strings.hrc:1328
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -6644,27 +6564,27 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: strings.hrc:1349
+#: strings.hrc:1333
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
-#: strings.hrc:1350
+#: strings.hrc:1334
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
-#: strings.hrc:1351
+#: strings.hrc:1335
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
-#: strings.hrc:1352
+#: strings.hrc:1336
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr ""
-#: strings.hrc:1353
+#: strings.hrc:1337
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
@@ -7884,12 +7804,12 @@ msgctxt "columnpage|applytoft"
msgid "_Apply to:"
msgstr ""
-#: columnpage.ui:724
+#: columnpage.ui:725
msgctxt "columnpage|textdirectionft"
msgid "Text _direction:"
msgstr ""
-#: columnpage.ui:780
+#: columnpage.ui:782
#, fuzzy
msgctxt "columnpage|label2"
msgid "Settings"
@@ -9922,191 +9842,191 @@ msgctxt "frmaddpage|description_label"
msgid "_Description:"
msgstr ""
-#: frmaddpage.ui:242
+#: frmaddpage.ui:243
#, fuzzy
msgctxt "frmaddpage|label1"
msgid "Names"
msgstr "Naam"
-#: frmaddpage.ui:281
+#: frmaddpage.ui:282
msgctxt "frmaddpage|label2"
msgid "_Vertical alignment"
msgstr ""
-#: frmaddpage.ui:308
+#: frmaddpage.ui:309
msgctxt "frmaddpage|label7"
msgid "Content Alignment"
msgstr ""
-#: frmaddpage.ui:344
+#: frmaddpage.ui:345
#, fuzzy
msgctxt "frmaddpage|protectcontent"
msgid "_Contents"
msgstr "Inhoud"
-#: frmaddpage.ui:359
+#: frmaddpage.ui:360
#, fuzzy
msgctxt "frmaddpage|protectframe"
msgid "P_osition"
msgstr "Posisie"
-#: frmaddpage.ui:374
+#: frmaddpage.ui:375
msgctxt "frmaddpage|protectsize"
msgid "_Size"
msgstr ""
-#: frmaddpage.ui:395
+#: frmaddpage.ui:396
msgctxt "frmaddpage|label8"
msgid "Protect"
msgstr ""
-#: frmaddpage.ui:440
+#: frmaddpage.ui:441
msgctxt "frmaddpage|editinreadonly"
msgid "_Editable in read-only document"
msgstr ""
-#: frmaddpage.ui:455
+#: frmaddpage.ui:456
msgctxt "frmaddpage|printframe"
msgid "Prin_t"
msgstr ""
-#: frmaddpage.ui:480
+#: frmaddpage.ui:481
msgctxt "frmaddpage|textflow_label"
msgid "_Text direction:"
msgstr ""
-#: frmaddpage.ui:515
+#: frmaddpage.ui:516
msgctxt "frmaddpage|label3"
msgid "Properties"
msgstr ""
-#: frmtypepage.ui:75
+#: frmtypepage.ui:73
msgctxt "frmtypepage|autowidth"
msgid "AutoSize"
msgstr ""
-#: frmtypepage.ui:101
+#: frmtypepage.ui:97
msgctxt "frmtypepage|autowidthft"
msgid "_Width (at least)"
msgstr ""
-#: frmtypepage.ui:117
+#: frmtypepage.ui:111
#, fuzzy
msgctxt "frmtypepage|widthft"
msgid "_Width"
msgstr "Wydte"
-#: frmtypepage.ui:143
+#: frmtypepage.ui:134
msgctxt "frmtypepage|relwidth"
msgid "Relat_ive to"
msgstr ""
-#: frmtypepage.ui:210
+#: frmtypepage.ui:198
msgctxt "frmtypepage|autoheight"
msgid "AutoSize"
msgstr ""
-#: frmtypepage.ui:236
+#: frmtypepage.ui:222
msgctxt "frmtypepage|autoheightft"
msgid "H_eight (at least)"
msgstr ""
-#: frmtypepage.ui:252
+#: frmtypepage.ui:236
msgctxt "frmtypepage|heightft"
msgid "H_eight"
msgstr ""
-#: frmtypepage.ui:278
+#: frmtypepage.ui:259
msgctxt "frmtypepage|relheight"
msgid "Re_lative to"
msgstr ""
-#: frmtypepage.ui:323
+#: frmtypepage.ui:304
msgctxt "frmtypepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: frmtypepage.ui:340
+#: frmtypepage.ui:319
msgctxt "frmtypepage|origsize"
msgid "_Original Size"
msgstr ""
-#: frmtypepage.ui:362
+#: frmtypepage.ui:339
msgctxt "frmtypepage|label2"
msgid "Size"
msgstr ""
-#: frmtypepage.ui:424
+#: frmtypepage.ui:395
msgctxt "frmtypepage|topage"
msgid "To _page"
msgstr ""
-#: frmtypepage.ui:443
+#: frmtypepage.ui:412
msgctxt "frmtypepage|topara"
msgid "To paragrap_h"
msgstr ""
-#: frmtypepage.ui:461
+#: frmtypepage.ui:428
msgctxt "frmtypepage|tochar"
msgid "To cha_racter"
msgstr ""
-#: frmtypepage.ui:479
+#: frmtypepage.ui:444
msgctxt "frmtypepage|aschar"
msgid "_As character"
msgstr ""
-#: frmtypepage.ui:497
+#: frmtypepage.ui:460
msgctxt "frmtypepage|toframe"
msgid "To _frame"
msgstr ""
-#: frmtypepage.ui:521
+#: frmtypepage.ui:482
msgctxt "frmtypepage|label1"
msgid "Anchor"
msgstr ""
-#: frmtypepage.ui:566
+#: frmtypepage.ui:522
msgctxt "frmtypepage|horiposft"
msgid "Hori_zontal"
msgstr ""
-#: frmtypepage.ui:582
+#: frmtypepage.ui:536
msgctxt "frmtypepage|horibyft"
msgid "b_y"
msgstr ""
-#: frmtypepage.ui:598
+#: frmtypepage.ui:550
msgctxt "frmtypepage|vertbyft"
msgid "by"
msgstr ""
-#: frmtypepage.ui:614
+#: frmtypepage.ui:564
msgctxt "frmtypepage|horitoft"
msgid "_to"
msgstr ""
-#: frmtypepage.ui:674
+#: frmtypepage.ui:611
msgctxt "frmtypepage|vertposft"
msgid "_Vertical"
msgstr ""
-#: frmtypepage.ui:720
+#: frmtypepage.ui:648
msgctxt "frmtypepage|verttoft"
msgid "t_o"
msgstr ""
-#: frmtypepage.ui:747
+#: frmtypepage.ui:670
msgctxt "frmtypepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: frmtypepage.ui:765
+#: frmtypepage.ui:687
msgctxt "frmtypepage|followtextflow"
msgid "Follow text flow"
msgstr ""
-#: frmtypepage.ui:789
+#: frmtypepage.ui:710
#, fuzzy
msgctxt "frmtypepage|label11"
msgid "Position"
@@ -12912,241 +12832,241 @@ msgctxt "notebookbar_groupedbar_full|Quotation2"
msgid "Quotation"
msgstr ""
-#: notebookbar_groupedbar_full.ui:3953
+#: notebookbar_groupedbar_full.ui:3934
+msgctxt "notebookbar_groupedbar_full|menub"
+msgid "_Menu"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:3986
+msgctxt "notebookbar_groupedbar_full|toolsb"
+msgid "_Tools"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:4040
+msgctxt "notebookbar_groupedbar_full|helpb"
+msgid "_Help"
+msgstr ""
+
+#: notebookbar_groupedbar_full.ui:4147
msgctxt "notebookbar_groupedbar_full|fileb"
msgid "_File"
msgstr ""
-#: notebookbar_groupedbar_full.ui:4175
+#: notebookbar_groupedbar_full.ui:4384
msgctxt "notebookbar_groupedbar_full|editb"
msgid "_Edit"
msgstr ""
-#: notebookbar_groupedbar_full.ui:4371
+#: notebookbar_groupedbar_full.ui:4580
msgctxt "notebookbar_groupedbar_full|paragraphstyleb"
msgid "St_yles"
msgstr ""
-#: notebookbar_groupedbar_full.ui:4655
+#: notebookbar_groupedbar_full.ui:4867
msgctxt "notebookbar_groupedbar_full|formatb"
msgid "F_ormat"
msgstr ""
-#: notebookbar_groupedbar_full.ui:5006
+#: notebookbar_groupedbar_full.ui:5218
msgctxt "notebookbar_groupedbar_full|paragraphb"
msgid "_Paragraph"
msgstr ""
-#: notebookbar_groupedbar_full.ui:5242
+#: notebookbar_groupedbar_full.ui:5457
msgctxt "notebookbar_groupedbar_full|insertb"
msgid "_Insert"
msgstr ""
-#: notebookbar_groupedbar_full.ui:5467
+#: notebookbar_groupedbar_full.ui:5685
msgctxt "notebookbar_groupedbar_full|referenceb"
msgid "Referen_ce"
msgstr ""
-#: notebookbar_groupedbar_full.ui:5665
+#: notebookbar_groupedbar_full.ui:5886
msgctxt "notebookbar_groupedbar_full|reviewb"
msgid "_Review"
msgstr ""
-#: notebookbar_groupedbar_full.ui:5811
+#: notebookbar_groupedbar_full.ui:6035
msgctxt "notebookbar_groupedbar_full|viewb"
msgid "_View"
msgstr ""
-#: notebookbar_groupedbar_full.ui:6069
+#: notebookbar_groupedbar_full.ui:6296
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr ""
-#: notebookbar_groupedbar_full.ui:6499
+#: notebookbar_groupedbar_full.ui:6726
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr ""
-#: notebookbar_groupedbar_full.ui:6672
+#: notebookbar_groupedbar_full.ui:6902
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr ""
-#: notebookbar_groupedbar_full.ui:6923
+#: notebookbar_groupedbar_full.ui:7156
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr ""
-#: notebookbar_groupedbar_full.ui:7097
+#: notebookbar_groupedbar_full.ui:7333
msgctxt "notebookbar_groupedbar_full|paragraphstylet"
msgid "St_yles"
msgstr ""
-#: notebookbar_groupedbar_full.ui:7381
+#: notebookbar_groupedbar_full.ui:7620
msgctxt "notebookbar_groupedbar_full|formatt"
msgid "F_ormat"
msgstr ""
-#: notebookbar_groupedbar_full.ui:7732
+#: notebookbar_groupedbar_full.ui:7971
msgctxt "notebookbar_groupedbar_full|paragrapht"
msgid "_Paragraph"
msgstr ""
-#: notebookbar_groupedbar_full.ui:7956
+#: notebookbar_groupedbar_full.ui:8198
msgctxt "notebookbar_groupedbar_full|tabled"
msgid "T_able"
msgstr ""
-#: notebookbar_groupedbar_full.ui:8151
+#: notebookbar_groupedbar_full.ui:8396
msgctxt "notebookbar_groupedbar_full|rowscolumnst"
msgid "R_ows"
msgstr ""
-#: notebookbar_groupedbar_full.ui:8349
+#: notebookbar_groupedbar_full.ui:8597
msgctxt "notebookbar_groupedbar_full|merged"
msgid "_Merge"
msgstr ""
-#: notebookbar_groupedbar_full.ui:8585
+#: notebookbar_groupedbar_full.ui:8825
msgctxt "notebookbar_groupedbar_full|selectt"
msgid "Sele_ct"
msgstr ""
-#: notebookbar_groupedbar_full.ui:8811
+#: notebookbar_groupedbar_full.ui:9054
msgctxt "notebookbar_groupedbar_full|calculatet"
msgid "_Calc"
msgstr ""
-#: notebookbar_groupedbar_full.ui:9036
+#: notebookbar_groupedbar_full.ui:9282
msgctxt "notebookbar_groupedbar_full|referencet"
msgid "Referen_ce"
msgstr ""
-#: notebookbar_groupedbar_full.ui:9169
+#: notebookbar_groupedbar_full.ui:9418
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr ""
-#: notebookbar_groupedbar_full.ui:9394
+#: notebookbar_groupedbar_full.ui:9646
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr ""
-#: notebookbar_groupedbar_full.ui:9606
+#: notebookbar_groupedbar_full.ui:9858
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr ""
-#: notebookbar_groupedbar_full.ui:9808
+#: notebookbar_groupedbar_full.ui:10060
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr ""
-#: notebookbar_groupedbar_full.ui:9954
+#: notebookbar_groupedbar_full.ui:10209
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr ""
-#: notebookbar_groupedbar_full.ui:10396
+#: notebookbar_groupedbar_full.ui:10654
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
-#: notebookbar_groupedbar_full.ui:10766
+#: notebookbar_groupedbar_full.ui:11024
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr ""
-#: notebookbar_groupedbar_full.ui:10993
+#: notebookbar_groupedbar_full.ui:11254
msgctxt "notebookbar_groupedbar_full|wrapb"
msgid "Wrap"
msgstr ""
-#: notebookbar_groupedbar_full.ui:11007
+#: notebookbar_groupedbar_full.ui:11268
msgctxt "notebookbar_groupedbar_full|alignb"
msgid "Align"
msgstr ""
-#: notebookbar_groupedbar_full.ui:11039
+#: notebookbar_groupedbar_full.ui:11300
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr ""
-#: notebookbar_groupedbar_full.ui:11203
+#: notebookbar_groupedbar_full.ui:11467
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr ""
-#: notebookbar_groupedbar_full.ui:11401
+#: notebookbar_groupedbar_full.ui:11668
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr ""
-#: notebookbar_groupedbar_full.ui:11577
+#: notebookbar_groupedbar_full.ui:11847
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
-#: notebookbar_groupedbar_full.ui:11885
+#: notebookbar_groupedbar_full.ui:12158
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ormat"
msgstr ""
-#: notebookbar_groupedbar_full.ui:12151
+#: notebookbar_groupedbar_full.ui:12424
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Paragraph"
msgstr ""
-#: notebookbar_groupedbar_full.ui:12324
+#: notebookbar_groupedbar_full.ui:12600
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr ""
-#: notebookbar_groupedbar_full.ui:12474
+#: notebookbar_groupedbar_full.ui:12753
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr ""
-#: notebookbar_groupedbar_full.ui:12904
+#: notebookbar_groupedbar_full.ui:13186
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
-#: notebookbar_groupedbar_full.ui:13141
+#: notebookbar_groupedbar_full.ui:13423
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr ""
-#: notebookbar_groupedbar_full.ui:13571
+#: notebookbar_groupedbar_full.ui:13853
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr ""
-#: notebookbar_groupedbar_full.ui:13734
+#: notebookbar_groupedbar_full.ui:14019
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr ""
-#: notebookbar_groupedbar_full.ui:13880
+#: notebookbar_groupedbar_full.ui:14168
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr ""
-#: notebookbar_groupedbar_full.ui:14027
-msgctxt "notebookbar_groupedbar_full|menub"
-msgid "_Menu"
-msgstr ""
-
-#: notebookbar_groupedbar_full.ui:14079
-msgctxt "notebookbar_groupedbar_full|toolsb"
-msgid "_Tools"
-msgstr ""
-
-#: notebookbar_groupedbar_full.ui:14133
-msgctxt "notebookbar_groupedbar_full|helpb"
-msgid "_Help"
-msgstr ""
-
#: notebookbar_groups.ui:34
msgctxt "notebookbar_groups|imagestyledefault"
msgid "Default"
diff --git a/source/am/accessibility/messages.po b/source/am/accessibility/messages.po
index bfac3dc84ab..2b71ae4d03a 100644
--- a/source/am/accessibility/messages.po
+++ b/source/am/accessibility/messages.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2017-11-25 16:19+0000\n"
+"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: am\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511626744.000000\n"
#: strings.hrc:25
msgctxt "RID_STR_ACC_NAME_BROWSEBUTTON"
@@ -56,7 +59,7 @@ msgstr "በ አግድም መሸብለያ"
#: strings.hrc:33
msgctxt "RID_STR_ACC_PANEL_DESCRIPTION"
msgid "Please press enter to go into child control for more operations"
-msgstr "እባክዎን ማስገቢያውን ይጫኑ ወደ ልጆች መቆጣጠሪያ ለተጨማሪ ተግባሮች ለመሄድ"
+msgstr "እባክዎን ማስገቢያውን ይጫኑ ወደ ልጆች መቆጣጠሪያ ወደ ተጨማሪ ተግባሮች ለ መሄድ"
#: strings.hrc:34
#, c-format
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index e32ba9ab164..d2f1ecee608 100644
--- a/source/am/cui/messages.po
+++ b/source/am/cui/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-24 14:55+0100\n"
-"PO-Revision-Date: 2017-11-23 14:53+0000\n"
-"Last-Translator: Samson B <sambelet@yahoo.com>\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"PO-Revision-Date: 2017-12-07 17:54+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511448839.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1512669264.000000\n"
#: personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -354,657 +354,667 @@ msgstr "ይምረጡ ፋይል ለማንሳፈፊያ ጠርዝ"
#: strings.hrc:91
msgctxt "RID_SVXSTR_ALLFUNCTIONS"
-msgid "All categories"
-msgstr "ሁሉንም ምድቦች"
+msgid "All commands"
+msgstr ""
#: strings.hrc:92
+msgctxt "RID_SVXSTR_MACROS"
+msgid "Macros"
+msgstr ""
+
+#: strings.hrc:93
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
msgstr "የ እኔ Macros"
-#: strings.hrc:93
+#: strings.hrc:94
msgctxt "RID_SVXSTR_PRODMACROS"
msgid "%PRODUCTNAME Macros"
msgstr "%PRODUCTNAME Macros"
-#: strings.hrc:94
+#: strings.hrc:95
+msgctxt "RID_SVXSTR_NOMACRODESC"
+msgid "There is no description available for this macro."
+msgstr ""
+
+#: strings.hrc:96
msgctxt "RID_SVXSTR_SELECTOR_ADD_COMMANDS"
msgid "Add Commands"
msgstr "ትእዛዞች መጨመሪያ"
-#: strings.hrc:95
+#: strings.hrc:97
msgctxt "RID_SVXSTR_SELECTOR_RUN"
msgid "Run"
msgstr "ማስኬጃ"
-#: strings.hrc:96
+#: strings.hrc:98
msgctxt "RID_SVXSTR_ROW"
msgid "Insert Rows"
msgstr "ረድፎች ማስገቢያ"
-#: strings.hrc:97
+#: strings.hrc:99
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "ከ የምወዳቸው ውስጥ ማስወገጃ"
-#: strings.hrc:98
+#: strings.hrc:100
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "ወደ የምወደው መጨመሪያ"
#. PPI is pixel per inch, %1 is a number
-#: strings.hrc:100
+#: strings.hrc:102
msgctxt "RID_SVXSTR_PPI"
msgid "(%1 PPI)"
msgstr "(%1 PPI)"
-#: strings.hrc:101
+#: strings.hrc:103
msgctxt "RID_SVXSTR_COL"
msgid "Insert Columns"
msgstr "አምዶች ማስገቢያ"
-#: strings.hrc:102
+#: strings.hrc:104
msgctxt "RID_SVXSTR_AUTO_ENTRY"
msgid "Automatic"
msgstr "ራሱ በራሱ"
-#: strings.hrc:103
+#: strings.hrc:105
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "አገናኝ"
-#: strings.hrc:104
+#: strings.hrc:106
msgctxt "RID_SVXSTR_LOADACCELCONFIG"
msgid "Load Keyboard Configuration"
msgstr "የ ፊደል ገበታ ማዋቀሪያ መጫኛ"
-#: strings.hrc:105
+#: strings.hrc:107
msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
msgid "Save Keyboard Configuration"
msgstr "የ ፊደል ገበታ ማዋቀሪያ ማስቀመጫ"
-#: strings.hrc:106
+#: strings.hrc:108
msgctxt "RID_SVXSTR_FILTERNAME_CFG"
msgid "Configuration (*.cfg)"
msgstr "ማዋቀሪያ (*.cfg)"
-#: strings.hrc:107
+#: strings.hrc:109
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
msgid "Targets do not exist in the document."
msgstr "ዒላማዎቹ በሰነዱ ውስጥ አልተገኙም"
-#: strings.hrc:108
+#: strings.hrc:110
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
msgid "Couldn't open the document."
msgstr "ሰነዱን መክፈት አልተቻለም"
-#: strings.hrc:109
+#: strings.hrc:111
msgctxt "RID_SVXSTR_EDITHINT"
msgid "[Enter text here]"
msgstr "[ጽሑፍ እዚህ ያስገቡ]"
-#: strings.hrc:110
+#: strings.hrc:112
msgctxt "RID_SVXSTR_HANGUL"
msgid "Hangul"
msgstr "Hangul"
-#: strings.hrc:111
+#: strings.hrc:113
msgctxt "RID_SVXSTR_HANJA"
msgid "Hanja"
msgstr "Hanja"
-#: strings.hrc:112
+#: strings.hrc:114
msgctxt "RID_SVXSTR_BASICMACROS"
msgid "BASIC Macros"
msgstr "መሰረታዊ Macros"
-#: strings.hrc:113
+#: strings.hrc:115
msgctxt "RID_SVXSTR_GROUP_STYLES"
msgid "Styles"
msgstr "ዘዴዎች"
-#: strings.hrc:115
+#: strings.hrc:117
msgctxt "RID_SVXSTR_EVENT_STARTAPP"
msgid "Start Application"
msgstr "መተግበሪያውን ማስጀመሪያ"
-#: strings.hrc:116
+#: strings.hrc:118
msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
msgid "Close Application"
msgstr "መተግበሪያውን መዝጊያ"
-#: strings.hrc:117
+#: strings.hrc:119
msgctxt "RID_SVXSTR_EVENT_NEWDOC"
msgid "New Document"
msgstr "አዲስ ሰነድ"
-#: strings.hrc:118
+#: strings.hrc:120
msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
msgid "Document closed"
msgstr "ሰነዱ ተዘግቷል"
-#: strings.hrc:119
+#: strings.hrc:121
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
msgid "Document is going to be closed"
msgstr "ሰነዱ ሊዘጋ ነው"
-#: strings.hrc:120
+#: strings.hrc:122
msgctxt "RID_SVXSTR_EVENT_OPENDOC"
msgid "Open Document"
msgstr "ሰነድ መክፈቻ"
-#: strings.hrc:121
+#: strings.hrc:123
msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
msgid "Save Document"
msgstr "ሰነድ ማስቀመጫ"
-#: strings.hrc:122
+#: strings.hrc:124
msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
msgid "Save Document As"
msgstr "ሰነዱን ማስቀመጫ እንደ"
-#: strings.hrc:123
+#: strings.hrc:125
msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
msgid "Document has been saved"
msgstr "ሰነዱ ተቀምጧል"
-#: strings.hrc:124
+#: strings.hrc:126
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
msgid "Document has been saved as"
msgstr "ሰነዱ ተቀምጧል እንደ"
-#: strings.hrc:125
+#: strings.hrc:127
msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
msgid "Activate Document"
msgstr "ሰነዱን ማስነሻ"
-#: strings.hrc:126
+#: strings.hrc:128
msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
msgid "Deactivate Document"
msgstr "ሰነዱን ማቦዘኛ"
-#: strings.hrc:127
+#: strings.hrc:129
msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
msgid "Print Document"
msgstr "ሰነዱን ማተሚያ"
-#: strings.hrc:128
+#: strings.hrc:130
msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
msgid "'Modified' status was changed"
msgstr "'ተሻሽሏል' ሁኔታው ተቀይሯል"
-#: strings.hrc:129
+#: strings.hrc:131
msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
msgid "Printing of form letters started"
msgstr "በ ደብዳቤዎች ፎርም ማተም ጀምሯል"
-#: strings.hrc:130
+#: strings.hrc:132
msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
msgid "Printing of form letters finished"
msgstr "በ ደብዳቤዎች ፎርም ማተም ጨርሷል"
-#: strings.hrc:131
+#: strings.hrc:133
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
msgid "Merging of form fields started"
msgstr "የ ፎርም ሜዳዎችን ማዋሀድ ጀምሯል"
-#: strings.hrc:132
+#: strings.hrc:134
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
msgid "Merging of form fields finished"
msgstr "የ ፎርም ሜዳዎችን ማዋሀድ ጨርሷል"
-#: strings.hrc:133
+#: strings.hrc:135
msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
msgid "Changing the page count"
msgstr "የ ገጽ መቁጠሪያ በ መቀየር ላይ"
-#: strings.hrc:134
+#: strings.hrc:136
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
msgid "Loaded a sub component"
msgstr "ንዑስ አካላት ተጭነዋል"
-#: strings.hrc:135
+#: strings.hrc:137
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
msgid "Closed a sub component"
msgstr "ንዑስ አካላት ተዘግተዋል"
-#: strings.hrc:136
+#: strings.hrc:138
msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
msgid "Fill parameters"
msgstr "ደንቦች መሙያ"
-#: strings.hrc:137
+#: strings.hrc:139
msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
msgid "Execute action"
msgstr "ተግባር መፈጸሚያ"
-#: strings.hrc:138
+#: strings.hrc:140
msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
msgid "After updating"
msgstr "ከተሻሻለ በኋላ"
-#: strings.hrc:139
+#: strings.hrc:141
msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
msgid "Before updating"
msgstr "ከመሻሻሉ በፊት"
-#: strings.hrc:140
+#: strings.hrc:142
msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
msgid "Before record action"
msgstr "ከመዝገቡ ተግባር በፊት"
-#: strings.hrc:141
+#: strings.hrc:143
msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
msgid "After record action"
msgstr "ከመዝገቡ ተግባር በኋላ"
-#: strings.hrc:142
+#: strings.hrc:144
msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
msgid "Confirm deletion"
msgstr "ማጥፋቱን ያረጋግጡ"
-#: strings.hrc:143
+#: strings.hrc:145
msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
msgid "Error occurred"
msgstr "ስህተት ተፈጥሯል"
-#: strings.hrc:144
+#: strings.hrc:146
msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
msgid "While adjusting"
msgstr "በማስተካከል ላይ እንዳለ"
-#: strings.hrc:145
+#: strings.hrc:147
msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
msgid "When receiving focus"
msgstr "ትኩረት በሚያገኝበት ጊዜ"
-#: strings.hrc:146
+#: strings.hrc:148
msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
msgid "When losing focus"
msgstr "ትኩረት በሚያጣበት ጊዜ"
-#: strings.hrc:147
+#: strings.hrc:149
msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
msgid "Item status changed"
msgstr "የ እቃው ሁኔታ ተቀይሯል"
-#: strings.hrc:148
+#: strings.hrc:150
msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
msgid "Key pressed"
msgstr "ቁልፍ ተጭነዋል"
-#: strings.hrc:149
+#: strings.hrc:151
msgctxt "RID_SVXSTR_EVENT_KEYUP"
msgid "Key released"
msgstr "ቁልፍ ለቀዋል"
-#: strings.hrc:150
+#: strings.hrc:152
msgctxt "RID_SVXSTR_EVENT_LOADED"
msgid "When loading"
msgstr "በመጫን ላይ እንዳለ"
-#: strings.hrc:151
+#: strings.hrc:153
msgctxt "RID_SVXSTR_EVENT_RELOADING"
msgid "Before reloading"
msgstr "እንደገና ከ መጫኑ በፊት"
-#: strings.hrc:152
+#: strings.hrc:154
msgctxt "RID_SVXSTR_EVENT_RELOADED"
msgid "When reloading"
msgstr "እንደገና በሚጫን ጊዜ"
-#: strings.hrc:153
+#: strings.hrc:155
msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
msgid "Mouse moved while key pressed"
msgstr "አይጡ ተንቀሳቅሷል ቁልፉን በመጫን ላይ እንዳሉ"
-#: strings.hrc:154
+#: strings.hrc:156
msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
msgid "Mouse inside"
msgstr "አይጥ ውስጥ"
-#: strings.hrc:155
+#: strings.hrc:157
msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
msgid "Mouse outside"
msgstr "አይጥ ውጪ"
-#: strings.hrc:156
+#: strings.hrc:158
msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
msgid "Mouse moved"
msgstr "አይጡ ተንቀሳቅሷል"
-#: strings.hrc:157
+#: strings.hrc:159
msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
msgid "Mouse button pressed"
msgstr "የአይጥ ቁልፍ ተጭነዋል"
-#: strings.hrc:158
+#: strings.hrc:160
msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
msgid "Mouse button released"
msgstr "የአይጥ ቁልፍ ለቅቀዋል"
-#: strings.hrc:159
+#: strings.hrc:161
msgctxt "RID_SVXSTR_EVENT_POSITIONING"
msgid "Before record change"
msgstr "መዝገቡ ከመቀየሩ በፊት"
-#: strings.hrc:160
+#: strings.hrc:162
msgctxt "RID_SVXSTR_EVENT_POSITIONED"
msgid "After record change"
msgstr "መዝገቡ ከተቀየረ በኋላ"
-#: strings.hrc:161
+#: strings.hrc:163
msgctxt "RID_SVXSTR_EVENT_RESETTED"
msgid "After resetting"
msgstr "እንደ ነበር ከ ተመለሰ በኋላ"
-#: strings.hrc:162
+#: strings.hrc:164
msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
msgid "Prior to reset"
msgstr "እንደ ነበር ከ መመለሱ በፊት"
-#: strings.hrc:163
+#: strings.hrc:165
msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
msgid "Approve action"
msgstr "ተግባሩን ማጽደቂያ"
-#: strings.hrc:164
+#: strings.hrc:166
msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
msgid "Before submitting"
msgstr "ከማስገባትዎ በፊት"
-#: strings.hrc:165
+#: strings.hrc:167
msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
msgid "Text modified"
msgstr "ጽሑፉ ተሻሽሏል"
-#: strings.hrc:166
+#: strings.hrc:168
msgctxt "RID_SVXSTR_EVENT_UNLOADING"
msgid "Before unloading"
msgstr "ከ መውረዱ በፊት"
-#: strings.hrc:167
+#: strings.hrc:169
msgctxt "RID_SVXSTR_EVENT_UNLOADED"
msgid "When unloading"
msgstr "በሚወርድበት ጊዜ"
-#: strings.hrc:168
+#: strings.hrc:170
msgctxt "RID_SVXSTR_EVENT_CHANGED"
msgid "Changed"
msgstr "ተቀይሯል"
-#: strings.hrc:169
+#: strings.hrc:171
msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
msgid "Document created"
msgstr "ሰነዱ ተፈጥሯል"
-#: strings.hrc:170
+#: strings.hrc:172
msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
msgid "Document loading finished"
msgstr "ሰነዱ መጫኑን ጨርሷል"
-#: strings.hrc:171
+#: strings.hrc:173
msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
msgid "Saving of document failed"
msgstr "ሰነዱን ማስቀመጥ አልተቻለም"
-#: strings.hrc:172
+#: strings.hrc:174
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
msgid "'Save as' has failed"
msgstr "'ማስቀመጥ' አልተቻለም እንደ"
-#: strings.hrc:173
+#: strings.hrc:175
msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
msgid "Storing or exporting copy of document"
msgstr "የሰነዱን ኮፒ በማስቀመጥ ወይም በመላክ ላይ"
-#: strings.hrc:174
+#: strings.hrc:176
msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
msgid "Document copy has been created"
msgstr "የሰነዱ ኮፒ ተፈጥሯል"
-#: strings.hrc:175
+#: strings.hrc:177
msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
msgid "Creating of document copy failed"
msgstr "የሰነዱን ኮፒ መፍጠር አልተቻለም"
-#: strings.hrc:176
+#: strings.hrc:178
msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
msgid "View created"
msgstr "የተፈጠረውን መመልከቻ"
-#: strings.hrc:177
+#: strings.hrc:179
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
msgid "View is going to be closed"
msgstr "መመልከቻው ሊዘጋ ነው"
-#: strings.hrc:178
+#: strings.hrc:180
msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
msgid "View closed"
msgstr "የተዘጋውን መመልከቻ"
-#: strings.hrc:179
+#: strings.hrc:181
msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
msgid "Document title changed"
msgstr "የ ሰነዱ አርእስት ተቀይሯል"
-#: strings.hrc:180
+#: strings.hrc:182
msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
msgid "Selection changed"
msgstr "ምርጫው ተቀይሯል"
-#: strings.hrc:181
+#: strings.hrc:183
msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
msgid "Double click"
msgstr "ሁለት ጊዜ ይጫኑ"
-#: strings.hrc:182
+#: strings.hrc:184
msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
msgid "Right click"
msgstr "በ ቀኝ ይጫኑ"
-#: strings.hrc:183
+#: strings.hrc:185
msgctxt "RID_SVXSTR_EVENT_CALCULATE"
msgid "Formulas calculated"
msgstr "መቀመሪያ ተሰልቷል"
-#: strings.hrc:184
+#: strings.hrc:186
msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
msgid "Content changed"
msgstr "የተቀየሩ ይዞታዎች"
-#: strings.hrc:186
+#: strings.hrc:188
msgctxt "RID_STR_SEARCH_ANYWHERE"
msgid "anywhere in the field"
msgstr "በ ሜዳው ማናቸውም ቦታ"
-#: strings.hrc:187
+#: strings.hrc:189
msgctxt "RID_STR_SEARCH_BEGINNING"
msgid "beginning of field"
msgstr "በ ሜዳው መጀመሪያ"
-#: strings.hrc:188
+#: strings.hrc:190
msgctxt "RID_STR_SEARCH_END"
msgid "end of field"
msgstr "የ ሜዳ መጨረሻ"
-#: strings.hrc:189
+#: strings.hrc:191
msgctxt "RID_STR_SEARCH_WHOLE"
msgid "entire field"
msgstr "በ ሜዳው ሙሉ"
-#: strings.hrc:190
+#: strings.hrc:192
msgctxt "RID_STR_FROM_TOP"
msgid "From top"
msgstr "ከ ላይ"
-#: strings.hrc:191
+#: strings.hrc:193
msgctxt "RID_STR_FROM_BOTTOM"
msgid "From bottom"
msgstr "ከ ታች በኩል"
-#: strings.hrc:192
+#: strings.hrc:194
msgctxt "RID_STR_SEARCH_NORECORD"
msgid "No records corresponding to your data found."
msgstr "ከ እርስዎ ዳታ ጋር የሚመሳሰል ምንም አይነት መዝገብ አልተገኘም"
-#: strings.hrc:193
+#: strings.hrc:195
msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
msgid "An unknown error occurred. The search could not be finished."
msgstr "ያልታወቀ ስህተት ተፈጥሯል: ፍለጋውን መጨረስ አልተቻለም"
-#: strings.hrc:194
+#: strings.hrc:196
msgctxt "RID_STR_OVERFLOW_FORWARD"
msgid "Overflow, search continued at the beginning"
msgstr "ሞልቶ ፈሰሰ: መፈለጊያ ከ መጀመሪያው ጀምሮ ቀጥሏል"
-#: strings.hrc:195
+#: strings.hrc:197
msgctxt "RID_STR_OVERFLOW_BACKWARD"
msgid "Overflow, search continued at the end"
msgstr "ሞልቶ ፈሰሰ: መፈለጊያ እስከ መጨረሻው ድረስ ቀጥሏል"
-#: strings.hrc:196
+#: strings.hrc:198
msgctxt "RID_STR_SEARCH_COUNTING"
msgid "counting records"
msgstr "መዝገቦችን በመቁጠር ላይ"
-#: strings.hrc:198
+#: strings.hrc:200
msgctxt "RID_SVXSTR_GALLERY_NOFILES"
msgid "<No Files>"
msgstr "<ፋይሎች የሉም>"
-#: strings.hrc:199
+#: strings.hrc:201
msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
msgid "Object;Objects"
msgstr "እቃ ;እቃዎች"
-#: strings.hrc:200
+#: strings.hrc:202
msgctxt "RID_SVXSTR_GALLERY_READONLY"
msgid "(read-only)"
msgstr "(ለንባብ ብቻ)"
-#: strings.hrc:201
+#: strings.hrc:203
msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
msgid "<All Files>"
msgstr "<ሁሉም ፋይሎች>"
-#: strings.hrc:202
+#: strings.hrc:204
msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
msgid "This ID already exists..."
msgstr "ይህ መለያ ቀደም ሲል ነበር ..."
-#: strings.hrc:204
+#: strings.hrc:206
msgctxt "RID_MULTIPATH_DBL_ERR"
msgid "The path %1 already exists."
msgstr "መንገዱ %1 ቀደም ሲል ነበር"
-#: strings.hrc:205
+#: strings.hrc:207
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
msgid "Select Archives"
msgstr "ማህደሮች ይምረጡ"
-#: strings.hrc:206
+#: strings.hrc:208
msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
msgid "Archives"
msgstr "ማህደሮች"
-#: strings.hrc:207
+#: strings.hrc:209
msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
msgid "The file %1 already exists."
msgstr "ፋይሉ %1 ቀደም ሲል ነበር"
-#: strings.hrc:208
+#: strings.hrc:210
msgctxt "RID_SVXSTR_ADD_IMAGE"
msgid "Add Image"
msgstr "ምስል መጨመሪያ"
-#: strings.hrc:210
+#: 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 "የ ማረጋገጫው መግቢያ ቃል ከ መግቢያ ቃሉ ጋር አይመሳሰልም: የ መግቢያ ቃል እንደገና ያሰናዱ በሁለቱም ሳጥኖች ውስጥ አንድ አይነት የመግቢያ ቃል ያስገቡ"
-#: strings.hrc:211
+#: strings.hrc:213
msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr "የ ማረጋገጫው መግቢያ ቃል ከ ዋናው መግቢያ ቃሉ ጋር አይመሳሰልም: የ መግቢያ ቃል እንደገና ያሰናዱ"
-#: strings.hrc:212
+#: 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 "እባክዎን የ መግቢያ ቃል ያስገቡ ለ መክፈት ወይንም ለ ማሻሽል ወይንም ለ መቀጠል ለ ንባብ ብቻ ምርጫዎችን ይመርምሩ"
-#: strings.hrc:213
+#: 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 "የ መግቢያ ቃል ያሰናዱ በሁለቱም ሳጥኖች ውስጥ አንድ አይነት የመግቢያ ቃል ያስገቡ"
-#: strings.hrc:215
+#: strings.hrc:217
msgctxt "STR_AUTOLINK"
msgid "Automatic"
msgstr "ራሱ በራሱ"
-#: strings.hrc:216
+#: strings.hrc:218
msgctxt "STR_MANUALLINK"
msgid "Manual"
msgstr "በእጅ"
-#: strings.hrc:217
+#: strings.hrc:219
msgctxt "STR_BROKENLINK"
msgid "Not available"
msgstr "ዝግጁ አይደለም"
-#: strings.hrc:218
+#: strings.hrc:220
msgctxt "STR_CLOSELINKMSG"
msgid "Are you sure you want to remove the selected link?"
msgstr "በእርግጥ የተመረጠውን አገናኝ ማስወገድ ይፈልጋሉ?"
-#: strings.hrc:219
+#: strings.hrc:221
msgctxt "STR_CLOSELINKMSG_MULTI"
msgid "Are you sure you want to remove the selected link?"
msgstr "በእርግጥ የተመረጠውን አገናኝ ማስወገድ ይፈልጋሉ?"
-#: strings.hrc:220
+#: strings.hrc:222
msgctxt "STR_WAITINGLINK"
msgid "Waiting"
msgstr "በመጠበቅ ላይ"
-#: strings.hrc:222
+#: strings.hrc:224
msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
msgid "Save Screenshot As..."
msgstr "ማስቀመጫ የ መመልከቻ ፎቶ እንደ..."
#. $(ROW) can be a number or the caption of the row in quotes
-#: strings.hrc:225
+#: strings.hrc:227
msgctxt "RID_SVXSTR_DIAGRAM_ROW"
msgid "Data Series $(ROW)"
msgstr "ተከታታይ ዳታ $(ROW)"
-#: strings.hrc:227
+#: strings.hrc:229
msgctxt "RID_SVXSTR_DRIVER_NAME"
msgid "Driver name"
msgstr "የ አካሉ ስም"
-#: strings.hrc:228
+#: strings.hrc:230
msgctxt "RID_SVXSTR_POOLED_FLAG"
msgid "Pool"
msgstr "Pool"
-#: strings.hrc:229
+#: strings.hrc:231
msgctxt "RID_SVXSTR_POOL_TIMEOUT"
msgid "Timeout"
msgstr "እረፍት"
-#: strings.hrc:230
+#: strings.hrc:232
msgctxt "RID_SVXSTR_YES"
msgid "Yes"
msgstr "አዎ"
-#: strings.hrc:231
+#: strings.hrc:233
msgctxt "RID_SVXSTR_NO"
msgid "No"
msgstr "አይ"
-#: strings.hrc:233
+#: strings.hrc:235
msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
msgid ""
"The file\n"
@@ -1015,7 +1025,7 @@ msgstr ""
"$file$\n"
"አልተገኘም"
-#: strings.hrc:234
+#: strings.hrc:236
msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
msgid ""
"The file\n"
@@ -1026,7 +1036,7 @@ msgstr ""
"$file$\n"
"በአካባቢ የፋይል ስርአት ውስጥ አልተገኘም"
-#: strings.hrc:235
+#: strings.hrc:237
msgctxt "STR_NAME_CONFLICT"
msgid ""
"The name '$file$' is already used for another database.\n"
@@ -1035,153 +1045,153 @@ msgstr ""
"ይህን ስም '$file$' ቀደም ሲል ተጠቅመውበታል ለ ሌላ ዳታቤዝ\n"
"እባክዎን የተለየ ስም ይምረጡ"
-#: strings.hrc:236
+#: strings.hrc:238
msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
msgid "Do you want to delete the entry?"
msgstr "ማስገቢያውን ማጥፋት ይፈልጋሉ?"
-#: strings.hrc:238
+#: strings.hrc:240
msgctxt "RID_SVXSTR_DELQUERY"
msgid "Do you want to delete the following object?"
msgstr "የሚቀጥለውን እቃ ማጥፋት ይፈልጋሉ?"
-#: strings.hrc:239
+#: strings.hrc:241
msgctxt "RID_SVXSTR_DELQUERY_TITLE"
msgid "Confirm Deletion"
msgstr "ማጥፋቱን ያረጋግጡ"
-#: strings.hrc:240
+#: strings.hrc:242
msgctxt "RID_SVXSTR_DELFAILED"
msgid "The selected object could not be deleted."
msgstr "የተመረጠውን እቃ ማጥፋት አይቻልም"
-#: strings.hrc:241
+#: strings.hrc:243
msgctxt "RID_SVXSTR_DELFAILED_TITLE"
msgid "Error Deleting Object"
msgstr "ስህተት እቃውን በማጥፋት ላይ"
-#: strings.hrc:242
+#: strings.hrc:244
msgctxt "RID_SVXSTR_CREATEFAILED"
msgid "The object could not be created."
msgstr "እቃውን መፍጠር አልተቻለም"
-#: strings.hrc:243
+#: strings.hrc:245
msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
msgid " Object with the same name already exists."
msgstr " እቃው በዚህ ስም ቀደም ሲል ነበር"
-#: strings.hrc:244
+#: strings.hrc:246
msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
msgid "Error Creating Object"
msgstr "ስህተት እቃውን በመፍጠር ላይ"
-#: strings.hrc:245
+#: strings.hrc:247
msgctxt "RID_SVXSTR_RENAMEFAILED"
msgid "The object could not be renamed."
msgstr "እቃውን እንደገና መሰየም አይቻልም"
-#: strings.hrc:246
+#: strings.hrc:248
msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
msgid "Error Renaming Object"
msgstr "ስህተት እቃውን እንደገና በ መሰየም ላይ"
-#: strings.hrc:247
+#: strings.hrc:249
msgctxt "RID_SVXSTR_ERROR_TITLE"
msgid "%PRODUCTNAME Error"
msgstr "%PRODUCTNAME ስህተት"
-#: strings.hrc:248
+#: strings.hrc:250
#, c-format
msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr "የ ጽሁፍ ቋንቋው %LANGUAGENAME የ ተደገፈ አይደለም"
-#: strings.hrc:249
+#: strings.hrc:251
#, c-format
msgctxt "RID_SVXSTR_ERROR_RUNNING"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "ስህተት ተፈጥሯል በማስኬድ ላይ እንዳለ %LANGUAGENAME script %SCRIPTNAME."
-#: strings.hrc:250
+#: strings.hrc:252
#, c-format
msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "የተለየ ሁኔታ ተፈጥሯል በማስኬድ ላይ እንዳለ %LANGUAGENAME script %SCRIPTNAME."
-#: strings.hrc:251
+#: strings.hrc:253
msgctxt "RID_SVXSTR_ERROR_AT_LINE"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "ስህተት ተፈጥሯል በማስኬድ ላይ እንዳለ %LANGUAGENAME script %SCRIPTNAME በመስመር ላይ: %LINENUMBER."
-#: strings.hrc:252
+#: strings.hrc:254
msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "የተለየ ሁኔታ ተፈጥሯል በማስኬድ ላይ እንዳለ %LANGUAGENAME ጽሁፍ %SCRIPTNAME በ መስመር ላይ: %LINENUMBER."
-#: strings.hrc:253
+#: strings.hrc:255
#, c-format
msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "የ ጽሁፍ ክፈፍ ስራ ስህተት ተፈጥሯል %LANGUAGENAME ጽሁፍ %SCRIPTNAME."
-#: strings.hrc:254
+#: strings.hrc:256
msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
msgid "Type:"
msgstr "አይነት:"
-#: strings.hrc:255
+#: strings.hrc:257
msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
msgid "Message:"
msgstr "መልእክት:"
-#: strings.hrc:257
+#: strings.hrc:259
msgctxt "RID_SVXSTR_TYPE"
msgid "Registered name"
msgstr "የተመዘገበ ስም"
-#: strings.hrc:258
+#: strings.hrc:260
msgctxt "RID_SVXSTR_PATH"
msgid "Database file"
msgstr "የ ዳታቤዝ ፋይል"
#. abbreviation for "[Load]"
-#: strings.hrc:261
+#: strings.hrc:263
msgctxt "RID_SVXSTR_HEADER1"
msgid "[L]"
msgstr "[L]"
#. abbreviation for "[Save]"
-#: strings.hrc:263
+#: strings.hrc:265
msgctxt "RID_SVXSTR_HEADER2"
msgid "[S]"
msgstr "[S]"
-#: strings.hrc:264
+#: strings.hrc:266
msgctxt "RID_SVXSTR_CHG_MATH"
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr "MathType to %PRODUCTNAME ሂሳብ ወይንም ወደ ነበረበት መመለሻ"
-#: strings.hrc:265
+#: strings.hrc:267
msgctxt "RID_SVXSTR_CHG_WRITER"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr "WinWord to %PRODUCTNAME መጻፊያ ወይንም ወደ ነበረበት መመለሻ"
-#: strings.hrc:266
+#: strings.hrc:268
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr "Excel to %PRODUCTNAME ሰንጠረዥ ወይንም ወደ ነበረበት መመለሻ"
-#: strings.hrc:267
+#: strings.hrc:269
msgctxt "RID_SVXSTR_CHG_IMPRESS"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr "PowerPoint to %PRODUCTNAME ማስደነቂያ ወይንም ወደ ነበረበት መመለሻ"
-#: strings.hrc:268
+#: strings.hrc:270
msgctxt "RID_SVXSTR_CHG_SMARTART"
msgid "SmartArt to %PRODUCTNAME shapes or reverse"
msgstr "SmartArt to %PRODUCTNAME ቅርጾች ወይንም ወደ ነበረበት መመለሻ"
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
msgid ""
"The specified name already exists.\n"
@@ -1190,112 +1200,124 @@ msgstr ""
"የመረጡት ስም ቀደም ብሎ ነበር\n"
"እባክዎን አዲስ ስም ያስገቡ"
-#: strings.hrc:271
+#. To translators:
+#. Please, try to find a similar *short* translation to avoid
+#. to get narrow "New" field in the "Edit custom dictionary" window,
+#. for example, "Model word for optional affixation and compounding"
+#. is too long, but "Grammar By" is a good name here (help page of
+#. the window contains the details).
+#. "Grammar By" text entry box of the "Edit custom dictionary" window
+#. contains an optional model word associated to the new user word,
+#. allowing its affixation or compounding during spell checking.
+#. For example, adding "Grammar By" word "fund" to the new user
+#. word "crowdfund", the spell checker will recogize "crowdfund"
+#. with suffixes of "fund": "crowdfunding", "crowdfund's" etc.
+#: strings.hrc:287
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
msgstr "~ሰዋሰው በ"
-#: strings.hrc:272
+#: strings.hrc:288
msgctxt "STR_MODIFY"
msgid "~Replace"
msgstr "~መቀየሪያ"
-#: strings.hrc:273
+#: strings.hrc:289
msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
msgid "Do you want to change the '%1' dictionary language?"
msgstr "መቀየር ይፈልጋሉ '%1' የቋንቋውን መዝገበ ቃላት"
-#: strings.hrc:275
+#: strings.hrc:291
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
msgid "Do you really want to delete the color scheme?"
msgstr "በእርግጥ የቀለም እቅዱን ማጥፋት ይፈልጋሉ?"
-#: strings.hrc:276
+#: strings.hrc:292
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
msgid "Color Scheme Deletion"
msgstr "የ ቀለም እቅድ ማጥፊያ"
-#: strings.hrc:277
+#: strings.hrc:293
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
msgid "Save scheme"
msgstr "እቅዱን ማስቀመጫ"
-#: strings.hrc:278
+#: strings.hrc:294
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
msgid "Name of color scheme"
msgstr "የ ቀለም ገጽታ ስም"
-#: strings.hrc:280
+#: strings.hrc:296
msgctxt "RID_SVXSTR_SPELL"
msgid "Spelling"
msgstr "ፊደል ማረሚያ"
-#: strings.hrc:281
+#: strings.hrc:297
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
msgstr "ጭረት"
-#: strings.hrc:282
+#: strings.hrc:298
msgctxt "RID_SVXSTR_THES"
msgid "Thesaurus"
msgstr "ተመሳሳይ"
-#: strings.hrc:283
+#: strings.hrc:299
msgctxt "RID_SVXSTR_GRAMMAR"
msgid "Grammar"
msgstr "ሰዋሰው"
-#: strings.hrc:284
+#: strings.hrc:300
msgctxt "RID_SVXSTR_CAPITAL_WORDS"
msgid "Check uppercase words"
msgstr "መመርመሪያ በ ላይኛው ጉዳይ ፊደል የ ተጻፈ ቃላት"
-#: strings.hrc:285
+#: strings.hrc:301
msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
msgid "Check words with numbers "
msgstr "ቃሎች ከ ቁጥር ጋር መመርመሪያ "
-#: strings.hrc:286
+#: strings.hrc:302
msgctxt "RID_SVXSTR_SPELL_SPECIAL"
msgid "Check special regions"
msgstr "መመርመሪያ የ ተለዩ አካባቢዎች"
-#: strings.hrc:287
+#: strings.hrc:303
msgctxt "RID_SVXSTR_SPELL_AUTO"
msgid "Check spelling as you type"
msgstr "ፊደል ማረሚያ በሚጽፉ ጊዜ"
-#: strings.hrc:288
+#: strings.hrc:304
msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
msgid "Check grammar as you type"
msgstr "መመርመሪያ ሰዋሰው በሚጽፉ ጊዜ"
-#: strings.hrc:289
+#: strings.hrc:305
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
msgstr "አነስተኛ ቁጥር ለ ጭረት ባህሪዎች: "
-#: strings.hrc:290
+#: strings.hrc:306
msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
msgid "Characters before line break: "
msgstr "ባህሪው ከ መስመር መጨረሻው በፊት: "
-#: strings.hrc:291
+#: strings.hrc:307
msgctxt "RID_SVXSTR_NUM_POST_BREAK"
msgid "Characters after line break: "
msgstr "ባህሪው ከ መስመር መጨረሻው በኋላ: "
-#: strings.hrc:292
+#: strings.hrc:308
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
msgstr "ጭረት ሳይጠየቅ መፈጸሚያ"
-#: strings.hrc:293
+#: strings.hrc:309
msgctxt "RID_SVXSTR_HYPH_SPECIAL"
msgid "Hyphenate special regions"
msgstr "ጭረት የ ተለዩ አካባቢዎች"
-#: strings.hrc:295
+#: strings.hrc:311
msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
msgid ""
"The folder you selected does not contain a Java runtime environment.\n"
@@ -1304,7 +1326,7 @@ msgstr ""
"እርስዎ የ መረጡት ፎልደር አልያዘም የ Java runtime environment.\n"
"እባክዎን የተለየ ፎልደር ይምረጡ"
-#: strings.hrc:296
+#: strings.hrc:312
msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
msgid ""
"The Java runtime environment you selected is not the required version.\n"
@@ -1313,17 +1335,17 @@ msgstr ""
"የ Java runtime environment እርስዎ የመረጡት የሚያስፈልገው አይነት እትም አይደለም \n"
"እባክዎን የተለየ ፎልደር ይምረጡ"
-#: strings.hrc:297
+#: strings.hrc:313
msgctxt "RID_SVXSTR_OPTIONS_RESTART"
msgid "Please restart %PRODUCTNAME now so the new or modified values can take effect."
msgstr "እባክዎን እንደገና ያስጀምሩ %PRODUCTNAME አሁን አዲሱ ወይንም የ ተሻሻለው ዋጋ በ ስራ ላይ እንዲውል"
-#: strings.hrc:298
+#: strings.hrc:314
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
msgstr "ደንብ ማረሚያ"
-#: strings.hrc:300
+#: strings.hrc:316
msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
msgid ""
"Invalid value!\n"
@@ -1334,68 +1356,68 @@ msgstr ""
"\n"
"ከፍተኛው ዋጋ ለ port number is 65535."
-#: strings.hrc:302
+#: strings.hrc:318
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr "ከ ግራ-ወደ-ቀኝ (LTR)"
-#: strings.hrc:303
+#: strings.hrc:319
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr "ከ ቀኝ-ወደ-ግራ (RTL)"
-#: strings.hrc:304
+#: strings.hrc:320
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr "ከፍተኛ የእቃ ማሰናጃዎችን መጠቀሚያ"
#. page direction
-#: strings.hrc:306
+#: strings.hrc:322
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr "ከ ግራ-ወደ-ቀኝ (በ አግድም)"
-#: strings.hrc:307
+#: strings.hrc:323
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr "ከ ቀኝ-ወደ-ግራ (በ አግድም)"
-#: strings.hrc:308
+#: strings.hrc:324
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr "ከ ቀኝ-ወደ-ግራ (በ ቁመት)"
-#: strings.hrc:309
+#: strings.hrc:325
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "ከ ግራ-ወደ-ቀኝ (በ ቁመት)"
-#: strings.hrc:311
+#: strings.hrc:327
msgctxt "RID_SVXSTR_DESC_GRADIENT"
msgid "Please enter a name for the gradient:"
msgstr "እባክዎን ለአዲሱ gradient ስም ያስገቡ:"
-#: strings.hrc:312
+#: strings.hrc:328
msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
msgid "Please enter a name for the bitmap:"
msgstr "እባክዎን ለአዲሱ bitmap ስም ያስገቡ:"
-#: strings.hrc:313
+#: strings.hrc:329
msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
msgid "Please enter a name for the external bitmap:"
msgstr "እባክዎን ስም ያስገቡ ለውጪው bitmap:"
-#: strings.hrc:314
+#: strings.hrc:330
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
msgstr "እባክዎን ለ አዲሱ ንድፍ ስም ያስገቡ:"
-#: strings.hrc:315
+#: strings.hrc:331
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
msgid "Please enter a name for the line style:"
msgstr "እባክዎን ለ አዲሱ መስመር ዘዴ ስም ያስገቡ:"
-#: strings.hrc:316
+#: strings.hrc:332
msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
msgid ""
"The line style was modified without saving. \n"
@@ -1404,297 +1426,297 @@ msgstr ""
"የ መስመር ዘዴ ተሻሽሏል ነገር ግን አልተቀመጠም \n"
"የ ተመረጠውን የ መስመር ዘዴ ያሻሽሉ ወይንም አዲስ የ መስመር ዘዴ ይጨምሩ"
-#: strings.hrc:317
+#: strings.hrc:333
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
msgstr "እባክዎን ለ በርካታ መስመር ስም ያስገቡ:"
-#: strings.hrc:318
+#: strings.hrc:334
msgctxt "RID_SVXSTR_CHANGE"
msgid "Modify"
msgstr "ማሻሻያ"
-#: strings.hrc:319
+#: strings.hrc:335
msgctxt "RID_SVXSTR_ADD"
msgid "Add"
msgstr "መጨመሪያ"
-#: strings.hrc:320
+#: strings.hrc:336
msgctxt "RID_SVXSTR_DESC_COLOR"
msgid "Please enter a name for the new color:"
msgstr "እባክዎን ለ አዲሱ ቀለም ስም ያስገቡ:"
-#: strings.hrc:321
+#: strings.hrc:337
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
-#: strings.hrc:322
+#: strings.hrc:338
msgctxt "RID_SVXSTR_DESC_LINEEND"
msgid "Please enter a name for the new arrowhead:"
msgstr "እባክዎን ለ አዲሱ ቀስት ራስጌ ስም ያስገቡ:"
-#: strings.hrc:323
+#: strings.hrc:339
msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
msgid "No %1"
msgstr "አይ %1"
-#: strings.hrc:324
+#: strings.hrc:340
msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
msgid "Family:"
msgstr "ቤተሰብ:"
-#: strings.hrc:325
+#: strings.hrc:341
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
msgstr "ፊደል:"
-#: strings.hrc:326
+#: strings.hrc:342
msgctxt "RID_SVXSTR_CHARNAME_STYLE"
msgid "Style:"
msgstr "ዘዴ:"
-#: strings.hrc:327
+#: strings.hrc:343
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
msgstr "Typeface:"
-#: strings.hrc:328
+#: strings.hrc:344
msgctxt "RID_SVXSTR_CHARNAME_HIGHLIGHTING"
msgid "Highlight Color"
msgstr "ማድመቂያ ቀለም"
-#: strings.hrc:329
+#: strings.hrc:345
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
msgstr "ሰንጠረዥ መቀየሪያ ይጠቀሙ"
-#: strings.hrc:330
+#: strings.hrc:346
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
msgstr "Words with TWo INitial CApitals"
-#: strings.hrc:331
+#: strings.hrc:347
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
msgstr "ሁሉንም አረፍተ ነገር በ አቢይ ፊደል መጀመሪያውን መጻፊያ"
-#: strings.hrc:332
+#: strings.hrc:348
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr "ራሱ በራሱ *ማድመቂያ*: /ማዝመሚያ/: -በላዩ ላይ መሰረዣ- እና _ከ ስሩ ማስመሪያ_"
-#: strings.hrc:333
+#: strings.hrc:349
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
msgstr "ድርብ ክፍተት መተው"
-#: strings.hrc:334
+#: strings.hrc:350
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
msgstr "URL Recognition"
-#: strings.hrc:335
+#: strings.hrc:351
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
msgstr "ዳሾችን መቀየሪያ"
-#: strings.hrc:336
+#: strings.hrc:352
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
msgstr "የ cAPS LOCK key በስህተት ሲጠቀሙ ማረሚያ"
-#: strings.hrc:337
+#: strings.hrc:353
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
msgstr "መጨመሪያ ምንም-ያልተሰበረ ክፍተት ከ ስርአተ ነጥብ በፊት ምልክት ማድረጊያ ለ ፈረንሳይኛ ጽሁፍ"
-#: strings.hrc:338
+#: strings.hrc:354
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr "መደበኛ የ ቁጥር መድረሻ አቀራረብ (1st -> 1^st)"
-#: strings.hrc:339
+#: strings.hrc:355
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
msgid "Remove blank paragraphs"
msgstr "ባዶ አንቀጾችን ማስወገጃ"
-#: strings.hrc:340
+#: strings.hrc:356
msgctxt "RID_SVXSTR_USER_STYLE"
msgid "Replace Custom Styles"
msgstr "ዘዴዎች ማስተካከያ መቀየሪያ"
-#: strings.hrc:341
+#: strings.hrc:357
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: "
msgstr "ነጥቦችን መቀየሪያ በ: "
-#: strings.hrc:342
+#: strings.hrc:358
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than"
msgstr "ነጠላ መስመር አንቀጾችን መቀላቀያ እርዝመቱ ከዚህ በላይ ከሆነ"
-#: strings.hrc:343
+#: strings.hrc:359
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: "
msgstr "የ ነጥቦች እና ቁጥር ዝርዝር: የ ነጥቦች ምልክት: "
-#: strings.hrc:344
+#: strings.hrc:360
msgctxt "RID_SVXSTR_BORDER"
msgid "Apply border"
msgstr "ድንበር መፈጸሚያ"
-#: strings.hrc:345
+#: strings.hrc:361
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
msgstr "ሰንጠረዥ መፍጠሪያ"
-#: strings.hrc:346
+#: strings.hrc:362
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
msgstr "ዘዴዎች መፈጸሚያ"
-#: strings.hrc:347
+#: strings.hrc:363
msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr "በ አንቀጾች መጀመሪያ እና መጨረሻ ክፍተቶችን እና tabs ን ማጥፊያ"
-#: strings.hrc:348
+#: strings.hrc:364
msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
msgid "Delete spaces and tabs at end and start of line"
msgstr "በ መስመር መጀመሪያ እና መጨረሻ ክፍተቶችን እና tabs ን ማጥፊያ"
-#: strings.hrc:349
+#: strings.hrc:365
msgctxt "RID_SVXSTR_CONNECTOR"
msgid "Connector"
msgstr "አገናኝ"
-#: strings.hrc:350
+#: strings.hrc:366
msgctxt "RID_SVXSTR_DIMENSION_LINE"
msgid "Dimension line"
msgstr "የ Dimension መስመር"
-#: strings.hrc:351
+#: strings.hrc:367
msgctxt "RID_SVXSTR_LOAD_ERROR"
msgid "The selected module could not be loaded."
msgstr "የተመረጠውን ክፍል መጫን አልተቻለም"
-#: strings.hrc:352
+#: strings.hrc:368
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
msgstr "የ ጥቅስ መጀመሪያ"
-#: strings.hrc:353
+#: strings.hrc:369
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "የ ጥቅስ መጨረሻ"
-#: strings.hrc:355
+#: strings.hrc:371
msgctxt "RID_SVXSTR_SELECTEDPERSONA"
msgid "Selected Theme: "
msgstr "ገጽታ ይምረጡ: "
-#: strings.hrc:356
+#: strings.hrc:372
msgctxt "RID_SVXSTR_SEARCHING"
msgid "Searching, please wait..."
msgstr "በ መፈለግ ላይ: እባክዎን ይቆዩ..."
-#: strings.hrc:357
+#: strings.hrc:373
msgctxt "RID_SVXSTR_SEARCHERROR"
msgid "Cannot open %1, please try again later."
msgstr "መክፈት አልተቻለም %1, እባክዎን ትንሽ ቆይተው ይሞክሩ"
-#: strings.hrc:358
+#: strings.hrc:374
msgctxt "RID_SVXSTR_NORESULTS"
msgid "No results found."
msgstr "ምንም ውጤት አልተገኘም"
-#: strings.hrc:359
+#: strings.hrc:375
msgctxt "RID_SVXSTR_APPLYPERSONA"
msgid "Applying Theme..."
msgstr "ገጽታውን በመፈጸም ላይ..."
-#: strings.hrc:361
+#: strings.hrc:377
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "ድንበሮች አታሰናዳ"
-#: strings.hrc:362
+#: strings.hrc:378
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "የውጪ ድንበሮችን ብቻ ማሰናጃ"
-#: strings.hrc:363
+#: strings.hrc:379
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "የ ውጪ ድንበሮች እና የ አግድም መስመሮች ማሰናጃ"
-#: strings.hrc:364
+#: strings.hrc:380
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "የውጪ ድንበሮች እና የውስጥ መስመሮች በሙሉ ማሰናጃ"
-#: strings.hrc:365
+#: strings.hrc:381
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "የውስጥ መስመሮች ሳይቀየሩ የውጪ ድንበሮችን ማሰናጃ"
-#: strings.hrc:366
+#: strings.hrc:382
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "የአግድም መስመሮች ብቻ ማሰናጃ"
-#: strings.hrc:367
+#: strings.hrc:383
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "አራቱንም ድንበሮች በሙሉ ማሰናጃ"
-#: strings.hrc:368
+#: strings.hrc:384
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "የ ግራ እና የ ቀኝ ድንበሮችን ብቻ ማሰናጃ"
-#: strings.hrc:369
+#: strings.hrc:385
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "የ ላይ እና የ ታች ድንበሮች ብቻ ማሰናጃ"
-#: strings.hrc:370
+#: strings.hrc:386
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "የ ግራ ድንበር ብቻ ማሰናጃ"
-#: strings.hrc:371
+#: strings.hrc:387
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "የ ላይ እና የ ታች ድንበሮችን እና ሁሉንም የ ውስጥ መስመሮች ማሰናጃ"
-#: strings.hrc:372
+#: strings.hrc:388
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "የ ግራ እና የ ቀኝ ድንበሮችን እና ሁሉንም የውስጥ መስመሮችን ማሰናጃ"
-#: strings.hrc:373
+#: strings.hrc:389
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "ጥላ የለም"
-#: strings.hrc:374
+#: strings.hrc:390
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "ከ ታች በ ቀኝ በኩል ጥላ ማጥላት"
-#: strings.hrc:375
+#: strings.hrc:391
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "ከ ላይ በ ቀኝ በኩል ጥላ ማጥላት"
-#: strings.hrc:376
+#: strings.hrc:392
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "ከ ታች በ ግራ በኩል ጥላ ማጥላት"
-#: strings.hrc:377
+#: strings.hrc:393
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "ከ ላይ በ ግራ በኩል ጥላ ማጥላት"
@@ -8603,7 +8625,7 @@ msgstr "ስልክ የ (ቤት/_ስራ):"
#: optuserpage.ui:123
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
-msgstr ""
+msgstr "የ ቤት ስልክ ቁጥር"
#: optuserpage.ui:137
msgctxt "optuserpage|faxft"
@@ -8618,57 +8640,57 @@ msgstr "የ መጀመሪያ ስም"
#: optuserpage.ui:178
msgctxt "lastname-atkobject"
msgid "Last name"
-msgstr ""
+msgstr "የ አባት ስም"
#: optuserpage.ui:196
msgctxt "shortname-atkobject"
msgid "Initials"
-msgstr ""
+msgstr "መነሻዎች"
#: optuserpage.ui:225
msgctxt "city-atkobject"
msgid "City"
-msgstr ""
+msgstr "ከተማ"
#: optuserpage.ui:243
msgctxt "state-atkobject"
msgid "State"
-msgstr ""
+msgstr "አገር"
#: optuserpage.ui:261
msgctxt "zip-atkobject"
msgid "Zip code"
-msgstr ""
+msgstr "ፖሳቁ"
#: optuserpage.ui:291
msgctxt "title-atkobject"
msgid "Title"
-msgstr ""
+msgstr "አርእስት"
#: optuserpage.ui:309
msgctxt "position-atkobject"
msgid "Position"
-msgstr ""
+msgstr "ቦታ"
#: optuserpage.ui:338
msgctxt "home-atkobject"
msgid "Home telephone number"
-msgstr ""
+msgstr "የ ቤት ስልክ ቁጥር"
#: optuserpage.ui:356
msgctxt "work-atkobject"
msgid "Work telephone number"
-msgstr ""
+msgstr "የ ስራ ስልክ ቁጥር"
#: optuserpage.ui:386
msgctxt "fax-atkobject"
msgid "FAX number"
-msgstr ""
+msgstr "የ ፋክስ ቁጥር"
#: optuserpage.ui:404
msgctxt "email-atkobject"
msgid "email address"
-msgstr ""
+msgstr "የ ኢሜይል አድራሻ"
#: optuserpage.ui:421
msgctxt "optuserpage|usefordocprop"
@@ -8683,22 +8705,22 @@ msgstr "የ አባት ስም/ስ_ም/የ አባት ስም/መነሻዎች:"
#: optuserpage.ui:461
msgctxt "ruslastname-atkobject"
msgid "Last name"
-msgstr ""
+msgstr "የ አባት ስም"
#: optuserpage.ui:479
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
-msgstr ""
+msgstr "የ አባት ስም"
#: optuserpage.ui:497
msgctxt "russhortname-atkobject"
msgid "Initials"
-msgstr ""
+msgstr "መነሻዎች"
#: optuserpage.ui:515
msgctxt "rusfirstname-atkobject"
msgid "First name"
-msgstr ""
+msgstr "ስም"
#: optuserpage.ui:535
msgctxt "optuserpage|eastnameft"
@@ -8708,17 +8730,17 @@ msgstr "የ አባት ስም/ስ_ም/መነሻዎች:"
#: optuserpage.ui:558
msgctxt "eastlastname-atkobject"
msgid "Last name"
-msgstr ""
+msgstr "የ አባት ስም"
#: optuserpage.ui:576
msgctxt "eastfirstname-atkobject"
msgid "First name"
-msgstr ""
+msgstr "ስም"
#: optuserpage.ui:594
msgctxt "eastshortname-atkobject"
msgid "Initials"
-msgstr ""
+msgstr "መነሻዎች"
#: optuserpage.ui:614
msgctxt "optuserpage|russtreetft"
@@ -8728,12 +8750,12 @@ msgstr "_መንገድ/የ ቤት ቁጥር:"
#: optuserpage.ui:637
msgctxt "russtreet-atkobject"
msgid "Street"
-msgstr ""
+msgstr "መንገድ"
#: optuserpage.ui:655
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
-msgstr ""
+msgstr "የ ቤት ቁጥር"
#: optuserpage.ui:675
msgctxt "optuserpage|icityft"
@@ -8743,12 +8765,12 @@ msgstr "_ፖሳቁ/ከተማ:"
#: optuserpage.ui:698
msgctxt "icity-atkobject"
msgid "City"
-msgstr ""
+msgstr "ከተማ"
#: optuserpage.ui:716
msgctxt "izip-atkobject"
msgid "Zip code"
-msgstr ""
+msgstr "ፖሳቁ"
#: optuserpage.ui:814
msgctxt "optuserpage|label1"
@@ -8758,22 +8780,22 @@ msgstr "አድራሻ"
#: optuserpage.ui:847
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
-msgstr ""
+msgstr "OpenPGP መፈረሚያ ቁልፍ:"
#: optuserpage.ui:860
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
-msgstr ""
+msgstr "OpenPGP መመስጠሪያ ቁልፍ:"
#: optuserpage.ui:889
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
-msgstr ""
+msgstr "ሰነድ በሚመሰጥሩ ጊዜ: ሁል ጊዜ ወደ ራሱ ይመስጥሩ"
#: optuserpage.ui:909
msgctxt "optuserpage|label2"
msgid "Cryptography"
-msgstr ""
+msgstr "ኮድ መስጣሪ/ፈቺ"
#: optviewpage.ui:47
msgctxt "optviewpage|grid3|tooltip_text"
@@ -9212,14 +9234,10 @@ msgstr ""
"እነዚህን ማሰናጃዎች መፈጸም ይፈልጋሉ?"
#: paragalignpage.ui:15
+#: /home/cl/vc/git/libo-core/cui/uiconfig/ui/paragalignpage.ui:19
msgctxt "paragalignpage|liststoreLB_LASTLINE"
-msgid "Default"
-msgstr "ነባር"
-
-#: paragalignpage.ui:19
-msgctxt "paragalignpage|liststoreLB_LASTLINE"
-msgid "Left"
-msgstr "በ ግራ"
+msgid "Start"
+msgstr ""
#: paragalignpage.ui:23
msgctxt "paragalignpage|liststoreLB_LASTLINE"
@@ -10336,22 +10354,22 @@ msgctxt "shadowtabpage|FT_DISTANCE"
msgid "_Distance:"
msgstr "_እርቀት:"
-#: shadowtabpage.ui:157
+#: shadowtabpage.ui:142
msgctxt "shadowtabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "_ግልጽነት:"
-#: shadowtabpage.ui:177
+#: shadowtabpage.ui:162
msgctxt "shadowtabpage|FT_SHADOW_COLOR"
msgid "_Color:"
msgstr "_ቀለም:"
-#: shadowtabpage.ui:220
+#: shadowtabpage.ui:205
msgctxt "shadowtabpage|CTL_COLOR_PREVIEW-atkobject"
msgid "Example"
msgstr "ለምሳሌ"
-#: shadowtabpage.ui:245
+#: shadowtabpage.ui:230
msgctxt "shadowtabpage|label"
msgid "Properties"
msgstr "ባህሪዎች"
diff --git a/source/am/extras/source/autocorr/emoji.po b/source/am/extras/source/autocorr/emoji.po
index ab8ef6bc620..0c8639f85f1 100644
--- a/source/am/extras/source/autocorr/emoji.po
+++ b/source/am/extras/source/autocorr/emoji.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-10-18 13:02+0200\n"
-"PO-Revision-Date: 2017-10-22 19:17+0000\n"
+"PO-Revision-Date: 2017-11-25 16:57+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1508699853.000000\n"
+"X-POOTLE-MTIME: 1511629069.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7772,7 +7772,7 @@ msgctxt ""
"WRENCH\n"
"LngText.text"
msgid "wrench"
-msgstr ""
+msgstr "መፍቻ"
#. 🔨 (U+1F528), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7790,7 +7790,7 @@ msgctxt ""
"NUT_AND_BOLT\n"
"LngText.text"
msgid "nut and bolt"
-msgstr ""
+msgstr "ብሎን እና ማሰሪያው"
#. 🔪 (U+1F52A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8204,7 +8204,7 @@ msgctxt ""
"SMILING_FACE_WITH_HALO\n"
"LngText.text"
msgid "innocent"
-msgstr ""
+msgstr "ንጹህ"
#. 😈 (U+1F608), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8330,7 +8330,7 @@ msgctxt ""
"CONFUSED_FACE\n"
"LngText.text"
msgid "confused"
-msgstr ""
+msgstr "መደናገር"
#. 😖 (U+1F616), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8627,7 +8627,7 @@ msgctxt ""
"FACE_WITHOUT_MOUTH\n"
"LngText.text"
msgid "no mouth"
-msgstr ""
+msgstr "አፍ የሌለው"
#. 😷 (U+1F637), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8636,7 +8636,7 @@ msgctxt ""
"FACE_WITH_MEDICAL_MASK\n"
"LngText.text"
msgid "mask"
-msgstr ""
+msgstr "ማስክ"
#. 😸 (U+1F638), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8798,7 +8798,7 @@ msgctxt ""
"PERSON_FROWNING\n"
"LngText.text"
msgid "person frowning"
-msgstr ""
+msgstr "ያኮረፈ ሰው"
#. 🙎 (U+1F64E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8852,7 +8852,7 @@ msgctxt ""
"RAILWAY_CAR\n"
"LngText.text"
msgid "railway car"
-msgstr ""
+msgstr "የ ባቡር ፉርጎ"
#. 🚄 (U+1F684), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/am/filter/source/config/fragments/filters.po b/source/am/filter/source/config/fragments/filters.po
index e2dffd9ee78..96ae6d4747f 100644
--- a/source/am/filter/source/config/fragments/filters.po
+++ b/source/am/filter/source/config/fragments/filters.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-10-06 12:26+0000\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"PO-Revision-Date: 2017-11-25 16:16+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507292772.000000\n"
+"X-POOTLE-MTIME: 1511626593.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "AbiWord Document"
-msgstr "የአቢወርድ ሰነድ"
+msgstr "AbiWord Document"
#: AppleKeynote.xcu
msgctxt ""
@@ -169,6 +169,15 @@ msgctxt ""
msgid "DXF - AutoCAD Interchange Format"
msgstr "DXF - AutoCAD Interchange Format"
+#: DocBook_File.xcu
+msgctxt ""
+"DocBook_File.xcu\n"
+"DocBook File\n"
+"UIName\n"
+"value.text"
+msgid "DocBook"
+msgstr ""
+
#: DosWord.xcu
msgctxt ""
"DosWord.xcu\n"
@@ -646,6 +655,42 @@ msgctxt ""
msgid "MathType3.x"
msgstr "MathType3.x"
+#: ODG_FlatXML.xcu
+msgctxt ""
+"ODG_FlatXML.xcu\n"
+"OpenDocument Drawing Flat XML\n"
+"UIName\n"
+"value.text"
+msgid "Flat XML ODF Drawing"
+msgstr ""
+
+#: ODP_FlatXML.xcu
+msgctxt ""
+"ODP_FlatXML.xcu\n"
+"OpenDocument Presentation Flat XML\n"
+"UIName\n"
+"value.text"
+msgid "Flat XML ODF Presentation"
+msgstr ""
+
+#: ODS_FlatXML.xcu
+msgctxt ""
+"ODS_FlatXML.xcu\n"
+"OpenDocument Spreadsheet Flat XML\n"
+"UIName\n"
+"value.text"
+msgid "Flat XML ODF Spreadsheet"
+msgstr ""
+
+#: ODT_FlatXML.xcu
+msgctxt ""
+"ODT_FlatXML.xcu\n"
+"OpenDocument Text Flat XML\n"
+"UIName\n"
+"value.text"
+msgid "Flat XML ODF Text Document"
+msgstr ""
+
#: OOXML_Text.xcu
msgctxt ""
"OOXML_Text.xcu\n"
diff --git a/source/am/fpicker/messages.po b/source/am/fpicker/messages.po
index 9dd4ce1ce31..5cdf50151d2 100644
--- a/source/am/fpicker/messages.po
+++ b/source/am/fpicker/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-24 14:55+0100\n"
-"PO-Revision-Date: 2017-10-08 16:49+0000\n"
+"PO-Revision-Date: 2017-11-25 00:01+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507481346.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1511568082.000000\n"
#: strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -30,7 +30,7 @@ msgstr "በ መግቢያ~ቃል ማስቀመጫ"
#: strings.hrc:17
msgctxt "STR_SVT_FILEPICKER_GPGENCRYPT"
msgid "Encrypt with ~GPG key"
-msgstr ""
+msgstr "በ ~GPG ቁልፍ መመስጠሪያ"
#: strings.hrc:18
msgctxt "STR_SVT_FILEPICKER_FILTER_OPTIONS"
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index 54749975d5a..22795f9843c 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
"PO-Revision-Date: 2017-11-19 15:35+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -181,8 +181,8 @@ msgctxt ""
"00000003.xhp\n"
"par_id3153381\n"
"help.text"
-msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph> </caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
-msgstr "እርስዎ ለሚጠቀሙበት ቋንቋ የ ቁጥር: የ ቀኖች እና የ ገንዘብ አቀራረብ መቆጣጠሪያ ማሰናዳት ይችላሉ: በ $[officename] Basic በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME – ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃ - ቋንቋዎች </emph> በ Basic ኮድ አቀራረብ ውስጥ: የ ዴሲማል ነጥብ (<emph>.</emph>) ሁልጊዜ የሚጠቀሙት ለ <emph> ቦታ ያዢ </emph> ነው: ለ ዴሲማል መለያያ በ እርስዎ ቋንቋ እንደ ተገለጸው በ ተመሳሳይ ባህሪ ይቀየራል:"
+msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
+msgstr "እርስዎ ማሰናዳት ይችላሉ ለሚጠቀሙበት ቋንቋ የ ቁጥር: የ ቀኖች እና የ ገንዘብ አቀራረብ መቆጣጠሪያ: በ $[officename] Basic በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME – ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃዎች - ቋንቋዎች </emph> በ Basic ኮድ አቀራረብ ውስጥ: የ ዴሲማል ነጥብ (<emph></emph>) ሁልጊዜ የሚቅሙት ለ <emph> ቦታ ያዢ </emph> ነው: ለ ዴሲማል መለያያ በ እርስዎ ቋንቋ እንደ ተገለጸው በ ተመሳሳይ ባህሪ ይቀየራል:"
#: 00000003.xhp
msgctxt ""
@@ -477,8 +477,8 @@ msgctxt ""
"00000003.xhp\n"
"par_id051920171018124524\n"
"help.text"
-msgid "This function is enabled with the statement <item type=\"literal\">Option VBASupport 1</item> placed before the executable program code in a module."
-msgstr "ይህ ተግባር የሚቻለው ከ አረፍተ ነገር ጋር ነው <item type=\"literal\">ምርጫ የ VBA ድጋፍ 1</item> ከሚፈጸመው ኮድ በፊት በ ክፍሉ ውስጥ"
+msgid "This function or constant is enabled with the statement <item type=\"literal\">Option VBASupport 1</item> placed before the executable program code in a module."
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -517,8 +517,40 @@ msgctxt ""
"00000003.xhp\n"
"par_id06142017015837916\n"
"help.text"
-msgid "<variable id=\"VBA-Financial\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">VBA financial functions</link></variable>"
-msgstr "<variable id=\"VBA-Financial\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">የ VBA የ ገንዘብ ተግባር </link></variable>"
+msgid "<variable id=\"VBA-Financial\"><link href=\"text/sbasic/shared/special_vba_func.xhp#VBAFinancial\">VBA financial functions</link></variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id06142017016837917\n"
+"help.text"
+msgid "<variable id=\"VBATimeAndDate\"><link href=\"text/sbasic/shared/special_vba_func.xhp#VBADateTime\">VBA Time and Date functions</link></variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id06142017016837918\n"
+"help.text"
+msgid "<variable id=\"VBAIO\"><link href=\"text/sbasic/shared/special_vba_func.xhp#VBAIO\">VBA I/O functions</link></variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id06142017016837919\n"
+"help.text"
+msgid "<variable id=\"VBAMath\"><link href=\"text/sbasic/shared/special_vba_func.xhp#VBAMath\">VBA Mathematical functions</link></variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id06142017016837920\n"
+"help.text"
+msgid "<variable id=\"VBAObject\"><link href=\"text/sbasic/shared/special_vba_func.xhp#VBAObject\">VBA Object functions</link></variable>"
+msgstr ""
#: 00000003.xhp
msgctxt ""
@@ -15045,8 +15077,8 @@ msgctxt ""
"03040000.xhp\n"
"bm_id051720170831387233\n"
"help.text"
-msgid "<bookmark_value>Pi;Basic constant</bookmark_value> <bookmark_value>Null;Basic constant</bookmark_value> <bookmark_value>Empty;Basic constant</bookmark_value> <bookmark_value>Nothing;Basic constant</bookmark_value> <bookmark_value>Basic constant;Nothing</bookmark_value> <bookmark_value>Basic constant;Null</bookmark_value> <bookmark_value>Basic constant;Empty</bookmark_value> <bookmark_value>Basic constant;Pi</bookmark_value> <bookmark_value>Basic constant;False</bookmark_value> <bookmark_value>Basic constant;True</bookmark_value>"
-msgstr "<bookmark_value>ፓይ: መሰረታዊ መደበኛ</bookmark_value> <bookmark_value>ባዶ: መሰረታዊ መደበኛ</bookmark_value> <bookmark_value>ባዶ: መሰረታዊ መደበኛ</bookmark_value> <bookmark_value>ምንም: መሰረታዊ መደበኛ</bookmark_value> <bookmark_value>መሰረታዊ መደበኛ: ምንም</bookmark_value> <bookmark_value>መሰረታዊ መደበኛ: ባዶ</bookmark_value> <bookmark_value>መሰረታዊ መደበኛ: ባዶ</bookmark_value> <bookmark_value>መሰረታዊ መደበኛ: ፓይ</bookmark_value> <bookmark_value>መሰረታዊ መደበኛ: ሀሰት</bookmark_value> <bookmark_value>መሰረታዊ መደበኛ: እውነት</bookmark_value>"
+msgid "<bookmark_value>Pi;Basic constant</bookmark_value> <bookmark_value>Null;Basic constant</bookmark_value> <bookmark_value>Empty;Basic constant</bookmark_value> <bookmark_value>Nothing;Basic constant</bookmark_value> <bookmark_value>Basic constant;Nothing</bookmark_value> <bookmark_value>Basic constant;Null</bookmark_value> <bookmark_value>Basic constant;Empty</bookmark_value> <bookmark_value>Basic constant;Pi</bookmark_value> <bookmark_value>Basic constant;False</bookmark_value> <bookmark_value>Basic constant;True</bookmark_value> <bookmark_value>VBA Exclusive constants</bookmark_value>"
+msgstr ""
#: 03040000.xhp
msgctxt ""
@@ -15099,14 +15131,6 @@ msgstr "ዋጋ"
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
-"hd_id051620171114566623\n"
-"help.text"
-msgid "Example"
-msgstr "ለምሳሌ"
-
-#: 03040000.xhp
-msgctxt ""
-"03040000.xhp\n"
"hd_id051620171114573549\n"
"help.text"
msgid "Mathematical constant"
@@ -15139,14 +15163,6 @@ msgstr "ዋጋ"
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
-"hd_id051620171114571721\n"
-"help.text"
-msgid "Example"
-msgstr "ለምሳሌ"
-
-#: 03040000.xhp
-msgctxt ""
-"03040000.xhp\n"
"hd_id051620171114576454\n"
"help.text"
msgid "Object Constants"
@@ -15203,10 +15219,130 @@ msgstr "መመደቢያ ለ <emph> ምንም </emph> እቃ ለ ተለዋዋጭ
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
-"hd_id051620171114572289\n"
+"hd_id661512312593832\n"
"help.text"
-msgid "Example"
-msgstr "ለምሳሌ"
+msgid "Additional VBA constants"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id111512312705893\n"
+"help.text"
+msgid "The following constants are avalable when VBA compatibility mode is enabled"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id901512312880723\n"
+"help.text"
+msgid "Named constant"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id891512312916493\n"
+"help.text"
+msgid "Hexadecimal (decimal) value"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id991512312965968\n"
+"help.text"
+msgid "Desccription"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id241512313723033\n"
+"help.text"
+msgid "\\x0D (13)"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id611512313731233\n"
+"help.text"
+msgid "CR - Carriage return"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id961512313881937\n"
+"help.text"
+msgid "CRLF - Carriage return and line feed"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id221512313889077\n"
+"help.text"
+msgid "FF - Form feed"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id621512313896169\n"
+"help.text"
+msgid "LF - Line feed"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id521512319135830\n"
+"help.text"
+msgid "\\x0D\\x0A (13 10) for Windows 32 bits"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id61512319163913\n"
+"help.text"
+msgid "\\x0A (10) for other 64 bits systems"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id151512313904989\n"
+"help.text"
+msgid "LF or CRLF"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id741512313911049\n"
+"help.text"
+msgid "Null string"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id951512313918356\n"
+"help.text"
+msgid "HT - Horizontal tab"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
+"par_id351512313924593\n"
+"help.text"
+msgid "VT - Vertical tab"
+msgstr ""
#: 03050000.xhp
msgctxt ""
@@ -22131,14 +22267,6 @@ msgstr "አገባብ:"
#: 03090411.xhp
msgctxt ""
"03090411.xhp\n"
-"par_id3145609\n"
-"help.text"
-msgid "With Object Statement block End With"
-msgstr "በ እቃ አረፍተ ነገር ክፍል መጨረሻ በ"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
"hd_id3154924\n"
"help.text"
msgid "Parameters:"
@@ -22320,6 +22448,54 @@ msgctxt ""
msgid "Exit For ' sItem found"
msgstr "Exit For ' sItem found"
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"tit\n"
+"help.text"
+msgid "Type Statement [Runtime]"
+msgstr ""
+
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"bm_id3153311\n"
+"help.text"
+msgid "<bookmark_value>Type statement</bookmark_value>"
+msgstr ""
+
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"hd_id3153311\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement [Runtime]\">Type Statement [Runtime]</link>"
+msgstr ""
+
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"par_id3159158\n"
+"help.text"
+msgid "Define non-UNO data structures (structs)."
+msgstr ""
+
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"par_id311512206747401\n"
+"help.text"
+msgid "A struct is an ordered collection of data fields, that can be manipulated as a single item."
+msgstr ""
+
+#: 03090413.xhp
+msgctxt ""
+"03090413.xhp\n"
+"par_id211512215755793\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03132400.xhp\" name=\"CreateObject function\">CreateObject function</link>"
+msgstr ""
+
#: 03100000.xhp
msgctxt ""
"03100000.xhp\n"
@@ -31933,8 +32109,8 @@ msgctxt ""
"03131600.xhp\n"
"par_idN1060F\n"
"help.text"
-msgid "For a list of available services, go to: http://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html"
-msgstr "ለ ዝግጁ ግልጋሎቶች ዝርዝር: ይሂዱ ወደ: http://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html"
+msgid "For a list of available services, go to: <link href=\"http://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html\" name=\"linkname\">http://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html</link>"
+msgstr ""
#: 03131600.xhp
msgctxt ""
@@ -34256,6 +34432,494 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060103.xhp#bm_id3152978\">SYD function in CALC</link>"
msgstr "<link href=\"text/scalc/01/04060103.xhp#bm_id3152978\">የ ንብረት እርጅና ተግባር በ ሰንጠረዥ ውስጥ </link>"
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"tit\n"
+"help.text"
+msgid "FormatDateTime Function [Runtime - VBA]"
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>FormatDateTime function</bookmark_value>"
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03150000.xhp\" name=\"FormatDateTime Function [Runtime - VBA]\">FormatDateTime Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Applies a date and/or time format to a date expression and returns the result as a string."
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>DateExpression</emph>: The date expression to be formatted."
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id24072017011739895\n"
+"help.text"
+msgid "<emph>NamedFormat</emph>: An optional <emph>vbDateTimeFormat</emph> enumeration specifying the format that is to be applied to the date and time exression. If omitted, the value <emph>vbGeneralDate</emph> is used."
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"hd_id811512136434300\n"
+"help.text"
+msgid "Date and Time formats (vbDateTimeFormat enumeration)"
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id201512137337536\n"
+"help.text"
+msgid "Named Constant"
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id481512137342798\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id781512137345583\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id991512137353869\n"
+"help.text"
+msgid "Displays a date and/or time as defined in your system's General Date setting. If a date only, no time is displayed; If a time only, no date is displayed."
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id841512137597989\n"
+"help.text"
+msgid "Display a date using the long date format specified in your computer's regional settings."
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id841512137397989\n"
+"help.text"
+msgid "Display a date using the short date format specified in your computer's regional settings."
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id841512147597989\n"
+"help.text"
+msgid "Displays a time as defined in your system's Long Time settings."
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id841517137597989\n"
+"help.text"
+msgid "Display a time using the 24-hour format (hh:mm)."
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id541512148446032\n"
+"help.text"
+msgid "msgbox(\"General date format : \" & FormatDateTime(d))"
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id71512148472413\n"
+"help.text"
+msgid "msgbox(\"Long date format : \" & FormatDateTime(d,vbLongDate))"
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id561512148491949\n"
+"help.text"
+msgid "msgbox(\"Short date format : \" & FormatDateTime(d,vbShortDate))"
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id521512148501199\n"
+"help.text"
+msgid "msgbox(\"Long time format : \" & FormatDateTime(d,3))"
+msgstr ""
+
+#: 03150000.xhp
+msgctxt ""
+"03150000.xhp\n"
+"par_id521512148513930\n"
+"help.text"
+msgid "msgbox(\"Short time format : \" & FormatDateTime(d,vbShortTime))"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"tit\n"
+"help.text"
+msgid "WeekdayName Function [Runtime - VBA]"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>WeekdayName function</bookmark_value>"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03150001.xhp\" name=\"WeekdayName Function [Runtime - VBA]\">WeekdayName Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "The WeekdayName function returns the weekday name of a specified day of the week."
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>Weekday</emph>: Value from 1 to 7, Mon­day to Sun­day, whose Week Day Name need to be cal­cu­lated."
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id24072017011739895\n"
+"help.text"
+msgid "<emph>Abbreviate</emph>: Optional. A Boolean value that indicates if the weekday name is to be abbreviated."
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id240720170117395610\n"
+"help.text"
+msgid "<emph>FirstDayofWeek</emph>: Optional. Specifies the first day of the week."
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"hd_id521512154797683\n"
+"help.text"
+msgid "First day of Week:"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id921512153192034\n"
+"help.text"
+msgid "Named constant"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id611512153251598\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id491512153274624\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id611512153338316\n"
+"help.text"
+msgid "Use National Language Support (NLS) API setting"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id151512153594420\n"
+"help.text"
+msgid "Sun­day (default)"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id211512153874765\n"
+"help.text"
+msgid "Monday"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id801512153944376\n"
+"help.text"
+msgid "Tueday"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id551512153998501\n"
+"help.text"
+msgid "Wednesday"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id121512154054207\n"
+"help.text"
+msgid "Thursday"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id571512154112044\n"
+"help.text"
+msgid "Friday"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id541512154172107\n"
+"help.text"
+msgid "Saturday"
+msgstr ""
+
+#: 03150001.xhp
+msgctxt ""
+"03150001.xhp\n"
+"par_id171512156115581\n"
+"help.text"
+msgid "None"
+msgstr ""
+
+#: 03150002.xhp
+msgctxt ""
+"03150002.xhp\n"
+"tit\n"
+"help.text"
+msgid "MonthName Function [Runtime - VBA]"
+msgstr ""
+
+#: 03150002.xhp
+msgctxt ""
+"03150002.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>MonthName function</bookmark_value>"
+msgstr ""
+
+#: 03150002.xhp
+msgctxt ""
+"03150002.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03150002.xhp\" name=\"MonthName Function [Runtime - VBA]\">MonthName Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03150002.xhp
+msgctxt ""
+"03150002.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "The MonthName function returns the localized month name of a specified month number."
+msgstr ""
+
+#: 03150002.xhp
+msgctxt ""
+"03150002.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>Month</emph>: Value from 1 to 12, January to December, whose localized month name need to be returned."
+msgstr ""
+
+#: 03150002.xhp
+msgctxt ""
+"03150002.xhp\n"
+"par_id24072017011739895\n"
+"help.text"
+msgid "<emph>Abbreviate</emph>: Optional. A Boolean value that indicates if the month name is to be abbreviated."
+msgstr ""
+
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Input Function [Runtime - VBA]"
+msgstr ""
+
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>Input function</bookmark_value>"
+msgstr ""
+
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03160000.xhp\" name=\"Input Function [Runtime - VBA]\">Input Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "Returns the open stream of an Input or Binary file (String)."
+msgstr ""
+
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>Number</emph>: Required. Numeric expression specifying the number of characters to return."
+msgstr ""
+
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"par_id24072017011739895\n"
+"help.text"
+msgid "<emph>#</emph>: Optional."
+msgstr ""
+
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"par_id240720170117395610\n"
+"help.text"
+msgid "<emph>FileNumber</emph>: Required. Any valid file number."
+msgstr ""
+
+#: 03160000.xhp
+msgctxt ""
+"03160000.xhp\n"
+"par_id061420170153186192\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020202.xhp\">Input# statement</link>"
+msgstr ""
+
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Round Function [Runtime - VBA]"
+msgstr ""
+
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>Round function</bookmark_value>"
+msgstr ""
+
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"hd_id3150499\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [Runtime - VBA]\">Round Function [Runtime - VBA]</link>"
+msgstr ""
+
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id3151384\n"
+"help.text"
+msgid "The Round function returns a number rounded to a specified number of digits."
+msgstr ""
+
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id240720170117391741\n"
+"help.text"
+msgid "<emph>expression</emph>: Required. The numeric expression to be rounded."
+msgstr ""
+
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id240720170117395610\n"
+"help.text"
+msgid "<emph>numdecimalplaces</emph>: Optional. Specifies how many places to the right of the decimal are included in the rounding. Default is 0."
+msgstr ""
+
+#: 03170000.xhp
+msgctxt ""
+"03170000.xhp\n"
+"par_id061420170153186193\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158121\">Calc ROUND function</link>"
+msgstr ""
+
#: 05060700.xhp
msgctxt ""
"05060700.xhp\n"
@@ -34965,8 +35629,8 @@ msgctxt ""
"special_vba_func.xhp\n"
"bm_id051920170350145208\n"
"help.text"
-msgid "<bookmark_value>VBA Functions</bookmark_value>"
-msgstr "<bookmark_value>የ VBA ተግባሮች</bookmark_value>"
+msgid "<bookmark_value>VBA Functions;Introduction</bookmark_value>"
+msgstr ""
#: special_vba_func.xhp
msgctxt ""
@@ -34989,7 +35653,7 @@ msgctxt ""
"special_vba_func.xhp\n"
"hd_id051820170407499827\n"
"help.text"
-msgid "These exclusive VBA functions are enabled when <item type=\"literal\">Option VBASupport 1</item> is the first line of a %PRODUCTNAME Basic module."
+msgid "These exclusive VBA functions are enabled when the statement <item type=\"literal\">Option VBASupport 1</item> is placed before the first macro of a %PRODUCTNAME Basic module."
msgstr ""
#: special_vba_func.xhp
@@ -35027,6 +35691,14 @@ msgstr "የ ገንዘብ ተግባሮች"
#: special_vba_func.xhp
msgctxt ""
"special_vba_func.xhp\n"
+"bm_id051920170358102074\n"
+"help.text"
+msgid "<bookmark_value>VBA Functions;Date and Time Functions</bookmark_value>"
+msgstr ""
+
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
"par_id051820170356005357\n"
"help.text"
msgid "Date and time functions"
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index f6a630ce51b..c7ff489cb1f 100644
--- a/source/am/helpcontent2/source/text/scalc/01.po
+++ b/source/am/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-23 23:32+0000\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"PO-Revision-Date: 2017-11-30 14:47+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511479939.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1512053274.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"par_id3150767\n"
"help.text"
msgid "In contrast to copying an area to the clipboard, you can filter certain information and calculate values."
-msgstr ""
+msgstr "ቦታ ኮፒ ማድረግ ሲነፃፀር ወደ ቁራጭ ሰሌዳ ውስጥ: እርስዎ ማጣራት ይችላሉ አንዳንድ መረጃዎች እና ዋጋዎችን ማስላት"
#: 02140500.xhp
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"par_id2308201415431525817\n"
"help.text"
msgid "<ahelp hid=\".\">Populate a cell range with automatically generated pseudo random numbers with the selected distribution function and its parameters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ክፍል መጠን ይሞላል ራሱ በራሱ የ መነጨ የ ሀሰት በ ደፈናው ቁጥሮች በ ተመረጠው ስርጭት ተግባር እና ደንቦች መሰረት </ahelp>"
#: 02140700.xhp
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"par_id2308201415431834837\n"
"help.text"
msgid "<ahelp hid=\".\">Value set to initiate the random number generator algorithm. It is used to initialize (seed) the random number generator in order to reproduce the same sequence of pseudorandom numbers. Specify a positive integer number (1, 2, ...) to produce a specific sequence, or leave the field blank if you don't need this particular feature.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ዋጋ ማሰናጃ ለ ማስጀመር የ በ ደፈናው ቁጥር አመንጪ algorithm. የሚጠቅመው ለ ማስጀመር ነው (seed = ዘር) የ በ ደፈናው ቁጥር አመንጪ እንደገና ለ መፍጠር ተመሳሳይ ቅደም ተከተል ለ ሀሰት በ ደፈናው ቁጥር አመንጪ: ይወስኑ አዎንታዊ ኢንቲጀር ቁጥር (1, 2, ...) ለ መፍጠር የ ተወሰነ ቅደም ተከተል: ወይንም ሜዳውን ባዶ ይተዉት እርስዎ ይህን የ ተለየ ገጽታ መጠቀም ካልፈለጉ</ahelp>"
#: 02140700.xhp
msgctxt ""
@@ -1878,7 +1878,7 @@ msgctxt ""
"par_id2308201415431822157\n"
"help.text"
msgid "<ahelp hid=\".\">Truncate the number to a given number of <emph>Decimal Places</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የሚቆረጡት ከ ተሰጡት የ ቁጥር ቦታዎች ለ <emph> ዴሲማል ቦታዎች </emph></ahelp>"
#: 02140700.xhp
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"par_id2308201415431820502\n"
"help.text"
msgid "<ahelp hid=\".\">Number of decimal places of the numbers generated.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ዴሲማል ቦታዎች ቁጥር ለ መነጨው ቁጥር </ahelp>"
#: 02150000.xhp
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "You cannot delete a sheet while <emph>Edit - Track Changes - Record</emph> is activated."
-msgstr ""
+msgstr "ወረቀት ማጥፋት አይችሉም የ <emph> ማረሚያ - ለውጦችን መከታተያ - መመዝገቢያ </emph> በሚሰራ ጊዜ"
#: 02170000.xhp
msgctxt ""
@@ -20798,7 +20798,7 @@ msgctxt ""
"par_id3150826\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell depending on the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\">መቀመሪያ በያዘው ክፍል ውስጥ ዘዴ መፈጸሚያ </ahelp> ከ ተወሰነ ጊዜ በኋላ: ሌላ ዘዴ መፈጸም ይቻላል: ይህ ተግባር ሁልጊዜ የሚመልሰው ዋጋ 0, ነው: እርስዎን የሚያስችለው መጨመር ነው ወደ ሌላ ተግባር ውስጥ ዋጋውን ሳይቀይር: በ አንድ ላይ ከ አሁኑ ተግባር ጋር እርስዎ ቀለም መፈጸም ይችላሉ ወደ ክፍል ውስጥ ዋጋው ምንም ቢሆን: ለምሳሌ: =...+ዘዴ(ከሆነ(አሁን()>3;\"ቀይ\";\"አረንጓዴ\")) ይህን ዘዴ \"ቀይ\" ይፈጸማል ወደ ክፍል ውስጥ ዋጋው የሚበልጥ ከሆነ ከ 3, ያለ በለዚያ ይህ ዘዴ \"አረንጓዴ\" ይፈጸማል: ሁለቱም የ ክፍሎች አቀራረብ በ ቅድሚያ መገለጽ አለበት"
#: 04060109.xhp
msgctxt ""
@@ -24166,7 +24166,7 @@ msgctxt ""
"par_id3156074\n"
"help.text"
msgid "<item type=\"input\">=TRIM(\" hello world \")</item> returns hello world without leading and trailing spaces and with single space between words."
-msgstr ""
+msgstr "<item type=\"input\">=መከርከሚያ(\" ሰላም አለም \")</item> ይመልሳል ሰላም አለም ያለ ቀዳሚ እና ክፍተት ተከታይ በ ነጠላ ክፍተት በ ቃሎች መካከል"
#: 04060110.xhp
msgctxt ""
@@ -30750,7 +30750,7 @@ msgctxt ""
"par_id3154865\n"
"help.text"
msgid "<emph>NoSwitch</emph>is an optional parameter. NoSwitch = 0 (default) means a switch to linear depreciation. In NoSwitch = 1 no switch is made."
-msgstr ""
+msgstr "<emph>መቀየሪያ የለም</emph>የ ምርጫ ደንብ ነው: መቀየሪያ የለም = 0 (ነባር) ማለት ቀጥተኛ መቀነሻ መቀየሪያ ማለት ነው: በ መቀየሪያ የለም = 1 ምንም አይቀየርም"
#: 04060118.xhp
msgctxt ""
@@ -48862,7 +48862,7 @@ msgctxt ""
"par_idN109BF\n"
"help.text"
msgid "You may disable one of the boxes, then the unspecified dimension will use as many pages as necessary."
-msgstr ""
+msgstr "እርስዎ አንዱን ሳጥን ማሰናከል ይችላሉ: ከዛ ያልተወሰነ አቅጣጫ እርስዎ የሚፈልጉትን ያህል ገጾች ይጠቀማል"
#: 05070500.xhp
msgctxt ""
@@ -48870,7 +48870,7 @@ msgctxt ""
"par_idN109C3\n"
"help.text"
msgid "If you disable both boxes, this will result in a scaling factor of 100%."
-msgstr ""
+msgstr "እርስዎ ሁለቱንም ሳጥኖች ካሰናከሉ: ውጤቱ የ መመጠኛ ዘዴ 100%. ይሆናል"
#: 05070500.xhp
msgctxt ""
@@ -54197,8 +54197,8 @@ msgctxt ""
"12090103.xhp\n"
"par_id3153093\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/connect2\" visibility=\"visible\">Select a logical operator for the filter.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/connect2\" visibility=\"visible\">ይምረጡ የ ሎጂካል አንቀሳቃሽ ለ ማጣሪያ </ahelp>"
+msgid "<ahelp hid=\".\">Select a logical operator for the filter.</ahelp>"
+msgstr ""
#: 12090103.xhp
msgctxt ""
@@ -54213,8 +54213,8 @@ msgctxt ""
"12090103.xhp\n"
"par_id3155306\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/field3\" visibility=\"visible\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/field3\" visibility=\"visible\">እርስዎ በ ማጣሪያ ውስጥ መጠቀም የሚፈልጉትን ሜዳ ይምረጡ: የ ሜዳ ስሞች ዝግጁ ካልሆኑ: የ አምድ ምልክቶች ዝርዝር ይታያል </ahelp>"
+msgid "<ahelp hid=\".\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
+msgstr ""
#: 12090103.xhp
msgctxt ""
@@ -54229,8 +54229,8 @@ msgctxt ""
"12090103.xhp\n"
"par_id3147394\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"modules/scalc/ui/pivotfilterdialog/cond3\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"modules/scalc/ui/pivotfilterdialog/cond3\">አንቀሳቃሽ ይምረጡ ለማወዳደር የ <emph> ሜዳ ስም </emph> እና <emph> ዋጋ </emph> ማስገቢያዎች </ahelp>"
+msgid "<ahelp hid=\".\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
+msgstr ""
#: 12090103.xhp
msgctxt ""
@@ -54357,8 +54357,8 @@ msgctxt ""
"12090103.xhp\n"
"par_id3155506\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/val3\" visibility=\"visible\">Select the value that you want to compare to the selected field.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/val3\" visibility=\"visible\">ከ ተመረጠው ሜዳ ጋር ማወዳደር የሚፈልጉትን ዋጋ ይምረጡ </ahelp>"
+msgid "<ahelp hid=\".\">Select the value that you want to compare to the selected field.</ahelp>"
+msgstr ""
#: 12090103.xhp
msgctxt ""
@@ -56253,48 +56253,192 @@ msgctxt ""
"data_form.xhp\n"
"tit\n"
"help.text"
-msgid "Data Form for Spreadsheet"
-msgstr "የ ዳታ ፎርም ለ ሰንጠረዥ"
+msgid "Data Entry Form for Spreadsheet"
+msgstr ""
#: data_form.xhp
msgctxt ""
"data_form.xhp\n"
"bm_id240920171018528200\n"
"help.text"
-msgid "<bookmark_value>data forms;for spreadsheets</bookmark_value> <bookmark_value>data forms;insert data in spreadsheets</bookmark_value> <bookmark_value>insert data;data forms for spreadsheets</bookmark_value> <bookmark_value>spreadsheet;form to insert data</bookmark_value>"
-msgstr "<bookmark_value>የ ዳታ ፎርም: ለ ሰንጠረዥ</bookmark_value> <bookmark_value>የ ዳታ ፎርም: ዳታ ማስገቢያ በ ሰንጠረዥ</bookmark_value> <bookmark_value>ዳታ ማስገቢያ: የ ዳታ ፎርም ለ ሰንጠረዥ</bookmark_value> <bookmark_value>ሰንጠረዥ: ፎርም ለ ዳታ ማስገቢያ</bookmark_value>"
+msgid "<bookmark_value>data entry forms;for spreadsheets</bookmark_value> <bookmark_value>data entry forms;insert data in spreadsheets</bookmark_value> <bookmark_value>insert data;data entry forms for spreadsheets</bookmark_value> <bookmark_value>spreadsheet;form for inserting data</bookmark_value>"
+msgstr ""
#: data_form.xhp
msgctxt ""
"data_form.xhp\n"
"hd_id240920171003006302\n"
"help.text"
-msgid "<link href=\"text/scalc/01/data_form.xhp\">Data Forms for Spreasheets</link>"
-msgstr "<link href=\"text/scalc/01/data_form.xhp\">የ ዳታ ፎርም ለ ሰንጠዥ</link>"
+msgid "<link href=\"text/scalc/01/data_form.xhp\">Data Entry Forms for Spreasheets</link>"
+msgstr ""
#: data_form.xhp
msgctxt ""
"data_form.xhp\n"
"par_id240920171003293400\n"
"help.text"
-msgid "<ahelp hid=\".\">Data Forms for Spreasheets</ahelp>"
-msgstr "<ahelp hid=\".\">የ ዳታ ፎርም ለ ሰንጠዥ</ahelp>"
+msgid "<ahelp hid=\".\">Data Entry Form is a tool to make table data entry easy in spreadsheets.</ahelp> With the Data Entry Form, you can enter, edit and delete records (or rows) of data and avoid horizontal scrolling when the table has many columns or when some columns are very wide."
+msgstr ""
#: data_form.xhp
msgctxt ""
"data_form.xhp\n"
"par_id240920171007389295\n"
"help.text"
-msgid "Menu <item type=\"menuitem\">Data – Form...</item>"
-msgstr "ዝርዝር <item type=\"menuitem\">የ ዳታ – ፎርም...</item>"
+msgid "Choose <item type=\"menuitem\">Data – Form...</item>"
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"hd_id291512503277077\n"
+"help.text"
+msgid "Preparing the data entry form"
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id221512503284514\n"
+"help.text"
+msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents becomes the label of each data field in the form."
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"hd_id531512503300666\n"
+"help.text"
+msgid "Activating the form"
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id551512503358101\n"
+"help.text"
+msgid "Place the cursor in the header row of the table."
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id11512503369875\n"
+"help.text"
+msgid "Choose <item type=\"menutiem\">Data - Form...</item>."
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"hd_id361512503457039\n"
+"help.text"
+msgid "Filling the form with data"
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"hd_id111512507319306\n"
+"help.text"
+msgid "Form dialog buttons"
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id981512503964001\n"
+"help.text"
+msgid "<emph>New</emph>: fill the record (table row cells) with the form fields contents and jump to the next record or add a new record in the bottom of the table."
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id91512503864256\n"
+"help.text"
+msgid "<emph>Delete</emph>: deletes the current record."
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id11512503887586\n"
+"help.text"
+msgid "<emph>Restore</emph>: when a form field is edited, restore the record contents to its initial state."
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id301512503881314\n"
+"help.text"
+msgid "<emph>Previous record</emph>: move to the previous record (table row)."
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id51512503877397\n"
+"help.text"
+msgid "<emph>Next record</emph>: move to the next record."
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id971512503871672\n"
+"help.text"
+msgid "<emph>Close</emph>: close the form."
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id951512509971073\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sc_data_form01.png\" id=\"img_id951512509971073\"> <alt id=\"alt_id951512509971073\">The form dialog box and header row cells as field labels</alt> </image>"
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id351512558748321\n"
+"help.text"
+msgid "Use the <item type=\"input\">Tab</item> and <item type=\"input\">Shift-Tab</item> keys to jump forth and back between text boxes of the form dialog."
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id731512558741034\n"
+"help.text"
+msgid "You also can use the form scroll bar to move between text boxes."
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"hd_id701512558977465\n"
+"help.text"
+msgid "Reopening the form dialog"
+msgstr ""
+
+#: data_form.xhp
+msgctxt ""
+"data_form.xhp\n"
+"par_id181512558987528\n"
+"help.text"
+msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the fisrt data record. Move to the last record before entering new data otherwise the current record will be edited."
+msgstr ""
#: data_form.xhp
msgctxt ""
"data_form.xhp\n"
"par_id240920171007419799\n"
"help.text"
-msgid "Form"
-msgstr "ፎርም"
+msgid "<link href=\"text/shared/guide/data_forms.xhp\" name=\"Forms\">Document Forms</link>"
+msgstr ""
#: data_provider.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index 26ed857cc45..f90fdd14ca8 100644
--- a/source/am/helpcontent2/source/text/shared/01.po
+++ b/source/am/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-24 14:31+0000\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"PO-Revision-Date: 2017-11-24 22:47+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511533905.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1511563646.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -21685,8 +21685,8 @@ msgctxt ""
"05100200.xhp\n"
"par_id3083451\n"
"help.text"
-msgid "<variable id=\"teilentext\"><ahelp hid=\".uno:SplitCell\">Splits the cell or group of cells horizontally or vertically into the number of cells that you enter.</ahelp></variable>"
-msgstr "<variable id=\"teilentext\"><ahelp hid=\".uno:SplitCell\">መክፈያ ክፍል ወይንም የ ክፍሎች ቡድን በ አግድም ወይንም በ ቁመት እርስዎ ወደሚያስገቡት ቁጥር </ahelp></variable>"
+msgid "<variable id=\"teilentext\"><ahelp hid=\".\">Splits the cell or group of cells horizontally or vertically into the number of cells that you enter.</ahelp></variable>"
+msgstr ""
#: 05100200.xhp
msgctxt ""
@@ -37950,16 +37950,16 @@ msgctxt ""
"gallery.xhp\n"
"par_id3149783\n"
"help.text"
-msgid "<ahelp hid=\"SVX_HID_GALLERY_ICONVIEW\">Displays the contents of the <emph>Gallery </emph>as icons.</ahelp>"
-msgstr "<ahelp hid=\"SVX_HID_GALLERY_ICONVIEW\">ማሳያ ይዞታዎችን ከ <emph> አዳራሽ </emph> እንደ ምልክቶች </ahelp>"
+msgid "<ahelp hid=\"SVX_HID_GALLERY_ICONVIEW\" visibility=\"hidden\">Displays the contents of the <emph>Gallery </emph>as icons.</ahelp>"
+msgstr ""
#: gallery.xhp
msgctxt ""
"gallery.xhp\n"
"par_id3148983\n"
"help.text"
-msgid "<ahelp hid=\"SVX_HID_GALLERY_LISTVIEW\">Displays the contents of the <emph>Gallery </emph>as small icons, with title and path information.</ahelp>"
-msgstr "<ahelp hid=\"SVX_HID_GALLERY_LISTVIEW\">ይዞታዎች ማሳያ የ <emph> አዳራሽ </emph> እንደ ትንሽ ምልክቶች: ከ አርእስት እና መረጃ መንገድ ጋር </ahelp>"
+msgid "<ahelp hid=\"SVX_HID_GALLERY_LISTVIEW\" visibility=\"hidden\">Displays the contents of the <emph>Gallery </emph>as small icons, with title and path information.</ahelp>"
+msgstr ""
#: gallery.xhp
msgctxt ""
@@ -38831,7 +38831,7 @@ msgctxt ""
"par_id971511208248862\n"
"help.text"
msgid "%PRODUCTNAME relies on the operating system's installed media support."
-msgstr "%PRODUCTNAME በ እርስዎ መስሪያ ስርአት ላይ የ ተገጠመውን የ መገናኛ ድጋፍ ይጠቀማል "
+msgstr "%PRODUCTNAME በ እርስዎ መስሪያ ስርአት ላይ የ ተገጠመውን የ መገናኛ ድጋፍ ይጠቀማል"
#: moviesound.xhp
msgctxt ""
@@ -38839,7 +38839,7 @@ msgctxt ""
"par_id231511209745892\n"
"help.text"
msgid "<emph>For Microsoft Windows</emph>: %PRODUCTNAME can open anything for which <emph>DirectShow</emph> filters are installed (<link href=\"http://msdn.microsoft.com/en-us/library/ms787745%28VS.85%29.aspx\" name=\"linkname\">list of default formats</link>)."
-msgstr ""
+msgstr "<emph>ለ Microsoft Windows</emph>: %PRODUCTNAME ማንኛውንም መክፈት ይችላል ለ <emph>DirectShow</emph> ማጣሪያዎች ከ ተገጠሙ (<link href=\"http://msdn.microsoft.com/en-us/library/ms787745%28VS.85%29.aspx\" name=\"linkname\">ነባር የ አቀራረብ ዝርዝር</link>)"
#: moviesound.xhp
msgctxt ""
@@ -38847,7 +38847,7 @@ msgctxt ""
"par_id601511209768414\n"
"help.text"
msgid "<emph>For GNU/Linux</emph>: %PRODUCTNAME uses <emph>gstreamer</emph>, so whatever you can play using gstreamer can be used with %PRODUCTNAME (<link href=\"http://gstreamer.freedesktop.org/data/doc/gstreamer/head/pwg/html/section-types-definitions.html\" name=\"linkname\">list of defined types</link>)."
-msgstr ""
+msgstr "<emph>ለ GNU/Linux</emph>: %PRODUCTNAME የሚጠቀመው የ <emph>gstreamer</emph> እርስዎ በሚያጫውቱ ጊዜ በ gstreamer መጠቀም ይችላሉ በ %PRODUCTNAME (<link href=\"http://gstreamer.freedesktop.org/data/doc/gstreamer/head/pwg/html/section-types-definitions.html\" name=\"linkname\">የ ተገለጹ አይነቶች ዝርዝር</link>)"
#: moviesound.xhp
msgctxt ""
@@ -38855,7 +38855,7 @@ msgctxt ""
"par_id841511209784505\n"
"help.text"
msgid "<emph>For Apple macOS</emph>: %PRODUCTNAME uses <emph>QuickTime</emph> supported media formats (<link href=\"https://documentation.apple.com/en/finalcutpro/usermanual/index.html#chapter=103%26section=4%26tasks=true\" name=\"linkname\">list of media formats</link>)."
-msgstr ""
+msgstr "<emph>ለ Apple macOS</emph>: %PRODUCTNAME የሚጠቀመው በ <emph>QuickTime</emph> አቀራረብ የ ተደገፈ መገናኛ ነው (<link href=\"https://documentation.apple.com/en/finalcutpro/usermanual/index.html#chapter=103%26section=4%26tasks=true\" name=\"linkname\">የ መገናኛ አቀራረብ ዝርዝር</link>)"
#: moviesound.xhp
msgctxt ""
@@ -38863,7 +38863,7 @@ msgctxt ""
"par_id391511209364018\n"
"help.text"
msgid "<link href=\"http://msdn.microsoft.com/en-us/library/ms787745%28VS.85%29.aspx\" name=\"linkname\">List of default formats for Microsoft Windows DirectShow </link>."
-msgstr ""
+msgstr "<link href=\"http://msdn.microsoft.com/en-us/library/ms787745%28VS.85%29.aspx\" name=\"linkname\">ነባር የ አቀራረብ ዝርዝር ለ Microsoft Windows DirectShow </link>."
#: moviesound.xhp
msgctxt ""
@@ -38871,7 +38871,7 @@ msgctxt ""
"par_id921511209448360\n"
"help.text"
msgid "<link href=\"http://gstreamer.freedesktop.org/data/doc/gstreamer/head/pwg/html/section-types-definitions.html\" name=\"linkname\">List of defined types for gstreamer in GNU/Linux </link>."
-msgstr ""
+msgstr "<link href=\"http://gstreamer.freedesktop.org/data/doc/gstreamer/head/pwg/html/section-types-definitions.html\" name=\"linkname\">የ ተገለጹ አይነቶች ዝርዝር ለ gstreamer in GNU/Linux </link>."
#: moviesound.xhp
msgctxt ""
@@ -38879,7 +38879,7 @@ msgctxt ""
"par_id591511209548848\n"
"help.text"
msgid "<link href=\"https://documentation.apple.com/en/finalcutpro/usermanual/index.html#chapter=103%26section=4%26tasks=true\" name=\"linkname\">List of media formats for Apple macOS QuickTime</link>."
-msgstr ""
+msgstr "<link href=\"https://documentation.apple.com/en/finalcutpro/usermanual/index.html#chapter=103%26section=4%26tasks=true\" name=\"linkname\">የ መገናኛ አቀራረብ ዝርዝር ለ Apple macOS QuickTime</link>."
#: moviesound.xhp
msgctxt ""
@@ -38887,7 +38887,7 @@ msgctxt ""
"par_id561511210645479\n"
"help.text"
msgid "<link href=\"https://ask.libreoffice.org/en/question/854/what-video-formats-does-libreoffice-impress-support/\" name=\"linkname\">%PRODUCTNAME Askbot question and answer</link>"
-msgstr ""
+msgstr "<link href=\"https://ask.libreoffice.org/en/question/854/what-video-formats-does-libreoffice-impress-support/\" name=\"linkname\">%PRODUCTNAME Askbot ጥያቄ እና መልስ </link>"
#: notebook_bar.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index 3760b5256f1..7e8ceaad68c 100644
--- a/source/am/helpcontent2/source/text/shared/guide.po
+++ b/source/am/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-23 22:31+0000\n"
+"PO-Revision-Date: 2017-12-05 23:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511476287.000000\n"
+"X-POOTLE-MTIME: 1512516500.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -3030,7 +3030,7 @@ msgctxt ""
"bm_id3153394\n"
"help.text"
msgid "<bookmark_value>context menus</bookmark_value><bookmark_value>menus;activating context menus</bookmark_value><bookmark_value>opening; context menus</bookmark_value><bookmark_value>activating;context menus</bookmark_value>"
-msgstr "<bookmark_value>የ አገባብ ዝርዝሮች</bookmark_value><bookmark_value>ዝርዝር:ማስነሻ የ አገባብ ዝርዝሮች</bookmark_value><bookmark_value>መክፈቻ: የ አገባብ ዝርዝሮች</bookmark_value><bookmark_value>ማስነሻ:የ አገባብ ዝርዝሮች</bookmark_value>"
+msgstr "<bookmark_value>የ አገባብ ዝርዝሮች</bookmark_value><bookmark_value>ዝርዝር:ማስነሻ የ አገባብ ዝርዝሮች</bookmark_value><bookmark_value>መክፈቻ:የ አገባብ ዝርዝሮች</bookmark_value><bookmark_value>ማስነሻ:የ አገባብ ዝርዝሮች</bookmark_value>"
#: contextmenu.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index ec8a4f28422..db635ddde19 100644
--- a/source/am/helpcontent2/source/text/shared/optionen.po
+++ b/source/am/helpcontent2/source/text/shared/optionen.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-24 00:04+0000\n"
+"PO-Revision-Date: 2017-12-06 00:11+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511481898.000000\n"
+"X-POOTLE-MTIME: 1512519105.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -1654,7 +1654,7 @@ msgctxt ""
"par_id3147323\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/editdictionarydialog/replace\">This input field is only available if you are editing an exception dictionary or a language-dependent custom dictionary. In exception dictionaries, the field shows the alternative suggestion for the current word in the \"Word\" text box. In language-dependent custom dictionaries, the field contains a known root word, as a model of affixation of the new word or its usage in compound words. For example, in a German custom dictionary, the new word “Litschi” (lychee) with the model word “Gummi” (gum) will result recognition of “Litschis” (lychees), “Litschibaum” (lychee tree), “Litschifrucht” (lychee fruit) etc.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/editdictionarydialog/replace\">ይህ የ ማስገቢያ ሜዳ ዝግጁ የሚሆነው እርስዎ የተለየ መዝገበ ቃላት ሲያርሙ ነው: ወይንም ለ ቋንቋ-ጥገኛ የሆነ መዝገበ ቃላት ሲያስተካክሉ ነው: በ ተለየ መዝገበ ቃላት ውስጥ መዳው የሚያሳየው አማራጭ ሀሳብ ነው: ለ አሁኑ ቃል በ \"ቃል\" ጽሁፍ ሳጥን ለ ቋንቋ-ጥገኛ የሆነ መዝገበ ቃላት ማስተካከያ ውስጥ: ሜዳው የሚይዘው የ ቃሉን መሰረት ነው: ወይንም አጠቃቀሙን በ ቃሎች መቀላቀያ ውስጥ: ለምሳሌ: በ German መዝገበ ቃላት ማስተካከያ ውስጥ: አዲሱ ቃል “Litschi” (lychee) ናሙና ቃል “Gummi” (gum) ውጤት ያስታውሳል የ “Litschis” (lychees), “Litschibaum” (lychee tree), “Litschifrucht” (lychee fruit) ወዘተ </ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -6230,7 +6230,7 @@ msgctxt ""
"bm_id3144510\n"
"help.text"
msgid "<bookmark_value>non-printing characters (Writer)</bookmark_value><bookmark_value>formatting marks (Writer)</bookmark_value><bookmark_value>displaying; non-printing characters (Writer)</bookmark_value><bookmark_value>displaying; formatting marks (Writer)</bookmark_value><bookmark_value>paragraph marks; displaying (Writer)</bookmark_value><bookmark_value>characters; displaying only on screen (Writer)</bookmark_value><bookmark_value>optional hyphens (Writer)</bookmark_value><bookmark_value>soft hyphens (Writer)</bookmark_value><bookmark_value>hyphens; displaying custom (Writer)</bookmark_value><bookmark_value>custom hyphens (Writer)</bookmark_value><bookmark_value>spaces; displaying (Writer)</bookmark_value><bookmark_value>spaces; showing protected spaces (Writer)</bookmark_value><bookmark_value>protected spaces; showing (Writer)</bookmark_value><bookmark_value>non-breaking spaces (Writer)</bookmark_value><bookmark_value>tab stops; displaying (Writer)</bookmark_value><bookmark_value>break display (Writer)</bookmark_value><bookmark_value>hidden text;showing (Writer)</bookmark_value><bookmark_value>hidden fields display (Writer)</bookmark_value><bookmark_value>paragraphs; hidden paragraphs (Writer)</bookmark_value><bookmark_value>cursor; allowing in protected areas (Writer)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value> ምንም-የማይታተሙ ባህሪዎች (መጻፊያ)</bookmark_value><bookmark_value>አቀራረብ ምልክት ማድረጊያ (መጻፊያ)</bookmark_value><bookmark_value>ማሳያ; ምንም-የማይታተሙ ባህሪዎች (መጻፊያ)</bookmark_value><bookmark_value>ማሳያ; የ አቀራረብ ምልክት (መጻፊያ)</bookmark_value><bookmark_value>አንቀጽ ምልክት ማድረጊያ; ማሳያ (መጻፊያ)</bookmark_value><bookmark_value>ባህሪዎች; ማሳያ በ መመልከቻው ላይ ብቻ (መጻፊያ)</bookmark_value><bookmark_value> በምርጫ ጭረት (መጻፊያ)</bookmark_value><bookmark_value> ለስላሳ ጭረት (መጻፊያ)</bookmark_value><bookmark_value>ጭረት; ማሳያ ማስተካከያ (መጻፊያ)</bookmark_value><bookmark_value> ማስተካከያ ጭረት (መጻፊያ)</bookmark_value><bookmark_value>ክፍተት; ማሳያ (መጻፊያ)</bookmark_value><bookmark_value>ክፍተት; ጭረት የሚጠበቅ ክፍተት (መጻፊያ)</bookmark_value><bookmark_value>የሚጠበቅ ክፍተት; ማሳያ (መጻፊያ)</bookmark_value><bookmark_value> ምንም-ያልተሰበረ ባህሪዎች (መጻፊያ)</bookmark_value><bookmark_value>tab ማስቆሚያ; ማሳያ (መጻፊያ)</bookmark_value><bookmark_value> መጨረሻ ማሳያ (መጻፊያ)</bookmark_value><bookmark_value> የ ተደበቀ ጽሁፍ: ጭረት (መጻፊያ)</bookmark_value><bookmark_value> የ ተደበቀ ሜዳ ማሳያ (መጻፊያ)</bookmark_value><bookmark_value>አንቀጾች; የ ተደበቀ አንቀጽ (መጻፊያ)</bookmark_value><bookmark_value>መጠቆሚያ; በሚጠበቁ ቦታዎች ላይ ማስቻያ (መጻፊያ)</bookmark_value>"
#: 01040600.xhp
msgctxt ""
@@ -6374,7 +6374,7 @@ msgctxt ""
"par_idN108FB\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optformataidspage/hiddentext\">Displays text that uses the character format \"hidden\", when <emph>View - Formatting Marks</emph> is enabled.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/optformataidspage/hiddentext\">የ ባህሪ አቀራረብ የሚጠቀም ጽሁፍ ማሳያ \"የ ተደበቀ\": ይህ <emph> መመለከቻ - የ አቀራረብ ምልክት </emph> በሚያስችሉ ጊዜ ነው</ahelp>"
#: 01040600.xhp
msgctxt ""
@@ -6574,7 +6574,7 @@ msgctxt ""
"par_id3156153\n"
"help.text"
msgid "To record or show changes in your text or spreadsheet document, choose <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes\"><emph>Edit - Track Changes - Record</emph></link> or <emph>Edit - Track Changes - Show</emph>."
-msgstr ""
+msgstr "በ እርስዎ የ ጽሁፍ ወይንም ሰንጠረዥ ሰነድ ውስጥ ለውጦችን ለ መመዝገብ ወይንም ለማሳየት: ይምረጡ <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes\"><emph> ማረሚያ - ለውጦችን መከታተያ - መመዝገቢያ</emph></link> ወይንም <emph> ማረሚያ - ለውጦችን መከታተያ - ማሳያ</emph>"
#: 01040700.xhp
msgctxt ""
@@ -7782,7 +7782,7 @@ msgctxt ""
"par_id3149516\n"
"help.text"
msgid "<variable id=\"rastersicht\"><ahelp hid=\".\">Specifies whether to display the grid.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"rastersicht\"><ahelp hid=\".\">መጋጠሚያ ይታይ እንደሆን መወሰኛ </ahelp></variable>"
#: 01050100.xhp
msgctxt ""
@@ -9510,7 +9510,7 @@ msgctxt ""
"par_id3156343\n"
"help.text"
msgid "To record changes to your work, choose <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes - Record\"><emph>Edit - Track Changes - Record</emph></link>."
-msgstr ""
+msgstr "በ እርስዎ ስራ ላይ ለውጦችን ለ መቅረጽ: ይምረጡ <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes - Record Changes\"><emph>ማረሚያ - ለውጦች መከታተያ - መቅረጫ</emph></link>"
#: 01060600.xhp
msgctxt ""
@@ -10302,7 +10302,7 @@ msgctxt ""
"par_id3154147\n"
"help.text"
msgid "<variable id=\"helplines\"><variable id=\"verschieb\"><ahelp hid=\".\">Specifies whether to display guides when moving an object.</ahelp></variable></variable>"
-msgstr ""
+msgstr "<variable id=\"helplines\"><variable id=\"verschieb\"><ahelp hid=\".\">እቃዎች በሚንቀሳቀሱ ጊዜ መምሪያ ይታይ እንደሆን መወሰኛ</ahelp></variable></variable>"
#: 01070100.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter.po b/source/am/helpcontent2/source/text/swriter.po
index c231ebe3dde..dd65eb88874 100644
--- a/source/am/helpcontent2/source/text/swriter.po
+++ b/source/am/helpcontent2/source/text/swriter.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2017-10-04 23:09+0000\n"
+"PO-Revision-Date: 2017-11-26 00:52+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1507158598.000000\n"
+"X-POOTLE-MTIME: 1511657536.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"par_id3147797\n"
"help.text"
msgid "$[officename] Writer also includes such useful features as a <link href=\"text/shared/01/06010000.xhp\" name=\"spellchecker\">spellchecker</link>, a <link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"thesaurus\">thesaurus</link>, <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link>, and <link href=\"text/swriter/01/06030000.xhp\" name=\"Hyphenation\">hyphenation</link> as well as a variety of templates for almost every purpose. You can also create your own templates using the wizards."
-msgstr "$[officename] መጻፊያ ብዙ ጠቃሚ ገጻታዎች ይዟል እንደ <link href=\"text/shared/01/06010000.xhp\" name=\"spellchecker\">ፊደል ማረሚያ</link>, የ <link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"thesaurus\">ተመሳሳይ</link>, <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">በራሱ አራሚ</link>, እና <link href=\"text/swriter/01/06030000.xhp\" name=\"Hyphenation\">ጭረት</link> እና የተለያዩ ቴምፕሌቶች መፍጠሪያ አዋቂ ይዟል"
+msgstr "$[officename] መጻፊያ ብዙ ጠቃሚ ገጻታዎች ይዟል እንደ <link href=\"text/shared/01/06010000.xhp\" name=\"spellchecker\"> ፊደል ማረሚያ </link>: የ <link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"thesaurus\"> ተመሳሳይ </link>: <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\"> በራሱ አራሚ </link>: እና <link href=\"text/swriter/01/06030000.xhp\" name=\"Hyphenation\"> ጭረት </link> እና የተለያዩ ቴምፕሌቶች መፍጠሪያ አዋቂ ይዟል"
#: main0503.xhp
msgctxt ""
@@ -2510,7 +2510,7 @@ msgctxt ""
"par_id3155137\n"
"help.text"
msgid "The <link href=\"text/shared/guide/dragdrop.xhp\" name=\"drag-and-drop\">drag-and-drop</link> feature enables you to work quickly and efficiently with text documents in $[officename]. For example, you can drag-and-drop objects, such as graphics from the Gallery, from one location to another in the same document, or between open $[officename] documents."
-msgstr "የ <link href=\"text/shared/guide/dragdrop.xhp\" name=\"drag-and-drop\">መጎተት -እና-መጣል</link> ገጽታ የሚያስችለው በ ጽሁፍ ሰነዶችን በ ፍጥነት እና በ ቅልጥፍና መስራት እንዲችሉ ነው $[officename]. ለምሳሌ መጎተት-እና-መጣል ይችላሉ እቃዎችን እንደ ንድፍ ያሉ ከ አዳራሽ ውስጥ: ከ አንድ ቦታ ወደ ሌላ ቦታ በሚሰሩበት ሰነድ ውስጥ ወይንም በ ተከፈቱ $[officename] ሰነዶች ውስጥ"
+msgstr "የ <link href=\"text/shared/guide/dragdrop.xhp\" name=\"drag-and-drop\">መጎተቻ -እና-መጣያ </link> ገጽታ የሚያስችለው በ ጽሁፍ ሰነዶችን በ ፍጥነት እና በ ቅልጥፍና መስራት እንዲችሉ ነው $[officename]: ለምሳሌ እቃዎችን መጎተት-እና-መጣል ይችላሉ እንደ ንድፍ ያሉ ከ አዳራሽ ውስጥ: ከ አንድ ቦታ ወደ ሌላ ቦታ በሚሰሩበት ሰነድ ውስጥ ወይንም በ ተከፈቱ $[officename] ሰነዶች ውስጥ"
#: main0503.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/00.po b/source/am/helpcontent2/source/text/swriter/00.po
index f4cb1b06394..b626770af0e 100644
--- a/source/am/helpcontent2/source/text/swriter/00.po
+++ b/source/am/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
"PO-Revision-Date: 2017-11-23 01:14+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1511399650.000000\n"
#: 00000004.xhp
@@ -285,8 +285,8 @@ msgctxt ""
"00000402.xhp\n"
"par_id3153737\n"
"help.text"
-msgid "Choose <emph>Edit - Index Entry</emph>"
-msgstr "ይምረጡ <emph> ማረሚያ - ማውጫ ማስገቢያ </emph>"
+msgid "Choose <emph>Edit - Reference - Index Entry...</emph>"
+msgstr ""
#: 00000402.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index 5e69a30126e..89e26970268 100644
--- a/source/am/helpcontent2/source/text/swriter/01.po
+++ b/source/am/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
"PO-Revision-Date: 2017-11-23 01:29+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1511400565.000000\n"
#: 01120000.xhp
@@ -9549,8 +9549,8 @@ msgctxt ""
"04120100.xhp\n"
"par_id3147571\n"
"help.text"
-msgid "To edit an index entry, place the cursor in front of the index field, and then choose <link href=\"text/swriter/01/02160000.xhp\" name=\"Edit - Index Entry\"><emph>Edit - Index Entry</emph></link>"
-msgstr "የ ማውጫ ማስገቢያ ለማረም: መጠቆሚያውን ከ ማውጫ ማስገቢያ ፊት ለ ፊት ያድርጉ: እና ከዛ ይምረጡ <link href=\"text/swriter/01/02160000.xhp\" name=\"Edit - Index Entry\"><emph> ማረሚያ - ማውጫ ማስገቢያ </emph></link>"
+msgid "To edit an index entry, place the cursor in front of the index field, and then choose <link href=\"text/swriter/01/02160000.xhp\" name=\"Edit - Reference - Index Entry...\"><emph>Edit - Reference - Index Entry...</emph></link>"
+msgstr ""
#: 04120100.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index 5e5ae07d0f7..4b9d53d85e9 100644
--- a/source/am/helpcontent2/source/text/swriter/guide.po
+++ b/source/am/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
"PO-Revision-Date: 2017-11-06 17:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1509989763.000000\n"
#: anchor_object.xhp
@@ -7029,8 +7029,8 @@ msgctxt ""
"indices_delete.xhp\n"
"par_id3155526\n"
"help.text"
-msgid "Choose <emph>Edit - Index Entry</emph>, and do one of the following:"
-msgstr "ይምረጡ <emph> ማረሚያ - ማውጫ ማስገቢያ </emph> እና ከ እነዚህ አንዱን ይስሩ:"
+msgid "Choose <emph>Edit - Reference - Index Entry...</emph>, and do one of the following:"
+msgstr ""
#: indices_delete.xhp
msgctxt ""
diff --git a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
index a6b6ddd637c..0f828f2c86d 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-24 14:56+0100\n"
-"PO-Revision-Date: 2017-11-23 15:02+0000\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"PO-Revision-Date: 2017-11-26 14:57+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511449320.000000\n"
+"X-POOTLE-MTIME: 1511708266.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -1759,8 +1759,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:TTestDialog\n"
"Label\n"
"value.text"
-msgid "~t-test..."
-msgstr "~t-መሞከሪያ..."
+msgid "Paired ~t-test..."
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -8230,8 +8230,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:AdvancedMode\n"
"Label\n"
"value.text"
-msgid "Effects"
-msgstr "ውጤቶች"
+msgid "Transformations"
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10282,8 +10282,8 @@ msgctxt ""
"..DrawWindowState.UIElements.States.private:resource/toolbar/choosemodebar\n"
"UIName\n"
"value.text"
-msgid "Mode"
-msgstr "ዘዴ"
+msgid "Transformations"
+msgstr ""
#: DrawWindowState.xcu
msgctxt ""
@@ -16772,7 +16772,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open ~Remote..."
-msgstr "የ _ሩቅ መክፈቻ..."
+msgstr "የ ~ሩቅ መክፈቻ..."
#: GenericCommands.xcu
msgctxt ""
@@ -22102,7 +22102,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste ~Special"
-msgstr ""
+msgstr "የ ~ተለየ መለጠፊያ"
#: GenericCommands.xcu
msgctxt ""
@@ -23064,8 +23064,8 @@ msgctxt ""
"..ImpressWindowState.UIElements.States.private:resource/toolbar/choosemodebar\n"
"UIName\n"
"value.text"
-msgid "Mode"
-msgstr "ዘዴ"
+msgid "Transformations"
+msgstr ""
#: ImpressWindowState.xcu
msgctxt ""
@@ -27151,7 +27151,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Footnotes and Endnotes..."
-msgstr "የ ~ግርጌ ማስታወሻ እና የ መጨረሻ ማስታወሻ..."
+msgstr "የ ~ግርጌ እና የ መጨረሻ ማስታወሻ..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/am/sc/messages.po b/source/am/sc/messages.po
index 8e96b68f092..94f028c5485 100644
--- a/source/am/sc/messages.po
+++ b/source/am/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-23 01:54+0000\n"
+"POT-Creation-Date: 2017-12-06 15:58+0100\n"
+"PO-Revision-Date: 2017-11-25 00:19+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511402096.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1511569184.000000\n"
#: compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -4626,12 +4626,12 @@ msgstr "ፋክተር: ዋጋው የሚቀንስበት ፋክተር: ፋክተር
#: scfuncs.hrc:627
msgctxt "SC_OPCODE_VBD"
msgid "NoSwitch"
-msgstr ""
+msgstr "መቀየሪያ የለም"
#: scfuncs.hrc:628
msgctxt "SC_OPCODE_VBD"
msgid "NoSwitch = 0 denotes switch to linear depreciation, NoSwitch = 1 do not switch."
-msgstr ""
+msgstr "መቀየሪያ የለም = 0 የሚያመለክተው ወደ ቀጥተኛ መቀነሻ መቀየሪያ ነው: መቀየሪያ የለም = 1 አትቀይር"
#: scfuncs.hrc:634
msgctxt "SC_OPCODE_EFFECT"
@@ -11725,8 +11725,8 @@ msgstr "ዋጋው የሚወሰንበት (የረድፉ ወይንም የመጠኑ)
#: scfuncs.hrc:3418
msgctxt "SC_OPCODE_MATCH"
-msgid "Defines a position in a array after comparing values."
-msgstr "በማዘጋጃ ውስጥ ቦታውን መወሰኛ ዋጋዎችን ካወዳደረ በኋላ"
+msgid "Defines a position in an array after comparing values."
+msgstr ""
#: scfuncs.hrc:3419
msgctxt "SC_OPCODE_MATCH"
@@ -11755,8 +11755,8 @@ msgstr "አይነት"
#: scfuncs.hrc:3424
msgctxt "SC_OPCODE_MATCH"
-msgid "Type can take the value 1, 0 or -1 and determines the criteria are to be used for comparison purposes."
-msgstr "አይነት እነዚህን ዋጋዎች ይወስዳል 1, 0 ወይንም -1 እና መመዘኛውን ይወስናል ለማወዳደሪያ የሚጠቀሙበትን አላማ"
+msgid "Type can take the value 1, 0 or -1 and determines the criteria to be used for comparison purposes."
+msgstr ""
#: scfuncs.hrc:3430
msgctxt "SC_OPCODE_OFFSET"
@@ -13667,104 +13667,114 @@ msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "ምስል ማስገቢያ"
-#. Attribute
+#: strings.hrc:50
+msgctxt "SCSTR_TOTAL"
+msgid "%1 results found"
+msgstr ""
+
#: strings.hrc:51
+msgctxt "SCSTR_SKIPPED"
+msgid "(only %1 are listed)"
+msgstr ""
+
+#. Attribute
+#: strings.hrc:53
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Document"
msgstr "ሰነድ መጠበቂያ"
-#: strings.hrc:52
+#: strings.hrc:54
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect document"
msgstr "ሰነድ አለመጠበቅ"
-#: strings.hrc:53
+#: strings.hrc:55
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect sheet"
msgstr "ወረቀት አለመጠበቅ"
-#: strings.hrc:54
+#: strings.hrc:56
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "መዝገቦችን መጠበቂያ"
-#: strings.hrc:55
+#: strings.hrc:57
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "መዝገቦችን አትጠብቅ"
-#: strings.hrc:56
+#: strings.hrc:58
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "የመግቢያ ቃል :"
-#: strings.hrc:57
+#: strings.hrc:59
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "የመግቢያ ቃል (በምርጫ):"
-#: strings.hrc:58
+#: strings.hrc:60
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "የተሳሳተ የመግቢያ ቃል"
-#: strings.hrc:59
+#: strings.hrc:61
msgctxt "SCSTR_END"
msgid "~End"
msgstr "~መጨረሻ"
-#: strings.hrc:60
+#: strings.hrc:62
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "ያልታወቀ"
-#: strings.hrc:61
+#: strings.hrc:63
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "~አነስተኛ"
-#: strings.hrc:62
+#: strings.hrc:64
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "~ከፍተኛ"
-#: strings.hrc:63
+#: strings.hrc:65
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "~ዋጋ"
-#: strings.hrc:64
+#: strings.hrc:66
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "~ምንጭ"
-#: strings.hrc:65
+#: strings.hrc:67
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "~ማስገቢያዎች"
#. for dialogues:
-#: strings.hrc:67
+#: strings.hrc:69
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "ስርአት"
-#: strings.hrc:68
+#: strings.hrc:70
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "መደበኛ: ጽሁፍ: ቀን (ቀወአ ):ቀን (ወቀአ ):ቀን (አወቀ ):US English;መደበቂያ"
-#: strings.hrc:69
+#: strings.hrc:71
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "Tab"
-#: strings.hrc:70
+#: strings.hrc:72
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "ክፍተት"
-#: strings.hrc:71
+#: strings.hrc:73
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -13775,29 +13785,29 @@ msgstr ""
"ከታች በኩል የቀረበውን ማረሚያ መቀበል ይፈልጋሉ?\n"
"\n"
-#: strings.hrc:72
+#: strings.hrc:74
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr "ምስል ማጣሪያ"
-#: strings.hrc:73
+#: strings.hrc:75
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. Select tables dialog title
-#: strings.hrc:75
+#: strings.hrc:77
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "ወረቀቶች ይምረጡ"
#. Select tables dialog listbox
-#: strings.hrc:77
+#: strings.hrc:79
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "~የተመረጡት ወረቀቶች"
-#: strings.hrc:78
+#: strings.hrc:80
msgctxt "STR_REPLCELLSWARN"
msgid ""
"You are pasting data into cells that already contain data.\n"
@@ -13806,1152 +13816,1152 @@ msgstr ""
"ወደ ክፍሎቹ ውስጥ ዳታ እየለጠፉ ነው ፡ ክፍሎቹ ውስጥ ቀደም ሲል ዳታ ነበር \n"
"በእርግጥ በነበረው ዳታ ላይ ደርበው መጻፍ ይፈልጋሉ?"
-#: strings.hrc:79
+#: strings.hrc:81
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "ማስመሪያ"
-#: strings.hrc:80
+#: strings.hrc:82
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "ይህ ማስመሪያ የሚያስተዳድረው እቃዎችን በ ተወሰነ ቦታ ብቻ ነው"
-#: strings.hrc:81
+#: strings.hrc:83
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "ቅድመ እይታ"
-#: strings.hrc:82
+#: strings.hrc:84
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "ይህ ወረቀት የሚያሳየው ዳታው በሰነዱ ውስጥ እንዴት እንደሚቀመጥ ነው"
-#: strings.hrc:83
+#: strings.hrc:85
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "ሰነድ መመልከቻ"
-#: strings.hrc:84
+#: strings.hrc:86
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "ወረቀት %1"
-#: strings.hrc:85
+#: strings.hrc:87
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "ክፍል %1"
-#: strings.hrc:86
+#: strings.hrc:88
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "በ ግራ በኩል"
-#: strings.hrc:87
+#: strings.hrc:89
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "የገጽ ቅድመ እይታ"
-#: strings.hrc:88
+#: strings.hrc:90
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "መሀከል ላይ"
-#: strings.hrc:89
+#: strings.hrc:91
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "በ ቀኝ በኩል"
-#: strings.hrc:90
+#: strings.hrc:92
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "የ ገጽ ራስጌ %1"
-#: strings.hrc:91
+#: strings.hrc:93
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "የ ገጽ ግርጌ %1"
-#: strings.hrc:92
+#: strings.hrc:94
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "መስመር ማስገቢያ"
-#: strings.hrc:93
+#: strings.hrc:95
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "እዚህ ነው ጽሁፍ ማስገባት ወይም ማረም የሚችሉት ቁጥሮች እና መቀመሪያ"
-#: strings.hrc:94
+#: strings.hrc:96
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "መገናኛ በድጋሚ ማጫወቻ"
-#: strings.hrc:95
+#: strings.hrc:97
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "የአይጥ ቁልፍ ተጭነዋል"
-#: strings.hrc:96
+#: strings.hrc:98
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "የ መቀመሪያ እቃ መደርደሪያ"
-#: strings.hrc:97
+#: strings.hrc:99
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "%PRODUCTNAME ሰንጠረዥ"
-#: strings.hrc:98
+#: strings.hrc:100
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(ለንባብ ብቻ)"
-#: strings.hrc:99
+#: strings.hrc:101
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(በቅድመ እይታ ዘዴ)"
-#: strings.hrc:100
+#: strings.hrc:102
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages"
msgstr "ገጾች"
-#: strings.hrc:101
+#: strings.hrc:103
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr "የ ባዶ ገጽ ውጤቶችን ~ማስቆሚያ"
-#: strings.hrc:102
+#: strings.hrc:104
msgctxt "SCSTR_PRINTOPT_PRNTCONTENT"
msgid "Print content"
msgstr "የ ማተሚያ ይዞታ"
-#: strings.hrc:103
+#: strings.hrc:105
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "~All sheets"
msgstr "~ሁሉንም ወረቀቶች"
-#: strings.hrc:104
+#: strings.hrc:106
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "~Selected sheets"
msgstr "የ ~ተመረጡት ወረቀቶች"
-#: strings.hrc:105
+#: strings.hrc:107
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Selected cells"
msgstr "የ ተመረጡት ክፍሎች"
-#: strings.hrc:106
+#: strings.hrc:108
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which print"
msgstr "ከ የትኛው ህትመት"
-#: strings.hrc:107
+#: strings.hrc:109
msgctxt "SCSTR_PRINTOPT_ALLPAGES"
msgid "All ~pages"
msgstr "ሁሉንም ~ገጾች"
-#: strings.hrc:108
+#: strings.hrc:110
msgctxt "SCSTR_PRINTOPT_PAGES_"
msgid "Pa~ges"
msgstr "ገ~ጾች"
-#: strings.hrc:109
+#: strings.hrc:111
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: strings.hrc:110
+#: strings.hrc:112
msgctxt "SCSTR_WARN_ME_IN_FUTURE_CHECK"
msgid "Warn me about this in the future."
msgstr "ስለዚህ ወደፊት አስጠንቅቀኝ"
-#: strings.hrc:111
+#: strings.hrc:113
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr "ይህን የ DDE ምንጭ ማሻሻል አልተቻለም ምናልባት የሰነዱ ምንጩ አልተከፈተ ይሆናል ፡ እባክዎን የሰነዱን ምንጭ ያስነሱ እና እንደገና ይሞክሩ"
-#: strings.hrc:112
+#: strings.hrc:114
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr "ይህን የሚቀጥለውን ፋይል መጫን አልተቻለም ፡ ከዚህ ፋይል ጋር የተገናኘው ዳታ ፋይል አልተሻሻለም"
-#: strings.hrc:113
+#: strings.hrc:115
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr "የ ውጪ አገናኞች ማሻሻያ"
-#: strings.hrc:114
+#: strings.hrc:116
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "Calc A1"
-#: strings.hrc:115
+#: strings.hrc:117
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "Excel A1"
-#: strings.hrc:116
+#: strings.hrc:118
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "Excel R1C1"
-#: strings.hrc:117
+#: strings.hrc:119
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "መጠኑ የአምድ ምል~ክቶችን ይዟል"
-#: strings.hrc:118
+#: strings.hrc:120
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "መጠኑ ~የረድፍ ምልክቶችን ይዟል"
-#: strings.hrc:119
+#: strings.hrc:121
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "ዋጋ የሌለው ዋጋ"
-#: strings.hrc:120
+#: strings.hrc:122
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr "ምንም መቀመሪያ አልተገለጸም"
-#: strings.hrc:121
+#: strings.hrc:123
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr "ምንም ረድፍ ወይንም አምድ አልተወሰነም"
-#: strings.hrc:122
+#: strings.hrc:124
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr "ያልተገለጸ ስም ወይንም መጠን"
-#: strings.hrc:123
+#: strings.hrc:125
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr "ያልተገለጸ ስም ወይንም የተሳሳተ ክፍል ማመሳከሪያ"
-#: strings.hrc:124
+#: strings.hrc:126
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr "መቀመሪያ አምድ አይሰራም"
-#: strings.hrc:125
+#: strings.hrc:127
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr "መቀመሪያ ረድፍ አይሰራም"
-#: strings.hrc:126
+#: strings.hrc:128
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "በራሱ አቀራረብ መጨመሪያ"
-#: strings.hrc:127
+#: strings.hrc:129
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "በራሱ አቀራረብ እንደገና መሰየሚያ"
-#: strings.hrc:128
+#: strings.hrc:130
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "ስም"
-#: strings.hrc:129
+#: strings.hrc:131
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "በራሱ አቀራረብ ማጥፊያ"
-#: strings.hrc:130
+#: strings.hrc:132
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "በ እርግጥ ይህን ማጥፋት ይፈልጋሉ # በራሱ አቀራረብ?"
-#: strings.hrc:131
+#: strings.hrc:133
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~መዝጊያ"
-#: strings.hrc:132
+#: strings.hrc:134
msgctxt "STR_JAN"
msgid "Jan"
msgstr "ጥር"
-#: strings.hrc:133
+#: strings.hrc:135
msgctxt "STR_FEB"
msgid "Feb"
msgstr "የካ"
-#: strings.hrc:134
+#: strings.hrc:136
msgctxt "STR_MAR"
msgid "Mar"
msgstr "መጋ"
-#: strings.hrc:135
+#: strings.hrc:137
msgctxt "STR_NORTH"
msgid "North"
msgstr "ሰሜን"
-#: strings.hrc:136
+#: strings.hrc:138
msgctxt "STR_MID"
msgid "Mid"
msgstr "Mid"
-#: strings.hrc:137
+#: strings.hrc:139
msgctxt "STR_SOUTH"
msgid "South"
msgstr "ደቡብ"
-#: strings.hrc:138
+#: strings.hrc:140
msgctxt "STR_SUM"
msgid "Total"
msgstr "ጠቅላላ"
-#: strings.hrc:139
+#: strings.hrc:141
msgctxt "STR_SHEET"
msgid "Sheet"
msgstr "ወረቀት"
-#: strings.hrc:140
+#: strings.hrc:142
msgctxt "STR_CELL"
msgid "Cell"
msgstr "ክፍል"
-#: strings.hrc:141
+#: strings.hrc:143
msgctxt "STR_CONTENT"
msgid "Content"
msgstr "ይዞታው"
-#: strings.hrc:142
+#: strings.hrc:144
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "ገጽ ማስቆሚያ"
-#: strings.hrc:143
+#: strings.hrc:145
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr "ክፍል ማስቆሚያ"
-#: strings.hrc:144
+#: strings.hrc:146
msgctxt "SCSTR_CONDITION"
msgid "Condition "
msgstr "ሁኔታው "
#. content description strings are also use d in ScLinkTargetsObj
-#: strings.hrc:147
+#: strings.hrc:149
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "ይዞታዎች"
-#: strings.hrc:148
+#: strings.hrc:150
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "ወረቀቶች"
-#: strings.hrc:149
+#: strings.hrc:151
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "የስሞች መጠን"
-#: strings.hrc:150
+#: strings.hrc:152
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "የዳታቤዝ መጠኖች"
-#: strings.hrc:151
+#: strings.hrc:153
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "ምስሎች"
-#: strings.hrc:152
+#: strings.hrc:154
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "የ OLE እቃዎች"
-#: strings.hrc:153
+#: strings.hrc:155
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "አስተያየቶች"
-#: strings.hrc:154
+#: strings.hrc:156
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "የ ተገናኙ ቦታዎች"
-#: strings.hrc:155
+#: strings.hrc:157
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "እቃዎች መሳያ"
-#: strings.hrc:156
+#: strings.hrc:158
msgctxt "SCSTR_DRAGMODE"
msgid "Drag Mode"
msgstr "መጎተቻ ዘዴ"
-#: strings.hrc:157
+#: strings.hrc:159
msgctxt "SCSTR_DISPLAY"
msgid "Display"
msgstr "ማሳያ"
-#: strings.hrc:158
+#: strings.hrc:160
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "ንቁ"
-#: strings.hrc:159
+#: strings.hrc:161
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "የ ቦዘነ"
-#: strings.hrc:160
+#: strings.hrc:162
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "የ ተደበቀ"
-#: strings.hrc:161
+#: strings.hrc:163
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "ንቁ መስኮት"
-#: strings.hrc:162
+#: strings.hrc:164
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "የ ትእይንት ስም"
-#: strings.hrc:163
+#: strings.hrc:165
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "አስተያየት"
-#: strings.hrc:165
+#: strings.hrc:167
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "እየጨመረ በሚሄድ መለያ"
-#: strings.hrc:166
+#: strings.hrc:168
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "እየቀነሰ በሚሄድ መለያ"
-#: strings.hrc:167
+#: strings.hrc:169
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "መለያ ማስተካከያ"
-#: strings.hrc:168
+#: strings.hrc:170
msgctxt "STR_BTN_TOGGLE_ALL"
msgid "All"
msgstr "ሁሉንም"
-#: strings.hrc:169
+#: strings.hrc:171
msgctxt "STR_BTN_SELECT_CURRENT"
msgid "Show only the current item."
msgstr "የ አሁኑን እቃ ብቻ ማሳያ"
-#: strings.hrc:170
+#: strings.hrc:172
msgctxt "STR_BTN_UNSELECT_CURRENT"
msgid "Hide only the current item."
msgstr "የ አሁኑን እቃ ብቻ መደበቂያ"
-#: strings.hrc:171
+#: strings.hrc:173
msgctxt "STR_EDIT_SEARCH_ITEMS"
msgid "Search items..."
msgstr "እቃዎችን መፈለጊያ..."
-#: strings.hrc:173
+#: strings.hrc:175
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "የሳጥኑ ስም"
-#: strings.hrc:174
+#: strings.hrc:176
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "መስመር ማስገቢያ"
-#: strings.hrc:175
+#: strings.hrc:177
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "የተግባር አዋቂ"
-#: strings.hrc:176
+#: strings.hrc:178
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "ተቀብያለሁ"
-#: strings.hrc:177
+#: strings.hrc:179
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "መሰረዣ"
-#: strings.hrc:178
+#: strings.hrc:180
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Sum"
msgstr "ድምር"
-#: strings.hrc:179
+#: strings.hrc:181
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "መቀመሪያ"
-#: strings.hrc:180
+#: strings.hrc:182
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "የ መቀመሪያ መደርደሪያ ማስፊያ"
-#: strings.hrc:181
+#: strings.hrc:183
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "የ መቀመሪያ መደርደሪያ ማሳነሻ"
-#: strings.hrc:183
+#: strings.hrc:185
msgctxt "STR_TITLE_CONFLICT"
msgid "Conflict"
msgstr "ልዩነት"
-#: strings.hrc:184
+#: strings.hrc:186
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "ደራሲው"
-#: strings.hrc:185
+#: strings.hrc:187
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "ቀን"
-#: strings.hrc:186
+#: strings.hrc:188
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "ያልታወቀ ተጠቃሚ"
-#: strings.hrc:188
+#: strings.hrc:190
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "አምድ ተጨምሯል"
-#: strings.hrc:189
+#: strings.hrc:191
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "ረድፍ ተጨምሯል "
-#: strings.hrc:190
+#: strings.hrc:192
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "ወረቀት ተጨምሯል "
-#: strings.hrc:191
+#: strings.hrc:193
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "አምዱ ጠፍቷል"
-#: strings.hrc:192
+#: strings.hrc:194
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "ረድፉ ጠፍቷል"
-#: strings.hrc:193
+#: strings.hrc:195
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "ወረቀቱ ጠፍቷል"
-#: strings.hrc:194
+#: strings.hrc:196
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "የተንቀሳቀሰው መጠን"
-#: strings.hrc:195
+#: strings.hrc:197
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "ይዞታቸው የተቀየረ"
-#: strings.hrc:196
+#: strings.hrc:198
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "ይዞታቸው የተቀየረ"
-#: strings.hrc:197
+#: strings.hrc:199
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "የተቀየረ ወደ "
-#: strings.hrc:198
+#: strings.hrc:200
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "ዋነኛው"
-#: strings.hrc:199
+#: strings.hrc:201
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "ለውጡ ተከልክሏል"
-#: strings.hrc:200
+#: strings.hrc:202
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "ተቀብያለሁ"
-#: strings.hrc:201
+#: strings.hrc:203
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "አልቀበልም"
-#: strings.hrc:202
+#: strings.hrc:204
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "ማስገቢያ የለም"
-#: strings.hrc:203
+#: strings.hrc:205
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<ባዶ>"
-#: strings.hrc:205
+#: strings.hrc:207
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "ያልተጠበቀ"
-#: strings.hrc:206
+#: strings.hrc:208
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "በመግቢያ ቃል-የተጠበቀ አይደለም"
-#: strings.hrc:207
+#: strings.hrc:209
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "Hash incompatible"
-#: strings.hrc:208
+#: strings.hrc:210
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "Hash compatible"
-#: strings.hrc:209
+#: strings.hrc:211
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "እንደገና-መጻፊያ"
#. MovingAverageDialog
-#: strings.hrc:212
+#: strings.hrc:214
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr "በ መካከለኛ በ _መጓዝ ላይ"
#. ExponentialSmoothingDialog
-#: strings.hrc:214
+#: strings.hrc:216
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr "ኤክስፖኔንሺያል ማለስለሻ"
#. AnalysisOfVarianceDialog
-#: strings.hrc:216
+#: strings.hrc:218
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr "የ ልዩነት መመርመሪያ"
-#: strings.hrc:217
+#: strings.hrc:219
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr "የ ልዩነት መመርመሪያ - ነጠላ ጉዳይ"
-#: strings.hrc:218
+#: strings.hrc:220
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr "የ ልዩነት መመርመሪያ - ሁለት ጉዳይ"
-#: strings.hrc:219
+#: strings.hrc:221
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "ቡድኖች"
-#: strings.hrc:220
+#: strings.hrc:222
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr "በ ቡድኖች መካከል"
-#: strings.hrc:221
+#: strings.hrc:223
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr "በ ቡድኖች ውስጥ"
-#: strings.hrc:222
+#: strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr "የ ልዩነቶች ምንጭ"
-#: strings.hrc:223
+#: strings.hrc:225
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr "SS"
-#: strings.hrc:224
+#: strings.hrc:226
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr "df"
-#: strings.hrc:225
+#: strings.hrc:227
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr "MS"
-#: strings.hrc:226
+#: strings.hrc:228
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr "F"
-#: strings.hrc:227
+#: strings.hrc:229
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr "P-value"
-#: strings.hrc:228
+#: strings.hrc:230
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr "F critical"
-#: strings.hrc:229
+#: strings.hrc:231
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "ጠቅላላ"
#. CorrelationDialog
-#: strings.hrc:231
+#: strings.hrc:233
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr "ኮኦሪሌሽን"
-#: strings.hrc:232
+#: strings.hrc:234
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr "ኮኦሪሌሽን"
#. CovarianceDialog
-#: strings.hrc:234
+#: strings.hrc:236
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr "ኮቫሪያንስ"
-#: strings.hrc:235
+#: strings.hrc:237
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr "ኮቫሪያንስስ"
#. DescriptiveStatisticsDialog
-#: strings.hrc:237
+#: strings.hrc:239
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr "መግለጫ ስታትስቲክስ"
-#: strings.hrc:238
+#: strings.hrc:240
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "አማካይ"
-#: strings.hrc:239
+#: strings.hrc:241
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr "መደበኛ ስህተት"
-#: strings.hrc:240
+#: strings.hrc:242
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "ዘዴ"
-#: strings.hrc:241
+#: strings.hrc:243
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "መሀከለኛ"
-#: strings.hrc:242
+#: strings.hrc:244
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "ልዩነት"
-#: strings.hrc:243
+#: strings.hrc:245
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr "መደበኛ ልዩነት"
-#: strings.hrc:244
+#: strings.hrc:246
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr "ኩርቶሲስ"
-#: strings.hrc:245
+#: strings.hrc:247
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr "የሚያጋድልበት"
-#: strings.hrc:246
+#: strings.hrc:248
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "መጠን"
-#: strings.hrc:247
+#: strings.hrc:249
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "አነስተኛ"
-#: strings.hrc:248
+#: strings.hrc:250
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "ከፍተኛ"
-#: strings.hrc:249
+#: strings.hrc:251
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "ድምር"
-#: strings.hrc:250
+#: strings.hrc:252
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "መቁጠሪያ"
-#: strings.hrc:251
+#: strings.hrc:253
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile "
msgstr "የ መጀመሪያ ሩብ "
-#: strings.hrc:252
+#: strings.hrc:254
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr "የ ሶስተኛ ሩብ"
#. RandomNumberGeneratorDialog
-#: strings.hrc:254
+#: strings.hrc:256
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr "በነሲብ ($(DISTRIBUTION))"
-#: strings.hrc:255
+#: strings.hrc:257
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr "ተመሳሳይ"
-#: strings.hrc:256
+#: strings.hrc:258
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr "ተመሳሳይ ኢንቲጀር"
-#: strings.hrc:257
+#: strings.hrc:259
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "መደበኛ"
-#: strings.hrc:258
+#: strings.hrc:260
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr "ኮቺ"
-#: strings.hrc:259
+#: strings.hrc:261
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr "ቤርኖሊ"
-#: strings.hrc:260
+#: strings.hrc:262
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr "ባይኖሚያል"
-#: strings.hrc:261
+#: strings.hrc:263
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr "አሉታዊ ባይኖሚያል"
-#: strings.hrc:262
+#: strings.hrc:264
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr "ቺ ስኴርድ"
-#: strings.hrc:263
+#: strings.hrc:265
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "ጂኦሜትሪክ"
-#: strings.hrc:264
+#: strings.hrc:266
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "አነስተኛ"
-#: strings.hrc:265
+#: strings.hrc:267
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "ከፍተኛ"
-#: strings.hrc:266
+#: strings.hrc:268
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "አማካይ"
-#: strings.hrc:267
+#: strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr "መደበኛ ልዩነት"
-#: strings.hrc:268
+#: strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "መሀከለኛ"
-#: strings.hrc:269
+#: strings.hrc:271
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "ሲግማ"
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr "p ዋጋ"
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr "የ ሙከራዎች ቁጥር"
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr "የ nu ዋጋ"
#. SamplingDialog
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr "ናሙና"
#. Names of dialogs
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_FTEST"
msgid "F-test"
msgstr "F-መሞከሪያ"
-#: strings.hrc:277
+#: strings.hrc:279
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr "F-መሞከሪያ"
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_TTEST"
-msgid "t-test"
-msgstr "t-መሞከሪያ"
+msgid "Paired t-test"
+msgstr ""
-#: strings.hrc:279
+#: strings.hrc:281
msgctxt "STR_TTEST_UNDO_NAME"
-msgid "t-test"
-msgstr "t-መሞከሪያ"
+msgid "Paired t-test"
+msgstr ""
-#: strings.hrc:280
+#: strings.hrc:282
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr "z-መሞከሪያ"
-#: strings.hrc:281
+#: strings.hrc:283
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr "z-መሞከሪያ"
-#: strings.hrc:282
+#: strings.hrc:284
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr "የ ነፃነት መሞከሪያ (ቺ-ስኴር)"
-#: strings.hrc:283
+#: strings.hrc:285
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr "ዝቅ ማድረጊያ"
-#: strings.hrc:284
+#: strings.hrc:286
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr "ዝቅ ማድረጊያ"
#. Common
-#: strings.hrc:286
+#: strings.hrc:288
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr "አምድ %NUMBER%"
-#: strings.hrc:287
+#: strings.hrc:289
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr "ረድፍ %NUMBER%"
-#: strings.hrc:288
+#: strings.hrc:290
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "አልፋ"
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "ተለዋዋጭ 1"
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "ተለዋዋጭ 2"
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr "የ መላምት አማካይ ልዩነት"
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "የታየው"
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr "የታየው አማካይ ልዩነት"
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr "df"
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr "P-ዋጋ"
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr "አደገኛ ዋጋ"
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr "ስታስቲክስ መሞከሪያ"
#. RegressionDialog
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr "ቀጥተኛ"
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "ሎጋሪዝም"
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "ሀይል"
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr "ዝቅ ማድረጊያ ዘዴ"
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr "R^2"
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_LABEL_SLOPE"
msgid "Slope"
msgstr "ስሎፕ"
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "ኢንተርሴፕት"
#. F Test
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr "P (F<=f) right-tail"
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr "F Critical right-tail"
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr "P (F<=f) left-tail"
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr "F Critical left-tail"
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr "P two-tail"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr "F Critical two-tail"
#. t Test
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr "ፒርሰን ኮኦሪሌሽን"
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr "የ ተለዋዋጭ ልዩነቶች"
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr "t ስታስቲክስ"
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr "P (T<=t) አንድ-ጭራ"
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr "t ወሳኝ አንድ-ጭራ"
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr "P (T<=t) ሁለት-ጭራ"
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr "t ወሳኝ ሁለት-ጭራ"
#. Z Test
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr "z"
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr "የ ታወቀ ልዩነት"
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr "P (Z<=z) አንድ-ጭራ"
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr "z ወሳኝ አንድ-ጭራ"
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr "P (Z<=z) ሁለት-ጭራ"
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr "z ወሳኝ ሁለት-ጭራ"
@@ -17790,7 +17800,7 @@ msgstr "የ _ሜዳ ቅደም ተከተል:"
#: imoptdialog.ui:124
msgctxt "imoptdialog|textft"
msgid "Strin_g delimiter:"
-msgstr ""
+msgstr "የ ሀረ_ግ ምልክት:"
#: imoptdialog.ui:135
msgctxt "imoptdialog|asshown"
@@ -20637,16 +20647,11 @@ msgctxt "scgeneralpage|label3"
msgid "Input Settings"
msgstr "ማስገቢያ ማሰናጃዎች"
-#: searchresults.ui:8
+#: searchresults.ui:9
msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "የ ፍለጋው ውጤቶች"
-#: searchresults.ui:60
-msgctxt "searchresults|skipped"
-msgid "skipped $1 ..."
-msgstr "ተዘሏል $1 ..."
-
#: selectdatasource.ui:8
msgctxt "selectdatasource|SelectDataSourceDialog"
msgid "Select Data Source"
@@ -22355,7 +22360,7 @@ msgstr "ሌላ"
#: textimportcsv.ui:428
msgctxt "textimportcsv|texttextdelimiter"
msgid "Strin_g delimiter:"
-msgstr ""
+msgstr "የ ሀረ_ግ ምልክት:"
#: textimportcsv.ui:479
msgctxt "textimportcsv|separatoroptions"
@@ -22365,7 +22370,7 @@ msgstr "የ መለያያ ምርጫዎች"
#: textimportcsv.ui:513
msgctxt "textimportcsv|quotedfieldastext"
msgid "F_ormat quoted field as text"
-msgstr ""
+msgstr "የ ጥቅስ ሜዳ አ_ቀራረብ እንደ ጽሁፍ"
#: textimportcsv.ui:529
msgctxt "textimportcsv|detectspecialnumbers"
diff --git a/source/am/svtools/messages.po b/source/am/svtools/messages.po
index 59298ab6c1e..48e1abbfb29 100644
--- a/source/am/svtools/messages.po
+++ b/source/am/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-06 15:58+0100\n"
"PO-Revision-Date: 2017-11-23 23:16+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1511478965.000000\n"
#: errtxt.hrc:30
@@ -2448,6 +2448,11 @@ msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fon"
msgstr "Fon"
+#: langtab.hrc:409
+msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
+msgid "Plautdietsch"
+msgstr ""
+
#: templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
msgid "Title"
@@ -2533,7 +2538,7 @@ msgctxt "addresstemplatedialog|label100"
msgid "Address Book Source"
msgstr "የ አድራሻ ደብተር ምንጭ"
-#: addresstemplatedialog.ui:521
+#: addresstemplatedialog.ui:522
msgctxt "addresstemplatedialog|label23"
msgid "Field Assignment"
msgstr "የ ሜዳ ስራ"
@@ -3333,1159 +3338,1169 @@ msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "የ HTML format ያለ አስተያየት"
-#: strings.hrc:98
+#: strings.hrc:97
+msgctxt "STR_FORMAT_ID_PNG_BITMAP"
+msgid "PNG Bitmap"
+msgstr ""
+
+#: strings.hrc:99
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "አካሉን % ማስገባት አልተቻለም"
-#: strings.hrc:99
+#: strings.hrc:100
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "አካሉን ከ ፋይል % ማስገባት አልተቻለም"
-#: strings.hrc:100
+#: strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_PLUGIN"
msgid "Plug-in from document % could not be inserted."
msgstr "ተሰ-ኪውን ከ ሰነድ ውስጥ % ማስገባት አልተቻለም"
-#: strings.hrc:101
+#: strings.hrc:102
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "ተጨማሪ እቃዎች"
-#: strings.hrc:102
+#: strings.hrc:103
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "ያልታወቀ ምንጭ"
-#: strings.hrc:104
+#: strings.hrc:105
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "ስም"
-#: strings.hrc:105
+#: strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "መጠን"
-#: strings.hrc:106
+#: strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "የተሻሻለበት ቀን"
-#: strings.hrc:107
+#: strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "አይነት"
-#: strings.hrc:108
+#: strings.hrc:109
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "ባይትስ"
-#: strings.hrc:109
+#: strings.hrc:110
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "ኪባ"
-#: strings.hrc:110
+#: strings.hrc:111
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "ሜባ"
-#: strings.hrc:111
+#: strings.hrc:112
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ጌባ"
#. descriptions of accessible objects
-#: strings.hrc:114
+#: strings.hrc:115
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "ረድፍ: %1, አምድ: %2"
-#: strings.hrc:115
+#: strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", አይነት: %1, URL: %2"
-#: strings.hrc:116
+#: strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ፎልደር"
-#: strings.hrc:117
+#: strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ፋይል"
-#: strings.hrc:118
+#: strings.hrc:119
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "ባዶ ሜዳ"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: strings.hrc:124
+#: strings.hrc:125
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumeric"
#. default or normal sorting algorithm
-#: strings.hrc:126
+#: strings.hrc:127
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "መደበኛ"
#. default or normal sorting algorithm
-#: strings.hrc:128
+#: strings.hrc:129
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ባህሪ ማሰናጃ"
#. german dictionary word order / sorting
-#: strings.hrc:130
+#: strings.hrc:131
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "መዝገበ ቃላት"
#. chinese sorting algorithm
-#: strings.hrc:132
+#: strings.hrc:133
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: strings.hrc:134
+#: strings.hrc:135
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "መምቻ"
#. chinese sorting algorithm
-#: strings.hrc:136
+#: strings.hrc:137
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "መሰረታዊ"
#. sorting according to the unicode code point of the character
-#: strings.hrc:138
+#: strings.hrc:139
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: strings.hrc:140
+#: strings.hrc:141
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: strings.hrc:142
+#: strings.hrc:143
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "የስልክ ማውጫ"
-#: strings.hrc:143
+#: strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Phonetic (alphanumeric first)"
-#: strings.hrc:144
+#: strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Phonetic (alphanumeric last)"
#. alphanumeric indexentry algorithm
-#: strings.hrc:146
+#: strings.hrc:147
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumeric"
#. korean dictionary indexentry algorithm
-#: strings.hrc:148
+#: strings.hrc:149
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "መዝገበ ቃላት"
#. chinese sorting algorithm
-#: strings.hrc:150
+#: strings.hrc:151
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: strings.hrc:152
+#: strings.hrc:153
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "መሰረታዊ"
#. chinese indexentry algorithm
-#: strings.hrc:154
+#: strings.hrc:155
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "መምቻ"
#. chinese indexentry algorithm
-#: strings.hrc:156
+#: strings.hrc:157
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: strings.hrc:157
+#: strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Phonetic (alphanumeric first, grouped by syllables)"
-#: strings.hrc:158
+#: strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Phonetic (alphanumeric first, grouped by consonants)"
-#: strings.hrc:159
+#: strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Phonetic (alphanumeric last, grouped by syllables)"
-#: strings.hrc:160
+#: strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Phonetic (alphanumeric last, grouped by consonants)"
-#: strings.hrc:162
+#: strings.hrc:163
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr "ቀን"
-#: strings.hrc:163
+#: strings.hrc:164
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr "ሳምንት"
-#: strings.hrc:164
+#: strings.hrc:165
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "ዛሬ"
-#: strings.hrc:165
+#: strings.hrc:166
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "ምንም"
-#: strings.hrc:167
+#: strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ቀላል"
-#: strings.hrc:168
+#: strings.hrc:169
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "ቀላል ማዝመሚያ"
-#: strings.hrc:169
+#: strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "መደበኛ"
-#: strings.hrc:170
+#: strings.hrc:171
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ማዝመሚያ"
-#: strings.hrc:171
+#: strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "ማድመቂያ"
-#: strings.hrc:172
+#: strings.hrc:173
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "ያዘመመ ማድመቂያ"
-#: strings.hrc:173
+#: strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "ጥቁር"
-#: strings.hrc:174
+#: strings.hrc:175
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "ጥቁር ያዘመመ"
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "መጽሀፍ"
-#: strings.hrc:176
+#: strings.hrc:177
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "ማድመቂያ ማዝመሚያ"
-#: strings.hrc:177
+#: strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "የታመቀ"
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "የታመቀ ማድመቂያ"
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "የታመቀ ማድመቂያ ማዝመሚያ"
-#: strings.hrc:180
+#: strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "የታመቀ ማድመቂያ ማዝመሚያ"
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "የታመቀ ማዝመሚያ"
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "የታመቀ ማዝመሚያ"
-#: strings.hrc:183
+#: strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "ተጨማሪ ብርሃን"
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "ተጨማሪ ብርሃን ማዝመሚያ"
-#: strings.hrc:185
+#: strings.hrc:186
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "ማዝመሚያ"
-#: strings.hrc:186
+#: strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "ንዑስ ማድመቂያ"
-#: strings.hrc:187
+#: strings.hrc:188
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "ንዑስ ማድመቂያ ማዝመሚያ"
-#: strings.hrc:188
+#: strings.hrc:189
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "ተመሳሳይ ፊደል መጠቀሚያ ለ ሁለቱም ለ ማተሚያው እና ለ ስክሪኑ መመልከቻ"
-#: strings.hrc:189
+#: strings.hrc:190
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "ይህ የ ማተሚያ ፊደል ነው: የ መመልከቻው ምስል ትንሽ ይለያል"
-#: strings.hrc:190
+#: strings.hrc:191
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "የዚህ ፊደል ዘዴ ይታያል ወይም ተቀራራቢውን ተመሳሳይ ዘዴ ይጠቀማል"
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ይህ ፊደል አልተገጠመም ፡ ተቀራራቢ ዝግጁ የሆነውን ፊደል ይጠቀማል"
-#: strings.hrc:193
+#: strings.hrc:194
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "መቃኛ ..."
-#: strings.hrc:194
+#: strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ወደ ቤት ማንቀሳቀሻ"
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "ወደ ግራ ማንቀሳቀሻ"
-#: strings.hrc:196
+#: strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "ወደ ቀኝ ማንቀሳቀሻ"
-#: strings.hrc:197
+#: strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "ወደ መጨረሻው ማንቀሳቀሻ"
-#: strings.hrc:198
+#: strings.hrc:199
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "መጨመሪያ"
-#: strings.hrc:200
+#: strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "የ አግድም ማስመሪያ"
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "የ ቁመት ማስመሪያ"
-#: strings.hrc:203
+#: strings.hrc:204
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bit threshold"
-#: strings.hrc:204
+#: strings.hrc:205
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit dithered"
-#: strings.hrc:205
+#: strings.hrc:206
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 ቢት ግራጫማ"
-#: strings.hrc:206
+#: strings.hrc:207
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 ቢት ቀለም"
-#: strings.hrc:207
+#: strings.hrc:208
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 ቢት ግራጫማ"
-#: strings.hrc:208
+#: strings.hrc:209
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 ቢት ቀለም"
-#: strings.hrc:209
+#: strings.hrc:210
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 ቢት እውነተኛ ቀለም"
-#: strings.hrc:210
+#: strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "ምስሉ በ ግምት ይህን ያህል %1 ኪባ ማስታወሻ ይፈልጋል"
-#: strings.hrc:211
+#: strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "ምስሉ በ ግምት ይህን ያህል %1 ኪባ ማስታወሻ ይፈልጋል የ ፋይሉ መጠን ይህን ያህል ነው %2 ኪባ"
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "የፋይሉ መጠን %1 ኪባ"
-#: strings.hrc:213
+#: strings.hrc:214
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "ጋባዥ"
-#: strings.hrc:214
+#: strings.hrc:215
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "ፖርት"
-#: strings.hrc:215
+#: strings.hrc:216
+msgctxt "STR_SVT_OTHER_CMIS"
+msgid "Other CMIS"
+msgstr ""
+
+#: strings.hrc:217
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "ዝግጁ"
-#: strings.hrc:216
+#: strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "ተቋርጧል"
-#: strings.hrc:217
+#: strings.hrc:219
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "በቀጠሮ ላይ ማጥፊያ"
-#: strings.hrc:218
+#: strings.hrc:220
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "በስራ ላይ"
-#: strings.hrc:219
+#: strings.hrc:221
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "በማስነሳት ላይ"
-#: strings.hrc:220
+#: strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "በመጠበቅ ላይ"
-#: strings.hrc:221
+#: strings.hrc:223
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "በሟሟቅ ላይ"
-#: strings.hrc:222
+#: strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "በሂደት ላይ"
-#: strings.hrc:223
+#: strings.hrc:225
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "በማተም ላይ"
-#: strings.hrc:224
+#: strings.hrc:226
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "ከመስመር ውጪ"
-#: strings.hrc:225
+#: strings.hrc:227
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ስህተት"
-#: strings.hrc:226
+#: strings.hrc:228
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "ያልታወቀ ሰርቨር"
-#: strings.hrc:227
+#: strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "ወረቀቱ ነክሷል"
-#: strings.hrc:228
+#: strings.hrc:230
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "በቂ ወረቀት የለም"
-#: strings.hrc:229
+#: strings.hrc:231
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "በእጅ ማቀበያ"
-#: strings.hrc:230
+#: strings.hrc:232
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "የወረቀት ችግር"
-#: strings.hrc:231
+#: strings.hrc:233
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O active"
-#: strings.hrc:232
+#: strings.hrc:234
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Output bin full"
-#: strings.hrc:233
+#: strings.hrc:235
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "ቶነር ዝቅተኛ ነው"
-#: strings.hrc:234
+#: strings.hrc:236
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "ቶነር የለም"
-#: strings.hrc:235
+#: strings.hrc:237
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "ገጹን ማጥፊያ"
-#: strings.hrc:236
+#: strings.hrc:238
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "የተጠቃሚ ጣልቃ መግባት ያስፈልጋል"
-#: strings.hrc:237
+#: strings.hrc:239
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "በቂ ያልሆነ memory"
-#: strings.hrc:238
+#: strings.hrc:240
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "ሽፋኑን መክፈቻ"
-#: strings.hrc:239
+#: strings.hrc:241
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "ሀይል ማዳኛ ዘዴ"
-#: strings.hrc:240
+#: strings.hrc:242
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "ነባር ማተሚያ"
-#: strings.hrc:241
+#: strings.hrc:243
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d ሰነዶች"
-#: strings.hrc:243
+#: strings.hrc:245
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~ጨርሷል"
-#: strings.hrc:244
+#: strings.hrc:246
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~ይቀጥሉ >"
-#: strings.hrc:245
+#: strings.hrc:247
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ወደ ኋ~ላ"
-#: strings.hrc:246
+#: strings.hrc:248
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "ደረጃዎች"
-#: strings.hrc:248
+#: strings.hrc:250
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ምንም>"
-#: strings.hrc:249
+#: strings.hrc:251
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "ድርጅት"
-#: strings.hrc:250
+#: strings.hrc:252
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "ክፍል"
-#: strings.hrc:251
+#: strings.hrc:253
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "የ መጀመሪያ ስም"
-#: strings.hrc:252
+#: strings.hrc:254
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "የ አባት ስም"
-#: strings.hrc:253
+#: strings.hrc:255
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "መንገድ"
-#: strings.hrc:254
+#: strings.hrc:256
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "አገር"
-#: strings.hrc:255
+#: strings.hrc:257
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ፖሳቁ"
-#: strings.hrc:256
+#: strings.hrc:258
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "ከተማ"
-#: strings.hrc:257
+#: strings.hrc:259
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "አርእስት"
-#: strings.hrc:258
+#: strings.hrc:260
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "አካባቢ"
-#: strings.hrc:259
+#: strings.hrc:261
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "አድራሻ ከ"
-#: strings.hrc:260
+#: strings.hrc:262
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "መነሻዎች"
-#: strings.hrc:261
+#: strings.hrc:263
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Complimentary close"
-#: strings.hrc:262
+#: strings.hrc:264
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "የ ቤት: ስልክ"
-#: strings.hrc:263
+#: strings.hrc:265
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "የስራ: ስልክ"
-#: strings.hrc:264
+#: strings.hrc:266
msgctxt "STR_FIELD_FAX"
msgid "FAX"
msgstr "ፋክስ"
-#: strings.hrc:265
+#: strings.hrc:267
msgctxt "STR_FIELD_EMAIL"
msgid "E-mail"
msgstr "ኢ-ሜይል"
-#: strings.hrc:266
+#: strings.hrc:268
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: strings.hrc:267
+#: strings.hrc:269
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "ማስታወሻ"
-#: strings.hrc:268
+#: strings.hrc:270
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ተጠቃሚ 1"
-#: strings.hrc:269
+#: strings.hrc:271
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ተጠቃሚ 2"
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ተጠቃሚ 3"
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ተጠቃሚ 4"
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "መለያ"
-#: strings.hrc:273
+#: strings.hrc:275
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "አገር"
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "የቢሮ : ስልክ"
-#: strings.hrc:275
+#: strings.hrc:277
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "ተንቀሳቃሽ"
-#: strings.hrc:277
+#: strings.hrc:279
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "ሌሎች: ስልኮች"
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "ቀን መቁጠሪያ"
-#: strings.hrc:279
+#: strings.hrc:281
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "መጋበዣ"
-#: strings.hrc:281
+#: strings.hrc:283
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: strings.hrc:283
+#: strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME ያስፈልጋል የ Java runtime environment (JRE) ይህን ተግባር ለመፈጸም እባክዎን JRE ን ይግጠሙ እና እንደገና ያስነሱ %PRODUCTNAME."
-#: strings.hrc:284
+#: strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on Mac OS X 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME ያስፈለጋል የ Oracle's Java Development Kit (JDK) በ Mac OS X 10.10 ወይንም ይህን ስራ ለ መፈጸም: እባክዎን ይግጠሙ እና እንደገና ያስጀምሩ %PRODUCTNAME."
-#: strings.hrc:285
+#: strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "ይህ %PRODUCTNAME ማዋቀሪያ ተቀይሯል: በ %PRODUCTNAME - ምርጫዎች - %PRODUCTNAME - የ ረቀቀ ይምረጡ የ Java runtime environment መጠቀም የሚፈልጉትን በ %PRODUCTNAME."
-#: strings.hrc:286
+#: strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "ይህ %PRODUCTNAME ማዋቀሪያ ተቀይሯል: በ መሳሪያ - ምርጫ - %PRODUCTNAME - የረቀቀ: ይምረጡ የ Java runtime environment መጠቀም የሚፈልጉትን በ %PRODUCTNAME."
-#: strings.hrc:287
+#: strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ይህ የ Java runtime environment ይፈልጋል: (JRE) ይህን ስራ ለ መፈጸም: የ ተመረጠው የ JRE የ ተበላሸ ነው: እባክዎን ሌላ እትም ይምረጡ: ወይንም ይግጠሙ አዲስ JRE እና ይምረጡ ከ %PRODUCTNAME - ምርጫዎች - %PRODUCTNAME - የረቀቀ"
-#: strings.hrc:288
+#: strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ይህ የ Java runtime environment ይፈልጋል: (JRE) ይህን ስራ ለ መፈጸም: የ ተመረጠው የ JRE የ ተበላሸ ነው: እባክዎን ሌላ እትም ይምረጡ: ወይንም ይግጠሙ አዲስ JRE እና ይምረጡ ከ መሳሪያዎች - ምርጫዎች - %PRODUCTNAME – የረቀቀ"
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE ያስፈልጋል"
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE ይምረጡ"
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE የተበላሸ ነው"
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "የ ኮዱ ምንጭ"
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "ፋይል ምልክት ማድረጊያ"
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ንድፍ"
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "ፋይል ማዋቀሪያ"
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "መተግበሪያ"
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "የ ዳታቤዝ ሰንጠረዥ"
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "የስርአት ፋይል"
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word document"
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "የእርዳታ ፋይል"
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "የ HTML ሰነድ"
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "የ ማህደር ፋይል"
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "የመግቢያ ፋይል"
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice Database"
-#: strings.hrc:306
+#: strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Master Document"
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice Image"
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "የጽሁፍ ፋይል"
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "አገናኝ"
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 Template"
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel document"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel template"
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch file"
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ፋይል"
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ፎልደር"
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "የጽሁፍ ሰነድ"
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "ሰንጠረዥ"
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "ማቅረቢያ"
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "መሳያ"
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "የ HTML ሰነድ"
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "ዋናው ሰነድ"
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "መቀመሪያ"
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ዳታቤዝ"
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 የ ሰንጠረዥ ቴምፕሌት"
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 የ መሳያ ቴምፕሌት"
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 የ ማቅረቢያ ቴምፕሌት"
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 የ ጽሁፍ ሰነድ ቴምፕሌት"
-#: strings.hrc:328
+#: strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "የአካባቢ drive"
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "የዲስክ drive"
-#: strings.hrc:330
+#: strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "ሲዲ-ራም drive"
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "የኔትዎርክ ግንኙነት"
-#: strings.hrc:332
+#: strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint Document"
-#: strings.hrc:333
+#: strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint Template"
-#: strings.hrc:334
+#: strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint Show"
-#: strings.hrc:335
+#: strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 መቀመሪያ"
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Chart"
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 መሳያ"
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 ሰንጠረዥ"
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 ማቅረቢያ"
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 የ ጽሁፍ ሰነድ"
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 ዋናው ሰነድ"
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML Document"
-#: strings.hrc:343
+#: strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument ዳታቤዝ"
-#: strings.hrc:344
+#: strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument መሳያ"
-#: strings.hrc:345
+#: strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument መቀመሪያ"
-#: strings.hrc:346
+#: strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument ዋናው ሰነድ"
-#: strings.hrc:347
+#: strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument ማቅረቢያ"
-#: strings.hrc:348
+#: strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument ሰንጠረዥ"
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument ጽሁፍ"
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument የ ሰንጠረዥ ቴምፕሌት"
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument የ መሳያ ቴምፕሌት"
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument የ ማቅረቢያ ቴምፕሌት"
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument የ ጽሁፍ ቴምፕሌት"
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME ተጨማሪዎች"
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell SpellChecker"
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen Hyphenator"
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "Mythes Thesaurus"
msgstr "Mythes Thesaurus"
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index a499584939d..38f9fc233b1 100644
--- a/source/am/svx/messages.po
+++ b/source/am/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-24 14:55+0100\n"
-"PO-Revision-Date: 2017-11-23 23:14+0000\n"
+"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"PO-Revision-Date: 2017-12-06 00:03+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511478898.000000\n"
+"X-POOTLE-MTIME: 1512518601.000000\n"
#: fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -281,6 +281,173 @@ msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr "የ ሰያፍ ድንበር መስመር ከ ታች በ ግራ እስከ ላይ ቀኝ በኩል"
+#: numberingtype.hrc:29
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "None"
+msgstr ""
+
+#. SVX_NUM_NUMBER_NONE
+#: numberingtype.hrc:30
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Bullet"
+msgstr ""
+
+#. SVX_NUM_CHAR_SPECIAL
+#: numberingtype.hrc:31
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Graphics"
+msgstr ""
+
+#. SVX_NUM_BITMAP
+#: numberingtype.hrc:32
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Linked graphics"
+msgstr ""
+
+#. SVX_NUM_BITMAP|0x80
+#: numberingtype.hrc:33
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "1, 2, 3, ..."
+msgstr ""
+
+#. SVX_NUM_ARABIC
+#: numberingtype.hrc:34
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "A, B, C, ..."
+msgstr ""
+
+#. SVX_NUM_CHARS_UPPER_LETTER
+#: numberingtype.hrc:35
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "a, b, c, ..."
+msgstr ""
+
+#. SVX_NUM_CHARS_LOWER_LETTER
+#: numberingtype.hrc:36
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "I, II, III, ..."
+msgstr ""
+
+#. SVX_NUM_ROMAN_UPPER
+#: numberingtype.hrc:37
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "i, ii, iii, ..."
+msgstr ""
+
+#. SVX_NUM_ROMAN_LOWER
+#: numberingtype.hrc:38
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "A, .., AA, .., AAA, ..."
+msgstr ""
+
+#. SVX_NUM_CHARS_UPPER_LETTER_N
+#: numberingtype.hrc:39
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "a, .., aa, .., aaa, ..."
+msgstr ""
+
+#. SVX_NUM_CHARS_LOWER_LETTER_N
+#: numberingtype.hrc:40
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Native Numbering"
+msgstr ""
+
+#. NATIVE_NUMBERING
+#: numberingtype.hrc:41
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_BG
+#: numberingtype.hrc:42
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, аб, ... (Bulgarian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_BG
+#: numberingtype.hrc:43
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_N_BG
+#: numberingtype.hrc:44
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, бб, ... (Bulgarian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_N_BG
+#: numberingtype.hrc:45
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Аб, ... (Russian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_RU
+#: numberingtype.hrc:46
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, аб, ... (Russian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_RU
+#: numberingtype.hrc:47
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Бб, ... (Russian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_N_RU
+#: numberingtype.hrc:48
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, бб, ... (Russian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_N_RU
+#: numberingtype.hrc:49
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Аб, ... (Serbian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_SR
+#: numberingtype.hrc:50
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, аб, ... (Serbian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_SR
+#: numberingtype.hrc:51
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "А, Б, .., Аа, Бб, ... (Serbian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_UPPER_LETTER_N_SR
+#: numberingtype.hrc:52
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "а, б, .., аа, бб, ... (Serbian)"
+msgstr ""
+
+#. CHARS_CYRILLIC_LOWER_LETTER_N_SR
+#: numberingtype.hrc:53
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "Α, Β, Γ, ... (Greek Upper Letter)"
+msgstr ""
+
+#. CHARS_GREEK_UPPER_LETTER
+#: numberingtype.hrc:54
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "α, β, γ, ... (Greek Lower Letter)"
+msgstr ""
+
+#. CHARS_GREEK_LOWER_LETTER
+#: numberingtype.hrc:55
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "א...י, יא...כ, ..."
+msgstr ""
+
+#. NUMBER_HEBREW
+#: numberingtype.hrc:56
+msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
+msgid "א...ת, אא...תת, ..."
+msgstr ""
+
#: samecontent.hrc:18
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "All Pages"
@@ -1936,7 +2103,7 @@ msgstr "መመደቢያ:"
#: classificationdialog.ui:125
msgctxt "classificationdialog|label-InternationalClassification"
msgid "International:"
-msgstr ""
+msgstr "አለም አቀፍ:"
#: classificationdialog.ui:168
msgctxt "classificationdialog|label-Marking"
@@ -1971,7 +2138,7 @@ msgstr "መጨመሪያ"
#: classificationdialog.ui:326
msgctxt "classificationdialog|label-PartNumber"
msgid "Part:"
-msgstr ""
+msgstr "አካል:"
#: classificationdialog.ui:373
msgctxt "classificationdialog|label-IntellectualProperty"
@@ -3444,12 +3611,12 @@ msgstr "ዘዴ_ዎች መፈለጊያ"
#: findreplacedialog.ui:734
msgctxt "findreplacedialog|includediacritics"
msgid "Diac_ritic-sensitive"
-msgstr ""
+msgstr "Diac_ritic-sensitive"
#: findreplacedialog.ui:749
msgctxt "findreplacedialog|includekashida"
msgid "_Kashida-sensitive"
-msgstr ""
+msgstr "_Kashida-sensitive"
#: findreplacedialog.ui:764
msgctxt "findreplacedialog|matchcharwidth"
@@ -8639,7 +8806,6 @@ msgid "Light Purple"
msgstr "ነጣ ያለ ሀምራዊ"
#: strings.hrc:585
-#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr "ነጣ ያለ ሐምራዊ ሰማያዊ"
@@ -8730,2462 +8896,2403 @@ msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr "ጥቁር ሎሚ"
-#. Elements of the Tango color palette
-#: strings.hrc:605
-msgctxt "RID_SVXSTR_COLOR_BUTTERL"
-msgid "Butter Light"
-msgstr "ነጣ ያለ ቅቤ"
-
-#: strings.hrc:606
-msgctxt "RID_SVXSTR_COLOR_BUTTERM"
-msgid "Butter Medium"
-msgstr "መካከለኛ ቅቤ"
-
-#: strings.hrc:607
-msgctxt "RID_SVXSTR_COLOR_BUTTERD"
-msgid "Butter Dark"
-msgstr "ጥቁር ቅቤ"
-
-#: strings.hrc:608
-msgctxt "RID_SVXSTR_COLOR_ORANGEL"
-msgid "Orange Light"
-msgstr "ነጣ ያለ ብርቱካን"
-
-#: strings.hrc:609
-msgctxt "RID_SVXSTR_COLOR_ORANGEM"
-msgid "Orange Medium"
-msgstr "መካከለኛ ብርቱካን"
-
-#: strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_ORANGED"
-msgid "Orange Dark"
-msgstr "ጥቁር ብርቱካን"
-
-#: strings.hrc:611
-msgctxt "RID_SVXSTR_COLOR_CHOCOLATEL"
-msgid "Chocolate Light"
-msgstr "ነጣ ያለ ቾኮሌት"
-
-#: strings.hrc:612
-msgctxt "RID_SVXSTR_COLOR_CHOCOLATEM"
-msgid "Chocolate Medium"
-msgstr "መካከለኛ ቾኮሌት"
-
-#: strings.hrc:613
-msgctxt "RID_SVXSTR_COLOR_CHOCOLATED"
-msgid "Chocolate Dark"
-msgstr "ጥቁር ቾኮሌት"
-
-#: strings.hrc:614
-msgctxt "RID_SVXSTR_COLOR_CHAMELEONL"
-msgid "Chameleon Light"
-msgstr ""
-
-#: strings.hrc:615
-msgctxt "RID_SVXSTR_COLOR_CHAMELEONM"
-msgid "Chameleon Medium"
-msgstr ""
-
-#: strings.hrc:616
-msgctxt "RID_SVXSTR_COLOR_CHAMELEOND"
-msgid "Chameleon Dark"
-msgstr ""
-
-#: strings.hrc:617
-msgctxt "RID_SVXSTR_COLOR_SKYBLUEL"
-msgid "Sky Blue Light"
-msgstr "ነጣ ያለ ሰማያዊ"
-
-#: strings.hrc:618
-msgctxt "RID_SVXSTR_COLOR_SKYBLUEM"
-msgid "Sky Blue Medium"
-msgstr "መካከለኛ ሰማያዊ"
-
-#: strings.hrc:619
-msgctxt "RID_SVXSTR_COLOR_SKYBLUED"
-msgid "Sky Blue Dark"
-msgstr "ጥቁር ሰማያዊ"
-
-#: strings.hrc:620
-msgctxt "RID_SVXSTR_COLOR_PLUML"
-msgid "Plum Light"
-msgstr ""
-
-#: strings.hrc:621
-msgctxt "RID_SVXSTR_COLOR_PLUMM"
-msgid "Plum Medium"
-msgstr ""
-
-#: strings.hrc:622
-msgctxt "RID_SVXSTR_COLOR_PLUMD"
-msgid "Plum Dark"
-msgstr ""
-
-#: strings.hrc:623
-msgctxt "RID_SVXSTR_COLOR_SCARLETREDL"
-msgid "Scarlet Red Light"
-msgstr ""
-
-#: strings.hrc:624
-msgctxt "RID_SVXSTR_COLOR_SCARLETREDM"
-msgid "Scarlet Red Medium"
-msgstr ""
-
-#: strings.hrc:625
-msgctxt "RID_SVXSTR_COLOR_SCARLETREDD"
-msgid "Scarlet Red Dark"
-msgstr ""
-
-#: strings.hrc:626
-msgctxt "RID_SVXSTR_COLOR_ALUMINIUM"
-msgid "Aluminium"
-msgstr "አሉሚኒየም"
-
#. Old default color names, probably often used in saved files
-#: strings.hrc:628
+#: strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr "ሰማያዊ"
-#: strings.hrc:629
+#: strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr "ሲያን"
-#: strings.hrc:630
+#: strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr "Magenta"
-#: strings.hrc:631
+#: strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr "ሰማያዊ ግራጫ"
-#: strings.hrc:632
+#: strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr "Bordeaux"
-#: strings.hrc:633
+#: strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr "ደብዛዛ ቢጫ"
-#: strings.hrc:634
+#: strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr "ደብዛዛ አረንጓዴ"
-#: strings.hrc:635
+#: strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr "ጥቁር የወይን ጠጅ"
-#: strings.hrc:636
+#: strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr "Salmon"
-#: strings.hrc:637
+#: strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr "ባህር ሰማያዊ"
-#: strings.hrc:638
+#: strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "ቻርት"
-#: strings.hrc:639
+#: strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr "ሰማያዊ"
-#: strings.hrc:640
+#: strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr "ቢጫ አረንጓዴ"
-#: strings.hrc:641
+#: strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "ሮዝ"
-#: strings.hrc:642
+#: strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "ሰማያዊ አረንጓዴ"
-#: strings.hrc:643
+#. 16 old AutoFormat Table Styles
+#: strings.hrc:621
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "3ዲ"
-#: strings.hrc:644
+#: strings.hrc:622
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "ጥቁር 1"
-#: strings.hrc:645
+#: strings.hrc:623
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "ጥቁር 2"
-#: strings.hrc:646
+#: strings.hrc:624
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "ሰማያዊ"
-#: strings.hrc:647
+#: strings.hrc:625
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "ቡናማ"
-#: strings.hrc:648
+#: strings.hrc:626
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "ገንዘብ"
-#: strings.hrc:649
+#: strings.hrc:627
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "ገንዘብ 3ዲ"
-#: strings.hrc:650
+#: strings.hrc:628
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "ግራጫ ገንዘብ"
-#: strings.hrc:651
+#: strings.hrc:629
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "ገንዘብ ፈዛዛ ወይን ጠጅ"
-#: strings.hrc:652
+#: strings.hrc:630
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "ገንዘብ ሰማያዊ አረንጓዴ"
-#: strings.hrc:653
+#: strings.hrc:631
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "ግራጫ"
-#: strings.hrc:654
+#: strings.hrc:632
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "አረንጓዴ"
-#: strings.hrc:655
+#: strings.hrc:633
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "ፈዛዛ ወይን ጠጅ"
-#: strings.hrc:656
+#: strings.hrc:634
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "ቀይ"
-#: strings.hrc:657
+#: strings.hrc:635
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "ሰማያዊ አረንጓዴ"
-#: strings.hrc:658
+#: strings.hrc:636
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "ቢጫ"
-#: strings.hrc:659
+#. 10 new AutoFormat Table Styles since LibreOffice 6.0
+#: strings.hrc:638
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
+msgid "Academic"
+msgstr ""
+
+#: strings.hrc:639
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
+msgid "Box List Blue"
+msgstr ""
+
+#: strings.hrc:640
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
+msgid "Box List Green"
+msgstr ""
+
+#: strings.hrc:641
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
+msgid "Box List Red"
+msgstr ""
+
+#: strings.hrc:642
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
+msgid "Box List Yellow"
+msgstr ""
+
+#: strings.hrc:643
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
+msgid "Elegant"
+msgstr ""
+
+#: strings.hrc:644
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
+msgid "Financial"
+msgstr ""
+
+#: strings.hrc:645
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
+msgid "Simple Grid Columns"
+msgstr ""
+
+#: strings.hrc:646
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
+msgid "Simple Grid Rows"
+msgstr ""
+
+#: strings.hrc:647
+msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
+msgid "Simple List Shaded"
+msgstr ""
+
+#: strings.hrc:648
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "መካከለኛ የ መስመር መገናኛ"
-#: strings.hrc:660
+#: strings.hrc:649
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "የ መስመር ማገናኛ ስላሽ"
-#: strings.hrc:661
+#: strings.hrc:650
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "miter የመስመር ማገናኛ"
-#: strings.hrc:662
+#: strings.hrc:651
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "ክብ የመስመር ማገናኛ"
#. the familiar name for it
-#: strings.hrc:664
+#: strings.hrc:653
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr "የመስመር ባርኔጣ ጠፍጣፋ"
-#: strings.hrc:665
+#: strings.hrc:654
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr "የመስመር ባርኔጣ ክብ"
-#: strings.hrc:666
+#: strings.hrc:655
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr "የ መስመር ባርኔጣ ስኴር"
-#: strings.hrc:667
+#: strings.hrc:656
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "ከፍታ መለኪያ"
-#: strings.hrc:668
+#: strings.hrc:657
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "ቀጥተኛ ሰማያዊ/ነጭ"
-#: strings.hrc:669
+#: strings.hrc:658
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "ቀጥተኛ ቀይ ወይን ጠጅ/አረንጓዴ"
-#: strings.hrc:670
+#: strings.hrc:659
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "ቀጥተኛ ቢጫ/ቡናማ"
-#: strings.hrc:671
+#: strings.hrc:660
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "ተሽከርካሪ አረንጓዴ/ጥቁር"
-#: strings.hrc:672
+#: strings.hrc:661
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "ተሽከርካሪ ቀይ/ቢጫ"
-#: strings.hrc:673
+#: strings.hrc:662
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "አራት ማእዘን ቀይ/ነጭ"
-#: strings.hrc:674
+#: strings.hrc:663
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "ስኴር ቢጫ/ነጭ"
-#: strings.hrc:675
+#: strings.hrc:664
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "ኤሊፕሶይድ ሰማያዊ ግራጫ/ነጣ ያለ ሰማያዊ"
-#: strings.hrc:676
+#: strings.hrc:665
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "Axial light ቀይ/ነጭ"
#. l means left
-#: strings.hrc:678
+#: strings.hrc:667
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "በሰያፍ 1l"
#. r means right
-#: strings.hrc:680
+#: strings.hrc:669
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "በሰያፍ 1r"
#. l means left
-#: strings.hrc:682
+#: strings.hrc:671
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "በሰያፍ 2l"
#. r means right
-#: strings.hrc:684
+#: strings.hrc:673
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "በሰያፍ 2r"
#. l means left
-#: strings.hrc:686
+#: strings.hrc:675
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "በሰያፍ 3l"
#. r means right
-#: strings.hrc:688
+#: strings.hrc:677
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "በሰያፍ 3r"
#. l means left
-#: strings.hrc:690
+#: strings.hrc:679
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "በሰያፍ 4l"
#. r means right
-#: strings.hrc:692
+#: strings.hrc:681
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "በሰያፍ 4r"
-#: strings.hrc:693
+#: strings.hrc:682
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "በ ሰያፍ ሰማያዊ"
-#: strings.hrc:694
+#: strings.hrc:683
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "በ ሰያፍ አረንጓዴ"
-#: strings.hrc:695
+#: strings.hrc:684
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "በሰያፍ ብርቱካንማ"
-#: strings.hrc:696
+#: strings.hrc:685
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "በሰያፍ ቀይ"
-#: strings.hrc:697
+#: strings.hrc:686
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "በ ሰያፍ ሰማያዊ አረንጓዴ"
-#: strings.hrc:698
+#: strings.hrc:687
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "በሰያፍ የወይን ጠጅ"
-#: strings.hrc:699
+#: strings.hrc:688
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "ከ ጥግ"
-#: strings.hrc:700
+#: strings.hrc:689
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr "ከ ጥግ: ሰማያዊ"
-#: strings.hrc:701
+#: strings.hrc:690
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr "ከ ጥግ: አረንጓዴ"
-#: strings.hrc:702
+#: strings.hrc:691
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr "ከ ጥግ , ብርቱካንማ"
-#: strings.hrc:703
+#: strings.hrc:692
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr "ከ ጥግ , ቀይ"
-#: strings.hrc:704
+#: strings.hrc:693
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "ከ ጥግ: ሰማያዊ አረንጓዴ"
-#: strings.hrc:705
+#: strings.hrc:694
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr "ከ ጥግ , የወይን ጠጅ"
-#: strings.hrc:706
+#: strings.hrc:695
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "ከ መሀከል"
-#: strings.hrc:707
+#: strings.hrc:696
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "ከ መሀከል: ሰማያዊ"
-#: strings.hrc:708
+#: strings.hrc:697
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "ከ መሀከል: አረንጓዴ"
-#: strings.hrc:709
+#: strings.hrc:698
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "ከ መሀከል: ብርቱካን"
-#: strings.hrc:710
+#: strings.hrc:699
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "ከ መሀከል: ቀይ"
-#: strings.hrc:711
+#: strings.hrc:700
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr "ከ መሀከል: ሰማያዊ አረንጓዴ"
-#: strings.hrc:712
+#: strings.hrc:701
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "ከ መሀከል: የ ወይን ጠጅ"
-#: strings.hrc:713
+#: strings.hrc:702
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "በ አግድም"
-#: strings.hrc:714
+#: strings.hrc:703
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "በ አግድም ሰማያዊ"
-#: strings.hrc:715
+#: strings.hrc:704
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "በ አግድም አረንጓዴ"
-#: strings.hrc:716
+#: strings.hrc:705
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "በ አግድም ብርቱካንማ"
-#: strings.hrc:717
+#: strings.hrc:706
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "በ አግድም ቀይ"
-#: strings.hrc:718
+#: strings.hrc:707
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "በ አግድም ሰማያዊ አረንጓዴ"
-#: strings.hrc:719
+#: strings.hrc:708
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "በ አግድም የ ወይን ጠጅ"
-#: strings.hrc:720
+#: strings.hrc:709
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "ተሽከርካሪ"
-#: strings.hrc:721
+#: strings.hrc:710
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "ተሽከርካሪ ሰማያዊ"
-#: strings.hrc:722
+#: strings.hrc:711
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "ተሽከርካሪ አረንጓዴ"
-#: strings.hrc:723
+#: strings.hrc:712
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "ተሽከርካሪ ብርቱካንማ"
-#: strings.hrc:724
+#: strings.hrc:713
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "ተሽከርካሪ ቀይ"
-#: strings.hrc:725
+#: strings.hrc:714
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "ተሽከርካሪ ሰማያዊ አረንጓዴ"
-#: strings.hrc:726
+#: strings.hrc:715
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "ተሽከርካሪ ወይን ጠጅ"
-#: strings.hrc:727
+#: strings.hrc:716
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "በ ቁመት"
-#: strings.hrc:728
+#: strings.hrc:717
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "በ ቁመት ሰማያዊ"
-#: strings.hrc:729
+#: strings.hrc:718
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "በ ቁመት አረንጓዴ"
-#: strings.hrc:730
+#: strings.hrc:719
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "በ ቁመት ብርቱካንማ"
-#: strings.hrc:731
+#: strings.hrc:720
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "በ ቁመት ቀይ"
-#: strings.hrc:732
+#: strings.hrc:721
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "በ ቁመት ሰማያዊ አረንጓዴ"
-#: strings.hrc:733
+#: strings.hrc:722
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "በ ቁመት የወይን ጠጅ"
-#: strings.hrc:734
+#: strings.hrc:723
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr "ግራጫ ከፍታ"
-#: strings.hrc:735
+#: strings.hrc:724
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr "ቢጫ ከፍታ"
-#: strings.hrc:736
+#: strings.hrc:725
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr "ብርቱካን ከፍታ"
-#: strings.hrc:737
+#: strings.hrc:726
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr "ቀይ ከፍታ"
-#: strings.hrc:738
+#: strings.hrc:727
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr "ሮዝ ከፍታ"
-#: strings.hrc:739
+#: strings.hrc:728
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "ሰማይ"
-#: strings.hrc:740
+#: strings.hrc:729
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr "ሲያን ከፍታ"
-#: strings.hrc:741
+#: strings.hrc:730
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr "ሰማያዊ ከፍታ"
-#: strings.hrc:742
+#: strings.hrc:731
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr "የ ወይን ጠጅ ቧንቧ"
-#: strings.hrc:743
+#: strings.hrc:732
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "ሌሊት"
-#: strings.hrc:744
+#: strings.hrc:733
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr "አረንጓዴ ከፍታ"
-#: strings.hrc:745
+#: strings.hrc:734
msgctxt "RID_SVXSTR_GRDT70"
msgid "Tango Green"
msgstr "ታንጎ አረንጓዴ"
-#: strings.hrc:746
+#: strings.hrc:735
msgctxt "RID_SVXSTR_GRDT71"
msgid "Subtle Tango Green"
msgstr "ግልፅ ያልሆነ ታንጎ አረንጓዴ"
-#: strings.hrc:747
+#: strings.hrc:736
msgctxt "RID_SVXSTR_GRDT72"
msgid "Tango Purple"
msgstr "ታንጎ ወይን ጠጅ"
-#: strings.hrc:748
+#: strings.hrc:737
msgctxt "RID_SVXSTR_GRDT73"
msgid "Tango Red"
msgstr "ታንጎ ቀይ"
-#: strings.hrc:749
+#: strings.hrc:738
msgctxt "RID_SVXSTR_GRDT74"
msgid "Tango Blue"
msgstr "ታንጎ ሰማያዊ"
-#: strings.hrc:750
+#: strings.hrc:739
msgctxt "RID_SVXSTR_GRDT75"
msgid "Tango Yellow"
msgstr "ታንጎ ቢጫ"
-#: strings.hrc:751
+#: strings.hrc:740
msgctxt "RID_SVXSTR_GRDT76"
msgid "Tango Orange"
msgstr "ታንጎ ብርቱካንማ"
-#: strings.hrc:752
+#: strings.hrc:741
msgctxt "RID_SVXSTR_GRDT77"
msgid "Tango Gray"
msgstr "ታንጎ ግራጫ"
-#: strings.hrc:753
+#: strings.hrc:742
msgctxt "RID_SVXSTR_GRDT78"
msgid "Clay"
msgstr "ጭቃ"
-#: strings.hrc:754
+#: strings.hrc:743
msgctxt "RID_SVXSTR_GRDT79"
msgid "Olive Green"
msgstr "ወይራ አረንጓዴ"
-#: strings.hrc:755
+#: strings.hrc:744
msgctxt "RID_SVXSTR_GRDT80"
msgid "Silver"
msgstr "ብር"
-#: strings.hrc:756
+#: strings.hrc:745
msgctxt "RID_SVXSTR_GRDT81"
msgid "Sunburst"
msgstr "ፀሐይ"
-#: strings.hrc:757
+#: strings.hrc:746
msgctxt "RID_SVXSTR_GRDT82"
msgid "Brownie"
msgstr "ቡናማ"
-#: strings.hrc:758
+#: strings.hrc:747
msgctxt "RID_SVXSTR_GRDT83"
msgid "Sunset"
msgstr "ፀሐይ መጥለቂያ"
-#: strings.hrc:759
+#: strings.hrc:748
msgctxt "RID_SVXSTR_GRDT84"
msgid "Deep Green"
msgstr "ደማቅ አረንጓዴ"
-#: strings.hrc:760
+#: strings.hrc:749
msgctxt "RID_SVXSTR_GRDT85"
msgid "Deep Orange"
msgstr "ደማቅ ብርቱካንማ"
-#: strings.hrc:761
+#: strings.hrc:750
msgctxt "RID_SVXSTR_GRDT86"
msgid "Deep Blue"
msgstr "ደማቅ ሰማያዊ"
-#: strings.hrc:762
+#: strings.hrc:751
msgctxt "RID_SVXSTR_GRDT87"
msgid "Purple Haze"
msgstr "ወይን ጠጅ"
-#: strings.hrc:763
+#: strings.hrc:752
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 45 Degrees Wide"
msgstr "ጥቁር 45 ዲግሪዎች ስፋት"
-#: strings.hrc:764
+#: strings.hrc:753
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 45 Degrees"
msgstr "ጥቁር 45 ዲግሪዎች"
-#: strings.hrc:765
+#: strings.hrc:754
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black -45 Degrees"
msgstr "ጥቁር -45 ዲግሪዎች"
-#: strings.hrc:766
+#: strings.hrc:755
msgctxt "RID_SVXSTR_HATCH3"
msgid "Black 90 Degrees"
msgstr "ጥቁር 90 ዲግሪዎች"
-#: strings.hrc:767
+#: strings.hrc:756
msgctxt "RID_SVXSTR_HATCH4"
msgid "Red Crossed 45 Degrees"
msgstr "ቀይ መስቀልኛ 45 ዲግሪዎች"
-#: strings.hrc:768
+#: strings.hrc:757
msgctxt "RID_SVXSTR_HATCH5"
msgid "Red Crossed 0 Degrees"
msgstr "ቀይ መስቀልኛ 0 ዲግሪዎች"
-#: strings.hrc:769
+#: strings.hrc:758
msgctxt "RID_SVXSTR_HATCH6"
msgid "Blue Crossed 45 Degrees"
msgstr "ሰማያዊ መስቀልኛ 45 ዲግሪዎች"
-#: strings.hrc:770
+#: strings.hrc:759
msgctxt "RID_SVXSTR_HATCH7"
msgid "Blue Crossed 0 Degrees"
msgstr "ሰማያዊ መስቀልኛ 0 ዲግሪዎች"
-#: strings.hrc:771
+#: strings.hrc:760
msgctxt "RID_SVXSTR_HATCH8"
msgid "Blue Triple 90 Degrees"
msgstr "ሰማያዊ ሶስት ጊዜ 90 ዲግሪዎች"
-#: strings.hrc:772
+#: strings.hrc:761
msgctxt "RID_SVXSTR_HATCH9"
msgid "Black 0 Degrees"
msgstr "ጥቁር 0 ዲግሪዎች"
-#: strings.hrc:773
+#: strings.hrc:762
msgctxt "RID_SVXSTR_HATCH10"
msgid "Hatching"
msgstr "በርካታ መስመር"
-#: strings.hrc:774
+#: strings.hrc:763
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "ባዶ"
-#: strings.hrc:775
+#: strings.hrc:764
msgctxt "RID_SVXSTR_BMP1"
msgid "Sky"
msgstr "ሰማይ"
-#: strings.hrc:776
+#: strings.hrc:765
msgctxt "RID_SVXSTR_BMP2"
msgid "Water"
msgstr "ውሀ"
-#: strings.hrc:777
+#: strings.hrc:766
msgctxt "RID_SVXSTR_BMP3"
msgid "Coarse grained"
msgstr "ሻካራ ደቃቃ"
-#: strings.hrc:778
+#: strings.hrc:767
msgctxt "RID_SVXSTR_BMP4"
msgid "Mercury"
msgstr "ሜርኩሪ"
-#: strings.hrc:779
+#: strings.hrc:768
msgctxt "RID_SVXSTR_BMP5"
msgid "Space"
msgstr "ሕዋ"
-#: strings.hrc:780
+#: strings.hrc:769
msgctxt "RID_SVXSTR_BMP6"
msgid "Metal"
msgstr "ብረት"
-#: strings.hrc:781
+#: strings.hrc:770
msgctxt "RID_SVXSTR_BMP7"
msgid "Droplets"
msgstr "ጠብታ"
-#: strings.hrc:782
+#: strings.hrc:771
msgctxt "RID_SVXSTR_BMP8"
msgid "Marble"
msgstr "እምነ በረድ"
-#: strings.hrc:783
+#: strings.hrc:772
msgctxt "RID_SVXSTR_BMP9"
msgid "Linen"
msgstr "Linen"
-#: strings.hrc:784
+#: strings.hrc:773
msgctxt "RID_SVXSTR_BMP10"
msgid "Stone"
msgstr "ድንጋይ"
-#: strings.hrc:785
+#: strings.hrc:774
msgctxt "RID_SVXSTR_BMP11"
msgid "Gravel"
msgstr "ጠጠር"
-#: strings.hrc:786
+#: strings.hrc:775
msgctxt "RID_SVXSTR_BMP12"
msgid "Wall"
msgstr "ግድግዳ"
-#: strings.hrc:787
+#: strings.hrc:776
msgctxt "RID_SVXSTR_BMP13"
msgid "Brownstone"
msgstr "ቡናማ ድንጋይ"
-#: strings.hrc:788
+#: strings.hrc:777
msgctxt "RID_SVXSTR_BMP14"
msgid "Netting"
msgstr "መረብ"
-#: strings.hrc:789
+#: strings.hrc:778
msgctxt "RID_SVXSTR_BMP15"
msgid "Leaves"
msgstr "ቅጠሎች"
-#: strings.hrc:790
+#: strings.hrc:779
msgctxt "RID_SVXSTR_BMP16"
msgid "Artificial Turf"
msgstr "ሰው ሰራሽ ሳር"
-#: strings.hrc:791
+#: strings.hrc:780
msgctxt "RID_SVXSTR_BMP17"
msgid "Daisy"
msgstr "Daisy"
-#: strings.hrc:792
+#: strings.hrc:781
msgctxt "RID_SVXSTR_BMP18"
msgid "Orange"
msgstr "ብርቱካን"
-#: strings.hrc:793
+#: strings.hrc:782
msgctxt "RID_SVXSTR_BMP19"
msgid "Fiery"
msgstr "የሚቀጣጠል"
-#: strings.hrc:794
+#: strings.hrc:783
msgctxt "RID_SVXSTR_BMP20"
msgid "Roses"
msgstr "ጽጌረዳ"
-#: strings.hrc:795
+#: strings.hrc:784
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "Bitmap"
-#: strings.hrc:796
+#: strings.hrc:785
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "5 ፐርሰንት"
-#: strings.hrc:797
+#: strings.hrc:786
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr "10 ፐርሰንት"
-#: strings.hrc:798
+#: strings.hrc:787
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr "20 ፐርሰንት"
-#: strings.hrc:799
+#: strings.hrc:788
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr "25 ፐርሰንት"
-#: strings.hrc:800
+#: strings.hrc:789
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr "30 ፐርሰንት"
-#: strings.hrc:801
+#: strings.hrc:790
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr "40 ፐርሰንት"
-#: strings.hrc:802
+#: strings.hrc:791
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr "50 ፐርሰንት"
-#: strings.hrc:803
+#: strings.hrc:792
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr "60 ፐርሰንት"
-#: strings.hrc:804
+#: strings.hrc:793
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr "70 ፐርሰንት"
-#: strings.hrc:805
+#: strings.hrc:794
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr "75 ፐርሰንት"
-#: strings.hrc:806
+#: strings.hrc:795
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr "80 ፐርሰንት"
-#: strings.hrc:807
+#: strings.hrc:796
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr "90 ፐርሰንት"
-#: strings.hrc:808
+#: strings.hrc:797
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr "ብርሃን ወደ ታች በ ሰያፍ"
-#: strings.hrc:809
+#: strings.hrc:798
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr "ብርሃን ወደ ላይ በ ሰያፍ"
-#: strings.hrc:810
+#: strings.hrc:799
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr "ጨለማ ወደ ታች በ ሰያፍ"
-#: strings.hrc:811
+#: strings.hrc:800
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr "ጨለማ ወደ ላይ በ ሰያፍ"
-#: strings.hrc:812
+#: strings.hrc:801
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr "ሰፊ ወደ ታች በ ሰያፍ"
-#: strings.hrc:813
+#: strings.hrc:802
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr "ሰፊ ወደ ላይ በ ሰያፍ"
-#: strings.hrc:814
+#: strings.hrc:803
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr "ብርሃን በ ቁመት"
-#: strings.hrc:815
+#: strings.hrc:804
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr "ብርሃን በ አግድም"
-#: strings.hrc:816
+#: strings.hrc:805
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr "ጠባብ በ ቁመት"
-#: strings.hrc:817
+#: strings.hrc:806
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr "ጠባብ በ አግድም"
-#: strings.hrc:818
+#: strings.hrc:807
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr "ጨለማ በ ቁመት"
-#: strings.hrc:819
+#: strings.hrc:808
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr "ጨለማ በ አግድም"
-#: strings.hrc:820
+#: strings.hrc:809
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr "ጭረት ወደ ታች በ ሰያፍ"
-#: strings.hrc:821
+#: strings.hrc:810
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr "ጭረት ወደ ላይ በ ሰያፍ"
-#: strings.hrc:822
+#: strings.hrc:811
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr "ጭረት በ አግድም"
-#: strings.hrc:823
+#: strings.hrc:812
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr "ጭረት በ ቁመት"
-#: strings.hrc:824
+#: strings.hrc:813
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr "ትንሽ የሚበተን ወረቀት"
-#: strings.hrc:825
+#: strings.hrc:814
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr "ትልቅ የሚበተን ወረቀት"
-#: strings.hrc:826
+#: strings.hrc:815
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr "ዚግ ዛግ"
-#: strings.hrc:827
+#: strings.hrc:816
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "ማዕበል"
-#: strings.hrc:828
+#: strings.hrc:817
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr "ሸክላ በ ሰያፍ"
-#: strings.hrc:829
+#: strings.hrc:818
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr "ሸክላ በ አግድም"
-#: strings.hrc:830
+#: strings.hrc:819
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr "ጉንጉን"
-#: strings.hrc:831
+#: strings.hrc:820
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr "ሰንጠረዥ"
-#: strings.hrc:832
+#: strings.hrc:821
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr "ሽንቁር"
-#: strings.hrc:833
+#: strings.hrc:822
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr "ነጠብጣብ መጋጠሚያ"
-#: strings.hrc:834
+#: strings.hrc:823
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr "ነጠብጣብ አልማዝ"
-#: strings.hrc:835
+#: strings.hrc:824
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr "ተደራራቢ"
-#: strings.hrc:836
+#: strings.hrc:825
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr "መወጣጫ"
-#: strings.hrc:837
+#: strings.hrc:826
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr "ስፌር"
-#: strings.hrc:838
+#: strings.hrc:827
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr "ትንሽ መጋጠሚያ"
-#: strings.hrc:839
+#: strings.hrc:828
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr "ትልቅ መጋጠሚያ"
-#: strings.hrc:840
+#: strings.hrc:829
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr "ትንሽ ዳማ መጫወቻ"
-#: strings.hrc:841
+#: strings.hrc:830
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr "ትልቅ ዳማ መጫወቻ"
-#: strings.hrc:842
+#: strings.hrc:831
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr "ረቂቅ አልማዝ"
-#: strings.hrc:843
+#: strings.hrc:832
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr "ሙሉ አልማዝ"
-#: strings.hrc:844
+#: strings.hrc:833
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "በ ቁመት"
-#: strings.hrc:845
+#: strings.hrc:834
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "በ አግድም"
-#: strings.hrc:846
+#: strings.hrc:835
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr "ወደ ታች በ ሰያፍ"
-#: strings.hrc:847
+#: strings.hrc:836
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr "ወደ ላይ በ ሰያፍ"
-#: strings.hrc:848
+#: strings.hrc:837
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "መስቀል"
-#: strings.hrc:849
+#: strings.hrc:838
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr "መስቀል በ ሰያፍ"
-#: strings.hrc:850
+#: strings.hrc:839
msgctxt "RID_SVXSTR_DASH0"
msgid "Ultrafine Dashed"
msgstr "በጣም ደቃቃ ዳሽ"
-#: strings.hrc:851
+#: strings.hrc:840
msgctxt "RID_SVXSTR_DASH1"
msgid "Fine Dashed"
msgstr "ደቃቃ ዳሽ"
-#: strings.hrc:852
+#: strings.hrc:841
msgctxt "RID_SVXSTR_DASH2"
msgid "2 Dots 3 Dashes"
msgstr "2 ነጥቦች 3 ዳሾች"
-#: strings.hrc:853
+#: strings.hrc:842
msgctxt "RID_SVXSTR_DASH3"
msgid "Fine Dotted"
msgstr "ደቃቃ ነጥብ"
-#: strings.hrc:854
+#: strings.hrc:843
msgctxt "RID_SVXSTR_DASH4"
msgid "Line with Fine Dots"
msgstr "መስመር በደቃቃ ነጥቦች"
-#: strings.hrc:855
+#: strings.hrc:844
msgctxt "RID_SVXSTR_DASH5"
msgid "Fine Dashed"
msgstr "ደቃቃ ዳሽ"
-#: strings.hrc:856
+#: strings.hrc:845
msgctxt "RID_SVXSTR_DASH6"
msgid "3 Dashes 3 Dots"
msgstr "3 ዳሾች 3 ነጥቦች"
-#: strings.hrc:857
+#: strings.hrc:846
msgctxt "RID_SVXSTR_DASH7"
msgid "Ultrafine Dotted"
msgstr "በጣም ደቃቃ ነጥብ"
-#: strings.hrc:858
+#: strings.hrc:847
msgctxt "RID_SVXSTR_DASH8"
msgid "Line Style 9"
msgstr "የመስመር ዘዴ 9"
-#: strings.hrc:859
+#: strings.hrc:848
msgctxt "RID_SVXSTR_DASH9"
msgid "2 Dots 1 Dash"
msgstr "2 ነጥቦች 1 ዳሽ"
-#: strings.hrc:860
+#: strings.hrc:849
msgctxt "RID_SVXSTR_DASH10"
msgid "Dashed"
msgstr "ዳሽ"
-#: strings.hrc:861
+#: strings.hrc:850
msgctxt "RID_SVXSTR_DASH11"
msgid "Dashed"
msgstr "ዳሽ"
-#: strings.hrc:862
+#: strings.hrc:851
msgctxt "RID_SVXSTR_DASH12"
msgid "Line Style"
msgstr "የመስመር ዘዴ"
-#: strings.hrc:863
+#: strings.hrc:852
msgctxt "RID_SVXSTR_LEND0"
msgid "Arrow concave"
msgstr "ኮንኬቭ ቀስት"
-#: strings.hrc:864
+#: strings.hrc:853
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "ስኴር 45"
-#: strings.hrc:865
+#: strings.hrc:854
msgctxt "RID_SVXSTR_LEND2"
msgid "Small arrow"
msgstr "ትንሽ ቀስት"
-#: strings.hrc:866
+#: strings.hrc:855
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension lines"
msgstr "Dimension መስመሮች"
-#: strings.hrc:867
+#: strings.hrc:856
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "ድርብ ቀስት"
-#: strings.hrc:868
+#: strings.hrc:857
msgctxt "RID_SVXSTR_LEND5"
msgid "Rounded short arrow"
msgstr "አጭር የ ተከበበ ቀስት"
-#: strings.hrc:869
+#: strings.hrc:858
msgctxt "RID_SVXSTR_LEND6"
msgid "Symmetric arrow"
msgstr "ተመሳሳይ ቀስት"
-#: strings.hrc:870
+#: strings.hrc:859
msgctxt "RID_SVXSTR_LEND7"
msgid "Line arrow"
msgstr "የ መስመር ቀስት"
-#: strings.hrc:871
+#: strings.hrc:860
msgctxt "RID_SVXSTR_LEND8"
msgid "Rounded large arrow"
msgstr "ትልቅ የ ተከበበ ቀስት"
-#: strings.hrc:872
+#: strings.hrc:861
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "ክብ"
-#: strings.hrc:873
+#: strings.hrc:862
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "ስኴር"
-#: strings.hrc:874
+#: strings.hrc:863
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "ቀስት"
-#: strings.hrc:875
+#: strings.hrc:864
msgctxt "RID_SVXSTR_LEND12"
msgid "Short line arrow"
msgstr "አጭር መስመር ቀስት"
-#: strings.hrc:876
+#: strings.hrc:865
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr "ያልተሞላ ሶስት ማእዘን"
-#: strings.hrc:877
+#: strings.hrc:866
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr "ያልተሞላ አልማዝ"
-#: strings.hrc:878
+#: strings.hrc:867
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "አልማዝ"
-#: strings.hrc:879
+#: strings.hrc:868
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "ያልተሞላ ክብ"
-#: strings.hrc:880
+#: strings.hrc:869
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "ስኴር 45 ያልተሞላ"
-#: strings.hrc:881
+#: strings.hrc:870
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "ስኴር ያልተሞላ"
-#: strings.hrc:882
+#: strings.hrc:871
msgctxt "RID_SVXSTR_LEND19"
msgid "Half circle unfilled"
msgstr "ግማሽ ክብ ያልተሞላ"
-#: strings.hrc:883
+#: strings.hrc:872
msgctxt "RID_SVXSTR_LEND20"
msgid "Arrowhead"
msgstr "የ ቀስት ራስጌ"
-#: strings.hrc:884
+#: strings.hrc:873
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "ግልጽነት"
-#: strings.hrc:885
+#: strings.hrc:874
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr "አረንጓዴ 1 (%PRODUCTNAME ዋናው ቀለም)"
-#: strings.hrc:886
+#: strings.hrc:875
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr "አረንጓዴ ማጉሊያ"
-#: strings.hrc:887
+#: strings.hrc:876
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr "ሰማያዊ ማጉሊያ"
-#: strings.hrc:888
+#: strings.hrc:877
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr "ብርቱካንማ ማጉሊያ"
-#: strings.hrc:889
+#: strings.hrc:878
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr "Purple"
-#: strings.hrc:890
+#: strings.hrc:879
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr "ወይን ጠጅ ማጉሊያ"
-#: strings.hrc:891
+#: strings.hrc:880
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr "ቢጫ ማጉሊያ"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:894
+#: strings.hrc:883
msgctxt "RID_SVXSTR_COLOR_TANGO_BUTTER"
msgid "Tango: Butter"
msgstr "Tango: ቅቤ"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:896
+#: strings.hrc:885
msgctxt "RID_SVXSTR_COLOR_TANGO_ORANGE"
msgid "Tango: Orange"
msgstr "Tango: ብርቱካንማ"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:898
+#: strings.hrc:887
msgctxt "RID_SVXSTR_COLOR_TANGO_CHOCOLATE"
msgid "Tango: Chocolate"
msgstr "Tango: ቾከሌት"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:900
+#: strings.hrc:889
msgctxt "RID_SVXSTR_COLOR_TANGO_CHAMELEON"
msgid "Tango: Chameleon"
msgstr "Tango: ተቀያያሪ"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:902
+#: strings.hrc:891
msgctxt "RID_SVXSTR_COLOR_TANGO_SKY_BLUE"
msgid "Tango: Sky Blue"
msgstr "ታንጎ: ሰማያዊ"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:904
+#: strings.hrc:893
msgctxt "RID_SVXSTR_COLOR_TANGO_PLUM"
msgid "Tango: Plum"
msgstr "Tango: Plum"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:906
+#: strings.hrc:895
msgctxt "RID_SVXSTR_COLOR_TANGO_SCARLET_RED"
msgid "Tango: Scarlet Red"
msgstr "Tango: Scarlet Red"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
-#: strings.hrc:908
+#: strings.hrc:897
msgctxt "RID_SVXSTR_COLOR_TANGO_ALUMINIUM"
msgid "Tango: Aluminium"
msgstr "Tango: Aluminium"
-#: strings.hrc:909
+#: strings.hrc:898
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "የ አዳራሽ ገጽታ"
-#: strings.hrc:910
+#: strings.hrc:899
msgctxt "RID_SVXSTR_GALLERY_THEMEITEMS"
msgid "Theme Items"
msgstr "የገጽታ እቃዎች"
-#: strings.hrc:911
+#: strings.hrc:900
msgctxt "RID_SVXSTR_GALLERY_PREVIEW"
msgid "Preview"
msgstr "ቅድመ እይታ"
-#: strings.hrc:912
+#: strings.hrc:901
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "ተሳክተው ድነዋል"
-#: strings.hrc:913
+#: strings.hrc:902
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "ዋናው የዳነው ስነድ"
-#: strings.hrc:914
+#: strings.hrc:903
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "ማዳን አልተቻለም"
-#: strings.hrc:915
+#: strings.hrc:904
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "ማዳን በሂደት ላይ"
-#: strings.hrc:916
+#: strings.hrc:905
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "ማዳኑ ገና አልጨረሰም"
-#: strings.hrc:917
+#: strings.hrc:906
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr "%PRODUCTNAME %PRODUCTVERSION የ እርስዎን ሰነድ ማዳን ይጀምራል: እንደ ሰነዶቹ መጠን ሂደቱ ትንሽ ጊዜ ይወስዳል"
-#: strings.hrc:918
+#: strings.hrc:907
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr "የ እርስዎን ሰነድ ማዳኑን ጨርሷል ይጫኑ 'መጨረሻ' የሚለውን ሰነዶቹን ለማየት"
-#: strings.hrc:919
+#: strings.hrc:908
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "~መጨረሻ"
-#: strings.hrc:920
+#: strings.hrc:909
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "የ መጨረሻው ዋጋ ማስተካከያ"
-#: strings.hrc:921
+#: strings.hrc:910
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "ነጥብ"
-#: strings.hrc:923
+#: strings.hrc:912
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr "ምስል መላኪያ"
-#: strings.hrc:924
+#: strings.hrc:913
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr "እንደ ምስል ማስቀመጫ"
#. Strings for the Draw Dialog --------------------------------------------
-#: strings.hrc:927
+#: strings.hrc:916
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "እቃ(ዎች) ማስገቢያ"
-#: strings.hrc:928
+#: strings.hrc:917
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "3ዲ እቃ ማሽከርከሪያ"
-#: strings.hrc:929
+#: strings.hrc:918
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "የ ማሾለኪያ እቃ መፍጠሪያ"
-#: strings.hrc:930
+#: strings.hrc:919
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "የሚሽከረከር እቃ መፍጠሪያ"
-#: strings.hrc:931
+#: strings.hrc:920
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "3ዲ እቃዎችን መክፈያ"
#. Language-Strings ------------------------------------------------------
-#: strings.hrc:934
+#: strings.hrc:923
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[All]"
-#: strings.hrc:936
+#: strings.hrc:925
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "ንድፎች ማጣሪያ"
-#: strings.hrc:937
+#: strings.hrc:926
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "አዲስ አርእስት"
-#: strings.hrc:938
+#: strings.hrc:927
msgctxt "RID_SVXSTR_GALLERY_CREATETHEME"
msgid "New Theme..."
msgstr "አዲስ አርእስት..."
-#: strings.hrc:939
+#: strings.hrc:928
msgctxt "RID_SVXSTR_GALLERY_TITLE"
msgid "Title"
msgstr "አርእስት"
-#: strings.hrc:940
+#: strings.hrc:929
msgctxt "RID_SVXSTR_GALLERY_ICONVIEW"
msgid "Icon View"
msgstr "ምልክቶች መመልከቻ"
-#: strings.hrc:941
+#: strings.hrc:930
msgctxt "RID_SVXSTR_GALLERY_LISTVIEW"
msgid "Detailed View"
msgstr "ዝርዝር መመልከቻ"
-#: strings.hrc:943
+#: strings.hrc:932
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "3ዲ ውጤቶች"
-#: strings.hrc:944
+#: strings.hrc:933
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "እንቅስቃሴ"
-#: strings.hrc:945
+#: strings.hrc:934
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "ነጥቦች"
-#: strings.hrc:946
+#: strings.hrc:935
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "ቢሮ"
-#: strings.hrc:947
+#: strings.hrc:936
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "ባንዲራዎች"
-#: strings.hrc:948
+#: strings.hrc:937
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "የ ሂደት ቻርትስ"
-#: strings.hrc:949
+#: strings.hrc:938
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "የስሜት ምልክቶች"
-#: strings.hrc:950
+#: strings.hrc:939
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "ምስሎች"
-#: strings.hrc:951
+#: strings.hrc:940
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "መደቦቹ"
-#: strings.hrc:952
+#: strings.hrc:941
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "የ ገጽ ቤት"
-#: strings.hrc:953
+#: strings.hrc:942
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "ተፅእኖው"
-#: strings.hrc:954
+#: strings.hrc:943
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "ካርታዎች"
-#: strings.hrc:955
+#: strings.hrc:944
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "ሰዎች"
-#: strings.hrc:956
+#: strings.hrc:945
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "የውጪ ክፍል"
-#: strings.hrc:957
+#: strings.hrc:946
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "ኮምፒዩተሮች"
-#: strings.hrc:958
+#: strings.hrc:947
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "ስእላዊ መግለጫ"
-#: strings.hrc:959
+#: strings.hrc:948
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr "አካባቢ"
-#: strings.hrc:960
+#: strings.hrc:949
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "ገንዘብ"
-#: strings.hrc:961
+#: strings.hrc:950
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr "መጓጓዣ"
-#: strings.hrc:962
+#: strings.hrc:951
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "የጽሁፍ ቅርጾች"
-#: strings.hrc:963
+#: strings.hrc:952
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "ድምጾች"
-#: strings.hrc:964
+#: strings.hrc:953
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "ምልክቶች"
-#: strings.hrc:965
+#: strings.hrc:954
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "የኔ አርእስት"
-#: strings.hrc:966
+#: strings.hrc:955
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "ቀስቶች"
-#: strings.hrc:967
+#: strings.hrc:956
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "ፊኛዎች"
-#: strings.hrc:968
+#: strings.hrc:957
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "የ ፊደል ገበታ"
-#: strings.hrc:969
+#: strings.hrc:958
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "ሰአት"
-#: strings.hrc:970
+#: strings.hrc:959
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "ማቅረቢያ"
-#: strings.hrc:971
+#: strings.hrc:960
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "ቀን መቁጠሪያ"
-#: strings.hrc:972
+#: strings.hrc:961
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "መቃኛ"
-#: strings.hrc:973
+#: strings.hrc:962
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "ግንኙነት"
-#: strings.hrc:974
+#: strings.hrc:963
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "ገንዘብ"
-#: strings.hrc:975
+#: strings.hrc:964
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "ኮምፒዩተሮች"
-#: strings.hrc:976
+#: strings.hrc:965
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "የአየር ፀባይ"
-#: strings.hrc:977
+#: strings.hrc:966
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "ትምህርት ቤት & ዩኒቨርስቲ"
-#: strings.hrc:978
+#: strings.hrc:967
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "ችግር አፈታት"
-#: strings.hrc:979
+#: strings.hrc:968
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "Screen Beans"
-#: strings.hrc:981
+#: strings.hrc:970
msgctxt "RID_SVXSTR_ALIGN_LEFT"
msgid "~Left Align"
msgstr "በ ~ግራ ማሰለፊያ"
-#: strings.hrc:982
+#: strings.hrc:971
msgctxt "RID_SVXSTR_ALIGN_CENTER"
msgid "~Center"
msgstr "~መሀከል"
-#: strings.hrc:983
+#: strings.hrc:972
msgctxt "RID_SVXSTR_ALIGN_RIGHT"
msgid "~Right Align"
msgstr "በ ~ቀኝ ማሰለፊያ"
-#: strings.hrc:984
+#: strings.hrc:973
msgctxt "RID_SVXSTR_ALIGN_WORD"
msgid "~Word Justify"
msgstr "~ቃላት እኩል ማካፈያ"
-#: strings.hrc:985
+#: strings.hrc:974
msgctxt "RID_SVXSTR_ALIGN_STRETCH"
msgid "S~tretch Justify"
msgstr "መ~ለጠጫ እኩል ማካፈያ"
-#: strings.hrc:986
+#: strings.hrc:975
msgctxt "RID_SVXSTR_CHARS_SPACING_VERY_TIGHT"
msgid "~Very Tight"
msgstr "~በጣም ጠባብ"
-#: strings.hrc:987
+#: strings.hrc:976
msgctxt "RID_SVXSTR_CHARS_SPACING_TIGHT"
msgid "~Tight"
msgstr "~ጠባብ"
-#: strings.hrc:988
+#: strings.hrc:977
msgctxt "RID_SVXSTR_CHARS_SPACING_NORMAL"
msgid "~Normal"
msgstr "~መደበኛ"
-#: strings.hrc:989
+#: strings.hrc:978
msgctxt "RID_SVXSTR_CHARS_SPACING_LOOSE"
msgid "~Loose"
msgstr "~ልል"
-#: strings.hrc:990
+#: strings.hrc:979
msgctxt "RID_SVXSTR_CHARS_SPACING_VERY_LOOSE"
msgid "Very ~Loose"
msgstr "በጣም ~ልል"
-#: strings.hrc:991
+#: strings.hrc:980
msgctxt "RID_SVXSTR_CHARS_SPACING_CUSTOM"
msgid "~Custom..."
msgstr "~ማስተካከያ..."
-#: strings.hrc:992
+#: strings.hrc:981
msgctxt "RID_SVXSTR_CHARS_SPACING_KERN_PAIRS"
msgid "~Kern Character Pairs"
msgstr "~Kern Character Pairs"
-#: strings.hrc:994
+#: strings.hrc:983
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "የህትመት ምርጫዎች"
-#: strings.hrc:995
+#: strings.hrc:984
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "ጠቅላላ ሰነዱን ማተም ይፈልጋሉ ወይም የተመረጠውን?"
-#: strings.hrc:996
+#: strings.hrc:985
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "~ሁሉንም"
-#: strings.hrc:997
+#: strings.hrc:986
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "~ምርጫ"
-#: strings.hrc:999
+#: strings.hrc:988
msgctxt "RID_SVXSTR_PERSPECTIVE"
msgid "~Perspective"
msgstr "~Perspective"
-#: strings.hrc:1000
+#: strings.hrc:989
msgctxt "RID_SVXSTR_PARALLEL"
msgid "P~arallel"
msgstr "አ~ጓዳኝ"
-#: strings.hrc:1001
+#: strings.hrc:990
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "ወደ ሰሜን-ምእራብ ማሾለኪያ"
-#: strings.hrc:1002
+#: strings.hrc:991
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "ወደ ሰሜን ማሾለኪያ"
-#: strings.hrc:1003
+#: strings.hrc:992
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "ወደ ሰሜን-ምስራቅ ማሾለኪያ"
-#: strings.hrc:1004
+#: strings.hrc:993
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "ወደ ምእራብ ማሾለኪያ"
-#: strings.hrc:1005
+#: strings.hrc:994
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "ወደ ኋላ ማሾለኪያ"
-#: strings.hrc:1006
+#: strings.hrc:995
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "ወደ ምስራቅ ማሾለኪያ"
-#: strings.hrc:1007
+#: strings.hrc:996
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "ወደ ደቡብ-ምእራብ ማሾለኪያ"
-#: strings.hrc:1008
+#: strings.hrc:997
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "ወደ ደቡብ ማሾለኪያ"
-#: strings.hrc:1009
+#: strings.hrc:998
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "ወደ ደቡብ-ምስራቅ ማሾለኪያ"
-#: strings.hrc:1010
+#: strings.hrc:999
msgctxt "RID_SVXSTR_BRIGHT"
msgid "~Bright"
msgstr "~ብሩህ"
-#: strings.hrc:1011
+#: strings.hrc:1000
msgctxt "RID_SVXSTR_NORMAL"
msgid "~Normal"
msgstr "~መደበኛ"
-#: strings.hrc:1012
+#: strings.hrc:1001
msgctxt "RID_SVXSTR_DIM"
msgid "~Dim"
msgstr "~ፋዛዛ"
-#: strings.hrc:1013
+#: strings.hrc:1002
msgctxt "RID_SVXSTR_WIREFRAME"
msgid "~Wire Frame"
msgstr "~የሽቦ ክፈፍ"
-#: strings.hrc:1014
+#: strings.hrc:1003
msgctxt "RID_SVXSTR_MATTE"
msgid "~Matt"
msgstr "~Matt"
-#: strings.hrc:1015
+#: strings.hrc:1004
msgctxt "RID_SVXSTR_PLASTIC"
msgid "~Plastic"
msgstr "~ፕላስቲክ"
-#: strings.hrc:1016
+#: strings.hrc:1005
msgctxt "RID_SVXSTR_METAL"
msgid "Me~tal"
msgstr "ብረ~ት"
-#: strings.hrc:1017
+#: strings.hrc:1006
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "~0 ሴሚ"
-#: strings.hrc:1018
+#: strings.hrc:1007
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "~1 ሴሚ"
-#: strings.hrc:1019
+#: strings.hrc:1008
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "~2.5 ሴሚ"
-#: strings.hrc:1020
+#: strings.hrc:1009
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "~5 ሴሚ"
-#: strings.hrc:1021
+#: strings.hrc:1010
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 ~ሴሚ"
-#: strings.hrc:1022
+#: strings.hrc:1011
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 ኢንች"
-#: strings.hrc:1023
+#: strings.hrc:1012
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0.~5 ኢንች"
-#: strings.hrc:1024
+#: strings.hrc:1013
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "~1 ኢንች"
-#: strings.hrc:1025
+#: strings.hrc:1014
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "~2 ኢንች"
-#: strings.hrc:1026
+#: strings.hrc:1015
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "~4 ኢንች"
-#: strings.hrc:1027
+#: strings.hrc:1016
msgctxt "RID_SVXSTR_CUSTOM"
msgid "~Custom..."
msgstr "~ማስተካከያ..."
-#: strings.hrc:1028
+#: strings.hrc:1017
msgctxt "RID_SVXSTR_INFINITY"
msgid "~Infinity"
msgstr "~ኢንፊኒቲ"
-#: strings.hrc:1030
+#: strings.hrc:1019
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr "መሙያ የለም"
-#: strings.hrc:1031
+#: strings.hrc:1020
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr "ግልጽነት"
-#: strings.hrc:1032
+#: strings.hrc:1021
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "ነባር"
-#: strings.hrc:1033
+#: strings.hrc:1022
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "ድንበሮች"
-#: strings.hrc:1034
+#: strings.hrc:1023
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "የድንበሮች ዘዴ"
-#: strings.hrc:1035
+#: strings.hrc:1024
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr "ተጨማሪ ቁጥር መስጫ..."
-#: strings.hrc:1036
+#: strings.hrc:1025
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr "ተጨማሪ ነጥቦች..."
-#: strings.hrc:1037
+#: strings.hrc:1026
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr "በ ደራሲው"
-#: strings.hrc:1038
+#: strings.hrc:1027
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "ገጾች"
-#: strings.hrc:1039
+#: strings.hrc:1028
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "አቀራረብ ማጽጃ"
-#: strings.hrc:1040
+#: strings.hrc:1029
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr "ተጨማሪ ዘዴዎች..."
-#: strings.hrc:1041
+#: strings.hrc:1030
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr "ተጫማሪ ምርጫዎች..."
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: strings.hrc:1043
+#: strings.hrc:1032
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "የፊደሉ ስም"
-#: strings.hrc:1044
+#: strings.hrc:1033
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr "የ ፊደሉ ስም: የ አሁኑ ፊደል ዝግጁ አይደለም እና በሌላ ይቀየራል"
-#: strings.hrc:1045
+#: strings.hrc:1034
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr "ማስተካከያ"
-#: strings.hrc:1046
+#: strings.hrc:1035
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr "የ ሰነድ ቀለሞች"
-#: strings.hrc:1047
+#: strings.hrc:1036
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr "የ ሰነድ ቀለሞች"
-#: strings.hrc:1049
+#: strings.hrc:1038
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "ማሾለኪያ"
-#: strings.hrc:1050
+#: strings.hrc:1039
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "ማሾለኪያ ማብሪያ/ማጥፊያ መፈጸሚያ"
-#: strings.hrc:1051
+#: strings.hrc:1040
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "ወደ ታች ማዘንበያ"
-#: strings.hrc:1052
+#: strings.hrc:1041
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "ወደ ላይ ማዘንበያ"
-#: strings.hrc:1053
+#: strings.hrc:1042
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "ወደ ግራ ማዘንበያ"
-#: strings.hrc:1054
+#: strings.hrc:1043
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "ወደ ቀኝ ማዘንበያ"
-#: strings.hrc:1055
+#: strings.hrc:1044
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "የ ማሾለኪያ ጥልቀት መቀየሪያ"
-#: strings.hrc:1056
+#: strings.hrc:1045
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "አቅጣጫ መቀየሪያ"
-#: strings.hrc:1057
+#: strings.hrc:1046
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "Change Projection Type"
-#: strings.hrc:1058
+#: strings.hrc:1047
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "ብርሃን መቀየሪያ"
-#: strings.hrc:1059
+#: strings.hrc:1048
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "ብሩህነቱን መቀየሪያ"
-#: strings.hrc:1060
+#: strings.hrc:1049
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "የ ማሾለኪያ ገጽታ መቀየሪያ"
-#: strings.hrc:1061
+#: strings.hrc:1050
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "የ ማሾለኪያ ቀለም መቀየሪያ"
-#: strings.hrc:1063
+#: strings.hrc:1052
msgctxt "RID_SVXFLOAT3D_FAVORITE"
msgid "Favorite"
msgstr "የምወዳቸው"
-#: strings.hrc:1064
+#: strings.hrc:1053
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R:"
-#: strings.hrc:1065
+#: strings.hrc:1054
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G:"
-#: strings.hrc:1066
+#: strings.hrc:1055
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B:"
-#: strings.hrc:1068
+#: strings.hrc:1057
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "የ ፊደል ስራ"
-#: strings.hrc:1069
+#: strings.hrc:1058
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "የ ፊደል ስራ ቅርጽ መፈጸሚያ"
-#: strings.hrc:1070
+#: strings.hrc:1059
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "የ ፊደል ስራ ተመሳሳይ የ ፊደል እርዝመት መፈጸሚያ"
-#: strings.hrc:1071
+#: strings.hrc:1060
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "የ ፊደል ስራ ማሰለፊያ መፈጸሚያ"
-#: strings.hrc:1072
+#: strings.hrc:1061
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "የ ፊደል ስራ ባህሪ ክፍተት መፈጸሚያ"
-#: strings.hrc:1074
+#: strings.hrc:1063
msgctxt "RID_SVXSTR_A11Y_3D_MATERIAL_COLOR"
msgid "3D material color"
msgstr "የ 3ዲ እቃ ቀለም"
-#: strings.hrc:1075
+#: strings.hrc:1064
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_NONE"
msgid "None"
msgstr "ምንም"
-#: strings.hrc:1076
+#: strings.hrc:1065
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_SOLID"
msgid "Solid"
msgstr "ሙሉ"
-#: strings.hrc:1077
+#: strings.hrc:1066
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_HATCH"
msgid "With hatching"
msgstr "ከ በርካታ መስመር ጋር"
-#: strings.hrc:1078
+#: strings.hrc:1067
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_GRADIENT"
msgid "Gradient"
msgstr "ከፍታ መለኪያ"
-#: strings.hrc:1079
+#: strings.hrc:1068
msgctxt "RID_SVXSTR_A11Y_FILLSTYLE_BITMAP"
msgid "Bitmap"
msgstr "Bitmap"
-#: strings.hrc:1080
+#: strings.hrc:1069
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "ጋር"
-#: strings.hrc:1081
+#: strings.hrc:1070
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "ዘዴ"
-#: strings.hrc:1082
+#: strings.hrc:1071
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "እና"
#. SvxRectCtl
-#: strings.hrc:1084
+#: strings.hrc:1073
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "የጠርዝ መቆጣጠሪያ"
-#: strings.hrc:1085
+#: strings.hrc:1074
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "የጠርዝ ነጥቦች መምረጫ"
-#: strings.hrc:1086
+#: strings.hrc:1075
msgctxt "RID_SVXSTR_RECTCTL_ACC_ANGL_NAME"
msgid "Angle control"
msgstr "ማእዘን መቆጣጠሪያ"
-#: strings.hrc:1087
+#: strings.hrc:1076
msgctxt "RID_SVXSTR_RECTCTL_ACC_ANGL_DESCR"
msgid "Selection of a major angle."
msgstr "ዋናውን ማእዘን መምረጫ"
-#: strings.hrc:1088
+#: strings.hrc:1077
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "ከ ላይ በ ግራ በኩል"
-#: strings.hrc:1089
+#: strings.hrc:1078
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "ከ ላይ መሀከል"
-#: strings.hrc:1090
+#: strings.hrc:1079
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "ከ ላይ በ ቀኝ በኩል"
-#: strings.hrc:1091
+#: strings.hrc:1080
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "በ ግራ በኩል መሀከል"
-#: strings.hrc:1092
+#: strings.hrc:1081
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "መሀከል"
-#: strings.hrc:1093
+#: strings.hrc:1082
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "በ ቀኝ በኩል መሀከል"
-#: strings.hrc:1094
+#: strings.hrc:1083
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "ከ ታች በ ግራ በኩል"
-#: strings.hrc:1095
+#: strings.hrc:1084
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "ከ ታች መካከል"
-#: strings.hrc:1096
+#: strings.hrc:1085
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "ከ ታች በ ቀኝ በኩል"
-#: strings.hrc:1097
+#: strings.hrc:1086
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A000"
msgid "0 degrees"
msgstr "0 ዲግሪዎች"
-#: strings.hrc:1098
+#: strings.hrc:1087
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A045"
msgid "45 degrees"
msgstr "45 ዲግሪዎች"
-#: strings.hrc:1099
+#: strings.hrc:1088
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A090"
msgid "90 degrees"
msgstr "90 ዲግሪዎች"
-#: strings.hrc:1100
+#: strings.hrc:1089
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A135"
msgid "135 degrees"
msgstr "135 ዲግሪዎች"
-#: strings.hrc:1101
+#: strings.hrc:1090
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A180"
msgid "180 degrees"
msgstr "180 ዲግሪዎች"
-#: strings.hrc:1102
+#: strings.hrc:1091
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A225"
msgid "225 degrees"
msgstr "225 ዲግሪዎች"
-#: strings.hrc:1103
+#: strings.hrc:1092
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A270"
msgid "270 degrees"
msgstr "270 ዲግሪዎች"
-#: strings.hrc:1104
+#: strings.hrc:1093
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_A315"
msgid "315 degrees"
msgstr "315 ዲግሪዎች"
#. SvxGraphCtrlAccessibleContext
-#: strings.hrc:1106
+#: strings.hrc:1095
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "ቅርጽ መቆጣጠሪያ"
-#: strings.hrc:1107
+#: strings.hrc:1096
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "እዚህ ነው ቅርጹን የሚያርሙት"
-#: strings.hrc:1108
+#: strings.hrc:1097
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "የ ተለዩ ባህሪዎች ማረሚያ"
-#: strings.hrc:1109
+#: strings.hrc:1098
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "የ ተለዩ ባህሪዎች ከዚህ አካባቢ ይምረጡ"
#. The space behind is a must.
-#: strings.hrc:1111
+#: strings.hrc:1100
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "የ ባህሪዎች ኮድ "
-#: strings.hrc:1113
+#: strings.hrc:1102
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "በ ሜዳው ውስጥ ማስገባት ያስፈልጋል '#'. እባክዎን ዋጋ ያስገቡ"
-#: strings.hrc:1114
+#: strings.hrc:1103
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "ፎርሞች"
-#: strings.hrc:1115
+#: strings.hrc:1104
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "መቆጣጠሪያ አልተመረጠም"
-#: strings.hrc:1116
+#: strings.hrc:1105
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "ባህሪዎች : "
-#: strings.hrc:1117
+#: strings.hrc:1106
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "ባህሪዎች መፍጠሪያ"
-#: strings.hrc:1118
+#: strings.hrc:1107
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "መቃኛ መፍጠሪያ"
-#: strings.hrc:1119
+#: strings.hrc:1108
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "ፎርም"
-#: strings.hrc:1120
+#: strings.hrc:1109
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "ፎርም"
-#: strings.hrc:1121
+#: strings.hrc:1110
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "የተደበቀ መቆጣጠሪያ"
-#: strings.hrc:1122
+#: strings.hrc:1111
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "መቆጣጠሪያ"
-#: strings.hrc:1123
+#: strings.hrc:1112
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "መቅረጫ"
-#: strings.hrc:1124
+#: strings.hrc:1113
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "ከ"
-#: strings.hrc:1125
+#: strings.hrc:1114
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "ሜዳ መጨመሪያ :"
-#: strings.hrc:1126
+#: strings.hrc:1115
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "ዳታ ወደ ዳታቤዝ ሲጻፍ ስህተት ተፈጥሯል"
-#: strings.hrc:1127
+#: strings.hrc:1116
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Syntax error in query expression"
-#: strings.hrc:1128
+#: strings.hrc:1117
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "1 መዝገብ ሊያጠፉ ነው"
-#: strings.hrc:1129
+#: strings.hrc:1118
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "# መዝገብ ይጠፋል"
-#: strings.hrc:1130
+#: strings.hrc:1119
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -11194,277 +11301,277 @@ msgstr ""
"አዎን ከ ተጫኑ መተው አይቻልም \n"
"ለማንኛውም መቀጠል ይፈልጋሉ?"
-#: strings.hrc:1131
+#: strings.hrc:1120
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "መቃኛ መደርደሪያ"
-#: strings.hrc:1132
+#: strings.hrc:1121
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "አምድ"
-#: strings.hrc:1133
+#: strings.hrc:1122
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "ባህሪ ማሰናጃ '#'"
-#: strings.hrc:1134
+#: strings.hrc:1123
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "በማጠራቀሚያው ውስጥ ያስገቡ"
-#: strings.hrc:1135
+#: strings.hrc:1124
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "ማጥፊያ #"
-#: strings.hrc:1136
+#: strings.hrc:1125
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "እቃዎችን # ማጥፊያ"
-#: strings.hrc:1137
+#: strings.hrc:1126
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "የማጠራቀሚያ አካል መቀየሪያ"
-#: strings.hrc:1138
+#: strings.hrc:1127
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "መቆጣጠሪያ መቀየሪያ"
-#: strings.hrc:1139
+#: strings.hrc:1128
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr "ቁልፉን ይጫኑ"
-#: strings.hrc:1140
+#: strings.hrc:1129
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr "አማራጭ ቁልፍ"
-#: strings.hrc:1141
+#: strings.hrc:1130
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "ሳጥኑ ውስጥ ምልክት ያድርጉ"
-#: strings.hrc:1142
+#: strings.hrc:1131
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "የ ምልክት ሜዳ"
-#: strings.hrc:1143
+#: strings.hrc:1132
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "የ ቡድን ሳጥን"
-#: strings.hrc:1144
+#: strings.hrc:1133
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "የ ጽሁፍ ሳጥን"
-#: strings.hrc:1145
+#: strings.hrc:1134
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr "የ ሜዳ አቀራረብ"
-#: strings.hrc:1146
+#: strings.hrc:1135
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "የ ዝርዝር ሳጥን"
-#: strings.hrc:1147
+#: strings.hrc:1136
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr "መቀላቀያ ሳጥን"
-#: strings.hrc:1148
+#: strings.hrc:1137
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "የ ምስል ቁልፍ"
-#: strings.hrc:1149
+#: strings.hrc:1138
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr "ምስል መቆጣጠሪያ"
-#: strings.hrc:1150
+#: strings.hrc:1139
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "የ ፋይል ምርጫዎች"
-#: strings.hrc:1151
+#: strings.hrc:1140
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "የ ቀን ሜዳ"
-#: strings.hrc:1152
+#: strings.hrc:1141
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "የ ሰአት ሜዳ"
-#: strings.hrc:1153
+#: strings.hrc:1142
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "የ ቁጥር ሜዳ"
-#: strings.hrc:1154
+#: strings.hrc:1143
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "የ ገንዘብ ሜዳ"
-#: strings.hrc:1155
+#: strings.hrc:1144
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "የ ንድፍ ሜዳ"
-#: strings.hrc:1156
+#: strings.hrc:1145
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "ሰንጠረዥ መቆጣጠሪያ "
-#: strings.hrc:1157
+#: strings.hrc:1146
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "መሸብለያ መደርደሪያ"
-#: strings.hrc:1158
+#: strings.hrc:1147
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "ማሽከርከሪያ ቁልፍ"
-#: strings.hrc:1159
+#: strings.hrc:1148
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "መቃኛ መደርደሪያ"
-#: strings.hrc:1160