summaryrefslogtreecommitdiff
path: root/include/svx/fmsrcimp.hxx
blob: fdcf12fa319554c690fd397111c343608d2fd3d6 (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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#ifndef INCLUDED_SVX_FMSRCIMP_HXX
#define INCLUDED_SVX_FMSRCIMP_HXX

#include <svx/fmtools.hxx>
#include <svx/svxdllapi.h>

#include <com/sun/star/beans/XPropertyChangeListener.hpp>

#include <cppuhelper/implbase.hxx>
#include <unotools/charclass.hxx>
#include <unotools/collatorwrapper.hxx>
#include <tools/link.hxx>

#include <atomic>
#include <deque>
#include <memory>
#include <string_view>
#include <vector>

namespace com::sun::star::awt { class XCheckBox; }
namespace com::sun::star::awt { class XListBox; }
namespace com::sun::star::awt { class XTextComponent; }
namespace com::sun::star::sdb { class XColumn; }

enum class TransliterationFlags;

/**
 * struct FmSearchProgress - the owner of SearchEngine receives this structure for status updates
 * (at the end of the search)
 */
struct FmSearchProgress
{
    enum class State { Progress, ProgressCounting, Canceled, Successful, NothingFound, Error };
    // (move to new record; progress during counting of records; cancelled; record found; nothing found;
    // any non-processable error)
    State       aSearchState;

    // current record - always valid (e.g. of interest for continuing search in case of cancellation)
    sal_uInt32  nCurrentRecord;
    // Overflow - only valid in case of STATE_PROGRESS
    bool        bOverflow;

    // the position of the search cursor - valid in case of STATE_SUCCESSFUL, STATE_CANCELED and STATE_NOTHING_FOUND
    css::uno::Any  aBookmark;
    // the field, in which the text was found - valid in case of STATE_SUCCESSFUL
    sal_Int32   nFieldIndex;
};

/**
 * class FmRecordCountListener - utility class for FmSearchEngine, listens at a certain cursor and provides
 *                               the differences in RecordCount
 */
// workaround for incremental linking bugs in MSVC2019
class SAL_DLLPUBLIC_TEMPLATE FmRecordCountListener_Base : public cppu::WeakImplHelper< css::beans::XPropertyChangeListener > {};
class SAL_WARN_UNUSED FmRecordCountListener final : public FmRecordCountListener_Base
{
// attribute
    Link<sal_Int32,void>     m_lnkWhoWantsToKnow;
    css::uno::Reference< css::beans::XPropertySet >   m_xListening;

// attribute access
public:
    void SetPropChangeHandler(const Link<sal_Int32,void>& lnk);

// methods
public:
    FmRecordCountListener(const css::uno::Reference< css::sdbc::XResultSet >& dbcCursor);
    // the set has to support the sdb::ResultSet service
    virtual ~FmRecordCountListener() override;

    //  DECLARE_UNO3_AGG_DEFAULTS(FmPropertyListener, UsrObject)
    //  virtual sal_Bool queryInterface(css::uno::Uik aUik, css::uno::Reference< css::uno::XInterface >& rOut);

    // css::lang::XEventListener
    virtual void SAL_CALL disposing(const css::lang::EventObject& Source) override;

    // css::beans::XPropertyChangeListener
    virtual void SAL_CALL propertyChange(const css::beans::PropertyChangeEvent& evt) override;

    void DisConnect();

private:
    void NotifyCurrentCount();

};

/**
 * class FmSearchEngine - Impl class for FmSearchDialog
 */
namespace svxform {
    // We have three possible control types we may search in, determined by the supported interfaces : css::awt::XTextComponent,
    // css::awt::XListBox, css::awt::XCheckBox.
    // While searching we don't want to do this distinction for every control in every round. So we need some helpers.
    class SAL_WARN_UNUSED ControlTextWrapper
    {
        // attributes
        css::uno::Reference< css::uno::XInterface >   m_xControl;
        // attribute access
    public:
        const css::uno::Reference< css::uno::XInterface >&  getControl() const{ return m_xControl; }
    public:
        ControlTextWrapper(const css::uno::Reference< css::uno::XInterface >& _xControl) { m_xControl = _xControl; }
        virtual ~ControlTextWrapper() { }

        virtual OUString getCurrentText() const = 0;
    };

    class SAL_WARN_UNUSED SimpleTextWrapper final : public ControlTextWrapper
    {
        css::uno::Reference< css::awt::XTextComponent >  m_xText;
    public:
        SimpleTextWrapper(const css::uno::Reference< css::awt::XTextComponent >& _xText);
        virtual OUString getCurrentText() const override;
    };

    class SAL_WARN_UNUSED ListBoxWrapper final : public ControlTextWrapper
    {
        css::uno::Reference< css::awt::XListBox >  m_xBox;
    public:
        ListBoxWrapper(const css::uno::Reference< css::awt::XListBox >& _xBox);
        virtual OUString getCurrentText() const override;
    };

    class SAL_WARN_UNUSED CheckBoxWrapper final : public ControlTextWrapper
    {
        css::uno::Reference< css::awt::XCheckBox >  m_xBox;
    public:
        CheckBoxWrapper(const css::uno::Reference< css::awt::XCheckBox >& _xBox);
        virtual OUString getCurrentText() const override;
    };
}

typedef std::vector< css::uno::Reference< css::uno::XInterface> > InterfaceArray;

class SAL_WARN_UNUSED SVX_DLLPUBLIC FmSearchEngine final
{
    friend class FmSearchThread;

    enum class SearchResult { Found, NotFound, Error, Cancelled };
    enum class SearchFor { String, Null, NotNull };

    CursorWrapper                   m_xSearchCursor;
    std::deque<sal_Int32>           m_arrFieldMapping;
    // Since the iterator could have more columns, as managed here (in this field listbox),
    // a mapping of this css::form keys on the indices of the respective columns is kept in the iterator

    CharClass               m_aCharacterClassficator;
    CollatorWrapper         m_aStringCompare;

    // the collection of all interesting fields (or their css::data::XDatabaseVariant interfaces and FormatKeys)
    struct FieldInfo
    {
        css::uno::Reference< css::sdb::XColumn >          xContents;
    };

    typedef std::vector<FieldInfo> FieldCollection;
    FieldCollection             m_arrUsedFields;
    sal_Int32                   m_nCurrentFieldIndex;   // the last parameter of RebuildUsedFields, it allows checks in FormatField

    std::vector<std::unique_ptr<svxform::ControlTextWrapper>>
                            m_aControlTexts;

    CursorWrapper           m_xOriginalIterator;
    CursorWrapper           m_xClonedIterator;

    // Data for the decision in which field a "Found" is accepted
    css::uno::Any  m_aPreviousLocBookmark;     // position of the last finding
    FieldCollection::iterator   m_iterPreviousLocField;     // field of the last finding

    // Communication with the thread that does the actual searching
    OUString            m_strSearchExpression;              // forward direction
    SearchFor      m_eSearchForType;                   // ditto
    SearchResult       m_srResult;                         // backward direction

    // The link we broadcast the progress and the result to
    Link<const FmSearchProgress*,void>  m_aProgressHandler;
    std::atomic<bool>   m_bCancelAsynchRequest;     // should be cancelled?

    // parameters for the search
    bool        m_bSearchingCurrently : 1;      // is an (asynchronous) search running?
    bool        m_bFormatter : 1;       // use field formatting
    bool        m_bForward : 1;         // direction
    bool        m_bWildcard : 1;        // wildcard search
    bool        m_bRegular : 1;         // regular expression
    bool        m_bLevenshtein : 1;     // Levenshtein search
    bool        m_bTransliteration : 1; // Levenshtein search

    bool        m_bLevRelaxed : 1;      // parameters for Levenshtein search
    sal_uInt16  m_nLevOther;
    sal_uInt16  m_nLevShorter;
    sal_uInt16  m_nLevLonger;

    sal_uInt16  m_nPosition;            // if not regular or levenshtein, then one of the MATCHING_... values

    TransliterationFlags m_nTransliterationFlags;


// member access
private:
    SVX_DLLPRIVATE bool CancelRequested();      // provides a through m_aCancelAsynchAccess backed interpretation of m_bCancelAsynchRequest

public:
    void        SetCaseSensitive(bool bSet);
    bool        GetCaseSensitive() const;

    void        SetFormatterUsing(bool bSet);   // this is somewhat more extensive, so no inline ... here
    bool        GetFormatterUsing() const           { return m_bFormatter; }

    void        SetDirection(bool bForward)     { m_bForward = bForward; }
    bool        GetDirection() const                { return m_bForward; }

    void        SetWildcard(bool bSet)          { m_bWildcard = bSet; }
    bool        GetWildcard() const                 { return m_bWildcard; }

    void        SetRegular(bool bSet)           { m_bRegular = bSet; }
    bool        GetRegular() const                  { return m_bRegular; }

    void        SetLevenshtein(bool bSet)       { m_bLevenshtein = bSet; }
    bool        GetLevenshtein() const              { return m_bLevenshtein; }

    void        SetIgnoreWidthCJK(bool bSet);
    bool        GetIgnoreWidthCJK() const;

    void        SetTransliteration(bool bSet)   { m_bTransliteration = bSet; }
    bool        GetTransliteration() const          { return m_bTransliteration; }

    void        SetLevRelaxed(bool bSet)        { m_bLevRelaxed = bSet; }
    bool        GetLevRelaxed() const               { return m_bLevRelaxed; }
    void        SetLevOther(sal_uInt16 nHowMuch)    { m_nLevOther = nHowMuch; }
    sal_uInt16  GetLevOther() const                 { return m_nLevOther; }
    void        SetLevShorter(sal_uInt16 nHowMuch)  { m_nLevShorter = nHowMuch; }
    sal_uInt16  GetLevShorter() const               { return m_nLevShorter; }
    void        SetLevLonger(sal_uInt16 nHowMuch)   { m_nLevLonger = nHowMuch; }
    sal_uInt16  GetLevLonger() const                { return m_nLevLonger; }
    // all Lev. values will only be considered in case of m_bLevenshtein==sal_True

    void        SetTransliterationFlags(TransliterationFlags _nFlags)  { m_nTransliterationFlags = _nFlags; }
    TransliterationFlags
                GetTransliterationFlags() const             { return m_nTransliterationFlags; }

    void    SetPosition(sal_uInt16 nValue)      { m_nPosition = nValue; }
    sal_uInt16  GetPosition() const             { return m_nPosition; }
    // position will be ignored in case of m_bWildCard==sal_True

public:
    /** two constructs, both analogical to FmSearchDialog, therefore look this up for explanations...
        xCursor has to implement css::data::DatabaseCursor service  each time.
        If eMode == SM_USETHREAD, a ProgressHandler should be set, because in this case the result forwarding will be done
        by this handler.
        If eMode != SM_USETHREAD, SearchNext and StarOver won't return, until the search has finished (independently of its
        success), only then the result can be requested. If additionally the ProgressHandler is set, it will be called for
        every record as well as at the end of the search.
    */
    FmSearchEngine(
        const css::uno::Reference< css::uno::XComponentContext >& _rxContext,
        const css::uno::Reference< css::sdbc::XResultSet >& xCursor,
        std::u16string_view strVisibleFields,
        const InterfaceArray& arrFields);

    /** the link will be called on every record and after the completion of the search, the parameter is a pointer to
        a FmSearchProgress structure
        the handler should be in any case thread-safe
    */
    void SetProgressHandler(Link<const FmSearchProgress*,void> aHdl) { m_aProgressHandler = aHdl; }

    /// search for the next appearance (for nDirection values check DIRECTION_*-defines)
    void SearchNext(const OUString& strExpression);
    /// analogous, search for "NULL" (_bSearchForNull==sal_True) or "not NULL"
    void SearchNextSpecial(bool _bSearchForNull);
    /// search for the next appearance, dependent on nDirection from the start or end
    void StartOver(const OUString& strExpression);
    /// analogous, search for "NULL" (_bSearchForNull==sal_True) or "not NULL"
    void StartOverSpecial(bool _bSearchForNull);
    /// invalidate previous search reference
    void InvalidatePreviousLoc();

    /** rebuilds m_arrUsedFields (nFieldIndex==-1 means all fields, otherwise it specifies the field index)
        if bForce is not set, nothing will happen in case of nFieldIndex == m_nCurrentFieldIndex
        (calls InvalidatePreviousLoc)
    */
    void RebuildUsedFields(sal_Int32 nFieldIndex, bool bForce = false);
    OUString FormatField(sal_Int32 nWhich);

    /// returns directly; once it was really aborted, ProgressHandler is called with STATE_CANCELED
    void CancelSearch();

    /** only valid, if not an (asynchronous) search is running, the next search will then be executed
        on top of the new iterator with the new parameter
    */
    void SwitchToContext(const css::uno::Reference< css::sdbc::XResultSet >& xCursor, std::u16string_view strVisibleFields, const InterfaceArray& arrFields,
        sal_Int32 nFieldIndex);

private:
    void Init(std::u16string_view strVisibleFields);

    void SearchNextImpl();
    // this Impl method is running in SearchThread

    // start a thread-search (or call SearchNextImpl directly, depending on the search mode)
    void ImplStartNextSearch();

    SVX_DLLPRIVATE void fillControlTexts(const InterfaceArray& arrFields);

    // three methods implementing a complete search loop (null/not null, wildcard, SearchText)
    // (they all have some code in common, but with this solution we have to do a distinction only once per search (before
    // starting the loop), not in every loop step
    SVX_DLLPRIVATE SearchResult SearchSpecial(bool _bSearchForNull, sal_Int32& nFieldPos, FieldCollection::iterator& iterFieldLoop,
        const FieldCollection::iterator& iterBegin, const FieldCollection::iterator& iterEnd);
    SVX_DLLPRIVATE SearchResult SearchWildcard(std::u16string_view strExpression, sal_Int32& nFieldPos, FieldCollection::iterator& iterFieldLoop,
        const FieldCollection::iterator& iterBegin, const FieldCollection::iterator& iterEnd);
    SVX_DLLPRIVATE SearchResult SearchRegularApprox(const OUString& strExpression, sal_Int32& nFieldPos, FieldCollection::iterator& iterFieldLoop,
        const FieldCollection::iterator& iterBegin, const FieldCollection::iterator& iterEnd);

    SVX_DLLPRIVATE void PropagateProgress(bool _bDontPropagateOverflow);
    // call the ProgressHandler with STATE_PROGRESS and the current position of the search iterator

    // helpers, that are needed several times
    SVX_DLLPRIVATE bool MoveCursor();
    // moves m_xSearchIterator with respect to direction/overflow cursor
    SVX_DLLPRIVATE bool MoveField(sal_Int32& nPos, FieldCollection::iterator& iter, const FieldCollection::iterator& iterBegin, const FieldCollection::iterator& iterEnd);
    // moves the iterator with respect to the direction/overflow iterator/overflow cursor
    SVX_DLLPRIVATE void BuildAndInsertFieldInfo(const css::uno::Reference< css::container::XIndexAccess >& xAllFields, sal_Int32 nField);

    void OnSearchTerminated();
    // is used by SearchThread, after the return from this handler the thread removes itself
    DECL_DLLPRIVATE_LINK(OnNewRecordCount, sal_Int32, void);
};

#endif // INCLUDED_SVX_FMSRCIMP_HXX

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
%;'/> -rw-r--r--source/be/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/be/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/bg/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/bg/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/bg/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/bg/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/bg/helpcontent2/source/text/shared/guide.po607
-rw-r--r--source/bg/sc/source/ui/src.po12
-rw-r--r--source/bg/svx/uiconfig/ui.po31
-rw-r--r--source/bg/sw/uiconfig/swriter/ui.po24
-rw-r--r--source/bg/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/01.po32
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/01.po240
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/guide.po581
-rw-r--r--source/bn-IN/sc/source/ui/src.po12
-rw-r--r--source/bn-IN/svx/uiconfig/ui.po32
-rw-r--r--source/bn-IN/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/bn-IN/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/bn/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/bn/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/bn/helpcontent2/source/text/scalc/guide.po141
-rw-r--r--source/bn/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/bn/helpcontent2/source/text/shared/01.po240
-rw-r--r--source/bn/helpcontent2/source/text/shared/guide.po581
-rw-r--r--source/bn/sc/source/ui/src.po12
-rw-r--r--source/bn/svx/uiconfig/ui.po29
-rw-r--r--source/bn/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/bn/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/bo/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/bo/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/bo/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po2755
-rw-r--r--source/bo/helpcontent2/source/text/shared/guide.po565
-rw-r--r--source/bo/sc/source/ui/src.po12
-rw-r--r--source/bo/svx/uiconfig/ui.po29
-rw-r--r--source/bo/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/bo/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/br/sc/source/ui/src.po12
-rw-r--r--source/br/svx/uiconfig/ui.po31
-rw-r--r--source/br/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/br/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/brx/sc/source/ui/src.po12
-rw-r--r--source/brx/svx/uiconfig/ui.po29
-rw-r--r--source/brx/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/brx/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/bs/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po24
-rw-r--r--source/bs/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/bs/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/bs/helpcontent2/source/text/shared/guide.po435
-rw-r--r--source/bs/sc/source/ui/src.po12
-rw-r--r--source/bs/svx/uiconfig/ui.po32
-rw-r--r--source/bs/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/bs/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/guide.po611
-rw-r--r--source/ca-valencia/sc/source/ui/src.po12
-rw-r--r--source/ca-valencia/svx/uiconfig/ui.po32
-rw-r--r--source/ca-valencia/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/ca-valencia/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/ca/cui/source/tabpages.po8
-rw-r--r--source/ca/cui/uiconfig/ui.po54
-rw-r--r--source/ca/extensions/source/propctrlr.po10
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/ca/helpcontent2/source/text/scalc/00.po30
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/ca/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po244
-rw-r--r--source/ca/helpcontent2/source/text/shared/guide.po609
-rw-r--r--source/ca/sc/source/ui/src.po14
-rw-r--r--source/ca/svx/uiconfig/ui.po33
-rw-r--r--source/ca/sw/uiconfig/swriter/ui.po30
-rw-r--r--source/ca/xmlsecurity/uiconfig/ui.po19
-rw-r--r--source/cs/cui/uiconfig/ui.po10
-rw-r--r--source/cs/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/cs/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/cs/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/cs/helpcontent2/source/text/shared/guide.po607
-rw-r--r--source/cs/sc/source/ui/src.po12
-rw-r--r--source/cs/svx/uiconfig/ui.po33
-rw-r--r--source/cs/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/cs/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/cy/sc/source/ui/src.po14
-rw-r--r--source/cy/svx/uiconfig/ui.po31
-rw-r--r--source/cy/sw/uiconfig/swriter/ui.po30
-rw-r--r--source/cy/xmlsecurity/uiconfig/ui.po19
-rw-r--r--source/da/basic/source/classes.po1081
-rw-r--r--source/da/dbaccess/source/ui/dlg.po13
-rw-r--r--source/da/helpcontent2/source/text/scalc/00.po32
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po36
-rw-r--r--source/da/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/da/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/da/helpcontent2/source/text/shared.po12
-rw-r--r--source/da/helpcontent2/source/text/shared/00.po19
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po3863
-rw-r--r--source/da/helpcontent2/source/text/shared/guide.po607
-rw-r--r--source/da/sc/source/ui/src.po12
-rw-r--r--source/da/sd/uiconfig/simpress/ui.po8
-rw-r--r--source/da/sfx2/source/dialog.po14
-rw-r--r--source/da/sfx2/source/doc.po10
-rw-r--r--source/da/sfx2/source/view.po10
-rw-r--r--source/da/sfx2/uiconfig/ui.po36
-rw-r--r--source/da/starmath/source.po16
-rw-r--r--source/da/svtools/source/java.po8
-rw-r--r--source/da/svtools/source/misc.po10
-rw-r--r--source/da/svtools/uiconfig/ui.po10
-rw-r--r--source/da/svx/source/dialog.po52
-rw-r--r--source/da/svx/source/form.po28
-rw-r--r--source/da/svx/source/tbxctrls.po12
-rw-r--r--source/da/svx/uiconfig/ui.po115
-rw-r--r--source/da/sw/source/core/undo.po12
-rw-r--r--source/da/sw/source/ui/dochdl.po15
-rw-r--r--source/da/sw/source/ui/misc.po8
-rw-r--r--source/da/sw/source/ui/utlui.po8
-rw-r--r--source/da/sw/source/uibase/utlui.po8
-rw-r--r--source/da/sw/uiconfig/swriter/ui.po118
-rw-r--r--source/da/swext/mediawiki/help.po34
-rw-r--r--source/da/vcl/source/src.po8
-rw-r--r--source/da/xmlsecurity/uiconfig/ui.po21
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po12
-rw-r--r--source/de/helpcontent2/source/text/scalc/00.po50
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po84
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po244
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po609
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po12
-rw-r--r--source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/de/sc/source/ui/src.po14
-rw-r--r--source/de/sc/uiconfig/scalc/ui.po14
-rw-r--r--source/de/svx/source/dialog.po232
-rw-r--r--source/de/svx/uiconfig/ui.po39
-rw-r--r--source/de/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/de/xmlsecurity/uiconfig/ui.po19
-rw-r--r--source/dgo/sc/source/ui/src.po12
-rw-r--r--source/dgo/svx/uiconfig/ui.po29
-rw-r--r--source/dgo/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/dgo/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/dz/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/dz/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/dz/helpcontent2/source/text/schart/01.po97
-rw-r--r--source/dz/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/dz/helpcontent2/source/text/shared/guide.po579
-rw-r--r--source/dz/sc/source/ui/src.po12
-rw-r--r--source/dz/svx/uiconfig/ui.po29
-rw-r--r--source/dz/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/dz/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/el/basic/source/classes.po1081
-rw-r--r--source/el/dbaccess/source/ui/dlg.po13
-rw-r--r--source/el/helpcontent2/source/text/scalc/00.po30
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po32
-rw-r--r--source/el/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po248
-rw-r--r--source/el/helpcontent2/source/text/shared/guide.po607
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/el/sc/source/ui/src.po12
-rw-r--r--source/el/sc/uiconfig/scalc/ui.po226
-rw-r--r--source/el/scp2/source/ooo.po14
-rw-r--r--source/el/sd/source/core.po14
-rw-r--r--source/el/sd/source/ui/animations.po36
-rw-r--r--source/el/sd/source/ui/app.po22
-rw-r--r--source/el/sd/uiconfig/sdraw/ui.po12
-rw-r--r--source/el/sd/uiconfig/simpress/ui.po250
-rw-r--r--source/el/sfx2/source/dialog.po86
-rw-r--r--source/el/sfx2/source/doc.po8
-rw-r--r--source/el/sfx2/source/sidebar.po10
-rw-r--r--source/el/sfx2/source/view.po14
-rw-r--r--source/el/sfx2/uiconfig/ui.po52
-rw-r--r--source/el/starmath/source.po26
-rw-r--r--source/el/svtools/source/java.po6
-rw-r--r--source/el/svtools/source/misc.po8
-rw-r--r--source/el/svtools/uiconfig/ui.po8
-rw-r--r--source/el/svx/uiconfig/ui.po310
-rw-r--r--source/el/sw/source/core/undo.po10
-rw-r--r--source/el/sw/source/core/unocore.po6
-rw-r--r--source/el/sw/source/ui/app.po82
-rw-r--r--source/el/sw/source/ui/dochdl.po13
-rw-r--r--source/el/sw/source/ui/index.po14
-rw-r--r--source/el/sw/source/ui/misc.po54
-rw-r--r--source/el/sw/source/ui/sidebar.po16
-rw-r--r--source/el/sw/source/ui/utlui.po36
-rw-r--r--source/el/sw/source/uibase/ribbar.po10
-rw-r--r--source/el/sw/source/uibase/utlui.po10
-rw-r--r--source/el/sw/uiconfig/swriter/ui.po528
-rw-r--r--source/el/swext/mediawiki/help.po76
-rw-r--r--source/el/uui/uiconfig/ui.po6
-rw-r--r--source/el/vcl/source/src.po12
-rw-r--r--source/el/xmlsecurity/uiconfig/ui.po19
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po32
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po248
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/guide.po664
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po515
-rw-r--r--source/en-GB/sc/source/ui/src.po8
-rw-r--r--source/en-GB/svx/uiconfig/ui.po33
-rw-r--r--source/en-GB/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/en-GB/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/en-ZA/connectivity/source/resource.po10
-rw-r--r--source/en-ZA/cui/source/customize.po8
-rw-r--r--source/en-ZA/cui/uiconfig/ui.po29
-rw-r--r--source/en-ZA/desktop/source/deployment/gui.po47
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/guide.po581
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/en-ZA/sc/source/ui/src.po12
-rw-r--r--source/en-ZA/sd/source/ui/view.po10
-rw-r--r--source/en-ZA/sd/uiconfig/simpress/ui.po9
-rw-r--r--source/en-ZA/starmath/uiconfig/smath/ui.po11
-rw-r--r--source/en-ZA/svtools/source/misc.po7
-rw-r--r--source/en-ZA/svx/uiconfig/ui.po29
-rw-r--r--source/en-ZA/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/en-ZA/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/eo/basic/source/classes.po1081
-rw-r--r--source/eo/dbaccess/source/ui/dlg.po13
-rw-r--r--source/eo/helpcontent2/source/text/scalc/00.po30
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po30
-rw-r--r--source/eo/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/eo/helpcontent2/source/text/shared/00.po19
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po3353
-rw-r--r--source/eo/helpcontent2/source/text/shared/guide.po443
-rw-r--r--source/eo/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po6
-rw-r--r--source/eo/sc/source/ui/src.po8
-rw-r--r--source/eo/sc/uiconfig/scalc/ui.po48
-rw-r--r--source/eo/scp2/source/ooo.po10
-rw-r--r--source/eo/svtools/source/java.po6
-rw-r--r--source/eo/svtools/source/misc.po8
-rw-r--r--source/eo/svtools/uiconfig/ui.po8
-rw-r--r--source/eo/svx/source/dialog.po10
-rw-r--r--source/eo/svx/source/form.po54
-rw-r--r--source/eo/svx/source/src.po6
-rw-r--r--source/eo/svx/source/stbctrls.po6
-rw-r--r--source/eo/svx/source/tbxctrls.po16
-rw-r--r--source/eo/svx/uiconfig/ui.po302
-rw-r--r--source/eo/sw/source/ui/dochdl.po13
-rw-r--r--source/eo/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/eo/xmlsecurity/uiconfig/ui.po19
-rw-r--r--source/es/basctl/source/basicide.po8
-rw-r--r--source/es/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po11
-rw-r--r--source/es/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po11
-rw-r--r--source/es/cui/uiconfig/ui.po22
-rw-r--r--source/es/editeng/source/items.po18
-rw-r--r--source/es/extensions/source/propctrlr.po76
-rw-r--r--source/es/extensions/uiconfig/sbibliography/ui.po10
-rw-r--r--source/es/forms/source/resource.po8
-rw-r--r--source/es/helpcontent2/source/auxiliary.po8
-rw-r--r--source/es/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po242
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po615
-rw-r--r--source/es/helpcontent2/source/text/shared/menu.po16
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po8
-rw-r--r--source/es/helpcontent2/source/text/swriter/02.po30
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po48
-rw-r--r--source/es/reportdesign/source/ui/inspection.po24
-rw-r--r--source/es/reportdesign/uiconfig/dbreport/ui.po14
-rw-r--r--source/es/sc/source/ui/src.po20
-rw-r--r--source/es/sd/source/core.po16
-rw-r--r--source/es/sd/source/ui/animations.po8
-rw-r--r--source/es/sd/source/ui/app.po8
-rw-r--r--source/es/sd/uiconfig/simpress/ui.po16
-rw-r--r--source/es/setup_native/source/mac.po8
-rw-r--r--source/es/sfx2/source/dialog.po8
-rw-r--r--source/es/starmath/source.po24
-rw-r--r--source/es/svtools/source/misc.po8
-rw-r--r--source/es/svx/source/dialog.po46
-rw-r--r--source/es/svx/source/form.po10
-rw-r--r--source/es/svx/uiconfig/ui.po118
-rw-r--r--source/es/sw/source/core/undo.po36
-rw-r--r--source/es/sw/source/uibase/ribbar.po8
-rw-r--r--source/es/sw/uiconfig/swriter/ui.po24
-rw-r--r--source/es/wizards/source/formwizard.po12
-rw-r--r--source/es/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/et/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po34
-rw-r--r--source/et/helpcontent2/source/text/scalc/guide.po21
-rw-r--r--source/et/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/et/helpcontent2/source/text/shared/guide.po607
-rw-r--r--source/et/sc/source/ui/src.po12
-rw-r--r--source/et/svx/uiconfig/ui.po31
-rw-r--r--source/et/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/et/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/eu/basic/source/classes.po1081
-rw-r--r--source/eu/cui/uiconfig/ui.po37
-rw-r--r--source/eu/dbaccess/source/ui/dlg.po13
-rw-r--r--source/eu/desktop/uiconfig/ui.po10
-rw-r--r--source/eu/extensions/source/propctrlr.po54
-rw-r--r--source/eu/filter/source/config/fragments/filters.po8
-rw-r--r--source/eu/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/eu/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po19
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po242
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po488
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po32
-rw-r--r--source/eu/reportdesign/source/ui/inspection.po12
-rw-r--r--source/eu/reportdesign/uiconfig/dbreport/ui.po9
-rw-r--r--source/eu/sc/source/ui/src.po15
-rw-r--r--source/eu/sc/uiconfig/scalc/ui.po14
-rw-r--r--source/eu/scp2/source/ooo.po8
-rw-r--r--source/eu/sd/source/core.po10
-rw-r--r--source/eu/sd/source/ui/animations.po22
-rw-r--r--source/eu/sd/source/ui/app.po10
-rw-r--r--source/eu/sd/uiconfig/sdraw/ui.po12
-rw-r--r--source/eu/sd/uiconfig/simpress/ui.po206
-rw-r--r--source/eu/sfx2/source/dialog.po18
-rw-r--r--source/eu/svx/source/dialog.po10
-rw-r--r--source/eu/svx/source/form.po62
-rw-r--r--source/eu/svx/source/src.po10
-rw-r--r--source/eu/svx/source/tbxctrls.po18
-rw-r--r--source/eu/svx/uiconfig/ui.po39
-rw-r--r--source/eu/sw/source/core/unocore.po10
-rw-r--r--source/eu/sw/source/ui/dochdl.po13
-rw-r--r--source/eu/sw/source/ui/index.po14
-rw-r--r--source/eu/sw/source/ui/misc.po24
-rw-r--r--source/eu/sw/source/ui/utlui.po10
-rw-r--r--source/eu/sw/source/uibase/ribbar.po14
-rw-r--r--source/eu/sw/source/uibase/utlui.po14
-rw-r--r--source/eu/sw/uiconfig/swriter/ui.po32
-rw-r--r--source/eu/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/fa/sc/source/ui/src.po12
-rw-r--r--source/fa/svx/uiconfig/ui.po29
-rw-r--r--source/fa/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/fa/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/fi/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/fi/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/fi/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/fi/helpcontent2/source/text/shared/guide.po611
-rw-r--r--source/fi/sc/source/ui/src.po12
-rw-r--r--source/fi/svx/uiconfig/ui.po33
-rw-r--r--source/fi/sw/uiconfig/swriter/ui.po30
-rw-r--r--source/fi/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/fr/cui/uiconfig/ui.po8
-rw-r--r--source/fr/formula/source/core/resource.po8
-rw-r--r--source/fr/formula/uiconfig/ui.po8
-rw-r--r--source/fr/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po30
-rw-r--r--source/fr/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po248
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po607
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po612
-rw-r--r--source/fr/reportdesign/source/ui/inspection.po62
-rw-r--r--source/fr/reportdesign/uiconfig/dbreport/ui.po16
-rw-r--r--source/fr/sc/source/ui/src.po14
-rw-r--r--source/fr/sc/uiconfig/scalc/ui.po284
-rw-r--r--source/fr/svx/source/dialog.po14
-rw-r--r--source/fr/svx/uiconfig/ui.po39
-rw-r--r--source/fr/sw/uiconfig/swriter/ui.po24
-rw-r--r--source/fr/xmlsecurity/uiconfig/ui.po19
-rw-r--r--source/ga/basic/source/classes.po1081
-rw-r--r--source/ga/dbaccess/source/ui/dlg.po9
-rw-r--r--source/ga/sc/source/ui/src.po12
-rw-r--r--source/ga/svx/uiconfig/ui.po29
-rw-r--r--source/ga/sw/source/ui/dochdl.po9
-rw-r--r--source/ga/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/ga/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/gd/avmedia/source/framework.po8
-rw-r--r--source/gd/basctl/source/basicide.po12
-rw-r--r--source/gd/basic/source/classes.po1081
-rw-r--r--source/gd/chart2/uiconfig/ui.po24
-rw-r--r--source/gd/cui/source/dialogs.po12
-rw-r--r--source/gd/cui/source/options.po106
-rw-r--r--source/gd/cui/uiconfig/ui.po18
-rw-r--r--source/gd/dbaccess/source/ui/dlg.po15
-rw-r--r--source/gd/extensions/source/propctrlr.po6
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/gd/readlicense_oo/docs.po10
-rw-r--r--source/gd/sc/source/ui/src.po20
-rw-r--r--source/gd/sc/uiconfig/scalc/ui.po12
-rw-r--r--source/gd/starmath/source.po10
-rw-r--r--source/gd/svx/uiconfig/ui.po31
-rw-r--r--source/gd/sw/source/ui/dochdl.po13
-rw-r--r--source/gd/sw/uiconfig/swriter/ui.po30
-rw-r--r--source/gd/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/gl/basic/source/classes.po1081
-rw-r--r--source/gl/dbaccess/source/ui/dlg.po9
-rw-r--r--source/gl/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po36
-rw-r--r--source/gl/helpcontent2/source/text/scalc/04.po24
-rw-r--r--source/gl/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po19
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po244
-rw-r--r--source/gl/helpcontent2/source/text/shared/guide.po587
-rw-r--r--source/gl/sc/source/ui/src.po12
-rw-r--r--source/gl/svx/uiconfig/ui.po27
-rw-r--r--source/gl/sw/source/ui/dochdl.po9
-rw-r--r--source/gl/sw/uiconfig/swriter/ui.po24
-rw-r--r--source/gl/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/gu/basic/source/classes.po1081
-rw-r--r--source/gu/dbaccess/source/ui/dlg.po9
-rw-r--r--source/gu/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/gu/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/gu/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/gu/helpcontent2/source/text/shared/guide.po553
-rw-r--r--source/gu/sc/source/ui/src.po8
-rw-r--r--source/gu/svx/uiconfig/ui.po28
-rw-r--r--source/gu/sw/source/ui/dochdl.po9
-rw-r--r--source/gu/sw/uiconfig/swriter/ui.po24
-rw-r--r--source/gu/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/gug/avmedia/source/framework.po10
-rw-r--r--source/gug/basctl/source/basicide.po10
-rw-r--r--source/gug/basic/source/classes.po1083
-rw-r--r--source/gug/dbaccess/source/ui/dlg.po12
-rw-r--r--source/gug/dbaccess/source/ui/querydesign.po8
-rw-r--r--source/gug/extras/source/autocorr/emoji.po12
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po33
-rw-r--r--source/gug/reportdesign/source/ui/report.po10
-rw-r--r--source/gug/reportdesign/uiconfig/dbreport/ui.po8
-rw-r--r--source/gug/sc/source/ui/src.po10
-rw-r--r--source/gug/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/gug/sd/source/core.po10
-rw-r--r--source/gug/sd/source/ui/animations.po27
-rw-r--r--source/gug/sd/source/ui/app.po30
-rw-r--r--source/gug/sd/source/ui/view.po21
-rw-r--r--source/gug/sd/uiconfig/sdraw/ui.po8
-rw-r--r--source/gug/sd/uiconfig/simpress/ui.po188
-rw-r--r--source/gug/svtools/source/dialogs.po10
-rw-r--r--source/gug/svx/uiconfig/ui.po27
-rw-r--r--source/gug/sw/source/ui/dochdl.po9
-rw-r--r--source/gug/sw/source/uibase/lingu.po11
-rw-r--r--source/gug/sw/uiconfig/swriter/ui.po38
-rw-r--r--source/gug/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/he/avmedia/source/framework.po8
-rw-r--r--source/he/basic/source/classes.po1081
-rw-r--r--source/he/dbaccess/source/ui/dlg.po15
-rw-r--r--source/he/desktop/uiconfig/ui.po12
-rw-r--r--source/he/forms/source/resource.po6
-rw-r--r--source/he/fpicker/uiconfig/ui.po8
-rw-r--r--source/he/framework/source/classes.po6
-rw-r--r--source/he/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po26
-rw-r--r--source/he/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/he/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po266
-rw-r--r--source/he/helpcontent2/source/text/shared/guide.po616
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/he/sc/source/ui/src.po14
-rw-r--r--source/he/svx/uiconfig/ui.po29
-rw-r--r--source/he/sw/source/ui/dochdl.po9
-rw-r--r--source/he/sw/uiconfig/swriter/ui.po30
-rw-r--r--source/he/vcl/source/src.po12
-rw-r--r--source/he/xmlsecurity/uiconfig/ui.po19
-rw-r--r--source/hi/basic/source/classes.po1081
-rw-r--r--source/hi/dbaccess/source/ui/dlg.po13
-rw-r--r--source/hi/helpcontent2/source/text/scalc/00.po18
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/hi/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/hi/helpcontent2/source/text/shared/00.po459
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po244
-rw-r--r--source/hi/helpcontent2/source/text/shared/guide.po505
-rw-r--r--source/hi/sc/source/ui/src.po12
-rw-r--r--source/hi/svx/uiconfig/ui.po29
-rw-r--r--source/hi/sw/source/ui/dochdl.po13
-rw-r--r--source/hi/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/hi/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/hr/basic/source/classes.po1081
-rw-r--r--source/hr/dbaccess/source/ui/dlg.po9
-rw-r--r--source/hr/helpcontent2/source/text/scalc/00.po18
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po30
-rw-r--r--source/hr/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/hr/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po2057
-rw-r--r--source/hr/helpcontent2/source/text/shared/guide.po437
-rw-r--r--source/hr/sc/source/ui/src.po14
-rw-r--r--source/hr/svx/uiconfig/ui.po27
-rw-r--r--source/hr/sw/source/ui/dochdl.po15
-rw-r--r--source/hr/sw/uiconfig/swriter/ui.po30
-rw-r--r--source/hr/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/hu-Hung/avmedia/source/framework.po20
-rw-r--r--source/hu-Hung/basctl/source/basicide.po35
-rw-r--r--source/hu-Hung/chart2/source/controller/dialogs.po20
-rw-r--r--source/hu-Hung/chart2/uiconfig/ui.po141
-rw-r--r--source/hu-Hung/cui/source/customize.po49
-rw-r--r--source/hu-Hung/cui/source/dialogs.po18
-rw-r--r--source/hu-Hung/cui/source/options.po231
-rw-r--r--source/hu-Hung/cui/source/tabpages.po591
-rw-r--r--source/hu-Hung/cui/uiconfig/ui.po1835
-rw-r--r--source/hu-Hung/dbaccess/source/ui/app.po231
-rw-r--r--source/hu-Hung/dbaccess/source/ui/browser.po22
-rw-r--r--source/hu-Hung/dbaccess/source/ui/querydesign.po16
-rw-r--r--source/hu-Hung/dbaccess/source/ui/tabledesign.po11
-rw-r--r--source/hu-Hung/desktop/source/deployment/gui.po12
-rw-r--r--source/hu-Hung/desktop/uiconfig/ui.po39
-rw-r--r--source/hu-Hung/editeng/source/accessibility.po12
-rw-r--r--source/hu-Hung/extensions/source/bibliography.po8
-rw-r--r--source/hu-Hung/extensions/source/propctrlr.po528
-rw-r--r--source/hu-Hung/extras/source/autocorr/emoji.po28
-rw-r--r--source/hu-Hung/filter/source/config/fragments/filters.po40
-rw-r--r--source/hu-Hung/filter/source/config/fragments/internalgraphicfilters.po22
-rw-r--r--source/hu-Hung/filter/uiconfig/ui.po13
-rw-r--r--source/hu-Hung/forms/source/resource.po12
-rw-r--r--source/hu-Hung/formula/source/core/resource.po16
-rw-r--r--source/hu-Hung/formula/uiconfig/ui.po22
-rw-r--r--source/hu-Hung/fpicker/uiconfig/ui.po43
-rw-r--r--source/hu-Hung/framework/source/classes.po12
-rw-r--r--source/hu-Hung/instsetoo_native/inc_openoffice/windows/msi_languages.po60
-rw-r--r--source/hu-Hung/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po6
-rw-r--r--source/hu-Hung/officecfg/registry/data/org/openoffice/Office.po15
-rw-r--r--source/hu-Hung/officecfg/registry/data/org/openoffice/Office/UI.po2091
-rw-r--r--source/hu-Hung/reportdesign/source/ui/dlg.po88
-rw-r--r--source/hu-Hung/reportdesign/source/ui/inspection.po120
-rw-r--r--source/hu-Hung/reportdesign/source/ui/report.po12
-rw-r--r--source/hu-Hung/reportdesign/uiconfig/dbreport/ui.po58
-rw-r--r--source/hu-Hung/sc/source/ui/dbgui.po13
-rw-r--r--source/hu-Hung/sc/source/ui/navipi.po196
-rw-r--r--source/hu-Hung/sc/source/ui/src.po1247
-rw-r--r--source/hu-Hung/sc/source/ui/styleui.po50
-rw-r--r--source/hu-Hung/sc/uiconfig/scalc/ui.po2729
-rw-r--r--source/hu-Hung/scp2/source/extensions.po212
-rw-r--r--source/hu-Hung/scp2/source/ooo.po36
-rw-r--r--source/hu-Hung/sd/source/core.po36
-rw-r--r--source/hu-Hung/sd/source/ui/animations.po36
-rw-r--r--source/hu-Hung/sd/source/ui/app.po60
-rw-r--r--source/hu-Hung/sd/uiconfig/sdraw/ui.po26
-rw-r--r--source/hu-Hung/sd/uiconfig/simpress/ui.po1737
-rw-r--r--source/hu-Hung/sfx2/source/appl.po20
-rw-r--r--source/hu-Hung/sfx2/source/control.po12
-rw-r--r--source/hu-Hung/sfx2/source/dialog.po252
-rw-r--r--source/hu-Hung/sfx2/source/doc.po37
-rw-r--r--source/hu-Hung/sfx2/source/sidebar.po31
-rw-r--r--source/hu-Hung/sfx2/source/view.po28
-rw-r--r--source/hu-Hung/sfx2/uiconfig/ui.po196
-rw-r--r--source/hu-Hung/starmath/source.po81
-rw-r--r--source/hu-Hung/svtools/source/control.po12
-rw-r--r--source/hu-Hung/svtools/source/java.po12
-rw-r--r--source/hu-Hung/svtools/source/misc.po22
-rw-r--r--source/hu-Hung/svtools/uiconfig/ui.po22
-rw-r--r--source/hu-Hung/svx/source/dialog.po1043
-rw-r--r--source/hu-Hung/svx/source/engine3d.po28
-rw-r--r--source/hu-Hung/svx/source/form.po112
-rw-r--r--source/hu-Hung/svx/source/gallery2.po836
-rw-r--r--source/hu-Hung/svx/source/items.po12
-rw-r--r--source/hu-Hung/svx/source/src.po6
-rw-r--r--source/hu-Hung/svx/source/stbctrls.po12
-rw-r--r--source/hu-Hung/svx/source/svdraw.po20
-rw-r--r--source/hu-Hung/svx/source/tbxctrls.po44
-rw-r--r--source/hu-Hung/svx/uiconfig/ui.po1520
-rw-r--r--source/hu-Hung/sw/source/core/undo.po28
-rw-r--r--source/hu-Hung/sw/source/core/unocore.po12
-rw-r--r--source/hu-Hung/sw/source/ui/app.po225
-rw-r--r--source/hu-Hung/sw/source/ui/dialog.po20
-rw-r--r--source/hu-Hung/sw/source/ui/index.po14
-rw-r--r--source/hu-Hung/sw/source/ui/misc.po54
-rw-r--r--source/hu-Hung/sw/source/ui/sidebar.po217
-rw-r--r--source/hu-Hung/sw/source/ui/utlui.po132
-rw-r--r--source/hu-Hung/sw/source/uibase/ribbar.po51
-rw-r--r--source/hu-Hung/sw/source/uibase/utlui.po225
-rw-r--r--source/hu-Hung/sw/uiconfig/swriter/ui.po2227
-rw-r--r--source/hu-Hung/swext/mediawiki/help.po76
-rw-r--r--source/hu-Hung/uui/uiconfig/ui.po13
-rw-r--r--source/hu-Hung/vcl/source/src.po36
-rw-r--r--source/hu-Hung/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/hu/basic/source/classes.po1081
-rw-r--r--source/hu/dbaccess/source/ui/dlg.po15
-rw-r--r--source/hu/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/hu/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/hu/helpcontent2/source/text/shared/guide.po607
-rw-r--r--source/hu/helpcontent2/source/text/smath.po38
-rw-r--r--source/hu/sc/source/ui/src.po12
-rw-r--r--source/hu/svx/uiconfig/ui.po33
-rw-r--r--source/hu/sw/source/ui/dochdl.po15
-rw-r--r--source/hu/sw/uiconfig/swriter/ui.po30
-rw-r--r--source/hu/xmlsecurity/uiconfig/ui.po19
-rw-r--r--source/id/avmedia/source/framework.po10
-rw-r--r--source/id/basctl/source/basicide.po14
-rw-r--r--source/id/basic/source/classes.po1081
-rw-r--r--source/id/chart2/uiconfig/ui.po24
-rw-r--r--source/id/dbaccess/source/ui/app.po6
-rw-r--r--source/id/dbaccess/source/ui/dlg.po9
-rw-r--r--source/id/dbaccess/source/ui/querydesign.po10
-rw-r--r--source/id/dbaccess/source/ui/tabledesign.po9
-rw-r--r--source/id/desktop/uiconfig/ui.po18
-rw-r--r--source/id/filter/source/config/fragments/filters.po16
-rw-r--r--source/id/filter/source/config/fragments/internalgraphicfilters.po10
-rw-r--r--source/id/filter/uiconfig/ui.po8
-rw-r--r--source/id/forms/source/resource.po8
-rw-r--r--source/id/formula/source/core/resource.po12
-rw-r--r--source/id/formula/uiconfig/ui.po10
-rw-r--r--source/id/fpicker/uiconfig/ui.po10
-rw-r--r--source/id/framework/source/classes.po6
-rw-r--r--source/id/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po24
-rw-r--r--source/id/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po2834
-rw-r--r--source/id/helpcontent2/source/text/shared/guide.po519
-rw-r--r--source/id/instsetoo_native/inc_openoffice/windows/msi_languages.po18
-rw-r--r--source/id/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po6
-rw-r--r--source/id/reportdesign/source/ui/inspection.po62
-rw-r--r--source/id/reportdesign/uiconfig/dbreport/ui.po18
-rw-r--r--source/id/sc/source/ui/src.po14
-rw-r--r--source/id/scp2/source/ooo.po16
-rw-r--r--source/id/sfx2/source/appl.po6
-rw-r--r--source/id/sfx2/source/dialog.po52
-rw-r--r--source/id/starmath/source.po28
-rw-r--r--source/id/svtools/source/java.po8
-rw-r--r--source/id/svtools/source/misc.po8
-rw-r--r--source/id/svtools/uiconfig/ui.po10
-rw-r--r--source/id/svx/uiconfig/ui.po33
-rw-r--r--source/id/sw/source/ui/dochdl.po9
-rw-r--r--source/id/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/id/swext/mediawiki/help.po10
-rw-r--r--source/id/uui/uiconfig/ui.po6
-rw-r--r--source/id/vcl/source/src.po12
-rw-r--r--source/id/xmlsecurity/uiconfig/ui.po21
-rw-r--r--source/is/dbaccess/source/ui/misc.po9
-rw-r--r--source/is/dbaccess/uiconfig/ui.po10
-rw-r--r--source/is/desktop/source/deployment/unopkg.po10
-rw-r--r--source/is/dictionaries/es.po9
-rw-r--r--source/is/helpcontent2/source/text/scalc/00.po18
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po430
-rw-r--r--source/is/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/is/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po244
-rw-r--r--source/is/helpcontent2/source/text/shared/guide.po475
-rw-r--r--source/is/readlicense_oo/docs.po16
-rw-r--r--source/is/sc/source/ui/src.po12
-rw-r--r--source/is/scp2/source/activex.po9
-rw-r--r--source/is/sd/source/ui/view.po477
-rw-r--r--source/is/svx/uiconfig/ui.po33
-rw-r--r--source/is/sw/source/ui/dochdl.po15
-rw-r--r--source/is/sw/uiconfig/swriter/ui.po30
-rw-r--r--source/is/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/it/avmedia/source/framework.po8
-rw-r--r--source/it/basctl/source/basicide.po14
-rw-r--r--source/it/basic/source/classes.po1081
-rw-r--r--source/it/chart2/uiconfig/ui.po26
-rw-r--r--source/it/cui/source/dialogs.po12
-rw-r--r--source/it/cui/source/options.po176
-rw-r--r--source/it/cui/source/tabpages.po12
-rw-r--r--source/it/cui/uiconfig/ui.po296
-rw-r--r--source/it/dbaccess/source/ui/app.po6
-rw-r--r--source/it/dbaccess/source/ui/dlg.po13
-rw-r--r--source/it/dbaccess/source/ui/querydesign.po10
-rw-r--r--source/it/dbaccess/source/ui/tabledesign.po7
-rw-r--r--source/it/desktop/uiconfig/ui.po16
-rw-r--r--source/it/extensions/source/bibliography.po12
-rw-r--r--source/it/extensions/source/propctrlr.po256
-rw-r--r--source/it/filter/source/config/fragments/filters.po14
-rw-r--r--source/it/filter/source/config/fragments/internalgraphicfilters.po8
-rw-r--r--source/it/filter/uiconfig/ui.po6
-rw-r--r--source/it/forms/source/resource.po6
-rw-r--r--source/it/formula/source/core/resource.po10
-rw-r--r--source/it/formula/uiconfig/ui.po8
-rw-r--r--source/it/fpicker/uiconfig/ui.po10
-rw-r--r--source/it/framework/source/classes.po6
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po10
-rw-r--r--source/it/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po34
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po269
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po607
-rw-r--r--source/it/helpcontent2/source/text/simpress/guide.po45
-rw-r--r--source/it/instsetoo_native/inc_openoffice/windows/msi_languages.po18
-rw-r--r--source/it/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po6
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po614
-rw-r--r--source/it/reportdesign/source/ui/inspection.po62
-rw-r--r--source/it/sc/source/ui/src.po8
-rw-r--r--source/it/scp2/source/ooo.po12
-rw-r--r--source/it/svx/uiconfig/ui.po33
-rw-r--r--source/it/sw/source/ui/dochdl.po13
-rw-r--r--source/it/sw/uiconfig/swriter/ui.po24
-rw-r--r--source/it/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/ja/basic/source/classes.po1081
-rw-r--r--source/ja/chart2/uiconfig/ui.po16
-rw-r--r--source/ja/cui/source/options.po10
-rw-r--r--source/ja/cui/source/tabpages.po10
-rw-r--r--source/ja/cui/uiconfig/ui.po68
-rw-r--r--source/ja/dbaccess/source/ui/dlg.po9
-rw-r--r--source/ja/extensions/uiconfig/sabpilot/ui.po10
-rw-r--r--source/ja/filter/source/config/fragments/filters.po14
-rw-r--r--source/ja/filter/source/config/fragments/internalgraphicfilters.po10
-rw-r--r--source/ja/helpcontent2/source/text/scalc.po23
-rw-r--r--source/ja/helpcontent2/source/text/scalc/00.po30
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po34
-rw-r--r--source/ja/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/ja/helpcontent2/source/text/schart.po10
-rw-r--r--source/ja/helpcontent2/source/text/sdraw.po11
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po248
-rw-r--r--source/ja/helpcontent2/source/text/shared/guide.po601
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po99
-rw-r--r--source/ja/reportdesign/uiconfig/dbreport/ui.po40
-rw-r--r--source/ja/sc/source/ui/src.po16
-rw-r--r--source/ja/sc/uiconfig/scalc/ui.po18
-rw-r--r--source/ja/sd/source/ui/view.po12
-rw-r--r--source/ja/sfx2/uiconfig/ui.po12
-rw-r--r--source/ja/svtools/source/contnr.po10
-rw-r--r--source/ja/svx/source/svdraw.po6
-rw-r--r--source/ja/svx/uiconfig/ui.po33
-rw-r--r--source/ja/sw/source/ui/config.po10
-rw-r--r--source/ja/sw/source/ui/dochdl.po15
-rw-r--r--source/ja/sw/uiconfig/swriter/ui.po30
-rw-r--r--source/ja/vcl/source/src.po8
-rw-r--r--source/ja/xmlsecurity/uiconfig/ui.po19
-rw-r--r--source/ka/basic/source/classes.po1081
-rw-r--r--source/ka/dbaccess/source/ui/dlg.po13
-rw-r--r--source/ka/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po20
-rw-r--r--source/ka/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po244
-rw-r--r--source/ka/helpcontent2/source/text/shared/guide.po437
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po1089
-rw-r--r--source/ka/sc/source/ui/src.po10
-rw-r--r--source/ka/svx/uiconfig/ui.po27
-rw-r--r--source/ka/sw/source/ui/dochdl.po13
-rw-r--r--source/ka/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/ka/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/kk/basic/source/classes.po1081
-rw-r--r--source/kk/cui/source/dialogs.po14
-rw-r--r--source/kk/cui/source/options.po161
-rw-r--r--source/kk/cui/source/tabpages.po16
-rw-r--r--source/kk/cui/uiconfig/ui.po20
-rw-r--r--source/kk/dbaccess/source/ui/dlg.po13
-rw-r--r--source/kk/extensions/source/propctrlr.po104
-rw-r--r--source/kk/instsetoo_native/inc_openoffice/windows/msi_languages.po20
-rw-r--r--source/kk/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po6
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/kk/sc/source/ui/src.po8
-rw-r--r--source/kk/svx/uiconfig/ui.po27
-rw-r--r--source/kk/sw/source/ui/dochdl.po13
-rw-r--r--source/kk/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/kk/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/km/basic/source/classes.po1081
-rw-r--r--source/km/dbaccess/source/ui/dlg.po13
-rw-r--r--source/km/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/km/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/km/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/km/helpcontent2/source/text/shared/guide.po611
-rw-r--r--source/km/sc/source/ui/src.po12
-rw-r--r--source/km/svx/uiconfig/ui.po32
-rw-r--r--source/km/sw/source/ui/dochdl.po13
-rw-r--r--source/km/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/km/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/kmr-Latn/basic/source/classes.po1081
-rw-r--r--source/kmr-Latn/dbaccess/source/ui/dlg.po13
-rw-r--r--source/kmr-Latn/sc/source/ui/src.po10
-rw-r--r--source/kmr-Latn/svx/uiconfig/ui.po27
-rw-r--r--source/kmr-Latn/sw/source/ui/dochdl.po13
-rw-r--r--source/kmr-Latn/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/kmr-Latn/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/kn/basic/source/classes.po1081
-rw-r--r--source/kn/dbaccess/source/core/resource.po12
-rw-r--r--source/kn/dbaccess/source/ext/macromigration.po212
-rw-r--r--source/kn/dbaccess/source/ui/dlg.po1383
-rw-r--r--source/kn/desktop/source/app.po38
-rw-r--r--source/kn/extensions/source/abpilot.po67
-rw-r--r--source/kn/extensions/source/dbpilots.po412
-rw-r--r--source/kn/extensions/uiconfig/spropctrlr/ui.po76
-rw-r--r--source/kn/filter/source/pdf.po34
-rw-r--r--source/kn/sc/source/ui/cctrl.po13
-rw-r--r--source/kn/sc/source/ui/src.po12
-rw-r--r--source/kn/scp2/source/impress.po20
-rw-r--r--source/kn/sd/source/ui/app.po70
-rw-r--r--source/kn/svtools/source/contnr.po12
-rw-r--r--source/kn/svx/uiconfig/ui.po30
-rw-r--r--source/kn/sw/source/ui/dochdl.po13
-rw-r--r--source/kn/sw/source/ui/shells.po172
-rw-r--r--source/kn/sw/source/ui/web.po44
-rw-r--r--source/kn/sw/source/uibase/dbui.po898
-rw-r--r--source/kn/sw/source/uibase/dialog.po68
-rw-r--r--source/kn/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/kn/wizards/source/euro.po20
-rw-r--r--source/kn/xmlsecurity/source/component.po8
-rw-r--r--source/kn/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/ko/basic/source/classes.po1081
-rw-r--r--source/ko/dbaccess/source/ui/dlg.po13
-rw-r--r--source/ko/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po32
-rw-r--r--source/ko/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/ko/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po267
-rw-r--r--source/ko/helpcontent2/source/text/shared/guide.po581
-rw-r--r--source/ko/sc/source/ui/src.po12
-rw-r--r--source/ko/svx/uiconfig/ui.po27
-rw-r--r--source/ko/sw/source/ui/dochdl.po13
-rw-r--r--source/ko/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/ko/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/kok/basic/source/classes.po1081
-rw-r--r--source/kok/dbaccess/source/ui/dlg.po13
-rw-r--r--source/kok/sc/source/ui/src.po12
-rw-r--r--source/kok/svx/uiconfig/ui.po29
-rw-r--r--source/kok/sw/source/ui/dochdl.po13
-rw-r--r--source/kok/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/kok/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/ks/basic/source/classes.po1081
-rw-r--r--source/ks/dbaccess/source/ui/dlg.po13
-rw-r--r--source/ks/sc/source/ui/src.po12
-rw-r--r--source/ks/svx/uiconfig/ui.po25
-rw-r--r--source/ks/sw/source/ui/dochdl.po13
-rw-r--r--source/ks/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/ks/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/lo/helpcontent2/source/text/scalc/00.po14
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/lo/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/lo/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po240
-rw-r--r--source/lo/helpcontent2/source/text/shared/guide.po431
-rw-r--r--source/lo/sc/source/ui/src.po12
-rw-r--r--source/lo/svx/uiconfig/ui.po29
-rw-r--r--source/lo/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/lo/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/lt/avmedia/source/framework.po10
-rw-r--r--source/lt/basctl/source/basicide.po16
-rw-r--r--source/lt/chart2/uiconfig/ui.po20
-rw-r--r--source/lt/helpcontent2/source/text/scalc/00.po14
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/lt/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/lt/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po240
-rw-r--r--source/lt/helpcontent2/source/text/shared/guide.po431
-rw-r--r--source/lt/helpcontent2/source/text/swriter/01.po24
-rw-r--r--source/lt/sc/source/ui/src.po8
-rw-r--r--source/lt/sd/uiconfig/sdraw/ui.po8
-rw-r--r--source/lt/svx/uiconfig/ui.po27
-rw-r--r--source/lt/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/lt/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/lv/avmedia/source/framework.po12
-rw-r--r--source/lv/basctl/source/basicide.po12
-rw-r--r--source/lv/basic/source/classes.po1081
-rw-r--r--source/lv/chart2/uiconfig/ui.po18
-rw-r--r--source/lv/cui/source/dialogs.po6
-rw-r--r--source/lv/cui/source/options.po168
-rw-r--r--source/lv/cui/uiconfig/ui.po22
-rw-r--r--source/lv/dbaccess/source/ui/dlg.po13
-rw-r--r--source/lv/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po32
-rw-r--r--source/lv/helpcontent2/source/text/scalc/04.po12
-rw-r--r--source/lv/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/lv/helpcontent2/source/text/schart/01.po183
-rw-r--r--source/lv/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po240
-rw-r--r--source/lv/helpcontent2/source/text/shared/04.po16
-rw-r--r--source/lv/helpcontent2/source/text/shared/guide.po435
-rw-r--r--source/lv/helpcontent2/source/text/swriter/01.po26
-rw-r--r--source/lv/sc/source/ui/src.po8
-rw-r--r--source/lv/svx/uiconfig/ui.po27
-rw-r--r--source/lv/sw/source/ui/dochdl.po13
-rw-r--r--source/lv/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/lv/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/mai/basic/source/classes.po1081
-rw-r--r--source/mai/dbaccess/source/ui/dlg.po13
-rw-r--r--source/mai/sc/source/ui/src.po12
-rw-r--r--source/mai/svx/uiconfig/ui.po25
-rw-r--r--source/mai/sw/source/ui/dochdl.po13
-rw-r--r--source/mai/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/mai/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/mk/basic/source/classes.po1081
-rw-r--r--source/mk/dbaccess/source/ui/dlg.po13
-rw-r--r--source/mk/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/mk/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/mk/helpcontent2/source/text/shared/guide.po573
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po929
-rw-r--r--source/mk/sc/source/ui/src.po12
-rw-r--r--source/mk/svx/uiconfig/ui.po27
-rw-r--r--source/mk/sw/source/ui/dochdl.po13
-rw-r--r--source/mk/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/mk/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/ml/basic/source/classes.po1081
-rw-r--r--source/ml/dbaccess/source/ui/dlg.po13
-rw-r--r--source/ml/sc/source/ui/src.po12
-rw-r--r--source/ml/svx/uiconfig/ui.po29
-rw-r--r--source/ml/sw/source/ui/dochdl.po13
-rw-r--r--source/ml/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/ml/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/mn/basic/source/classes.po1081
-rw-r--r--source/mn/dbaccess/source/ui/dlg.po15
-rw-r--r--source/mn/sc/source/ui/src.po677
-rw-r--r--source/mn/svx/uiconfig/ui.po27
-rw-r--r--source/mn/sw/source/ui/dochdl.po13
-rw-r--r--source/mn/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/mn/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/mni/basic/source/classes.po1081
-rw-r--r--source/mni/dbaccess/source/ui/dlg.po13
-rw-r--r--source/mni/sc/source/ui/src.po12
-rw-r--r--source/mni/svx/source/gallery2.po159
-rw-r--r--source/mni/svx/uiconfig/ui.po29
-rw-r--r--source/mni/sw/source/ui/dochdl.po13
-rw-r--r--source/mni/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/mni/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/mr/basic/source/classes.po1081
-rw-r--r--source/mr/dbaccess/source/ui/dlg.po13
-rw-r--r--source/mr/sc/source/ui/src.po12
-rw-r--r--source/mr/svx/uiconfig/ui.po32
-rw-r--r--source/mr/sw/source/ui/dochdl.po13
-rw-r--r--source/mr/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/mr/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/my/basic/source/classes.po1081
-rw-r--r--source/my/dbaccess/source/ui/dlg.po13
-rw-r--r--source/my/sc/source/ui/src.po12
-rw-r--r--source/my/svx/uiconfig/ui.po27
-rw-r--r--source/my/sw/source/ui/dochdl.po13
-rw-r--r--source/my/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/my/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/nb/basic/source/classes.po1081
-rw-r--r--source/nb/dbaccess/source/ui/dlg.po13
-rw-r--r--source/nb/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po34
-rw-r--r--source/nb/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/nb/helpcontent2/source/text/shared/guide.po575
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po467
-rw-r--r--source/nb/sc/source/ui/src.po8
-rw-r--r--source/nb/svx/uiconfig/ui.po27
-rw-r--r--source/nb/sw/source/ui/dochdl.po13
-rw-r--r--source/nb/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/nb/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/ne/basic/source/classes.po1081
-rw-r--r--source/ne/dbaccess/source/ui/dlg.po13
-rw-r--r--source/ne/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/ne/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/ne/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/ne/helpcontent2/source/text/shared/guide.po569
-rw-r--r--source/ne/sc/source/ui/src.po645
-rw-r--r--source/ne/svx/uiconfig/ui.po27
-rw-r--r--source/ne/sw/source/ui/dochdl.po13
-rw-r--r--source/ne/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/ne/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/nl/avmedia/source/framework.po8
-rw-r--r--source/nl/basctl/source/basicide.po14
-rw-r--r--source/nl/basic/source/classes.po1081
-rw-r--r--source/nl/chart2/uiconfig/ui.po24
-rw-r--r--source/nl/cui/source/dialogs.po12
-rw-r--r--source/nl/cui/source/options.po176
-rw-r--r--source/nl/cui/source/tabpages.po12
-rw-r--r--source/nl/cui/uiconfig/ui.po282
-rw-r--r--source/nl/dbaccess/source/ui/app.po6
-rw-r--r--source/nl/dbaccess/source/ui/dlg.po13
-rw-r--r--source/nl/dbaccess/source/ui/querydesign.po10
-rw-r--r--source/nl/dbaccess/source/ui/tabledesign.po6
-rw-r--r--source/nl/desktop/uiconfig/ui.po16
-rw-r--r--source/nl/extensions/source/propctrlr.po258
-rw-r--r--source/nl/filter/source/config/fragments/filters.po14
-rw-r--r--source/nl/filter/source/config/fragments/internalgraphicfilters.po8
-rw-r--r--source/nl/filter/uiconfig/ui.po6
-rw-r--r--source/nl/forms/source/resource.po6
-rw-r--r--source/nl/formula/source/core/resource.po8
-rw-r--r--source/nl/formula/uiconfig/ui.po8
-rw-r--r--source/nl/fpicker/uiconfig/ui.po8
-rw-r--r--source/nl/framework/source/classes.po6
-rw-r--r--source/nl/helpcontent2/source/text/scalc/00.po30
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/nl/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po248
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po607
-rw-r--r--source/nl/instsetoo_native/inc_openoffice/windows/msi_languages.po18
-rw-r--r--source/nl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po6
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po590
-rw-r--r--source/nl/sc/source/ui/src.po8
-rw-r--r--source/nl/svx/uiconfig/ui.po27
-rw-r--r--source/nl/sw/source/ui/dochdl.po13
-rw-r--r--source/nl/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/nl/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/nn/basic/source/classes.po1081
-rw-r--r--source/nn/dbaccess/source/ui/dlg.po13
-rw-r--r--source/nn/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po242
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po607
-rw-r--r--source/nn/sc/source/ui/src.po8
-rw-r--r--source/nn/svx/uiconfig/ui.po27
-rw-r--r--source/nn/sw/source/ui/dochdl.po13
-rw-r--r--source/nn/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/nn/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/nr/basic/source/classes.po1090
-rw-r--r--source/nr/cui/source/options.po687
-rw-r--r--source/nr/dbaccess/source/ui/dlg.po13
-rw-r--r--source/nr/sc/source/ui/src.po12
-rw-r--r--source/nr/svx/uiconfig/ui.po27
-rw-r--r--source/nr/sw/source/ui/dochdl.po13
-rw-r--r--source/nr/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/nr/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/nso/basic/source/classes.po1090
-rw-r--r--source/nso/cui/uiconfig/ui.po1041
-rw-r--r--source/nso/dbaccess/source/ui/dlg.po13
-rw-r--r--source/nso/sc/source/ui/src.po12
-rw-r--r--source/nso/svx/uiconfig/ui.po25
-rw-r--r--source/nso/sw/source/ui/dochdl.po13
-rw-r--r--source/nso/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/nso/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/oc/basic/source/classes.po1081
-rw-r--r--source/oc/dbaccess/source/ui/dlg.po13
-rw-r--r--source/oc/sc/source/ui/src.po8
-rw-r--r--source/oc/svx/uiconfig/ui.po27
-rw-r--r--source/oc/sw/source/ui/dochdl.po15
-rw-r--r--source/oc/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/oc/sysui/desktop/share.po10
-rw-r--r--source/oc/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/om/basic/source/classes.po1081
-rw-r--r--source/om/dbaccess/source/ui/dlg.po13
-rw-r--r--source/om/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/om/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po3485
-rw-r--r--source/om/helpcontent2/source/text/shared/guide.po581
-rw-r--r--source/om/sc/source/ui/src.po12
-rw-r--r--source/om/svx/uiconfig/ui.po547
-rw-r--r--source/om/sw/source/ui/dochdl.po13
-rw-r--r--source/om/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/om/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/or/basic/source/classes.po1081
-rw-r--r--source/or/dbaccess/source/ui/dlg.po13
-rw-r--r--source/or/sc/source/ui/src.po12
-rw-r--r--source/or/sc/uiconfig/scalc/ui.po347
-rw-r--r--source/or/svx/uiconfig/ui.po29
-rw-r--r--source/or/sw/source/ui/dochdl.po13
-rw-r--r--source/or/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/or/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/pa-IN/basic/source/classes.po1081
-rw-r--r--source/pa-IN/dbaccess/source/ui/dlg.po13
-rw-r--r--source/pa-IN/sc/source/ui/src.po12
-rw-r--r--source/pa-IN/svx/uiconfig/ui.po231
-rw-r--r--source/pa-IN/sw/source/ui/dochdl.po13
-rw-r--r--source/pa-IN/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/pa-IN/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/pl/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/pl/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po267
-rw-r--r--source/pl/helpcontent2/source/text/shared/guide.po607
-rw-r--r--source/pl/sc/source/ui/src.po8
-rw-r--r--source/pl/svx/uiconfig/ui.po27
-rw-r--r--source/pl/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/pl/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/pt-BR/basic/source/classes.po1081
-rw-r--r--source/pt-BR/chart2/source/controller/dialogs.po8
-rw-r--r--source/pt-BR/cui/source/customize.po6
-rw-r--r--source/pt-BR/cui/source/options.po10
-rw-r--r--source/pt-BR/cui/uiconfig/ui.po25
-rw-r--r--source/pt-BR/dbaccess/source/ui/app.po8
-rw-r--r--source/pt-BR/dbaccess/source/ui/dlg.po9
-rw-r--r--source/pt-BR/dbaccess/source/ui/querydesign.po18
-rw-r--r--source/pt-BR/dbaccess/source/ui/tabledesign.po9
-rw-r--r--source/pt-BR/extensions/source/bibliography.po10
-rw-r--r--source/pt-BR/extensions/source/propctrlr.po262
-rw-r--r--source/pt-BR/extensions/uiconfig/sbibliography/ui.po8
-rw-r--r--source/pt-BR/filter/source/config/fragments/filters.po14
-rw-r--r--source/pt-BR/filter/source/config/fragments/internalgraphicfilters.po8
-rw-r--r--source/pt-BR/filter/uiconfig/ui.po10
-rw-r--r--source/pt-BR/forms/source/resource.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/00.po50
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po56
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/04.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/05.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/guide.po24
-rw-r--r--source/pt-BR/helpcontent2/source/text/schart/01.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdraw.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared.po16
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po19
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po248
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/02.po22
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/autopi.po16
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/explorer/database.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/guide.po613
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/00.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/01.po48
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/guide.po26
-rw-r--r--source/pt-BR/helpcontent2/source/text/smath/00.po26
-rw-r--r--source/pt-BR/helpcontent2/source/text/smath/01.po656
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/00.po58
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po76
-rw-r--r--source/pt-BR/instsetoo_native/inc_openoffice/windows/msi_languages.po18
-rw-r--r--source/pt-BR/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po8
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po654
-rw-r--r--source/pt-BR/reportdesign/source/ui/dlg.po6
-rw-r--r--source/pt-BR/reportdesign/source/ui/inspection.po62
-rw-r--r--source/pt-BR/reportdesign/source/ui/report.po8
-rw-r--r--source/pt-BR/reportdesign/uiconfig/dbreport/ui.po18
-rw-r--r--source/pt-BR/sc/source/ui/cctrl.po14
-rw-r--r--source/pt-BR/sc/source/ui/dbgui.po8
-rw-r--r--source/pt-BR/sc/source/ui/miscdlgs.po11
-rw-r--r--source/pt-BR/sc/source/ui/navipi.po22
-rw-r--r--source/pt-BR/sc/source/ui/src.po120
-rw-r--r--source/pt-BR/sc/source/ui/styleui.po18
-rw-r--r--source/pt-BR/sc/uiconfig/scalc/ui.po619
-rw-r--r--source/pt-BR/scp2/source/impress.po20
-rw-r--r--source/pt-BR/sd/source/core.po18
-rw-r--r--source/pt-BR/sd/source/ui/accessibility.po10
-rw-r--r--source/pt-BR/sd/source/ui/animations.po36
-rw-r--r--source/pt-BR/sd/source/ui/app.po36
-rw-r--r--source/pt-BR/sd/source/ui/view.po8
-rw-r--r--source/pt-BR/sd/uiconfig/sdraw/ui.po14
-rw-r--r--source/pt-BR/sd/uiconfig/simpress/ui.po252
-rw-r--r--source/pt-BR/sfx2/source/view.po12
-rw-r--r--source/pt-BR/svtools/source/contnr.po12
-rw-r--r--source/pt-BR/svx/source/dialog.po250
-rw-r--r--source/pt-BR/svx/source/form.po60
-rw-r--r--source/pt-BR/svx/source/src.po6
-rw-r--r--source/pt-BR/svx/source/stbctrls.po6
-rw-r--r--source/pt-BR/svx/source/tbxctrls.po16
-rw-r--r--source/pt-BR/svx/uiconfig/ui.po310
-rw-r--r--source/pt-BR/sw/source/core/undo.po14
-rw-r--r--source/pt-BR/sw/source/core/unocore.po6
-rw-r--r--source/pt-BR/sw/source/ui/app.po86
-rw-r--r--source/pt-BR/sw/source/ui/dbui.po8
-rw-r--r--source/pt-BR/sw/source/ui/dochdl.po13
-rw-r--r--source/pt-BR/sw/source/ui/index.po14
-rw-r--r--source/pt-BR/sw/source/ui/misc.po54
-rw-r--r--source/pt-BR/sw/source/ui/shells.po176
-rw-r--r--source/pt-BR/sw/source/ui/sidebar.po18
-rw-r--r--source/pt-BR/sw/source/ui/utlui.po36
-rw-r--r--source/pt-BR/sw/source/ui/web.po44
-rw-r--r--source/pt-BR/sw/source/uibase/ribbar.po10
-rw-r--r--source/pt-BR/sw/source/uibase/utlui.po10
-rw-r--r--source/pt-BR/sw/uiconfig/swriter/ui.po542
-rw-r--r--source/pt-BR/swext/mediawiki/help.po76
-rw-r--r--source/pt-BR/vcl/source/src.po8
-rw-r--r--source/pt-BR/vcl/uiconfig/ui.po12
-rw-r--r--source/pt-BR/wizards/source/formwizard.po54
-rw-r--r--source/pt-BR/wizards/source/template.po20
-rw-r--r--source/pt-BR/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/pt/basic/source/classes.po1081
-rw-r--r--source/pt/dbaccess/source/ui/dlg.po9
-rw-r--r--source/pt/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/pt/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po607
-rw-r--r--source/pt/helpcontent2/source/text/simpress/04.po10
-rw-r--r--source/pt/helpcontent2/source/text/swriter/04.po10
-rw-r--r--source/pt/sc/source/ui/src.po8
-rw-r--r--source/pt/svx/uiconfig/ui.po27
-rw-r--r--source/pt/sw/source/ui/dochdl.po13
-rw-r--r--source/pt/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/pt/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/ro/avmedia/source/framework.po10
-rw-r--r--source/ro/basctl/source/basicide.po14
-rw-r--r--source/ro/basic/source/classes.po1081
-rw-r--r--source/ro/chart2/uiconfig/ui.po26
-rw-r--r--source/ro/cui/source/dialogs.po14
-rw-r--r--source/ro/cui/source/options.po178
-rw-r--r--source/ro/cui/source/tabpages.po14
-rw-r--r--source/ro/dbaccess/source/ui/dlg.po13
-rw-r--r--source/ro/extras/source/autocorr/emoji.po32
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/guide.po60
-rw-r--r--source/ro/helpcontent2/source/text/scalc.po15
-rw-r--r--source/ro/helpcontent2/source/text/scalc/00.po16
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po75
-rw-r--r--source/ro/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/ro/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po242
-rw-r--r--source/ro/helpcontent2/source/text/shared/guide.po435
-rw-r--r--source/ro/helpcontent2/source/text/simpress.po22
-rw-r--r--source/ro/sc/source/ui/src.po8
-rw-r--r--source/ro/sc/uiconfig/scalc/ui.po11
-rw-r--r--source/ro/svx/uiconfig/ui.po36
-rw-r--r--source/ro/sw/source/ui/dochdl.po13
-rw-r--r--source/ro/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/ro/xmlsecurity/uiconfig/ui.po19
-rw-r--r--source/ru/basic/source/classes.po1081
-rw-r--r--source/ru/dbaccess/source/ui/dlg.po15
-rw-r--r--source/ru/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/ru/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/ru/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/ru/helpcontent2/source/text/shared/guide.po577
-rw-r--r--source/ru/sc/source/ui/src.po8
-rw-r--r--source/ru/svx/uiconfig/ui.po27
-rw-r--r--source/ru/sw/source/ui/dochdl.po9
-rw-r--r--source/ru/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/ru/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/rw/basic/source/classes.po1081
-rw-r--r--source/rw/dbaccess/source/ui/dlg.po13
-rw-r--r--source/rw/sc/source/ui/src.po12
-rw-r--r--source/rw/svx/uiconfig/ui.po25
-rw-r--r--source/rw/sw/source/ui/dochdl.po13
-rw-r--r--source/rw/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/rw/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/sa-IN/basic/source/classes.po1081
-rw-r--r--source/sa-IN/dbaccess/source/ui/dlg.po13
-rw-r--r--source/sa-IN/sc/source/ui/src.po12
-rw-r--r--source/sa-IN/svx/uiconfig/ui.po27
-rw-r--r--source/sa-IN/sw/source/ui/dochdl.po13
-rw-r--r--source/sa-IN/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/sa-IN/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/sat/basic/source/classes.po1081
-rw-r--r--source/sat/dbaccess/source/ui/dlg.po13
-rw-r--r--source/sat/sc/source/ui/src.po12
-rw-r--r--source/sat/svx/uiconfig/ui.po27
-rw-r--r--source/sat/sw/source/ui/dochdl.po13
-rw-r--r--source/sat/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/sat/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/sd/basic/source/classes.po1081
-rw-r--r--source/sd/dbaccess/source/ui/dlg.po13
-rw-r--r--source/sd/sc/source/ui/src.po12
-rw-r--r--source/sd/svx/uiconfig/ui.po29
-rw-r--r--source/sd/sw/source/ui/dochdl.po13
-rw-r--r--source/sd/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/sd/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/si/basic/source/classes.po1081
-rw-r--r--source/si/dbaccess/source/ui/dlg.po13
-rw-r--r--source/si/helpcontent2/source/text/scalc/00.po26
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po20
-rw-r--r--source/si/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/si/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po265
-rw-r--r--source/si/helpcontent2/source/text/shared/guide.po490
-rw-r--r--source/si/sc/source/ui/src.po12
-rw-r--r--source/si/svx/uiconfig/ui.po29
-rw-r--r--source/si/sw/source/ui/dochdl.po13
-rw-r--r--source/si/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/si/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/sid/basic/source/classes.po1081
-rw-r--r--source/sid/dbaccess/source/ui/dlg.po13
-rw-r--r--source/sid/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po932
-rw-r--r--source/sid/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/sid/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po247
-rw-r--r--source/sid/helpcontent2/source/text/shared/guide.po612
-rw-r--r--source/sid/sc/source/ui/src.po12
-rw-r--r--source/sid/svx/uiconfig/ui.po29
-rw-r--r--source/sid/sw/source/ui/dochdl.po13
-rw-r--r--source/sid/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/sid/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/sk/basic/source/classes.po1081
-rw-r--r--source/sk/dbaccess/source/ui/dlg.po13
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/guide.po14
-rw-r--r--source/sk/helpcontent2/source/text/scalc/00.po30
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po36
-rw-r--r--source/sk/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po4197
-rw-r--r--source/sk/helpcontent2/source/text/shared/guide.po581
-rw-r--r--source/sk/sc/source/ui/src.po8
-rw-r--r--source/sk/svx/uiconfig/ui.po27
-rw-r--r--source/sk/sw/source/ui/dochdl.po13
-rw-r--r--source/sk/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/sk/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/sq/basic/source/classes.po1081
-rw-r--r--source/sq/dbaccess/source/ui/dlg.po14
-rw-r--r--source/sq/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po933
-rw-r--r--source/sq/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/sq/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po244
-rw-r--r--source/sq/helpcontent2/source/text/shared/guide.po470
-rw-r--r--source/sq/sc/source/ui/src.po12
-rw-r--r--source/sq/svx/uiconfig/ui.po29
-rw-r--r--source/sq/sw/source/ui/dochdl.po13
-rw-r--r--source/sq/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/sq/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/ss/basic/source/classes.po1090
-rw-r--r--source/ss/dbaccess/source/ui/dlg.po13
-rw-r--r--source/ss/sc/source/ui/src.po12
-rw-r--r--source/ss/svx/uiconfig/ui.po25
-rw-r--r--source/ss/sw/source/ui/dochdl.po13
-rw-r--r--source/ss/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/ss/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/st/basic/source/classes.po1090
-rw-r--r--source/st/dbaccess/source/ui/dlg.po13
-rw-r--r--source/st/sc/source/ui/src.po12
-rw-r--r--source/st/svx/source/gallery2.po514
-rw-r--r--source/st/svx/uiconfig/ui.po25
-rw-r--r--source/st/sw/source/ui/dochdl.po13
-rw-r--r--source/st/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/st/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/sv/basic/source/classes.po1081
-rw-r--r--source/sv/dbaccess/source/ui/dlg.po13
-rw-r--r--source/sv/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/sv/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/sv/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po242
-rw-r--r--source/sv/helpcontent2/source/text/shared/guide.po607
-rw-r--r--source/sv/sc/source/ui/src.po8
-rw-r--r--source/sv/svx/uiconfig/ui.po27
-rw-r--r--source/sv/sw/source/ui/dochdl.po13
-rw-r--r--source/sv/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/sv/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/sw-TZ/basic/source/classes.po1081
-rw-r--r--source/sw-TZ/dbaccess/source/ui/dlg.po13
-rw-r--r--source/sw-TZ/sc/source/ui/src.po12
-rw-r--r--source/sw-TZ/svx/uiconfig/ui.po25
-rw-r--r--source/sw-TZ/sw/source/ui/dochdl.po13
-rw-r--r--source/sw-TZ/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/sw-TZ/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/szl/sc/source/ui/src.po1135
-rw-r--r--source/szl/svx/uiconfig/ui.po25
-rw-r--r--source/szl/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/szl/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/ta/basic/source/classes.po1081
-rw-r--r--source/ta/dbaccess/source/ui/dlg.po15
-rw-r--r--source/ta/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/ta/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/ta/helpcontent2/source/text/schart/01.po172
-rw-r--r--source/ta/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po240
-rw-r--r--source/ta/helpcontent2/source/text/shared/guide.po431
-rw-r--r--source/ta/helpcontent2/source/text/swriter/01.po401
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/ta/sc/source/ui/src.po8
-rw-r--r--source/ta/svx/uiconfig/ui.po28
-rw-r--r--source/ta/sw/source/ui/dochdl.po15
-rw-r--r--source/ta/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/ta/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/te/basic/source/classes.po1081
-rw-r--r--source/te/dbaccess/source/ui/dlg.po13
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po948
-rw-r--r--source/te/sc/source/ui/src.po12
-rw-r--r--source/te/svx/uiconfig/ui.po27
-rw-r--r--source/te/sw/source/ui/dochdl.po13
-rw-r--r--source/te/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/te/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/tg/basic/source/classes.po1081
-rw-r--r--source/tg/dbaccess/source/ui/dlg.po13
-rw-r--r--source/tg/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/tg/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/tg/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po266
-rw-r--r--source/tg/helpcontent2/source/text/shared/guide.po439
-rw-r--r--source/tg/sc/source/ui/src.po12
-rw-r--r--source/tg/svx/uiconfig/ui.po27
-rw-r--r--source/tg/sw/source/ui/dochdl.po13
-rw-r--r--source/tg/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/tg/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/th/basic/source/classes.po1081
-rw-r--r--source/th/dbaccess/source/ui/dlg.po13
-rw-r--r--source/th/sc/source/ui/src.po12
-rw-r--r--source/th/sd/uiconfig/simpress/ui.po74
-rw-r--r--source/th/svx/uiconfig/ui.po27
-rw-r--r--source/th/sw/source/ui/dochdl.po13
-rw-r--r--source/th/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/th/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/tn/basic/source/classes.po1089
-rw-r--r--source/tn/dbaccess/source/ui/dlg.po14
-rw-r--r--source/tn/sc/source/ui/src.po12
-rw-r--r--source/tn/svx/uiconfig/ui.po27
-rw-r--r--source/tn/sw/source/ui/dochdl.po13
-rw-r--r--source/tn/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/tn/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/tr/avmedia/source/framework.po10
-rw-r--r--source/tr/basctl/source/basicide.po14
-rw-r--r--source/tr/basic/source/classes.po1081
-rw-r--r--source/tr/chart2/source/controller/dialogs.po8
-rw-r--r--source/tr/chart2/uiconfig/ui.po14
-rw-r--r--source/tr/cui/source/dialogs.po10
-rw-r--r--source/tr/dbaccess/source/ui/dlg.po9
-rw-r--r--source/tr/extras/source/autocorr/emoji.po32
-rw-r--r--source/tr/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po32
-rw-r--r--source/tr/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/tr/helpcontent2/source/text/shared/00.po19
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/tr/helpcontent2/source/text/shared/guide.po607
-rw-r--r--source/tr/sc/source/ui/src.po31
-rw-r--r--source/tr/svx/uiconfig/ui.po28
-rw-r--r--source/tr/sw/source/ui/dochdl.po13
-rw-r--r--source/tr/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/tr/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/ts/basic/source/classes.po1090
-rw-r--r--source/ts/dbaccess/source/ui/dlg.po13
-rw-r--r--source/ts/sc/source/ui/src.po12
-rw-r--r--source/ts/svx/uiconfig/ui.po25
-rw-r--r--source/ts/sw/source/ui/dochdl.po13
-rw-r--r--source/ts/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/ts/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/ug/basic/source/classes.po1081
-rw-r--r--source/ug/dbaccess/source/ui/dlg.po13
-rw-r--r--source/ug/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po644
-rw-r--r--source/ug/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/ug/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po244
-rw-r--r--source/ug/helpcontent2/source/text/shared/guide.po435
-rw-r--r--source/ug/sc/source/ui/src.po8
-rw-r--r--source/ug/sc/uiconfig/scalc/ui.po12
-rw-r--r--source/ug/svx/uiconfig/ui.po27
-rw-r--r--source/ug/sw/source/ui/dochdl.po13
-rw-r--r--source/ug/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/ug/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/uk/avmedia/source/framework.po12
-rw-r--r--source/uk/basctl/source/basicide.po16
-rw-r--r--source/uk/basic/source/classes.po1081
-rw-r--r--source/uk/chart2/uiconfig/ui.po28
-rw-r--r--source/uk/cui/source/dialogs.po16
-rw-r--r--source/uk/cui/source/options.po180
-rw-r--r--source/uk/cui/source/tabpages.po16
-rw-r--r--source/uk/cui/uiconfig/ui.po238
-rw-r--r--source/uk/dbaccess/source/ui/app.po8
-rw-r--r--source/uk/dbaccess/source/ui/dlg.po13
-rw-r--r--source/uk/dbaccess/source/ui/querydesign.po14
-rw-r--r--source/uk/dbaccess/source/ui/tabledesign.po10
-rw-r--r--source/uk/desktop/uiconfig/ui.po18
-rw-r--r--source/uk/filter/source/config/fragments/filters.po16
-rw-r--r--source/uk/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/uk/filter/uiconfig/ui.po10
-rw-r--r--source/uk/forms/source/resource.po10
-rw-r--r--source/uk/formula/source/core/resource.po14
-rw-r--r--source/uk/formula/uiconfig/ui.po12
-rw-r--r--source/uk/fpicker/uiconfig/ui.po12
-rw-r--r--source/uk/framework/source/classes.po10
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared.po12
-rw-r--r--source/uk/helpcontent2/source/text/scalc/00.po30
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po20
-rw-r--r--source/uk/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po1607
-rw-r--r--source/uk/helpcontent2/source/text/shared/guide.po433
-rw-r--r--source/uk/instsetoo_native/inc_openoffice/windows/msi_languages.po16
-rw-r--r--source/uk/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po10
-rw-r--r--source/uk/sc/source/ui/src.po8
-rw-r--r--source/uk/scp2/source/ooo.po16
-rw-r--r--source/uk/sd/uiconfig/simpress/ui.po12
-rw-r--r--source/uk/starmath/source.po26
-rw-r--r--source/uk/svtools/source/java.po10
-rw-r--r--source/uk/svtools/source/misc.po12
-rw-r--r--source/uk/svtools/uiconfig/ui.po12
-rw-r--r--source/uk/svx/uiconfig/ui.po27
-rw-r--r--source/uk/sw/source/ui/dochdl.po13
-rw-r--r--source/uk/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/uk/uui/uiconfig/ui.po10
-rw-r--r--source/uk/vcl/source/src.po16
-rw-r--r--source/uk/xmlsecurity/uiconfig/ui.po21
-rw-r--r--source/uz/basic/source/classes.po1083
-rw-r--r--source/uz/dbaccess/source/ui/dlg.po13
-rw-r--r--source/uz/sc/source/ui/src.po10
-rw-r--r--source/uz/svx/uiconfig/ui.po27
-rw-r--r--source/uz/sw/source/ui/dochdl.po13
-rw-r--r--source/uz/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/uz/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/ve/basic/source/classes.po1090
-rw-r--r--source/ve/dbaccess/source/ui/dlg.po13
-rw-r--r--source/ve/sc/source/ui/src.po12
-rw-r--r--source/ve/svx/uiconfig/ui.po27
-rw-r--r--source/ve/sw/source/ui/dochdl.po13
-rw-r--r--source/ve/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/ve/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/vec/avmedia/source/framework.po10
-rw-r--r--source/vec/basctl/source/basicide.po14
-rw-r--r--source/vec/basic/source/classes.po1081
-rw-r--r--source/vec/chart2/uiconfig/ui.po30
-rw-r--r--source/vec/cui/uiconfig/ui.po10
-rw-r--r--source/vec/dbaccess/source/ui/app.po6
-rw-r--r--source/vec/dbaccess/source/ui/dlg.po10
-rw-r--r--source/vec/dbaccess/source/ui/querydesign.po12
-rw-r--r--source/vec/dbaccess/source/ui/tabledesign.po6
-rw-r--r--source/vec/desktop/uiconfig/ui.po16
-rw-r--r--source/vec/extensions/source/update/check/org/openoffice/Office.po10
-rw-r--r--source/vec/filter/source/config/fragments/filters.po14
-rw-r--r--source/vec/filter/source/config/fragments/internalgraphicfilters.po10
-rw-r--r--source/vec/filter/uiconfig/ui.po6
-rw-r--r--source/vec/forms/source/resource.po6
-rw-r--r--source/vec/fpicker/uiconfig/ui.po10
-rw-r--r--source/vec/framework/source/classes.po6
-rw-r--r--source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.po16
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/vec/sc/source/ui/src.po8
-rw-r--r--source/vec/scp2/source/draw.po16
-rw-r--r--source/vec/svx/source/dialog.po8
-rw-r--r--source/vec/svx/uiconfig/ui.po27
-rw-r--r--source/vec/sw/source/ui/dochdl.po10
-rw-r--r--source/vec/sw/source/ui/utlui.po4
-rw-r--r--source/vec/sw/source/uibase/ribbar.po8
-rw-r--r--source/vec/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/vec/sysui/desktop/share.po10
-rw-r--r--source/vec/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/vi/basic/source/classes.po1081
-rw-r--r--source/vi/dbaccess/source/ui/dlg.po13
-rw-r--r--source/vi/helpcontent2/source/text/scalc/00.po28
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/vi/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/vi/helpcontent2/source/text/shared/guide.po772
-rw-r--r--source/vi/sc/source/ui/src.po12
-rw-r--r--source/vi/svx/uiconfig/ui.po27
-rw-r--r--source/vi/sw/source/ui/dochdl.po13
-rw-r--r--source/vi/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/vi/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/xh/basic/source/classes.po1090
-rw-r--r--source/xh/dbaccess/source/ui/dlg.po13
-rw-r--r--source/xh/sc/source/ui/src.po12
-rw-r--r--source/xh/svx/uiconfig/ui.po25
-rw-r--r--source/xh/sw/source/ui/dochdl.po13
-rw-r--r--source/xh/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/xh/xmlsecurity/uiconfig/ui.po13
-rw-r--r--source/zh-CN/basic/source/classes.po1081
-rw-r--r--source/zh-CN/dbaccess/source/ui/dlg.po13
-rw-r--r--source/zh-CN/desktop/uiconfig/ui.po16
-rw-r--r--source/zh-CN/formula/source/core/resource.po10
-rw-r--r--source/zh-CN/formula/uiconfig/ui.po8
-rw-r--r--source/zh-CN/fpicker/uiconfig/ui.po8
-rw-r--r--source/zh-CN/framework/source/classes.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po19
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po246
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/guide.po613
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po418
-rw-r--r--source/zh-CN/sc/source/ui/dbgui.po8
-rw-r--r--source/zh-CN/sc/source/ui/navipi.po22
-rw-r--r--source/zh-CN/sc/source/ui/src.po38
-rw-r--r--source/zh-CN/sc/uiconfig/scalc/ui.po149
-rw-r--r--source/zh-CN/svx/uiconfig/ui.po27
-rw-r--r--source/zh-CN/sw/source/core/undo.po10
-rw-r--r--source/zh-CN/sw/source/core/unocore.po6
-rw-r--r--source/zh-CN/sw/source/ui/app.po84
-rw-r--r--source/zh-CN/sw/source/ui/dochdl.po13
-rw-r--r--source/zh-CN/sw/source/ui/index.po18
-rw-r--r--source/zh-CN/sw/source/ui/misc.po51
-rw-r--r--source/zh-CN/sw/source/ui/sidebar.po18
-rw-r--r--source/zh-CN/sw/source/ui/utlui.po38
-rw-r--r--source/zh-CN/sw/source/uibase/ribbar.po12
-rw-r--r--source/zh-CN/sw/source/uibase/utlui.po8
-rw-r--r--source/zh-CN/sw/uiconfig/swriter/ui.po76
-rw-r--r--source/zh-CN/vcl/source/src.po12
-rw-r--r--source/zh-CN/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/zh-TW/basic/source/classes.po1083
-rw-r--r--source/zh-TW/dbaccess/source/ui/dlg.po13
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/00.po24
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/00.po13
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po248
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/guide.po577
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/zh-TW/sc/source/ui/src.po12
-rw-r--r--source/zh-TW/svx/uiconfig/ui.po31
-rw-r--r--source/zh-TW/sw/source/ui/dochdl.po15
-rw-r--r--source/zh-TW/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/zh-TW/xmlsecurity/uiconfig/ui.po17
-rw-r--r--source/zu/basic/source/classes.po1090
-rw-r--r--source/zu/dbaccess/source/ui/dlg.po13
-rw-r--r--source/zu/sc/source/ui/src.po12
-rw-r--r--source/zu/svx/uiconfig/ui.po25
-rw-r--r--source/zu/sw/source/ui/dochdl.po13
-rw-r--r--source/zu/sw/uiconfig/swriter/ui.po26
-rw-r--r--source/zu/xmlsecurity/uiconfig/ui.po13
1707 files changed, 180379 insertions, 52369 deletions
diff --git a/source/af/sc/source/ui/src.po b/source/af/sc/source/ui/src.po
index 547ab3f2ce4..793785d8974 100644
--- a/source/af/sc/source/ui/src.po
+++ b/source/af/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 16:36+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-02 10:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467650189.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480673730.000000\n"
#: filter.src
#, fuzzy
@@ -9722,8 +9722,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Lewer die totaal van die argumente op wat aan die vereistes voldoen."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/af/svx/uiconfig/ui.po b/source/af/svx/uiconfig/ui.po
index 628ed7cd798..58a794733f1 100644
--- a/source/af/svx/uiconfig/ui.po
+++ b/source/af/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 16:56+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-02 11:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467651370.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480679349.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3049,7 +3049,7 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
+msgid "Ignore diac_ritics"
msgstr ""
#: findreplacedialog.ui
@@ -3058,7 +3058,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5144,10 +5144,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5162,10 +5162,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/af/sw/uiconfig/swriter/ui.po b/source/af/sw/uiconfig/swriter/ui.po
index d7e62f05838..b4f586960fe 100644
--- a/source/af/sw/uiconfig/swriter/ui.po
+++ b/source/af/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 17:00+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-02 12:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: af\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467651646.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480682896.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -10040,26 +10040,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/af/xmlsecurity/uiconfig/ui.po b/source/af/xmlsecurity/uiconfig/ui.po
index 8f3b133db4b..85435697aa2 100644
--- a/source/af/xmlsecurity/uiconfig/ui.po
+++ b/source/af/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-05-25 12:09+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-02 12:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: af\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1464178157.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480683123.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/am/avmedia/source/framework.po b/source/am/avmedia/source/framework.po
index e861f0e676d..281f830325a 100644
--- a/source/am/avmedia/source/framework.po
+++ b/source/am/avmedia/source/framework.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-12 18:05+0000\n"
+"PO-Revision-Date: 2016-12-15 01:17+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1478973941.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481764660.000000\n"
#: mediacontrol.src
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"AVMEDIA_STR_MEDIAPLAYER\n"
"string.text"
msgid "Media Player"
-msgstr "ማጫወቻ"
+msgstr "መገናኛ ማጫወቻ"
#: mediacontrol.src
msgctxt ""
diff --git a/source/am/basic/source/classes.po b/source/am/basic/source/classes.po
index e687bdade83..5a4e5f679d1 100644
--- a/source/am/basic/source/classes.po
+++ b/source/am/basic/source/classes.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-11-22 19:48+0000\n"
+"PO-Revision-Date: 2016-12-22 23:50+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479844138.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482450626.000000\n"
#: sb.src
msgctxt ""
@@ -1112,7 +1112,7 @@ msgctxt ""
"ERRCODE_BASIC_ARRAY_FIX & ERRCODE_RES_MASK\n"
"string.text"
msgid "This array is fixed or temporarily locked."
-msgstr "This array is fixed or temporarily locked."
+msgstr "ይህ ማዘጋጃ ተቆልፏል ወይንም ለ ጊዜው ተቆልፏል"
#: sb.src
msgctxt ""
@@ -1121,7 +1121,7 @@ msgctxt ""
"ERRCODE_BASIC_STRING_OVERFLOW & ERRCODE_RES_MASK\n"
"string.text"
msgid "Out of string space."
-msgstr "Out of string space."
+msgstr "ለ ሀረግ ቦታ የለም"
#: sb.src
msgctxt ""
diff --git a/source/am/chart2/source/controller/dialogs.po b/source/am/chart2/source/controller/dialogs.po
index f05584166a8..9bcb30c0171 100644
--- a/source/am/chart2/source/controller/dialogs.po
+++ b/source/am/chart2/source/controller/dialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-15 23:31+0000\n"
+"PO-Revision-Date: 2016-12-23 00:06+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.7\n"
-"X-POOTLE-MTIME: 1479252672.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482451575.000000\n"
#: Strings.src
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"STR_PAGE_PERSPECTIVE\n"
"string.text"
msgid "Perspective"
-msgstr "Perspective"
+msgstr "አስተያየት"
#: Strings.src
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"STR_PAGE_ASIAN\n"
"string.text"
msgid "Asian Typography"
-msgstr "Asian Typography"
+msgstr "የ እስያን ጽሁፍ"
#: Strings.src
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"STR_OBJECT_SECONDARY_X_AXIS\n"
"string.text"
msgid "Secondary X Axis"
-msgstr "Secondary X Axis"
+msgstr "ሁለተኛ X Axis"
#: Strings.src
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"STR_OBJECT_SECONDARY_Y_AXIS\n"
"string.text"
msgid "Secondary Y Axis"
-msgstr "Secondary Y Axis"
+msgstr "ሁለተኛ Y Axis"
#: Strings.src
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"STR_OBJECT_TITLE_X_AXIS\n"
"string.text"
msgid "X Axis Title"
-msgstr "X Axis Title"
+msgstr "X Axis አርእስት"
#: Strings.src
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"STR_OBJECT_TITLE_Y_AXIS\n"
"string.text"
msgid "Y Axis Title"
-msgstr "Y Axis Title"
+msgstr "Y Axis አርእስት"
#: Strings.src
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"STR_OBJECT_TITLE_Z_AXIS\n"
"string.text"
msgid "Z Axis Title"
-msgstr "Z Axis Title"
+msgstr "Z Axis አርእስት"
#: Strings.src
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"STR_OBJECT_TITLE_SECONDARY_X_AXIS\n"
"string.text"
msgid "Secondary X Axis Title"
-msgstr "Secondary X Axis Title"
+msgstr "ሁለተኛ X Axis አርእስት"
#: Strings.src
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"STR_OBJECT_TITLE_SECONDARY_Y_AXIS\n"
"string.text"
msgid "Secondary Y Axis Title"
-msgstr "Secondary Y Axis Title"
+msgstr "ሁለተኛ Y Axis አርእስት"
#: Strings.src
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"STR_OBJECT_DATASERIES\n"
"string.text"
msgid "Data Series"
-msgstr "Data Series"
+msgstr "ተከታታይ ዳታ"
#: Strings.src
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"STR_OBJECT_DATASERIES_PLURAL\n"
"string.text"
msgid "Data Series"
-msgstr "Data Series"
+msgstr "ተከታታይ ዳታ"
#: Strings.src
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"STR_OBJECT_AVERAGE_LINE\n"
"string.text"
msgid "Mean Value Line"
-msgstr "Mean Value Line"
+msgstr "የ አማካይ ዋጋ መስመር"
#: Strings.src
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"STR_OBJECT_CURVE_EQUATION\n"
"string.text"
msgid "Equation"
-msgstr "Equation"
+msgstr "እኩሌታ"
#: Strings.src
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"STR_TIP_DATASERIES\n"
"string.text"
msgid "Data Series '%SERIESNAME'"
-msgstr "Data Series '%SERIESNAME'"
+msgstr "ተከታታይ ዳታ '%SERIESNAME'"
#: Strings.src
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"STR_TIP_DATAPOINT_INDEX\n"
"string.text"
msgid "Data Point %POINTNUMBER"
-msgstr "Data Point %POINTNUMBER"
+msgstr "የ ዳታ ነጥብ %POINTNUMBER"
#: Strings.src
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"STR_OBJECT_FOR_SERIES\n"
"string.text"
msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
-msgstr "%OBJECTNAME for Data Series '%SERIESNAME'"
+msgstr "%OBJECTNAME ለ ተከታታይ ዳታ '%SERIESNAME'"
#: Strings.src
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"STR_OBJECT_FOR_ALL_SERIES\n"
"string.text"
msgid "%OBJECTNAME for all Data Series"
-msgstr "%OBJECTNAME for all Data Series"
+msgstr "%OBJECTNAME ለ ሁሉም ተከታታይ ዳታ"
#: Strings.src
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"STR_DATA_ROLE_X_ERROR\n"
"string.text"
msgid "X-Error-Bars"
-msgstr "X-Error-Bars"
+msgstr "የ X-ስህተት-መደርደሪያ"
#: Strings.src
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"STR_DATA_ROLE_X_ERROR_POSITIVE\n"
"string.text"
msgid "Positive X-Error-Bars"
-msgstr "Positive X-Error-Bars"
+msgstr "አዎንታዊ የ X-ስህተት-መደርደሪያ"
#: Strings.src
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"STR_DATA_ROLE_X_ERROR_NEGATIVE\n"
"string.text"
msgid "Negative X-Error-Bars"
-msgstr "Negative X-Error-Bars"
+msgstr "አሉታዊ የ X-ስህተት-መደርደሪያ"
#: Strings.src
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"STR_DATA_ROLE_Y_ERROR\n"
"string.text"
msgid "Y-Error-Bars"
-msgstr "Y-Error-Bars"
+msgstr "የ Y-ስህተት-መደርደሪያ"
#: Strings.src
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"STR_DATA_ROLE_Y_ERROR_POSITIVE\n"
"string.text"
msgid "Positive Y-Error-Bars"
-msgstr "Positive Y-Error-Bars"
+msgstr "አዎንታዊ የ Y-ስህተት-መደርደሪያ"
#: Strings.src
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"STR_DATA_ROLE_Y_ERROR_NEGATIVE\n"
"string.text"
msgid "Negative Y-Error-Bars"
-msgstr "Negative Y-Error-Bars"
+msgstr "አሉታዊ የ Y-ስህተት-መደርደሪያ"
#: Strings.src
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"STR_DATA_UNNAMED_SERIES\n"
"string.text"
msgid "Unnamed Series"
-msgstr "Unnamed Series"
+msgstr "ያልተሰየመ ተከታታይ"
#: Strings.src
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"STR_DATA_UNNAMED_SERIES_WITH_INDEX\n"
"string.text"
msgid "Unnamed Series %NUMBER"
-msgstr "Unnamed Series %NUMBER"
+msgstr "ያልተሰየመ ተከታታይ %NUMBER"
#: Strings.src
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"STR_DATA_SELECT_RANGE_FOR_SERIES\n"
"string.text"
msgid "Select Range for %VALUETYPE of %SERIESNAME"
-msgstr "Select Range for %VALUETYPE of %SERIESNAME"
+msgstr "ይምረጡ መጠን ለ %VALUETYPE of %SERIESNAME"
#: Strings.src
msgctxt ""
@@ -1098,7 +1098,7 @@ msgctxt ""
"STR_TYPE_XY\n"
"string.text"
msgid "XY (Scatter)"
-msgstr "XY (Scatter)"
+msgstr "XY (የ ተበተነ)"
#: Strings_ChartTypes.src
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"STR_STEP_GT_ZERO\n"
"string.text"
msgid "The major interval requires a positive number. Check your input."
-msgstr "The major interval requires a positive number. Check your input."
+msgstr "ዋናው ክፍተት አዎንታዊ ቁጥር ይፈልጋል: ማስገቢያውን ይመርምሩ"
#: Strings_Scale.src
msgctxt ""
@@ -1370,7 +1370,7 @@ msgctxt ""
"STR_REGRESSION_LOG\n"
"string.text"
msgid "Logarithmic"
-msgstr "Logarithmic"
+msgstr "ሎጋሪዝም"
#: Strings_Statistic.src
msgctxt ""
diff --git a/source/am/chart2/uiconfig/ui.po b/source/am/chart2/uiconfig/ui.po
index 3799dba6aa4..9f418807953 100644
--- a/source/am/chart2/uiconfig/ui.po
+++ b/source/am/chart2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-01 00:16+0000\n"
+"PO-Revision-Date: 2016-12-23 00:11+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480551379.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482451880.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -1049,7 +1049,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Near Axis"
-msgstr "Near Axis"
+msgstr "Axis አጠገብ"
#: sidebaraxis.ui
msgctxt ""
@@ -1679,7 +1679,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Resolution:"
-msgstr "_Resolution:"
+msgstr "_ሪዞሊሽን:"
#: smoothlinesdlg.ui
msgctxt ""
@@ -3326,7 +3326,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Logarithmic scale"
-msgstr "_ሎጋሪዝም መለኪያ"
+msgstr "የ _ሎጋሪዝም መለኪያ"
#: tp_Scale.ui
msgctxt ""
@@ -3407,7 +3407,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "R_esolution"
-msgstr "R_esolution"
+msgstr "ሪ_ዞሊሽን"
#: tp_Scale.ui
msgctxt ""
@@ -3659,7 +3659,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "L_ogarithmic"
-msgstr "L_ogarithmic"
+msgstr "ሎ_ጋሪዝም"
#: tp_Trendline.ui
msgctxt ""
@@ -3677,7 +3677,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Po_wer"
-msgstr "Po_wer"
+msgstr "ሀይ_ል"
#: tp_Trendline.ui
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Polynomial"
-msgstr "_Polynomial"
+msgstr "_ፖሊኖሚያል"
#: tp_Trendline.ui
msgctxt ""
diff --git a/source/am/connectivity/source/resource.po b/source/am/connectivity/source/resource.po
index b44c997035f..08d01eed236 100644
--- a/source/am/connectivity/source/resource.po
+++ b/source/am/connectivity/source/resource.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-11-22 22:09+0000\n"
+"PO-Revision-Date: 2016-12-23 00:14+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479852564.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482452071.000000\n"
#: conn_error_message.src
msgctxt ""
@@ -256,7 +256,7 @@ msgctxt ""
"STR_CAN_NOT_CANCEL_ROW_UPDATE\n"
"string.text"
msgid "The row update can not be canceled."
-msgstr "የረድፉን ማሻሻያ መሰረዝ አይቻልም"
+msgstr "የ ረድፉን ማሻሻያ መሰረዝ አይቻልም"
#: conn_shared_res.src
msgctxt ""
@@ -288,7 +288,7 @@ msgctxt ""
"STR_COMMIT_ROW\n"
"string.text"
msgid "Please commit row '$position$' before update rows or insert new rows."
-msgstr "እባክዎን ረድፍ ይፈጽሙ '$position$' ረድፎች ከ ማሻሻል በፊት ወይንም አዲስ ረድፍ ከ ማስገባትዎ በፊት"
+msgstr "እባክዎን ረድፍ ይፈጽሙ '$position$' ረድፎች ከ መሻሻላቸው በፊት ወይንም አዲስ ረድፍ ከ ማስገባትዎ በፊት"
#: conn_shared_res.src
msgctxt ""
@@ -296,7 +296,7 @@ msgctxt ""
"STR_INVALID_ROW_UPDATE\n"
"string.text"
msgid "The update call can not be executed. The row is invalid."
-msgstr "የማሻሻያ ጥሪውን ማስኬድ አልተቻለም ፡ ረድፉ ዋጋ የለውም"
+msgstr "የማሻሻያ ጥሪ ማስኬድ አልተቻለም: ረድፉ ዋጋ የለውም"
#: conn_shared_res.src
msgctxt ""
@@ -360,7 +360,7 @@ msgctxt ""
"STR_NO_INPUTSTREAM\n"
"string.text"
msgid "The input stream was not set."
-msgstr "The input stream was not set."
+msgstr "የ ማስገቢያ ማስተላለፊያ አልተሰናዳም"
#: conn_shared_res.src
msgctxt ""
@@ -544,7 +544,7 @@ msgctxt ""
"STR_COLUMN_NOT_UPDATEABLE\n"
"string.text"
msgid "The column at position '$position$' could not be updated."
-msgstr "The column at position '$position$' could not be updated."
+msgstr "የ አምዱን ቦታ '$position$' ማሻሻል አይቻልም"
#: conn_shared_res.src
msgctxt ""
@@ -796,7 +796,7 @@ msgctxt ""
"STR_COLUMN_NOT_ADDABLE\n"
"string.text"
msgid "The column '$columnname$' could not be added. May be the file system is write protected."
-msgstr "The column '$columnname$' could not be added. May be the file system is write protected."
+msgstr "አምድ '$columnname$' መጨመር አልተቻለም: ምናልባት የ ፋይል ስርአቱ ከ መጻፍ ይጠበቅ ይሆናል"
#: conn_shared_res.src
msgctxt ""
diff --git a/source/am/cui/source/customize.po b/source/am/cui/source/customize.po
index 19bc286c5be..b6a4132befd 100644
--- a/source/am/cui/source/customize.po
+++ b/source/am/cui/source/customize.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-06 06:04+0000\n"
+"PO-Revision-Date: 2016-12-15 01:35+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481004297.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481765708.000000\n"
#: acccfg.src
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"RID_SVXSTR_IMPORT_ICON_ERROR\n"
"string.text"
msgid "The files listed below could not be imported. The file format could not be interpreted."
-msgstr "ከስር ያሉትን ፋይሎች ማምጣት አልተቻለም: የፋይሉን አቀራረብ መተርጎም አልተቻለም"
+msgstr "ከ ታች ያሉትን ፋይሎች ማምጣት አልተቻለም: የ ፋይሉን አቀራረብ መተርጎም አልተቻለም"
#: cfg.src
msgctxt ""
@@ -407,7 +407,7 @@ msgctxt ""
"RID_SVXSTR_EVENT_MAILMERGE\n"
"string.text"
msgid "Printing of form letters started"
-msgstr "በደብዳቤዎች ፎርም ማተም ጀምሯል"
+msgstr "በ ደብዳቤዎች ፎርም ማተም ጀምሯል"
#: macropg.src
msgctxt ""
@@ -415,7 +415,7 @@ msgctxt ""
"RID_SVXSTR_EVENT_MAILMERGE_END\n"
"string.text"
msgid "Printing of form letters finished"
-msgstr "በደብዳቤዎች ፎርም ማተም ጨርሷል"
+msgstr "በ ደብዳቤዎች ፎርም ማተም ጨርሷል"
#: macropg.src
msgctxt ""
diff --git a/source/am/cui/source/options.po b/source/am/cui/source/options.po
index c26f328167e..8bf6cffb2b5 100644
--- a/source/am/cui/source/options.po
+++ b/source/am/cui/source/options.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-06 16:43+0000\n"
+"PO-Revision-Date: 2016-12-23 00:23+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481042626.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482452592.000000\n"
#: connpooloptions.src
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"RID_SVXSTR_WORDS_WITH_DIGITS\n"
"string.text"
msgid "Check words with numbers "
-msgstr "Check words with numbers "
+msgstr "መመርመሪያ ቃሎች ከ ቁጥር ጋር"
#: optlingu.src
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"RID_SVXSTR_SPELL_SPECIAL\n"
"string.text"
msgid "Check special regions"
-msgstr "Check special regions"
+msgstr "መመርመሪያ የ ተለዩ አካባቢዎች"
#: optlingu.src
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"RID_SVXSTR_GRAMMAR_AUTO\n"
"string.text"
msgid "Check grammar as you type"
-msgstr "Check grammar as you type"
+msgstr "መመርመሪያ ሰዋሰው በሚጽፉ ጊዜ"
#: optlingu.src
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"RID_SVXSTR_HYPH_AUTO\n"
"string.text"
msgid "Hyphenate without inquiry"
-msgstr "Hyphenate without inquiry"
+msgstr "ጭረት ሳይጠየቅ መፈጸሚያ"
#: optlingu.src
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"RID_SVXSTR_HYPH_SPECIAL\n"
"string.text"
msgid "Hyphenate special regions"
-msgstr "Hyphenate special regions"
+msgstr "ጭረት የ ተለዩ አካባቢዎች"
#: optpath.src
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"RID_SVXSTR_KEY_PALETTE_PATH\n"
"string.text"
msgid "Palettes"
-msgstr "Palettes"
+msgstr "መደርደሪያ"
#: optpath.src
msgctxt ""
diff --git a/source/am/cui/source/tabpages.po b/source/am/cui/source/tabpages.po
index 67fbf5aef94..059364f8915 100644
--- a/source/am/cui/source/tabpages.po
+++ b/source/am/cui/source/tabpages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-29 02:25+0000\n"
+"PO-Revision-Date: 2016-12-14 01:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480386306.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481678935.000000\n"
#: border.src
msgctxt ""
@@ -444,7 +444,7 @@ msgctxt ""
"RID_SVXSTR_CPTL_STT_SENT\n"
"string.text"
msgid "Capitalize first letter of every sentence"
-msgstr "Capitalize first letter of every sentence"
+msgstr "ሁሉንም አረፍተ ነገር በ አቢይ ፊደል መጀመሪያውን መጻፊያ"
#: strings.src
msgctxt ""
diff --git a/source/am/cui/uiconfig/ui.po b/source/am/cui/uiconfig/ui.po
index b719a8b7daf..0be2b7bc916 100644
--- a/source/am/cui/uiconfig/ui.po
+++ b/source/am/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-10 02:37+0000\n"
+"PO-Revision-Date: 2016-12-23 00:20+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: none\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481337472.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482452413.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -788,7 +788,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bitmap"
-msgstr ""
+msgstr "Bitmap"
#: areatabpage.ui
msgctxt ""
@@ -1256,7 +1256,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bitmap"
-msgstr ""
+msgstr "Bitmap"
#: bitmaptabpage.ui
msgctxt ""
@@ -1547,14 +1547,13 @@ msgid "Version:"
msgstr "እትም:"
#: blackorwhitelistentrydialog.ui
-#, fuzzy
msgctxt ""
"blackorwhitelistentrydialog.ui\n"
"label6\n"
"label\n"
"string.text"
msgid "OpenCL vendor:"
-msgstr "OpenCL vendor:"
+msgstr "የ OpenCL ሻጪ:"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1566,14 +1565,13 @@ msgid "Device:"
msgstr "አካል:"
#: blackorwhitelistentrydialog.ui
-#, fuzzy
msgctxt ""
"blackorwhitelistentrydialog.ui\n"
"label8\n"
"label\n"
"string.text"
msgid "Driver version:"
-msgstr "Driver version:"
+msgstr "የ Driver እትም:"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1879,7 +1877,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Merge adjacent line styles"
-msgstr "_Merge adjacent line styles"
+msgstr "አጠገቡ ያለውን የ መስመር ዘዴዎች _ማዋሀጃ"
#: borderpage.ui
msgctxt ""
@@ -2806,7 +2804,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Field shadings"
-msgstr "Field shadings"
+msgstr "የ ሜዳ ጥላዎች"
#: colorconfigwin.ui
msgctxt ""
@@ -3517,7 +3515,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "HSB"
-msgstr ""
+msgstr "HSB"
#: colorpickerdialog.ui
msgctxt ""
@@ -4165,7 +4163,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Measure _below object"
-msgstr "ከ እቃው ስር _መለኪያ"
+msgstr "መለኪያ ከ እቃው በ _ታች"
#: dimensionlinestabpage.ui
msgctxt ""
@@ -4768,7 +4766,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Below text"
-msgstr "ከጽሁፉ ስር"
+msgstr "ከ ጽሁፍ ስር"
#: effectspage.ui
msgctxt ""
@@ -5245,7 +5243,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sounds like (_Japanese)"
-msgstr ""
+msgstr "Sounds like (_Japanese)"
#: fmsearchdialog.ui
msgctxt ""
@@ -6118,7 +6116,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ignore post-positional word"
-msgstr ""
+msgstr "መተው በኋላ-የሚመጣ ቃል"
#: hangulhanjaoptdialog.ui
msgctxt ""
@@ -6868,8 +6866,8 @@ msgid ""
"The files listed below could not be imported.\n"
"The file format could not be interpreted."
msgstr ""
-"ከስር ያሉትን ፋይሎች ማምጣት አልተቻለም\n"
-"የፋይሉን አቀራረብ መተርጎም አልተቻለም"
+"ከ ስር ያሉትን ፋይሎች ማምጣት አልተቻለም\n"
+"የ ፋይሉን አቀራረብ መተርጎም አልተቻለም"
#: iconselectordialog.ui
msgctxt ""
@@ -7334,7 +7332,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Arrow Styles"
-msgstr "የቀስት ዘዴዎች"
+msgstr "የ ቀስት ዘዴዎች"
#: lineendstabpage.ui
msgctxt ""
@@ -10713,7 +10711,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_hiragana/katakana"
-msgstr ""
+msgstr "_hiragana/katakana"
#: optjsearchpage.ui
msgctxt ""
@@ -10722,7 +10720,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_contractions (yo-on, sokuon)"
-msgstr ""
+msgstr "_contractions (yo-on, sokuon)"
#: optjsearchpage.ui
msgctxt ""
@@ -12123,7 +12121,7 @@ msgctxt ""
"AtkObject::accessible-description\n"
"string.text"
msgid "Home telephone number"
-msgstr "የቤት ስልክ ቁጥር"
+msgstr "የ ቤት ስልክ ቁጥር"
#: optuserpage.ui
msgctxt ""
@@ -12204,7 +12202,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Home telephone number"
-msgstr "የቤት ስልክ ቁጥር"
+msgstr "የ ቤት ስልክ ቁጥር"
#: optuserpage.ui
msgctxt ""
@@ -12333,14 +12331,13 @@ msgid "Use anti-a_liasing"
msgstr "ፀረ-ማ_ጥሪያ ይጠቀሙ"
#: optviewpage.ui
-#, fuzzy
msgctxt ""
"optviewpage.ui\n"
"useopengl\n"
"label\n"
"string.text"
msgid "Use OpenGL for all rendering"
-msgstr "Use OpenGL for all rendering"
+msgstr "ይጠቀሙ የ OpenGL ለ ሁሉም አስተያየት"
#: optviewpage.ui
msgctxt ""
@@ -13381,7 +13378,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Below _paragraph:"
-msgstr "ከ _አንቀጽ በታች:"
+msgstr "ከ _አንቀጽ በ ታች:"
#: paraindentspacing.ui
msgctxt ""
diff --git a/source/am/dbaccess/uiconfig/ui.po b/source/am/dbaccess/uiconfig/ui.po
index bfc8ece7260..50cb528d9a6 100644
--- a/source/am/dbaccess/uiconfig/ui.po
+++ b/source/am/dbaccess/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2016-12-10 03:21+0000\n"
+"PO-Revision-Date: 2016-12-15 00:31+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481340063.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481761903.000000\n"
#: admindialog.ui
msgctxt ""
@@ -2216,7 +2216,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Update Options"
-msgstr "የማሻሻያ ምርጫዎች"
+msgstr "የ ማሻሻያ ምርጫዎች"
#: relationdialog.ui
msgctxt ""
diff --git a/source/am/desktop/source/app.po b/source/am/desktop/source/app.po
index fe039de3704..59b19da2059 100644
--- a/source/am/desktop/source/app.po
+++ b/source/am/desktop/source/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-10-23 00:37+0000\n"
+"PO-Revision-Date: 2016-12-15 00:33+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.7\n"
-"X-POOTLE-MTIME: 1477183040.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481761994.000000\n"
#: desktop.src
msgctxt ""
@@ -204,7 +204,7 @@ msgctxt ""
"STR_LO_MUST_BE_RESTARTED\n"
"string.text"
msgid "%PRODUCTNAME must unfortunately be manually restarted once after installation or update."
-msgstr "%PRODUCTNAME ከተገጠም ወይንም ከተሻሻለ በኋላ በእጅ እንደገና ማስነሳት ያስፈልጋል"
+msgstr "%PRODUCTNAME ከ ተገጠም ወይንም ከ ተሻሻለ በኋላ በ እጅ እንደገና ማስነሳት ያስፈልጋል"
#: desktop.src
msgctxt ""
diff --git a/source/am/editeng/source/items.po b/source/am/editeng/source/items.po
index f2d43d56fe2..e0e701dd95d 100644
--- a/source/am/editeng/source/items.po
+++ b/source/am/editeng/source/items.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2016-12-06 17:00+0000\n"
+"PO-Revision-Date: 2016-12-15 01:39+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481043654.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481765995.000000\n"
#: page.src
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"RID_SVXITEMS_TAB_DECIMAL_CHAR\n"
"string.text"
msgid "Decimal Symbol:"
-msgstr "የዴሲማል ምልክት:"
+msgstr "የ ዴሲማል ምልክት:"
#: svxitems.src
msgctxt ""
@@ -1599,7 +1599,7 @@ msgctxt ""
"RID_SVXITEMS_EMPHASIS_BELOW_POS\n"
"string.text"
msgid "Below"
-msgstr "ክስር"
+msgstr "ከ ታች"
#: svxitems.src
msgctxt ""
diff --git a/source/am/extensions/source/update/check.po b/source/am/extensions/source/update/check.po
index 2a8ceb66110..c440861cea8 100644
--- a/source/am/extensions/source/update/check.po
+++ b/source/am/extensions/source/update/check.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-05-23 21:37+0200\n"
-"PO-Revision-Date: 2016-08-12 20:33+0000\n"
+"PO-Revision-Date: 2016-12-15 00:41+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1471034006.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481762513.000000\n"
#: updatehdl.src
msgctxt ""
@@ -57,8 +57,8 @@ msgstr ""
"\n"
"የተገጠመው እትም ይህ ነው %PRODUCTNAME %PRODUCTVERSION.\n"
"\n"
-"ማስታወሻ : ማሻሻያ ከማውረዶት በፊት ፡ እባክዎን በመጀመሪያ ለመግጠም በቂ የሆነ ፍቃድ እንዳለዎት ያረጋግጡ \n"
-"የመግቢያ ቃል ብዙ ጊዜ የአስተዳዳሪው ወይም የ root password, ያስፈልጋል"
+"ማስታወሻ: ማሻሻያ ከማውረዶት በፊት: እባክዎን በ መጀመሪያ ለ መግጠም በቂ የሆነ ፍቃድ እንዳለዎት ያረጋግጡ \n"
+"የ መግቢያ ቃል ብዙ ጊዜ የ አስተዳዳሪውን ወይንም የ root መግቢያ ቃል ያስፈልጋል"
#: updatehdl.src
msgctxt ""
@@ -94,9 +94,9 @@ msgid ""
"\n"
"Under Tools – Options... - %PRODUCTNAME – Online Update you can change the download location."
msgstr ""
-"የማውረጃው አካባቢ እዚህ ነው : %DOWNLOAD_PATH.\n"
+"የ ማውረጃው አካባቢ እዚህ ነው: %DOWNLOAD_PATH.\n"
"\n"
-"ከመሳሪያዎች ስር – ምርጫዎች... - %PRODUCTNAME – በመስመር ላይ ማሻሻያ ፡ የማውረጃ አካባቢውን መቀየር ይችላሉ"
+"ከ መሳሪያዎች ስር – ምርጫዎች... - %PRODUCTNAME – በ መስመር ላይ ማሻሻያ: የ ማውረጃ አካባቢውን መቀየር ይችላሉ"
#: updatehdl.src
msgctxt ""
@@ -118,7 +118,7 @@ msgid ""
msgstr ""
"ራሱ በራሱ ማሻሻያ ማውረጃ አሁን ዝግጁ አይደለም \n"
"\n"
-"ይጫኑ 'ማውረጃውን...' ለ ማውረድ %PRODUCTNAME %NEXTVERSION በ እጅ ከድህረ ገጹ"
+"ይጫኑ 'ማውረጃውን...' ለ ማውረድ %PRODUCTNAME %NEXTVERSION በ እጅ ከ ድህረ ገጹ"
#: updatehdl.src
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"RID_UPDATE_STR_BEGIN_INSTALL\n"
"string.text"
msgid "To install the update, %PRODUCTNAME %PRODUCTVERSION needs to be closed. Do you want to install the update now?"
-msgstr "ማሻሻያውን ለመግጠም %PRODUCTNAME %PRODUCTVERSION መዘጋት አለበት ማሻሻያውን አሁን መግጠም ይፈልጋሉ?"
+msgstr "ማሻሻያውን ለ መግጠም %PRODUCTNAME %PRODUCTVERSION መዘጋት አለበት: ማሻሻያውን አሁን መግጠም ይፈልጋሉ?"
#: updatehdl.src
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"RID_UPDATE_BUBBLE_T_DOWNLOADING\n"
"string.text"
msgid "Download of update in progress"
-msgstr "ማሻሻያ ማውረድ በሂደት ላይ"
+msgstr "ማሻሻያ ማውረድ በ ሂደት ላይ ነው"
#: updatehdl.src
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"RID_UPDATE_BUBBLE_T_EXT_UPD_AVAIL\n"
"string.text"
msgid "Updates for extensions available"
-msgstr "ለተጨማሪዎች ማሻሻያ ዝግጁ ነው"
+msgstr "ለ ተጨማሪዎች ማሻሻያ ዝግጁ ነው"
#: updatehdl.src
msgctxt ""
diff --git a/source/am/extensions/source/update/check/org/openoffice/Office.po b/source/am/extensions/source/update/check/org/openoffice/Office.po
index e7a2892c9e0..fe7142cbfae 100644
--- a/source/am/extensions/source/update/check/org/openoffice/Office.po
+++ b/source/am/extensions/source/update/check/org/openoffice/Office.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-06-14 01:43+0200\n"
-"Last-Translator: Samson <sambelet@yahoo.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-12-15 00:42+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-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481762570.000000\n"
#: Addons.xcu
msgctxt ""
@@ -22,4 +23,4 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Check for ~Updates..."
-msgstr "~ማሻሻያ ፈልግ..."
+msgstr "~ማሻሻያ መፈለጊያ..."
diff --git a/source/am/extensions/uiconfig/sabpilot/ui.po b/source/am/extensions/uiconfig/sabpilot/ui.po
index 1c4b194ac32..8d4af76beec 100644
--- a/source/am/extensions/uiconfig/sabpilot/ui.po
+++ b/source/am/extensions/uiconfig/sabpilot/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-10-29 01:14+0000\n"
+"PO-Revision-Date: 2016-12-22 23:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1477703649.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482450369.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -205,9 +205,9 @@ msgid ""
"\n"
"Click the button below to open another dialog where you can enter the settings for your data source."
msgstr ""
-"በ እርስዎ ቴምፕሌቶች ውስጥ የ አድራሻ ዳታዎችን ለማዋሀድ %PRODUCTNAME የትኞቹ ዳታዎች በየትኛው ሜዳ ውስጥ እንዳሉ ማወቅ አለብዎት \n"
+"በ እርስዎ ቴምፕሌቶች ውስጥ የ አድራሻ ዳታዎችን ለማዋሀድ %PRODUCTNAME የትኞቹ ዳታዎች በየትኛው ሜዳ ውስጥ እንዳሉ ማወቅ አለብዎት\n"
"\n"
-"ለምሳሌ አስቀምጠው ይሆናል የ ኢ-ሜይል አድራሻዎችን በ \"ኢሜይል\" በሚል ሜዳ ውስጥ ወይንም \"ኢ-ሜይል\" ወይንም \"EM\" - ወይንም በጣም በተለየ ቦታ \n"
+"ለምሳሌ አስቀምጠው ይሆናል የ ኢ-ሜይል አድራሻዎችን በ \"ኢሜይል\" በሚል ሜዳ ውስጥ ወይንም \"ኢ-ሜይል\" ወይንም \"ኢሜ\" - ወይንም በጣም በተለየ ቦታ\n"
"\n"
"ከ ታች ያለውን ቁልፉን ይጫኑ ሌላ ንግግር ለመክፈት ለ እርስዎ ዳታ ምንጭ ማሰናጃ ለማስገባት"
diff --git a/source/am/extras/source/autocorr/emoji.po b/source/am/extras/source/autocorr/emoji.po
index 7ec53dc6277..f19591eb5bc 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: 2016-12-08 02:35+0000\n"
+"PO-Revision-Date: 2016-12-22 23:47+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481164512.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482450421.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9634,7 +9634,7 @@ msgctxt ""
"SUPERSCRIPT_PLUS_SIGN\n"
"LngText.text"
msgid "^+"
-msgstr ""
+msgstr "^+"
#. ⁻ (U+0207B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9652,7 +9652,7 @@ msgctxt ""
"SUPERSCRIPT_EQUALS_SIGN\n"
"LngText.text"
msgid "^="
-msgstr ""
+msgstr "^="
#. ⁽ (U+0207D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9769,7 +9769,7 @@ msgctxt ""
"SUBSCRIPT_PLUS_SIGN\n"
"LngText.text"
msgid "_+"
-msgstr ""
+msgstr "_+"
#. ₋ (U+0208B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9787,7 +9787,7 @@ msgctxt ""
"SUBSCRIPT_EQUALS_SIGN\n"
"LngText.text"
msgid "_="
-msgstr ""
+msgstr "_="
#. ₍ (U+0208D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/am/forms/source/resource.po b/source/am/forms/source/resource.po
index 740c2d2a921..6f3ff4246db 100644
--- a/source/am/forms/source/resource.po
+++ b/source/am/forms/source/resource.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-22 22:19+0000\n"
+"PO-Revision-Date: 2016-12-15 00:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479853179.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481762606.000000\n"
#: strings.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"RID_ERR_REFRESHING_FORM\n"
"string.text"
msgid "The data content could not be updated"
-msgstr "የዳታውን ይዞታ ማሻሻል አልተቻለም"
+msgstr "የ ዳታ ይዞታን ማሻሻል አልተቻለም"
#: strings.src
msgctxt ""
diff --git a/source/am/formula/source/core/resource.po b/source/am/formula/source/core/resource.po
index 37f6d2d6897..0686ba5a25d 100644
--- a/source/am/formula/source/core/resource.po
+++ b/source/am/formula/source/core/resource.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 20:04+0100\n"
+"POT-Creation-Date: 2016-12-23 20:24+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"
@@ -1073,7 +1073,7 @@ msgctxt ""
"SC_OPCODE_POWER\n"
"string.text"
msgid "POWER"
-msgstr "POWER"
+msgstr "ሀይል"
#: core_resource.src
msgctxt ""
@@ -2465,15 +2465,6 @@ msgstr "DEVSQ"
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
-"SC_OPCODE_MEDIAN\n"
-"string.text"
-msgid "MEDIAN"
-msgstr "MEDIAN"
-
-#: core_resource.src
-msgctxt ""
-"core_resource.src\n"
-"RID_STRLIST_FUNCTION_NAMES\n"
"SC_OPCODE_MODAL_VALUE\n"
"string.text"
msgid "MODE"
diff --git a/source/am/helpcontent2/source/auxiliary.po b/source/am/helpcontent2/source/auxiliary.po
index 2d946d2352d..f9507641ebf 100644
--- a/source/am/helpcontent2/source/auxiliary.po
+++ b/source/am/helpcontent2/source/auxiliary.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-07 02:28+0000\n"
+"PO-Revision-Date: 2016-12-12 22:51+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481077722.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481583112.000000\n"
#: sbasic.tree
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"1015\n"
"node.text"
msgid "Document Version Tracking"
-msgstr "የሰነዱን እትም ፈልጎ ማግኛ"
+msgstr "የ ሰነዱን እትም ፈልጎ ማግኛ"
#: shared.tree
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/guide.po b/source/am/helpcontent2/source/text/sbasic/guide.po
index 65a666da1af..2004495dfa4 100644
--- a/source/am/helpcontent2/source/text/sbasic/guide.po
+++ b/source/am/helpcontent2/source/text/sbasic/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2016-12-07 17:13+0000\n"
+"PO-Revision-Date: 2016-12-23 17:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481130803.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482514987.000000\n"
#: access2base.xhp
msgctxt ""
@@ -209,7 +209,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
-msgstr "በ ንድፍ ዘዴ ውስጥ የ መቆጣጠሪያ ባህሪዎችን ለ መቀየር: በቀኝ-ይጫኑ መቆጣጠሪያውን እና ከዛ ይምረጡ <emph>ባህሪዎች</emph>."
+msgstr "በ ንድፍ ዘዴ ውስጥ የ መቆጣጠሪያ ባህሪዎችን ለ መቀየር: በ ቀኝ-ይጫኑ መቆጣጠሪያውን እና ከዛ ይምረጡ <emph>ባህሪዎች</emph>."
#: create_dialog.xhp
msgctxt ""
@@ -252,7 +252,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "Enter a name for the dialog, and click OK. To rename the dialog later, right-click the name on the tab, and choose <emph>Rename</emph>."
-msgstr "ለንግግሩ ስም ያስገቡ እና ይጫኑ እሺ: ንግግሩን በኋላ ለመሰየም: በቀኝ-ይጫኑ በ ንዑስ መስኮት tab ላይ እና ይምረጡ<emph>እንደገና መሰየሚያ</emph>."
+msgstr "ለ ንግግሩ ስም ያስገቡ እና ይጫኑ እሺ: ንግግሩን በኋላ ለመሰየም: በ ቀኝ-ይጫኑ በ ንዑስ መስኮት tab ላይ እና ይምረጡ<emph>እንደገና መሰየሚያ</emph>."
#: create_dialog.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index 2ebad2bed8d..dce2729cbf7 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-09 01:28+0000\n"
+"PO-Revision-Date: 2016-12-23 17:35+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481246914.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482514539.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -5110,7 +5110,7 @@ msgctxt ""
"149\n"
"help.text"
msgid "Currency symbol"
-msgstr "የገንዘብ ምልክት"
+msgstr "የ ገንዘብ ምልክት"
#: 01170101.xhp
msgctxt ""
@@ -5119,7 +5119,7 @@ msgctxt ""
"150\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the currency symbol to be used for currency controls.</ahelp>"
-msgstr "<ahelp hid=\".\">ለገንዘብ መቆጣጠሪያ መጠቀም የሚፈልጉትን የገንዘብ ምልክት ያስገቡ</ahelp>"
+msgstr "<ahelp hid=\".\">ለ ገንዘብ መቆጣጠሪያ መጠቀም የሚፈልጉትን የ ገንዘብ ምልክት ያስገቡ</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -5144,7 +5144,7 @@ msgctxt ""
"82\n"
"help.text"
msgid "Date format"
-msgstr "የቀን አቀራረብ"
+msgstr "የ ቀን አቀራረብ"
#: 01170101.xhp
msgctxt ""
@@ -5553,7 +5553,7 @@ msgctxt ""
"212\n"
"help.text"
msgid "Help URL"
-msgstr "የእርዳታ URL"
+msgstr "የ እርዳታ URL"
#: 01170101.xhp
msgctxt ""
@@ -6124,7 +6124,7 @@ msgctxt ""
"hd_id7534409\n"
"help.text"
msgid "Row height"
-msgstr "የረድፍ እርዝመት"
+msgstr "የ ረድፍ እርዝመት"
#: 01170101.xhp
msgctxt ""
@@ -6491,7 +6491,7 @@ msgctxt ""
"168\n"
"help.text"
msgid "Time Format"
-msgstr "የሰአት አቀራረብ"
+msgstr "የ ሰአት አቀራረብ"
#: 01170101.xhp
msgctxt ""
@@ -6904,7 +6904,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "Mouse button released"
-msgstr "የአይጥ ቁልፍ ለቀዋል"
+msgstr "የ አይጥ ቁልፍ ለቀዋል"
#: 01170103.xhp
msgctxt ""
@@ -13723,7 +13723,7 @@ msgctxt ""
"par_id3151097\n"
"help.text"
msgid "Returns the time part of the date as a UNO com.sun.star.util.Time struct."
-msgstr ""
+msgstr "ይመልሳል የ ጊዜ አካል ለ ቀን እንደ የ UNO com.sun.star.util.Time struct."
#: 03030113.xhp
msgctxt ""
@@ -13739,7 +13739,7 @@ msgctxt ""
"par_id3149497\n"
"help.text"
msgid "CDateToUnoTime(aDate)"
-msgstr ""
+msgstr "CDateToUnoTime(ቀን)"
#: 03030113.xhp
msgctxt ""
@@ -16241,7 +16241,7 @@ msgctxt ""
"par_id3153768\n"
"help.text"
msgid "The AND operator also performs a bitwise comparison of identically positioned bits in two numeric expressions."
-msgstr ""
+msgstr "የ አና አንቀሳቃሽ እንዲሁም ይፈጽማል የ bitwise ማነፃፀሪያ ለ ተመሳሳይ bits ቦታዎች በ ሂሳብ መግለጫዎች ውስጥ"
#: 03060100.xhp
msgctxt ""
@@ -16505,7 +16505,7 @@ msgctxt ""
"par_id3150440\n"
"help.text"
msgid "If you use the Imp operator in Boolean expressions, False is only returned if the first expression evaluates to True and the second expression to False."
-msgstr ""
+msgstr "እርስዎ የሚጠቀሙ ከሆነ የ መፈጸሚያ አንቀሳቃሽ በ ቡሊያን መግለጫዎች ውስጥ: ሀሰት የሚመልሰው የ መጀመሪያው መግለጫ እውነት እና ሁለተኛው መግለጫ ሀሰት ሲሆን ነው"
#: 03060300.xhp
msgctxt ""
@@ -16513,7 +16513,7 @@ msgctxt ""
"par_id3163710\n"
"help.text"
msgid "If you use the Imp operator in bit expressions, a bit is deleted from the result if the corresponding bit is set in the first expression and the corresponding bit is deleted in the second expression."
-msgstr ""
+msgstr "እርስዎ የሚጠቀሙ ከሆነ የ መፈጸሚያ አንቀሳቃሽ በ ቢት መግለጫዎች ውስጥ: ቢት ከ ጠፋ ከ ውጤት ውስጥ ተመሳሳያ ቢት ይሰናዳል በ መጀመሪያው መግለጫ ውስጥ: እና ተመሳሳይ ቢት ይጠፋል ከ ሁለተኛው መግለጫ ውስጥ"
#: 03060300.xhp
msgctxt ""
@@ -16641,7 +16641,7 @@ msgctxt ""
"par_id3150868\n"
"help.text"
msgid "When a Boolean expression is negated, the value True changes to False, and the value False changes to True."
-msgstr ""
+msgstr "የ ቡሊያን መግለጫ በሚተው ጊዜ: የ እውነት ዋጋ ይቀየራል ወደ ሀሰት: እና የ ሀሰት ዋጋ ይቀየራል ወደ እውነት"
#: 03060400.xhp
msgctxt ""
@@ -17542,7 +17542,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "The following numeric functions perform calculations. Mathematical and Boolean operators are described in a separate section. Functions differ from operators in that functions pass arguments and return a result, instead of operators that return a result by combining two numeric expressions."
-msgstr ""
+msgstr "የሚቀጥሉት የ ሂሳብ ተግባሮች ስሌቶችን ይፈጽማሉ: የ ሂሳብ እና የ ቡሊያን አንቀሳቃሾች ተገልጸዋል በ ተለየ ክፍሎች ውስጥ: ተግባሮች ከ አንቀሳቃሾች የሚለዩት: ተግባሮች ክርክሮችን ያልፋሉ እና ውጤት ይመልሳሉ: አንቀሳቃሾች ውጤት የሚመልሱት በ መቀላቀል ነው ሁለት የ ሂሳብ መግለጫዎችን"
#: 03080100.xhp
msgctxt ""
@@ -17744,7 +17744,7 @@ msgctxt ""
"par_id3149482\n"
"help.text"
msgid "d2 = InputBox(\"Enter the length of the side opposite the angle: \",\"Opposite\")"
-msgstr "d1 = ማስገቢያ ሳጥን(\"እርዝመት ያስገቡ ለ ሳይድ ኦፖዚት የ አንግል: \",\"ኦፖዚት\")"
+msgstr "d2 = ማስገቢያ ሳጥን(\"እርዝመት ያስገቡ ለ ሳይድ ኦፖዚት የ አንግል: \",\"ኦፖዚት\")"
#: 03080101.xhp
msgctxt ""
@@ -19322,7 +19322,7 @@ msgctxt ""
"par_id3149561\n"
"help.text"
msgid "siW2 = Int(InputBox(\"Please enter the second amount\",\"Value Input\"))"
-msgstr "siW1 = Int(ማስገቢያ ሳጥን(\"እባክዎን ሁለተኛውን መጠን ያስገቡ\",\"ዋጋ ማስገቢያ\"))"
+msgstr "siW2 = Int(ማስገቢያ ሳጥን(\"እባክዎን ሁለተኛውን መጠን ያስገቡ\",\"ዋጋ ማስገቢያ\"))"
#: 03080601.xhp
msgctxt ""
@@ -21725,7 +21725,7 @@ msgctxt ""
"par_id3147560\n"
"help.text"
msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
-msgstr "ይምረጡ (ማውጫ: ምርጫ[, ምርጫ2, ... [,ምርጫ_n]])"
+msgstr "ይምረጡ (ማውጫ: ምርጫ1[, ምርጫ2, ... [,ምርጫ_n]])"
#: 03090402.xhp
msgctxt ""
@@ -22907,7 +22907,7 @@ msgctxt ""
"par_id3153764\n"
"help.text"
msgid "' LinSearch searches a TextArray:sList() for a TextEntry:"
-msgstr ""
+msgstr "' የ መስመር መፈለጊያ መፈለጊያዎች የ ጽሁፍ ማዘጋጃ: sዝርዝር() ለ ጽሁፍ ማስገቢያ:"
#: 03090412.xhp
msgctxt ""
@@ -23365,7 +23365,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "The following example uses the <emph>CBool</emph> function to evaluate the value that is returned by the <emph>Instr</emph> function. The function checks if the word \"and\" is found in the sentence that was entered by the user."
-msgstr ""
+msgstr "የሚቀጥለው ምሳሌ የሚጠቀመው <emph>መግለጫ የ ተቀየረ ልዩነት ከ ንዑስ አይነት ቦሊያን</emph> ተግባር ለ መገምገም የ ተመለሰውን ዋጋ በ <emph>ኢንቲጀር ይመልሳል የ መጀመሪያ ቦታ እና ሁኔታ ለ ተወሰነው ሀረግ</emph> ተግባር: ይህ ተግባር ይመረምራል ቃል \"እና\" አረፍተ ነገር ውስጥ የሚገኝ በ ተጠቃሚው የ ገባውን"
#: 03100100.xhp
msgctxt ""
@@ -23413,7 +23413,7 @@ msgctxt ""
"par_id3154014\n"
"help.text"
msgid "' the CBool function is applied as follows:"
-msgstr ""
+msgstr "' የ መግለጫ የ ተቀየረ ልዩነት ከ ንዑስ አይነት ቦሊያን ተግባር የሚፈጸመው እንደሚከተለው ነው:"
#: 03100100.xhp
msgctxt ""
@@ -23421,7 +23421,7 @@ msgctxt ""
"par_id3155413\n"
"help.text"
msgid "If CBool(Instr(sText, \"and\")) Then"
-msgstr ""
+msgstr "ከሆነ መግለጫ የ ተቀየረ ልዩነት ከ ንዑስ አይነት ቦሊያን(ኢንቲጀር ይመልሳል የ መጀመሪያ ቦታ እና ሁኔታ ለ ተወሰነው ሀረግ(sጽሁፍ: \"እና\")) ከዛ"
#: 03100100.xhp
msgctxt ""
@@ -23624,22 +23624,20 @@ msgid "CInt Function [Runtime]"
msgstr "ከ ንዑስ Integer የ ተቀየረ ወደ ተለዋዋጭ ተግባር [ማስኬጃ ጊዜ]"
#: 03100500.xhp
-#, fuzzy
msgctxt ""
"03100500.xhp\n"
"bm_id3149346\n"
"help.text"
msgid "<bookmark_value>CInt function</bookmark_value>"
-msgstr "<bookmark_value>CInt function</bookmark_value>"
+msgstr "<bookmark_value>ከ ንዑስ ኢንቲጀር የ ተቀየረ ወደ ተለዋዋጭ ተግባር</bookmark_value>"
#: 03100500.xhp
-#, fuzzy
msgctxt ""
"03100500.xhp\n"
"hd_id3149346\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function [Runtime]\">CInt Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function [Runtime]\">CInt Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function [Runtime]\">ከ ንዑስ ኢንቲጀር የ ተቀየረ ወደ ተለዋዋጭ ተግባር [ማስኬጃ ጊዜ]</link>"
#: 03100500.xhp
msgctxt ""
@@ -23663,7 +23661,7 @@ msgctxt ""
"par_id3154142\n"
"help.text"
msgid "CInt (Expression)"
-msgstr ""
+msgstr "ከ ንዑስ ኢንቲጀር የ ተቀየረ ወደ ተለዋዋጭ ተግባር (መግለጫ)"
#: 03100500.xhp
msgctxt ""
@@ -23714,31 +23712,28 @@ msgid "Example:"
msgstr "ለምሳሌ:"
#: 03100600.xhp
-#, fuzzy
msgctxt ""
"03100600.xhp\n"
"tit\n"
"help.text"
msgid "CLng Function [Runtime]"
-msgstr "CLng Function [Runtime]"
+msgstr "መግለጫ ይመልሳል የ ተቀየረ ወደ ልዩነት ከ ንዑስ አይነት ተግባር [ማስኬጃ ጊዜ]"
#: 03100600.xhp
-#, fuzzy
msgctxt ""
"03100600.xhp\n"
"bm_id3153311\n"
"help.text"
msgid "<bookmark_value>CLng function</bookmark_value>"
-msgstr "<bookmark_value>CLng function</bookmark_value>"
+msgstr "<bookmark_value>መግለጫ ይመልሳል የ ተቀየረ ወደ ልዩነት ከ ንዑስ አይነት ተግባር </bookmark_value>"
#: 03100600.xhp
-#, fuzzy
msgctxt ""
"03100600.xhp\n"
"hd_id3153311\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">CLng Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">CLng Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">መግለጫ ይመልሳል የ ተቀየረ ወደ ልዩነት ከ ንዑስ አይነት ተግባር [ማስኬጃ ጊዜ]</link>"
#: 03100600.xhp
msgctxt ""
@@ -23762,7 +23757,7 @@ msgctxt ""
"par_id3147573\n"
"help.text"
msgid "CLng (Expression)"
-msgstr ""
+msgstr "መግለጫ ይመልሳል የ ተቀየረ ወደ ልዩነት ከ ንዑስ አይነት ተግባር (መግለጫ)"
#: 03100600.xhp
msgctxt ""
@@ -24197,22 +24192,20 @@ msgid "DefBool Statement [Runtime]"
msgstr "ነባር የ ዳታ አይነት ለ ተለዋዋጭ አረፍተ ነገር [ማስኬጃ ጊዜ]"
#: 03101100.xhp
-#, fuzzy
msgctxt ""
"03101100.xhp\n"
"bm_id3145759\n"
"help.text"
msgid "<bookmark_value>DefBool statement</bookmark_value>"
-msgstr "<bookmark_value>DefBool statement</bookmark_value>"
+msgstr "<bookmark_value>ነባር ቡሊያን አረፍተ ነገር</bookmark_value>"
#: 03101100.xhp
-#, fuzzy
msgctxt ""
"03101100.xhp\n"
"hd_id3145759\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement [Runtime]\">DefBool Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement [Runtime]\">DefBool Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement [Runtime]\">ነባር ቡሊያን አረፍተ ነገር [ማስኬጃ ጊዜ]</link>"
#: 03101100.xhp
msgctxt ""
@@ -24220,7 +24213,7 @@ msgctxt ""
"par_id3153089\n"
"help.text"
msgid "If no type-declaration character or keyword is specified, the DefBool statement sets the default data type for variables, according to a letter range."
-msgstr ""
+msgstr "ምንም አይነት-መግለጫ ባህሪ ወይንም ቁልፍ ቃል ካልተወሰነ: የ DefBool አረፍተ ነገር ማሰናጃ ነባር የ ዳታ አይነት ለ ተለዋዋጭ ይወስዳል: እንደ ፊደል መጠን አይነት"
#: 03101100.xhp
msgctxt ""
@@ -24276,7 +24269,7 @@ msgctxt ""
"par_id3149233\n"
"help.text"
msgid "<emph>DefBool:</emph> Boolean"
-msgstr ""
+msgstr "<emph>ነባር ቡሊያን:</emph> ቡሊያን"
#: 03101100.xhp
msgctxt ""
@@ -24332,7 +24325,7 @@ msgctxt ""
"par_idN1058D\n"
"help.text"
msgid "If no type-declaration character or keyword is specified, the DefCur statement sets the default variable type, according to a letter range."
-msgstr "ምንም አይነት-መግለጫ ባህሪ ከሆነ ወይንም የ ቁልፍ ቃል ይወሰናል: የ ነባር ገንዘብ አረፍተ ነገር ያሰናዳል የ ነባር ተለዋዋጭ አይነት: እንደ ፊደል መጠን አይነት"
+msgstr "ምንም አይነት-መግለጫ ባህሪ ከሆነ ወይንም የ ቁልፍ ቃል ይወሰናል: ነባር የ አሁኑ አረፍተ ነገር ያሰናዳል የ ነባር ተለዋዋጭ አይነት: እንደ ፊደል መጠን አይነት"
#: 03101110.xhp
msgctxt ""
@@ -24420,7 +24413,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "DefErr Statement [Runtime]"
-msgstr ""
+msgstr "ነባር ስህተት አረፍተ ነገር [ማስኬጃ ጊዜ]"
#: 03101120.xhp
msgctxt ""
@@ -24431,13 +24424,12 @@ msgid "<bookmark_value>DefErr statement</bookmark_value>"
msgstr "<bookmark_value>ነባር የ አሁኑ ዳታ አይነት ለ ተለዋዋጭ አረፍተ ነገር</bookmark_value>"
#: 03101120.xhp
-#, fuzzy
msgctxt ""
"03101120.xhp\n"
"par_idN1057D\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03010101.xhp\">የ መልእክት ሳጥን መግለጫ [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101120.xhp\">ነባር ስህተት አረፍተ ነገር [ማስኬጃ ጊዜ]</link>"
#: 03101120.xhp
msgctxt ""
@@ -24501,7 +24493,7 @@ msgctxt ""
"par_idN105B0\n"
"help.text"
msgid "<emph>DefErr:</emph> Error"
-msgstr ""
+msgstr "<emph>ነባር ስህተት:</emph> ስህተት"
#: 03101120.xhp
msgctxt ""
@@ -24615,7 +24607,7 @@ msgctxt ""
"par_idN105AA\n"
"help.text"
msgid "<emph>DefSng:</emph> Single"
-msgstr ""
+msgstr "<emph>ነባር ነጠላ:</emph> ነጠላ"
#: 03101130.xhp
msgctxt ""
@@ -24874,22 +24866,20 @@ msgid "DefDbl Statement [Runtime]"
msgstr ""
#: 03101400.xhp
-#, fuzzy
msgctxt ""
"03101400.xhp\n"
"bm_id3147242\n"
"help.text"
msgid "<bookmark_value>DefDbl statement</bookmark_value>"
-msgstr "<bookmark_value>DefDbl statement</bookmark_value>"
+msgstr "<bookmark_value>ነባር ድርብ አረፍተ ነገር</bookmark_value>"
#: 03101400.xhp
-#, fuzzy
msgctxt ""
"03101400.xhp\n"
"hd_id3147242\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement [Runtime]\">DefDbl Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement [Runtime]\">DefDbl Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement [Runtime]\">ነባር ድርብ አረፍተ ነገር [ማስኬጃ ጊዜ]</link>"
#: 03101400.xhp
msgctxt ""
@@ -24953,7 +24943,7 @@ msgctxt ""
"par_id3154123\n"
"help.text"
msgid "<emph>DefDbl:</emph> Double"
-msgstr ""
+msgstr "<emph>ነባር ድርብ:</emph> ድርብ"
#: 03101400.xhp
msgctxt ""
@@ -25097,25 +25087,23 @@ msgctxt ""
"tit\n"
"help.text"
msgid "DefLng Statement [Runtime]"
-msgstr ""
+msgstr "ነባር ረጅም አረፍተ ነገር [ማስኬጃ ጊዜ]"
#: 03101600.xhp
-#, fuzzy
msgctxt ""
"03101600.xhp\n"
"bm_id3148538\n"
"help.text"
msgid "<bookmark_value>DefLng statement</bookmark_value>"
-msgstr "<bookmark_value>DefLng statement</bookmark_value>"
+msgstr "<bookmark_value>ነባር ረጅም አረፍተ ነገር</bookmark_value>"
#: 03101600.xhp
-#, fuzzy
msgctxt ""
"03101600.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">DefLng Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">DefLng Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">ነባር ረጅም አረፍተ ነገር [ማስኬጃ ጊዜ]</link>"
#: 03101600.xhp
msgctxt ""
@@ -25179,7 +25167,7 @@ msgctxt ""
"par_id3154686\n"
"help.text"
msgid "<emph>DefLng:</emph> Long"
-msgstr ""
+msgstr "<emph>ነባር ረጅም:</emph> ረጅም"
#: 03101600.xhp
msgctxt ""
@@ -25302,7 +25290,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "<emph>DefObj:</emph> Object"
-msgstr ""
+msgstr "<emph>ነባር እቃ:</emph> እቃ"
#: 03101700.xhp
msgctxt ""
@@ -25329,7 +25317,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "DefBool b"
-msgstr ""
+msgstr "ነባር ቡሊያን: ቡ"
#: 03101700.xhp
msgctxt ""
@@ -25338,7 +25326,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "DefDate t"
-msgstr ""
+msgstr "ነባር ቀን: ቀ"
#: 03101700.xhp
msgctxt ""
@@ -25347,7 +25335,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "DefDbL d"
-msgstr ""
+msgstr "ነባር ድርብ: ድ"
#: 03101700.xhp
msgctxt ""
@@ -25356,7 +25344,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "DefInt i"
-msgstr ""
+msgstr "ነባር ኢንቲጀር: ኢ"
#: 03101700.xhp
msgctxt ""
@@ -25365,7 +25353,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "DefLng l"
-msgstr ""
+msgstr "ነባር ረጅም: ረ"
#: 03101700.xhp
msgctxt ""
@@ -25374,7 +25362,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "DefObj o"
-msgstr ""
+msgstr "ነባር እቃ: እ"
#: 03101700.xhp
msgctxt ""
@@ -25383,7 +25371,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "DefVar v"
-msgstr ""
+msgstr "ነባር ተለዋዋጭ: ተ"
#: 03102000.xhp
msgctxt ""
@@ -25471,7 +25459,7 @@ msgctxt ""
"par_id3150767\n"
"help.text"
msgid "<emph>DefVar:</emph> Variant"
-msgstr ""
+msgstr "<emph>ነባር ተለዋዋጭ:</emph> ተለዋዋጭ"
#: 03102000.xhp
msgctxt ""
@@ -25623,7 +25611,7 @@ msgctxt ""
"par_id3153949\n"
"help.text"
msgid "<emph>Bool:</emph> Boolean variable (True, False)"
-msgstr ""
+msgstr "<emph>ቡል:</emph> ቡሊያን ተለዋዋጭ (እውነት: ሀሰት)"
#: 03102100.xhp
msgctxt ""
@@ -25695,7 +25683,7 @@ msgctxt ""
"par_id3154704\n"
"help.text"
msgid "<emph>[Variant]:</emph> Variant variable type (contains all types, specified by definition). If a key word is not specified, variables are automatically defined as Variant Type, unless a statement from DefBool to DefVar is used."
-msgstr ""
+msgstr "<emph>[ልዩነት]:</emph> የ ልዩነት ተለዋዋጭ አይነት (የያዛቸው ሁሉም አይነቶች የ ተወሰኑ ናቸው በ መግለጫ). ቁልፍ ቃል ካልተገለጸ: ተለዋዋጭ ራሱ በራሱ አይገለጽም እንደ ልዩነት አይነት: አረፍተ ነገር ከ ነባር ቡል ወደ ነባር ልዩነት ካልተጠቀመ በስተቀር"
#: 03102100.xhp
msgctxt ""
@@ -25775,7 +25763,7 @@ msgctxt ""
"par_id3159239\n"
"help.text"
msgid "You can declare an array types as dynamic if a ReDim statement defines the number of dimensions in the subroutine or the function that contains the array. Generally, you can only define an array dimension once, and you cannot modify it. Within a subroutine, you can declare an array with ReDim. You can only define dimensions with numeric expressions. This ensures that the fields are only as large as necessary."
-msgstr ""
+msgstr "እርስዎ መግለጽ ይችላሉ የ ማዘጋጃ አይነቶች እንደ ሀይለኛ የ እንደገና መመጠኛ አረፍተ ነገር ከገለጸ ቁጥር ለ አቅጣጫዎች በ ንዑስ አሰራር ውስጥ ወይንም ተግባሮች ማዘጋጃ በያዙ ውስጥ: ባጠቃላይ: እርስዎ መግለጽ ይችላሉ የ ማዘጋጃ አቅጣጫ አንድ ጊዜ ብቻ: እና እርስዎ ማሻሻል ይችላሉ: በ ንዑስ አሰራር ውስጥ: እርስዎ ማዘጋጃ መግለጽ ይችላሉ በ እንደገና መመጠኛ: እርስዎ አቅጣጫዎችን መግለጽ የሚችሉት በ ቁጥር መግለጫዎች ውስጥ ብቻ ነው: ይህ የ ሜዳዎቹን እርዝመት እንደ አስፈላጊነቱ ያረጋግጣል"
#: 03102100.xhp
msgctxt ""
@@ -25897,7 +25885,7 @@ msgctxt ""
"par_id3155307\n"
"help.text"
msgid "Start and End can be numeric expressions if ReDim is used at the procedure level."
-msgstr ""
+msgstr "መጀመሪያ እና መጨረሻ የ ቁጥር መግለጫ መሆን ይችላሉ እንደገና መመጠኛን በ አሰራር ደረጃ ውስጥ ከ ተጠቀሙ"
#: 03102101.xhp
msgctxt ""
@@ -25921,7 +25909,7 @@ msgctxt ""
"par_id3153728\n"
"help.text"
msgid "<emph>Bool: </emph>Boolean variable (True, False)"
-msgstr ""
+msgstr "<emph>ቡል: </emph>ቡሊያን ተለዋዋጭ (እውነት: ሀሰት)"
#: 03102101.xhp
msgctxt ""
@@ -25937,7 +25925,7 @@ msgctxt ""
"par_id3159156\n"
"help.text"
msgid "<emph>Double:</emph> Double floating point variable (1.79769313486232x10E308 - 4.94065645841247x10E-324)"
-msgstr "<emph>ድርብ:</emph> ድርብ-ትክክለኛነት ተንሳፋፊ-ነጥብ ተለዋዋጭ (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
+msgstr "<emph>ድርብ:</emph> ድርብ-ትክክለኛነት ተንሳፋፊ-ነጥብ ተለዋዋጭ (1,79769313486232x10E308 - 4,94065645841247 x 10E-324)"
#: 03102101.xhp
msgctxt ""
@@ -25969,7 +25957,7 @@ msgctxt ""
"par_id3154729\n"
"help.text"
msgid "<emph>[Single]:</emph> Single floating-point variable (3.402823x10E38 - 1.401298x10E-45). If no key word is specified, a variable is defined as Single, unless a statement from DefBool to DefVar is used."
-msgstr ""
+msgstr "<emph>[ነጠላ]:</emph> ነጠላ ተንሳፋፊ-ነጥብ ተለዋዋጭ (3.402823x10E38 - 1.401298x10E-45). ምንም ቁልፍ ቃል ካልተገለጸ: ተለዋዋጭ የሚገለጸው እንደ ነጠላ ነው: አረፍተ ነገር ከ ነባር ቡል ወደ ነባር ልዩነት ካልተጠቀመ በስተቀር"
#: 03102101.xhp
msgctxt ""
@@ -26049,7 +26037,7 @@ msgctxt ""
"par_id3149018\n"
"help.text"
msgid "Variable fields, regardless of type, can be made dynamic if they are dimensioned by ReDim at the procedure level in subroutines or functions. Normally, you can only set the range of an array once and you cannot modify it. Within a procedure, you can declare an array using the ReDim statement with numeric expressions to define the range of the field sizes."
-msgstr ""
+msgstr "ተለዋዋጭ ሜዳዎች ምንም አይነት ቢሆን: ሀይለኛ ማድረግ ይቻላል: አቅጣጫ ከ ተሰጣቸው በ እንደገና መመጠኛ አሰራር ደረጃ ውስጥ በ ንዑስ አሰራር ወይንም ተግባሮች ውስጥ: ብዙ ጊዜ እርስዎ ማሰናዳት የሚችሉት የ ማዘጋጃውን መጠን ነው አንድ ጊዜ እና እርስዎ ማሻሻል አይችሉም: በ አሰራሩ ውስጥ: እርስዎ መግለጽ ይችላሉ ማዘጋጃ እንደገና መመጠኛ አረፍተ ነገር በ መጠቀም በ ቁጥር መግለጫ ውስጥ የ ሜዳዎችን መጠን ለ መግለጽ"
#: 03102101.xhp
msgctxt ""
@@ -26121,7 +26109,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "Bool"
-msgstr ""
+msgstr "ቡል"
#: 03102200.xhp
msgctxt ""
@@ -26209,7 +26197,7 @@ msgctxt ""
"par_id3147560\n"
"help.text"
msgid "Bool"
-msgstr ""
+msgstr "ቡል"
#: 03102300.xhp
msgctxt ""
@@ -26313,7 +26301,7 @@ msgctxt ""
"par_id3156344\n"
"help.text"
msgid "Bool"
-msgstr ""
+msgstr "ቡል"
#: 03102400.xhp
msgctxt ""
@@ -26409,7 +26397,7 @@ msgctxt ""
"par_idN1056C\n"
"help.text"
msgid "Bool"
-msgstr ""
+msgstr "ቡል"
#: 03102450.xhp
msgctxt ""
@@ -26489,7 +26477,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "Bool"
-msgstr ""
+msgstr "ቡል"
#: 03102600.xhp
msgctxt ""
@@ -26585,7 +26573,7 @@ msgctxt ""
"par_id3148944\n"
"help.text"
msgid "Bool"
-msgstr ""
+msgstr "ቡል"
#: 03102700.xhp
msgctxt ""
@@ -26695,7 +26683,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "Bool"
-msgstr ""
+msgstr "ቡል"
#: 03102800.xhp
msgctxt ""
@@ -27329,25 +27317,23 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Static Statement [Runtime]"
-msgstr ""
+msgstr "የ ተወሰነ አረፍተ ነገር [ማስኬጃ ጊዜ]"
#: 03103500.xhp
-#, fuzzy
msgctxt ""
"03103500.xhp\n"
"bm_id3149798\n"
"help.text"
msgid "<bookmark_value>Static statement</bookmark_value>"
-msgstr "<bookmark_value>Static statement</bookmark_value>"
+msgstr "<bookmark_value>የ ተወሰነ አረፍተ ነገር</bookmark_value>"
#: 03103500.xhp
-#, fuzzy
msgctxt ""
"03103500.xhp\n"
"hd_id3149798\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement [Runtime]\">Static Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement [Runtime]\">Static Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement [Runtime]\">የ ተወሰነ አረፍተ ነገር [ማስኬጃ ጊዜ]</link>"
#: 03103500.xhp
msgctxt ""
@@ -27363,7 +27349,7 @@ msgctxt ""
"par_id3147264\n"
"help.text"
msgid "The <emph>Static statement</emph> cannot be used to define variable arrays. Arrays must be specified according to a fixed size."
-msgstr ""
+msgstr "የ <emph>ተወሰነ አረፍተ ነገር</emph> መጠቀም አይችሉም ለ መግለጽ የ ተለዋዋጭ ማዘጋጃ: በ ተወሰነ መጠን ማዘጋጃ መወሰን አለበት"
#: 03103500.xhp
msgctxt ""
@@ -27403,7 +27389,7 @@ msgctxt ""
"par_id3151115\n"
"help.text"
msgid "' Function for initialization of the static variable"
-msgstr ""
+msgstr "' ተግባር ለ ማስጀመሪያ የ ተወሰነ ተለዋዋጭ"
#: 03103500.xhp
msgctxt ""
@@ -27864,7 +27850,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "corresponds to the command block:"
-msgstr ""
+msgstr "ከ ትእዛዝ ክፍሎች ጋር ይስማማል:"
#: 03103800.xhp
msgctxt ""
@@ -28681,7 +28667,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Bool"
-msgstr ""
+msgstr "ቡል"
#: 03104400.xhp
msgctxt ""
@@ -28793,7 +28779,7 @@ msgctxt ""
"par_id3145315\n"
"help.text"
msgid "Bool"
-msgstr ""
+msgstr "ቡል"
#: 03104500.xhp
msgctxt ""
@@ -28929,7 +28915,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "Bool"
-msgstr ""
+msgstr "ቡል"
#: 03104600.xhp
msgctxt ""
@@ -33960,7 +33946,7 @@ msgctxt ""
"par_id3149294\n"
"help.text"
msgid "The CreateUnoListener method requires two parameters. The first is a prefix and is explained in detail below. The second parameter is the fully qualified name of the Listener interface that you want to use."
-msgstr "ለ መፍጠር Uno አድማጭ ዘዴ ሁለት ደንቦች ይፈልጋል: የ መጀመሪያው መነሻዎች ነው እና ከ ታች በኩል ይገለጻል: ሁለተኛው ደንብ ሙሉ የ አድማጭ ስም ገጽታ የሚያሟላ ነው እርስዎ መጠቀም የሚፈልጉትን"
+msgstr "ለ መፍጠር የ Uno አድማጭ ዘዴ ሁለት ደንቦች ይፈልጋል: የ መጀመሪያው መነሻዎች ነው እና ከ ታች በኩል ይገለጻል: ሁለተኛው ደንብ ሙሉ የ አድማጭ ስም ገጽታ የሚያሟላ ነው እርስዎ መጠቀም የሚፈልጉትን"
#: 03132000.xhp
msgctxt ""
@@ -34454,7 +34440,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
-msgstr ""
+msgstr "ይህን CreateUnoValue መቀየር አይቻልም ወደ ተወሰነ Uno አይነት: እና ስህተት ይፈጠራል: ለ መቀየሪያ: ይህን የ አይነት መቀየሪያ ግልጋሎት ይጠቀሙ"
#: 03132300.xhp
msgctxt ""
@@ -34463,7 +34449,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "This function is intended for use in situations where the default Basic to Uno type converting mechanism is insufficient. This can happen when you try to access generic Any based interfaces, such as XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic. The Basic runtime does not recognize these types as they are only defined in the corresponding service."
-msgstr ""
+msgstr "ይህ ተግባር የታለመው ለ አንዳንዱ ሁኔታዎች ነው: ነባር Basic ወደ Uno አይነት መቀየር በቂ በማይሆንበት ጊዜ ነው: ይህ ሊፈጠር የሚችለው እርስዎ የ ተወሰነ ክፍል ማንኛውንም ገጽታ መሰረት ያደረገ ጋር መድረስ ሲፈልጉ ነው: እንደ Xባህሪ ማሰናጃ::ማሰናጃ የ ባህሪ ዋጋ( ስም: ዋጋ) ወይንም X???የያዘውን::ማስገቢያ በ???( ???, ዋጋ ) ከ $[officename] Basic. የ Basic runtime እነዚህ አይነቶችን አያውቅም: እነዚህ የሚገለጹት በ ተመሳሳይ ግልጋሎት ነው"
#: 03132300.xhp
msgctxt ""
@@ -34472,7 +34458,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "In this type of situation, $[officename] Basic chooses the best matching type for the Basic type that you want to convert. However, if the wrong type is selected, an error occurs. You use the CreateUnoValue() function to create a value for the unknown Uno type."
-msgstr ""
+msgstr "በ እንደዚህ አይነት ሁኔታ ውስጥ $[officename] Basic በጣም ተስማሚውን አይነት ይመርጣል ለ Basic አይነት እርስዎ መቀየር የሚፈልጉትን: ነገር ግን: የ ተሳሳተ አይነት ከ ተመረጠ: ስህተት ይፈጠራል: ለ እርስዎ ይታያል የ CreateUnoValue() ተግባር ለ መፍጠር ዋጋው ላልታወቀ Uno አይነት"
#: 03132300.xhp
msgctxt ""
@@ -34481,7 +34467,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "You can also use this function to pass non-Any values, but this is not recommend. If Basic already knows the target type, using the CreateUnoValue() function will only lead to additional converting operations that slow down the Basic execution."
-msgstr ""
+msgstr "እርስዎ እንዲሁም ይህን ተግባር መጠቀም ይችላሉለማለፍ ምንም-ማንኛውንም ዋጋዎች: ነገር ግን ይህን አንመክርም: Basic ቀደም ብሎ ኢላማውን አይነት ያውቃል: በ መጠቀም የ CreateUnoValue() ተግባር የሚመራው ወደ ተጨማሪ መቀየሪያ ተግባር ነው: ይህ የ Basic መፈጸሚያን ያዘገየዋል"
#: 03132400.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared/02.po b/source/am/helpcontent2/source/text/sbasic/shared/02.po
index 284f67c3961..194e20dca57 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2016-12-09 00:19+0000\n"
+"PO-Revision-Date: 2016-12-13 03:02+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481242789.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481598177.000000\n"
#: 11010000.xhp
msgctxt ""
@@ -1525,7 +1525,7 @@ msgctxt ""
"46\n"
"help.text"
msgid "Formatted Field"
-msgstr "የአቀራረብ ሜዳ"
+msgstr "የ ሜዳ አቀራረብ"
#: 20000000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc.po b/source/am/helpcontent2/source/text/scalc.po
index eb419ca57cd..12fb24d47e7 100644
--- a/source/am/helpcontent2/source/text/scalc.po
+++ b/source/am/helpcontent2/source/text/scalc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2016-12-01 01:00+0000\n"
+"PO-Revision-Date: 2016-12-23 17:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480554012.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482514670.000000\n"
#: main0000.xhp
msgctxt ""
@@ -938,7 +938,7 @@ msgctxt ""
"par_id192266\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">በክፍሉ ውስጥ ያሉትን ይዞታዎች በግራ ማሰለፊያ </ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">በ ክፍሉ ውስጥ ያሉትን ይዞታዎች በ ግራ ማሰለፊያ </ahelp>"
#: main0202.xhp
msgctxt ""
@@ -1482,7 +1482,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">functions</link>, including statistical and banking functions, that you can use to create formulas to perform complex calculations on your data."
-msgstr "$[officename] ሰንጠረዥ ለ እርስዎ የሚያቀርበው <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">ተግባሮች</link>, እንደ statistical እና የ ባንክ ተግባሮች ያካትታሉ: እነዚህ ተግባሮች እርስዎ መቀመሪያ በመጠቀም ለ እርስዎ ዳታ ውስብስብ ስሌቶች መፍጠር እና ማስላት ያስችሎታል"
+msgstr "$[officename] ሰንጠረዥ ለ እርስዎ የሚያቀርበው <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">ተግባሮች</link>, እንደ ስታትስቲክስ እና የ ባንክ ተግባሮች ያካትታሉ: እነዚህ ተግባሮች እርስዎ መቀመሪያ በመጠቀም ለ እርስዎ ዳታ ውስብስብ ስሌቶች መፍጠር እና ማስላት ያስችሎታል"
#: main0503.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/00.po b/source/am/helpcontent2/source/text/scalc/00.po
index 6e3d1ccd3cf..6bf5f2deaea 100644
--- a/source/am/helpcontent2/source/text/scalc/00.po
+++ b/source/am/helpcontent2/source/text/scalc/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-12-01 01:43+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-23 17:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480556626.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482514993.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -333,7 +333,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "Insert Cells Right"
-msgstr "ክፍሎች በቀኝ በኩል ማስገቢያ"
+msgstr "ክፍሎች በ ቀኝ በኩል ማስገቢያ"
#: 00000404.xhp
msgctxt ""
@@ -553,8 +553,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">ይምረጡ <emph>ስሞች - ማስገቢያ </emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr "<variable id=\"einamen\">ይምረጡ <emph>ማስገቢያ - የተሰየሙ መጠኖች እና መግለጫዎች </emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"37\n"
"help.text"
msgid "<variable id=\"eiextdata\">Choose <emph>Sheet - Link to External Data</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"eiextdata\">ይምረጡ <emph>ወረቀት - ወደ ውጪ ዳታ አገናኝ</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -571,8 +571,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "ይምረጡ <emph>ማስገቢያ - ስሞች - መግለጫ</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr "ይምረጡ <emph>ወረቀት - የተሰየሙ መጠኖች እና መግለጫዎች - መግለጫ </emph>"
#: 00000404.xhp
msgctxt ""
@@ -589,8 +589,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">ይምረጡ <emph>ማስገቢያ - ስሞች - ማስገቢያ</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr "<variable id=\"einaei\">ይምረጡ <emph>ወረቀት - የተሰየሙ መጠኖች እና መግለጫዎች - ማስገቢያ </emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -598,8 +598,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">ይምረጡ <emph>ማስገቢያ - ስም - መፍጠሪያ</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr "<variable id=\"einaueb\">ይምረጡ <emph>ወረርቀት - የተሰየሙ መጠኖች እና መግለጫዎች - መፍጠሪያ</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -607,8 +607,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">ይምረጡ <emph>ማስገቢያ - ስሞች - ምልክቶች</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr "<variable id=\"einabesch\">ይምረጡ <emph>ወረቀት - የተሰየሙ መጠኖች እና መግለጫዎች - ምልክቶች </emph></variable>"
#: 00000405.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index 2820aec96bb..01f2fe64af7 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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-12-09 17:20+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-23 17:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481304030.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482514998.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1336,7 +1336,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "Right"
-msgstr "በቀኝ"
+msgstr "በ ቀኝ"
#: 02140600.xhp
msgctxt ""
@@ -4373,7 +4373,7 @@ msgctxt ""
"46\n"
"help.text"
msgid "<item type=\"input\">Frank</item>"
-msgstr "<item type=\"input\">ግልጽ</item>"
+msgstr "<item type=\"input\">Frank</item>"
#: 04060101.xhp
msgctxt ""
@@ -4463,7 +4463,7 @@ msgctxt ""
"83\n"
"help.text"
msgid "The formula in cell B16 is =DCOUNT(A1:E10;D1;A13:E14)"
-msgstr "መቀመሪያ በ ክፍል B16 ነው =ዳታ መቁጠሪያ(A1:E10;0;A13:E14)"
+msgstr "መቀመሪያ በ ክፍል B16 ነው =ዳታ መቁጠሪያ(A1:E10;D1;A13:E14)"
#: 04060101.xhp
msgctxt ""
@@ -5746,7 +5746,7 @@ msgctxt ""
"360\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Calculates the amount of depreciation for a settlement period as degressive amortization.</ahelp> Unlike AMORLINC, a depreciation coefficient that is independent of the depreciable life is used here."
-msgstr ""
+msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">ዋጋው የሚቀንስበትን መጠን ማስሊያ ለ ስምምነት ጊዜ እንደ መጠኑ የሚቀንሰው </ahelp> ተመሳሳይ አይደለም ከ እርጅናው በ ተወሰነ ጊዜ ውስጥ ቀጥተኛ ዋጋው የሚቀንስበት: ዋጋው የሚቀንስበትን ኮኦፊሺየንት ነፃ ነው: ከ እርጅናው ህይወቱ እዚህ ከ ተጠቀሙት"
#: 04060103.xhp
msgctxt ""
@@ -5844,7 +5844,7 @@ msgctxt ""
"370\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Calculates the amount of depreciation for a settlement period as linear amortization. If the capital asset is purchased during the settlement period, the proportional amount of depreciation is considered.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">ዋጋው የሚቀንስበትን መጠን ማስሊያ ለ ስምምነት ጊዜ እንደ ቀጥተኛ መጠኑ የሚቀንሰው የ ንብረቱ ካፒታል ከ ተገዛ በ ስምምነት ጊዜ ውስጥ: ተመጣጣኝ የ እርጅና መጠን ይወሰዳል </ahelp>"
#: 04060103.xhp
msgctxt ""
@@ -5924,7 +5924,7 @@ msgctxt ""
"bm_id3145257\n"
"help.text"
msgid "<bookmark_value>ACCRINT function</bookmark_value>"
-msgstr "<bookmark_value>ACCRINT function</bookmark_value>"
+msgstr "<bookmark_value>ውዝፍ ወለድ ተግባር</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -7702,7 +7702,7 @@ msgctxt ""
"par_idN10E621\n"
"help.text"
msgid "If the payments take place at irregular intervals, use the <link href=\"text/scalc/01/04060118.xhp#xirr\" name=\"XIRR\">XIRR</link> function."
-msgstr ""
+msgstr "ክፍያው የሚካሄደው ስርአት ባልተከተለ ክፍተት ከሆነ: ይህን ይጠቀሙ የ <link href=\"text/scalc/01/04060118.xhp#xirr\" name=\"XIRR\">የ ውስጥ ገንዘብ ስርአቱን ለማይከተል ይመልሳል</link> ተግባር"
#: 04060103.xhp
msgctxt ""
@@ -9257,7 +9257,7 @@ msgctxt ""
"par_id3166442\n"
"help.text"
msgid "<item type=\"input\">=ISLOGICAL(99)</item> returns FALSE, because 99 is a number, not a logical value."
-msgstr "<item type=\"input\">=ISLOGICAL(99)</item> ይመልሳል ሀሰት: ምክንያቱም 99 ቁጥር ነው: logical value አይደለም"
+msgstr "<item type=\"input\">=ሎጂካል ነው(99)</item> ይመልሳል ሀሰት: ምክንያቱም 99 ቁጥር ነው: ሎጂካል ዋጋ አይደለም"
#: 04060104.xhp
msgctxt ""
@@ -9265,7 +9265,7 @@ msgctxt ""
"par_id3556016\n"
"help.text"
msgid "<item type=\"input\">=ISLOGICAL(ISNA(D4))</item> returns TRUE whatever the contents of cell D4, because ISNA() returns a logical value."
-msgstr "<item type=\"input\">=ISLOGICAL(ዝአ(D4))</item> ይመልሳል እውነት ምንም ይዞታ ቢይዝ ክፍል D4: ምክንያቱም ዝአ() ይመልሳል logical value."
+msgstr "<item type=\"input\">=ሎጂካል ነው(ዝአ(D4))</item> ይመልሳል እውነት ምንም ይዞታ ቢይዝ ክፍል D4: ምክንያቱም ዝአ() ይመልሳል ሎጂካል ዋጋ"
#: 04060104.xhp
msgctxt ""
@@ -10177,7 +10177,7 @@ msgctxt ""
"par_id3151004\n"
"help.text"
msgid "Returns the complete cell address in Lotus™ notation."
-msgstr ""
+msgstr "ሙሉ የ ክፍል አድራሻ ይመልሳል በ Lotus™ ምልክት"
#: 04060104.xhp
msgctxt ""
@@ -11327,7 +11327,7 @@ msgctxt ""
"par_id3150020\n"
"help.text"
msgid "ACOS(Number)"
-msgstr "ACOS(Number)"
+msgstr "አርክኮሳይን(ቁጥር)"
#: 04060106.xhp
msgctxt ""
@@ -11359,7 +11359,7 @@ msgctxt ""
"par_id3150128\n"
"help.text"
msgid "<item type=\"input\">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)"
-msgstr "<item type=\"input\">=ACOS(-1)</item> ይመልሳል 3.14159265358979 (PI radians)"
+msgstr "<item type=\"input\">=አርክኮሳይን(-1)</item> ይመልሳል 3.14159265358979 (ፓይ ራዲያንስ)"
#: 04060106.xhp
msgctxt ""
@@ -11367,7 +11367,7 @@ msgctxt ""
"par_id8792382\n"
"help.text"
msgid "<item type=\"input\">=DEGREES(ACOS(0.5))</item> returns 60. The cosine of 60 degrees is 0.5."
-msgstr "<item type=\"input\">=DEGREES(ACOS(0.5))</item> ይመልሳል 60. የ ኮሳይን ለ 60 ዲግሪዎች ነው 0.5."
+msgstr "<item type=\"input\">=ዲግሪዎች(አርክኮሳይን(0.5))</item> ይመልሳል 60. የ ኮሳይን ለ 60 ዲግሪዎች ነው 0.5."
#: 04060106.xhp
msgctxt ""
@@ -11519,7 +11519,7 @@ msgctxt ""
"par_id3155375\n"
"help.text"
msgid "<item type=\"input\">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians)."
-msgstr "<item type=\"input\">=ACOT(1)</item> ይመልሳል 0.785398163397448 (PI/4 radians)."
+msgstr "<item type=\"input\">=አርክኮታንጀንት(1)</item> ይመልሳል 0.785398163397448 (ፓይ/4 ራዲያንስ)."
#: 04060106.xhp
msgctxt ""
@@ -11527,7 +11527,7 @@ msgctxt ""
"par_id8589434\n"
"help.text"
msgid "<item type=\"input\">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1."
-msgstr "<item type=\"input\">=DEGREES(ACOT(1))</item> ይመልሳል 45. ታንጀንት ለ 45 ዲግሪዎች 1. ነው"
+msgstr "<item type=\"input\">=ዲግሪዎች(አርክኮታንጀንት(1))</item> ይመልሳል 45. ታንጀንት ለ 45 ዲግሪዎች 1. ነው"
#: 04060106.xhp
msgctxt ""
@@ -11567,7 +11567,7 @@ msgctxt ""
"par_id3147172\n"
"help.text"
msgid "ACOTH(Number)"
-msgstr "ACOTH(Number)"
+msgstr "ግልባጭ ሀይፐርቦሊክ ኮታንጀንት(ቁጥር)"
#: 04060106.xhp
msgctxt ""
@@ -11727,7 +11727,7 @@ msgctxt ""
"par_id3150882\n"
"help.text"
msgid "ASINH(Number)"
-msgstr "ASINH(Number)"
+msgstr "ግልባጭ ሀይፐርቦሊክ ሳይን(ቁጥር)"
#: 04060106.xhp
msgctxt ""
@@ -11751,7 +11751,7 @@ msgctxt ""
"par_id3156120\n"
"help.text"
msgid "<item type=\"input\">=ASINH(-90)</item> returns approximately -5.1929877."
-msgstr "<item type=\"input\">=ASINH(-90)</item> ይመልሳል በ ግምት -5.1929877."
+msgstr "<item type=\"input\">=ግልባጭ ሀይፐርቦሊክ ሳይን(-90)</item> ይመልሳል በ ግምት -5.1929877."
#: 04060106.xhp
msgctxt ""
@@ -11759,7 +11759,7 @@ msgctxt ""
"par_id4808496\n"
"help.text"
msgid "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
-msgstr "<item type=\"input\">=ASINH(SINH(4))</item> ይመልሳል 4."
+msgstr "<item type=\"input\">=ግልባጭ ሀይፐርቦሊክ ሳይን(ሀይፐርቦሊክ ሳይን(4))</item> ይመልሳል 4."
#: 04060106.xhp
msgctxt ""
@@ -12047,7 +12047,7 @@ msgctxt ""
"par_id3154213\n"
"help.text"
msgid "COS(Number)"
-msgstr "COS(Number)"
+msgstr "ኮሳይን(ቁጥር)"
#: 04060106.xhp
msgctxt ""
@@ -12087,7 +12087,7 @@ msgctxt ""
"par_id3147516\n"
"help.text"
msgid "<item type=\"input\">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees."
-msgstr "<item type=\"input\">=COS(RADIANS(60))</item> ይመልሳል 0.5, የ ኮሳይን ለ 60 ዲግሪዎች"
+msgstr "<item type=\"input\">=ኮሳይን(ራዲያንስ(60))</item> ይመልሳል 0.5, የ ኮሳይን ለ 60 ዲግሪዎች"
#: 04060106.xhp
msgctxt ""
@@ -12151,7 +12151,7 @@ msgctxt ""
"par_id3154099\n"
"help.text"
msgid "<item type=\"input\">=COSH(0)</item> returns 1, the hyperbolic cosine of 0."
-msgstr "<item type=\"input\">=COSH(0)</item> ይመልሳል 1, የ ሀይፐርቦሊክ ኮሳይን ለ 0."
+msgstr "<item type=\"input\">=ሀይፐርቦሊክ ኮሳይን(0)</item> ይመልሳል 1, የ ሀይፐርቦሊክ ኮሳይን ለ 0."
#: 04060106.xhp
msgctxt ""
@@ -12975,7 +12975,7 @@ msgctxt ""
"par_id3159192\n"
"help.text"
msgid "<item type=\"input\">=GCD_EXCEL2003(5;15;25)</item> returns 5."
-msgstr "<item type=\"input\">=ትልቁ የ ጋራ አካፋይ_መጨመሪያ(5;15;25)</item> ይመልሳል 5."
+msgstr "<item type=\"input\">=ትልቁ የ ጋራ አካፋይ_EXCEL2003(5;15;25)</item> ይመልሳል 5."
#: 04060106.xhp
msgctxt ""
@@ -13103,7 +13103,7 @@ msgctxt ""
"par_id3145135\n"
"help.text"
msgid "<item type=\"input\">=LCM_EXCEL2003(5;15;25)</item> returns 75."
-msgstr "<item type=\"input\">=ትንሹ የ ጋራ አካፋይ_መጨመሪያ(5;15;25)</item> ይመልሳል 75."
+msgstr "<item type=\"input\">=ትንሹ የ ጋራ አካፋይ_EXCEL2003(5;15;25)</item> ይመልሳል 75."
#: 04060106.xhp
msgctxt ""
@@ -13895,7 +13895,7 @@ msgctxt ""
"bm_id3152418\n"
"help.text"
msgid "<bookmark_value>MULTINOMIAL function</bookmark_value>"
-msgstr "<bookmark_value>MULTINOMIAL function</bookmark_value>"
+msgstr "<bookmark_value>መልቲኖሚያል ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -14327,7 +14327,7 @@ msgctxt ""
"par_id3158374\n"
"help.text"
msgid "<item type=\"input\">=MOD(22;3)</item> returns 1, the remainder when 22 is divided by 3."
-msgstr "<item type=\"input\">=ዘደ(22;3)</item> ይመልሳል 1, ቀሪውን 22 ሲካፈል በ 3."
+msgstr "<item type=\"input\">=ዘዴ(22;3)</item> ይመልሳል 1, ቀሪውን 22 ሲካፈል በ 3."
#: 04060106.xhp
msgctxt ""
@@ -14343,7 +14343,7 @@ msgctxt ""
"bm_id3144592\n"
"help.text"
msgid "<bookmark_value>QUOTIENT function</bookmark_value> <bookmark_value>divisions</bookmark_value>"
-msgstr "<bookmark_value>ውጤት ተግባር</bookmark_value> <bookmark_value>ማካፈያ</bookmark_value>"
+msgstr "<bookmark_value>የ ክፍያ ውጤት ተግባር</bookmark_value> <bookmark_value>ማካፈያ</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -14351,7 +14351,7 @@ msgctxt ""
"hd_id3144592\n"
"help.text"
msgid "QUOTIENT"
-msgstr "ውጤት"
+msgstr "የ ክፍያ ውጤት"
#: 04060106.xhp
msgctxt ""
@@ -14375,7 +14375,7 @@ msgctxt ""
"par_id3144659\n"
"help.text"
msgid "QUOTIENT(Numerator; Denominator)"
-msgstr "ውጤት(አካፋይ: ተካፋይ)"
+msgstr "የ ክፍያ ውጤት(አካፋይ: ተካፋይ)"
#: 04060106.xhp
msgctxt ""
@@ -14391,7 +14391,7 @@ msgctxt ""
"par_id7985168\n"
"help.text"
msgid "QUOTIENT is equivalent to <item type=\"literal\">INT(numerator/denominator)</item>, except that it may report errors with different error codes."
-msgstr "ውጤት እኩል ነው ከ <item type=\"literal\">INT(አካፋይ/ተካፋይ)</item> የ ስህተት መግለጫ ከሌለ በስተቀር ከ ተለያዩ የ ስህተት ኮዶች ጋር"
+msgstr "የ ክፍያ ውጤት እኩል ነው ከ <item type=\"literal\">INT(አካፋይ/ተካፋይ)</item> የ ስህተት መግለጫ ከሌለ በስተቀር ከ ተለያዩ የ ስህተት ኮዶች ጋር"
#: 04060106.xhp
msgctxt ""
@@ -14407,7 +14407,7 @@ msgctxt ""
"par_id3144687\n"
"help.text"
msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost."
-msgstr "<item type=\"input\">=ውጤት(11;3)</item> ይመልሳል 3. ቀሪው 2 ይተዋል"
+msgstr "<item type=\"input\">=የ ክፍያ ውጤት(11;3)</item> ይመልሳል 3. ቀሪው 2 ይተዋል"
#: 04060106.xhp
msgctxt ""
@@ -17015,7 +17015,7 @@ msgctxt ""
"par_id300912\n"
"help.text"
msgid "Entered as a matrix formula, delivers the result of three SIN calculations with the arguments 1, 2, and 3."
-msgstr ""
+msgstr "እንደ መቀመሪያ ማስጀመሪያ ገብቷል: የሚያቀርበው ውጤት የ ሶስት ሳይን ስሌቶች ክርክሮችን ነው በ 1, 2, እና 3."
#: 04060107.xhp
msgctxt ""
@@ -17495,7 +17495,7 @@ msgctxt ""
"hd_id3158446\n"
"help.text"
msgid "MUNIT"
-msgstr ""
+msgstr "መለኪያ ክፍል"
#: 04060107.xhp
msgctxt ""
@@ -17503,7 +17503,7 @@ msgctxt ""
"par_id3154121\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_EINHEITSMATRIX\">Returns the unitary square array of a certain size.</ahelp> The unitary array is a square array where the main diagonal elements equal 1 and all other array elements are equal to 0."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_EINHEITSMATRIX\">የ ስኴር ማዘጋጃ ክፍሎች ይመልሳል ለ አንዳንድ መጠኖች: </ahelp> የ ማዘጋጃ ክፍል የ ስኴር ማዘጋጃ ዋናው ሰያፍ አካላቶች እኩል ነው ከ 1 ጋር: እና ሁሉም ሌሎች ማዘጋጃ አካሎች እኩል ናቸው ከ 0. ጋር"
#: 04060107.xhp
msgctxt ""
@@ -18255,7 +18255,7 @@ msgctxt ""
"bm_id3109846\n"
"help.text"
msgid "<bookmark_value>LINEST function</bookmark_value>"
-msgstr "<bookmark_value>ቀጥታ መስመር ተግባር</bookmark_value>"
+msgstr "<bookmark_value>የ ቀጥታ መስመር ተግባር</bookmark_value>"
#: 04060107.xhp
msgctxt ""
@@ -18879,7 +18879,7 @@ msgctxt ""
"bm_id3158146\n"
"help.text"
msgid "<bookmark_value>slopes, see also regression lines</bookmark_value> <bookmark_value>regression lines;LINEST function</bookmark_value>"
-msgstr "<bookmark_value>ስሎፕ: ይህን ዝቅ ማድረጊያ መስመር ይመልከቱ </bookmark_value> <bookmark_value>ዝቅ ማድረጊያ መስመር: ቀጥታ መስመር ተግባር</bookmark_value>"
+msgstr "<bookmark_value>ስሎፕ: ይህን ዝቅ ማድረጊያ መስመር ይመልከቱ </bookmark_value> <bookmark_value>ዝቅ ማድረጊያ መስመር: የ ቀጥታ መስመር ተግባር</bookmark_value>"
#: 04060107.xhp
msgctxt ""
@@ -18927,7 +18927,7 @@ msgctxt ""
"bm_id3145859\n"
"help.text"
msgid "<bookmark_value>RSQ calculations</bookmark_value>"
-msgstr "<bookmark_value>RSQ calculations</bookmark_value>"
+msgstr "<bookmark_value>RSQ ስሌቶች</bookmark_value>"
#: 04060107.xhp
msgctxt ""
@@ -20651,8 +20651,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=ማውጫ(ድምርX;4;1)</item> ይመልሳል ዋጋ ከ መጠን ውስጥ <emph>ድምርX</emph> በ ረድፍ 4 እና አምድ 1 እንደ ተገለጸው በ <emph>ማስገቢያ - ስሞች - መግለጫ</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20668,7 +20668,7 @@ msgctxt ""
"par_id9272133\n"
"help.text"
msgid "<item type=\"input\">=INDEX(A1:B6;0;1)</item> returns a reference to the first column of A1:B6."
-msgstr "<item type=\"input\">=ማውጫ(A1:B6;1)</item> ይመልሳል ማመሳከሪያ ለ መጀመሪያው አምድ ለ A1:B6."
+msgstr "<item type=\"input\">=ማውጫ(A1:B6;0;1)</item> ይመልሳል ማመሳከሪያ ለ መጀመሪያው አምድ ለ A1:B6."
#: 04060109.xhp
msgctxt ""
@@ -20676,8 +20676,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=ማውጫ((በርካታ);4;1)</item> የሚያሳየው ዋጋ የያዘውን ረድፍ 4 ነው እና አምድ 1 የ (በርካታ) መጠን እርስዎ የ ሰየሙትን በ <emph>ማስገቢያ - ስሞች - መግለጫ</emph> እንደ <emph>በርካታ</emph> የ በርካታ መጠን የያዘው በርካታ አራት ማእዘን መጠኖች ነው: እያንዳንዳቸው ከ ረድፍ 4 እና አምድ 1. ጋር: እርስዎ መጥራት ከ ፈለጉ ሁለተኛ አካል ለዚህ በርካታ መጠን ያስገቡ ቁጥር <item type=\"input\">2</item> እንደ የ <emph>መጠን</emph> ደንብ"
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr "<item type=\"input\">=ማውጫ((በርካታ);4;1)</item> የሚያሳየው የያዘውን ዋጋ ነው በ ረድፍ 4 እና አምድ 1 ከ (በርካታ) መጠን ውስጥ: እርስዎ የሰየሙት በ <emph>ወረቀት - የ ተሰየሙ መጠኖች እና መግለጫዎች – መግለጫ</emph> እንደ <emph>በርካታ</emph> የ በርካታ መጠን ሊይዝ ይችላል በርካታ አራት ማእዘን መጠኖች: እያንዳንዱ ከ 4 ረድፍ እና 1. አምድ ጋር: እርስዎ አሁን መጥራት ከፈለጉ ሁለተኛውን ተራ ለዚህ በርካታ መጠን ቁጥር ያስገቡ <item type=\"input\">2</item> እንደ <emph>መጠን</emph> ደንብ"
#: 04060109.xhp
msgctxt ""
@@ -22243,7 +22243,7 @@ msgctxt ""
"par_id2958769\n"
"help.text"
msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item>displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark \"Specification\"."
-msgstr ""
+msgstr "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item>ጽሁፍ መሄጃ ወደ ጽሁፍ ምልክት ማድረጊያ: የ ተወሰነ የ ጽሁፍ ሰነድ ይጭናል: እና ይዘላል ወደ ምልክት ማድረጊያ \"መወሰኛ\""
#: 04060109.xhp
msgctxt ""
@@ -22299,7 +22299,7 @@ msgctxt ""
"par_id4997100\n"
"help.text"
msgid "GETPIVOTDATA(pivot table; Constraints)"
-msgstr ""
+msgstr "የ PIVOT ዳታ ያግኙ(የ pivot ሰንጠረዥ: መከለከያ)"
#: 04060109.xhp
msgctxt ""
@@ -22613,7 +22613,7 @@ msgctxt ""
"hd_id6695455\n"
"help.text"
msgid "BAHTTEXT"
-msgstr ""
+msgstr "BAHTTEXT"
#: 04060110.xhp
msgctxt ""
@@ -22637,7 +22637,7 @@ msgctxt ""
"par_id8780785\n"
"help.text"
msgid "BAHTTEXT(Number)"
-msgstr ""
+msgstr "BAHTTEXT(ቁጥር)"
#: 04060110.xhp
msgctxt ""
@@ -22661,7 +22661,7 @@ msgctxt ""
"par_id3289284\n"
"help.text"
msgid "<item type=\"input\">=BAHTTEXT(12.65)</item> returns a string in Thai characters with the meaning of \"Twelve Baht and sixty five Satang\"."
-msgstr ""
+msgstr "<item type=\"input\">=BAHTTEXT(12.65)</item> ሀረግ ይመልሳል በ Thai ባህሪዎች በ \"Twelve Baht and sixty five Satang\"."
#: 04060110.xhp
msgctxt ""
@@ -22678,7 +22678,7 @@ msgctxt ""
"213\n"
"help.text"
msgid "BASE"
-msgstr ""
+msgstr "BASE"
#: 04060110.xhp
msgctxt ""
@@ -22705,7 +22705,7 @@ msgctxt ""
"216\n"
"help.text"
msgid "BASE(Number; Radix; [MinimumLength])"
-msgstr ""
+msgstr "BASE(ቁጥር: ቤዝ: [አነስተኛ እርዝመት])"
#: 04060110.xhp
msgctxt ""
@@ -23004,7 +23004,7 @@ msgctxt ""
"211\n"
"help.text"
msgid "The code used here does not refer to ASCII, but to the code table currently loaded."
-msgstr ""
+msgstr "እዚህ የ ተጠቀሙት ኮድ ASCII አያመሳክርም: ነገር ግን አሁን የ ተጫነውን የ ኮድ ሰንጠረዥ ያመሳክራል"
#: 04060110.xhp
msgctxt ""
@@ -23110,7 +23110,7 @@ msgctxt ""
"227\n"
"help.text"
msgid "If the radix is 16, a leading x or X or 0x or 0X, and an appended h or H, is disregarded. If the radix is 2, an appended b or B is disregarded. Other characters that do not belong to the number system generate an error."
-msgstr ""
+msgstr "ቤዝ 16, ከሆነ: ቀዳሚ x ወይንም X ወይንም 0x ወይንም 0X, እና የሚጨመረው h ወይንም H: ይወገዳል: ቤዝ 2: ከሆነ የሚጨመረው b ወይንም B ይወገዳል: ሌሎች ባህሪዎች ለ ቁጥር ስርአቱ የማይገቡ ስህተት ይፈጥራሉ"
#: 04060110.xhp
msgctxt ""
@@ -23768,7 +23768,7 @@ msgctxt ""
"par_id2949141\n"
"help.text"
msgid "<item type=\"input\">LEFTB(\"中国\";1)</item> returns \" \" (1 byte is only half a DBCS character and a space character is returned instead)."
-msgstr ""
+msgstr "<item type=\"input\">በ ግራ ባይት(\"中国\";1)</item> ይመልሳል \" \" (1 ባይት ብቻ ግማሽ ድርብ ባይት ባህሪ እና የ ክፍተት ባህሪ በ ምትኩ ይገባል)."
#: 04060110.xhp
msgctxt ""
@@ -23776,7 +23776,7 @@ msgctxt ""
"par_id2949151\n"
"help.text"
msgid "<item type=\"input\">LEFTB(\"中国\";2)</item> returns \"中\" (2 bytes constitute one complete DBCS character)."
-msgstr ""
+msgstr "<item type=\"input\">በ ግራ ባይት(\"中国\";2)</item> ይመልሳል \"中\" (2 ባይቶች የሚፈጥሩት አንድ ሙሉ ድርብ ባይት ባህሪ) ነው"
#: 04060110.xhp
msgctxt ""
@@ -23784,7 +23784,7 @@ msgctxt ""
"par_id2949161\n"
"help.text"
msgid "<item type=\"input\">LEFTB(\"中国\";3)</item> returns \"中 \" (3 bytes constitute one DBCS character and a half; the last character returned is therefore a space character)."
-msgstr ""
+msgstr "<item type=\"input\">በ ግራ ባይት(\"中国\";3)</item> ይመልሳል \"中 \" (3 ባይቶች የሚፈጥሩት አንድ ሙሉ ድርብ ባይት ባህሪ እና ግማሽ ነው: የ መጨረሻው ባህሪ የሚመልሰው የ ክፍተት ባህሪ ነው)."
#: 04060110.xhp
msgctxt ""
@@ -23792,7 +23792,7 @@ msgctxt ""
"par_id2949171\n"
"help.text"
msgid "<item type=\"input\">LEFTB(\"中国\";4)</item> returns \"中国\" (4 bytes constitute two complete DBCS characters)."
-msgstr ""
+msgstr "<item type=\"input\">በ ግራ ባይት(\"中国\";4)</item> ይመልሳል \"中国\" (4 ባይቶች የሚፈጥሩት ሁለት ሙሉ ድርብ ባይት ባህሪዎች ነው)."
#: 04060110.xhp
msgctxt ""
@@ -23800,7 +23800,7 @@ msgctxt ""
"par_id2949181\n"
"help.text"
msgid "<item type=\"input\">LEFTB(\"office\";3)</item> returns \"off\" (3 non-DBCS characters each consisting of 1 byte)."
-msgstr ""
+msgstr "<item type=\"input\">በ ግራ ባይት(\"ቢሮ\";3)</item> ይመልሳል \"ማጥፊያ\" (3 ምንም-ድርብ ባይት ባህሪ እያንዳንዱ የያዘ 1 ባይት ባህሪዎች)."
#: 04060110.xhp
msgctxt ""
@@ -23949,7 +23949,7 @@ msgctxt ""
"par_id2956018\n"
"help.text"
msgid "<item type=\"input\">LENB(\"中\")</item> returns 2 (1 DBCS character consisting of 2 bytes)."
-msgstr ""
+msgstr "<item type=\"input\">የ ባይት እርዝመት(\"中\")</item> ይመልሳል 2 (1 ድርብ ባይት ባህሪ 2 ባይቶች የያዘ)."
#: 04060110.xhp
msgctxt ""
@@ -23957,7 +23957,7 @@ msgctxt ""
"par_id2956028\n"
"help.text"
msgid "<item type=\"input\">LENB(\"中国\")</item> returns 4 (2 DBCS characters each consisting of 2 bytes)."
-msgstr ""
+msgstr "<item type=\"input\">የ ባይት እርዝመት(\"中国\")</item> ይመልሳል 4 (2 ድርብ ባይት ባህሪዎች እያንዳንዳቸው 2 ባይቶች የያዙ)."
#: 04060110.xhp
msgctxt ""
@@ -23965,7 +23965,7 @@ msgctxt ""
"par_id2956038\n"
"help.text"
msgid "<item type=\"input\">LENB(\"office\")</item> returns 6 (6 non-DBCS characters each consisting of 1 byte)."
-msgstr ""
+msgstr "<item type=\"input\">በ ግራ ባይት(\"ቢሮ\")</item> ይመልሳል 6 (6 ምንም-ድርብ ባይት ባህሪዎች እያንዳንዱ የያዘ 1 ባይት)."
#: 04060110.xhp
msgctxt ""
@@ -24214,7 +24214,7 @@ msgctxt ""
"154\n"
"help.text"
msgid "<emph>Number_bytes</emph> specifies the number of characters MIDB will return from text, in bytes."
-msgstr ""
+msgstr "<emph>ቁጥር_ባይቶች</emph> የሚወስነው የ ባህሪዎች ቁጥር ነው: መሀከለኛው ባይት ጽሁፍ ከ ባይቶች ውስጥ ይመልሳል"
#: 04060110.xhp
msgctxt ""
@@ -24230,7 +24230,7 @@ msgctxt ""
"par_id2958417\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";1;0)</item> returns \"\" (0 bytes is always an empty string)."
-msgstr ""
+msgstr "<item type=\"input\">መሀከለኛው ባይት(\"中国\";1;0)</item> ይመልሳል \"\" (0 ቦይቶች ሁል ጊዜ ባዶ ሀረጎች ናቸው)."
#: 04060110.xhp
msgctxt ""
@@ -24238,7 +24238,7 @@ msgctxt ""
"par_id2958427\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";1;1)</item> returns \" \" (1 byte is only half a DBCS character and therefore the result is a space character)."
-msgstr ""
+msgstr "<item type=\"input\">መሀከለኛው ባይት(\"中国\";1;1)</item> ይመልሳል \" \" (1 ባይት ብቻ ግማሽ ድርብ ባይት ባህሪ ነው እና ስለዚህ ውጤቱ የ ክፍተት ባህሪ ይሆናል)."
#: 04060110.xhp
msgctxt ""
@@ -24246,7 +24246,7 @@ msgctxt ""
"par_id2958437\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";1;2)</item> returns \"中\" (2 bytes constitute one complete DBCS character)."
-msgstr ""
+msgstr "<item type=\"input\">መሀከለኛው ባይት(\"中国\"1;2)</item> ይመልሳል \"中\" (2 ባይቶች የሚፈጥሩት አንድ ሙሉ ድርብ ባይት ባህሪ ነው)"
#: 04060110.xhp
msgctxt ""
@@ -24254,7 +24254,7 @@ msgctxt ""
"par_id2958447\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";1;3)</item> returns \"中 \" (3 bytes constitute one and a half DBCS character; the last byte results in a space character)."
-msgstr ""
+msgstr "<item type=\"input\">መሀከለኛው ባይት(\"中国\";1;3)</item> ይመልሳል \"中 \" (3 ባይቶች የሚፈጥሩት አንድ እና ግማሽ ድርብ ባይት ባህሪ: የ መጨረሻው ባይት ውጤት የ ክፍተት ባህሪ ነው)."
#: 04060110.xhp
msgctxt ""
@@ -24262,7 +24262,7 @@ msgctxt ""
"par_id2958457\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";1;4)</item> returns \"中国\" (4 bytes constitute two complete DBCS characters)."
-msgstr ""
+msgstr "<item type=\"input\">መሀከለኛው ባይት(\"中国\";1;4)</item> ይመልሳል \"中国\" (4 ባይቶች የሚፈጥሩት ሁለት ሙሉ ድርብ ባይት ባህሪዎች ነው)."
#: 04060110.xhp
msgctxt ""
@@ -24270,7 +24270,7 @@ msgctxt ""
"par_id2958467\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";2;1)</item> returns \" \" (byte position 2 is not at the beginning of a character in a DBCS string; 1 space character is returned)."
-msgstr ""
+msgstr "<item type=\"input\">መሀከለኛው ባይት(\"中国\";2;1)</item> ይመልሳል \" \" (የ ባይት ቦታ 2 የ መጀመሪያው ባህሪ አይደለም በ ድርብ ባይት ባህሪ ሀረግ ውስጥ: 1 የ ቦታ ባህሪ ይመልሳል)."
#: 04060110.xhp
msgctxt ""
@@ -24278,7 +24278,7 @@ msgctxt ""
"par_id2958477\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";2;2)</item> returns \" \" (byte position 2 points to the last half of the first character in the DBCS string; the 2 bytes asked for therefore constitutes the last half of the first character and the first half of the second character in the string; 2 space characters are therefore returned)."
-msgstr ""
+msgstr "<item type=\"input\">መሀከለኛው ባይት(\"中国\";2;2)</item> ይመልሳል \" \" (የ ባይት ቦታ 2 ነጥቦች ለ መጨረሻው ግማሽ ለ መጀመሪያው ባህሪ በ በ ድርብ ባይት ባህሪ ሀረግ: የ 2 ባይቶች ይጠየቃል ስለዚህ ይቀጥላል የ መጨረሻው ግማሽ ለ መጀመሪያው ባህሪ እና የ መጀመሪያው ግማሽ ለ ሁለተኛው ባህሪ በ ሀረግ ውስጥ: 2 የ ክፍተት ባህሪዎች ይመልሳል)."
#: 04060110.xhp
msgctxt ""
@@ -24286,7 +24286,7 @@ msgctxt ""
"par_id2958487\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";2;3)</item> returns \" 国\" (byte position 2 is not at the beginning of a character in a DBCS string; a space character is returned for byte position 2)."
-msgstr ""
+msgstr "<item type=\"input\">መሀከለኛው ባይት(\"中国\";2;3)</item> ይመልሳል \" 国\" (የ ባይት ቦታ 2 የ መጀመሪያው ባህሪ አይደለም በ ድርብ ባይት ባህሪ ሀረግ ውስጥ: የ ቦታ ባህሪ ይመልሳል ለ ባይት ቦታ 2)."
#: 04060110.xhp
msgctxt ""
@@ -24294,7 +24294,7 @@ msgctxt ""
"par_id2958497\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";3;1)</item> returns \" \" (byte position 3 is at the beginning of a character in a DBCS string, but 1 byte is only half a DBCS character and a space character is therefore returned instead)."
-msgstr ""
+msgstr "<item type=\"input\">መሀከለኛው ባይት(\"中国\";3;1)</item> ይመልሳል \" \" (የ ባይት ቦታ 3 የ መጀመሪያው ባህሪ ነው በ ድርብ ባይት ባህሪ ሀረግ ውስጥ: ነገር ግን 1 ባይት ግማሽ የ ድርብ ባይት ባህሪ ሀረግ እና በሱ ፋንታ የ ክፍተ ባህሪ ይመልሳል)"
#: 04060110.xhp
msgctxt ""
@@ -24302,7 +24302,7 @@ msgctxt ""
"par_id2958507\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"中国\";3;2)</item> returns \"国\" (byte position 3 is at the beginning of a character in a DBCS string, and 2 bytes constitute one DBCS character)."
-msgstr ""
+msgstr "<item type=\"input\">መሀከለኛው ባይት(\"中国\";3;2)</item> ይመልሳል \"国\" (የ ባይት ቦታ 3 የ መጀመሪያው ባህሪ ነው በ ድርብ ባይት ባህሪ ሀረግ ውስጥ: ነገር ግን 2 ባይቶች የሚይዙት አንድ የ ድርብ ባይት ባህሪ ሀረግ ነው)"
#: 04060110.xhp
msgctxt ""
@@ -24310,7 +24310,7 @@ msgctxt ""
"par_id2958517\n"
"help.text"
msgid "<item type=\"input\">MIDB(\"office\";2;3)</item> returns \"ffi\" (byte position 2 is at the beginning of a character in a non-DBCS string, and 3 bytes of a non-DBCS string constitute 3 characters)."
-msgstr ""
+msgstr "<item type=\"input\">መሀከለኛው ባይት(\"ቢሮ\";2;3)</item> ይመልሳል \"ffi\" (የ ባይት ቦታ 2 ነው ለ መጀመሪያ ባህሪ በ ምንም-በ ድርብ ባይት ሀረግ ውስጥ: እና 3 ባይቶች የ ምንም-በ ድርብ ባይት ሀረግ የሚፈጥሩት 3 ባህሪዎች ነው)"
#: 04060110.xhp
msgctxt ""
@@ -24674,7 +24674,7 @@ msgctxt ""
"113\n"
"help.text"
msgid "RIGHTB"
-msgstr ""
+msgstr "የ መጨረሻ ባህሪ"
#: 04060110.xhp
msgctxt ""
@@ -24735,7 +24735,7 @@ msgctxt ""
"par_id2951132\n"
"help.text"
msgid "<item type=\"input\">RIGHTB(\"中国\";1)</item> returns \" \" (1 byte is only half a DBCS character and a space character is returned instead)."
-msgstr ""
+msgstr "<item type=\"input\">በ ቀኝ ባይት(\"中国\";1)</item> ይመልሳል \" \" (1 ባይት ብቻ ግማሽ ድርብ ባይት ባህሪ እና የ ክፍተት ባህሪ በ ምትኩ ይገባል)."
#: 04060110.xhp
msgctxt ""
@@ -24743,7 +24743,7 @@ msgctxt ""
"par_id2951142\n"
"help.text"
msgid "<item type=\"input\">RIGHTB(\"中国\";2)</item> returns \"国\" (2 bytes constitute one complete DBCS character)."
-msgstr ""
+msgstr "<item type=\"input\">በ ቀኝ ባይት(\"中国\";2)</item> ይመልሳል \"国\" (2 ባይቶች የሚፈጥሩት አንድ ሙሉ ድርብ ባይት ባህሪ ነው)"
#: 04060110.xhp
msgctxt ""
@@ -24751,7 +24751,7 @@ msgctxt ""
"par_id2951152\n"
"help.text"
msgid "<item type=\"input\">RIGHTB(\"中国\";3)</item> returns \" 国\" (3 bytes constitute one half DBCS character and one whole DBCS character; a space is returned for the first half)."
-msgstr ""
+msgstr "<item type=\"input\">በ ቀኝ ባይት(\"中国\";3)</item> ይመልሳል \" 国\" (3 ባይቶች የሚፈጥሩት አንድ ግማሽ ድርብ ባይት ባህሪዎች ነው እና አንድ ሙሉ ድርብ ባይት ባህሪዎች ነው: ለ መጀመሪያው ግማሽ ክፍተት ይመልሳል)."
#: 04060110.xhp
msgctxt ""
@@ -24759,7 +24759,7 @@ msgctxt ""
"par_id2951162\n"
"help.text"
msgid "<item type=\"input\">RIGHTB(\"中国\";4)</item> returns \"中国\" (4 bytes constitute two complete DBCS characters)."
-msgstr ""
+msgstr "<item type=\"input\">በ ቀኝ ባይት(\"中国\";4)</item> ይመልሳል \"中国\" (4 ባይቶች የሚፈጥሩት ሁለት ሙሉ ድርብ ባይት ባህሪዎች ነው)."
#: 04060110.xhp
msgctxt ""
@@ -24767,7 +24767,7 @@ msgctxt ""
"par_id2951172\n"
"help.text"
msgid "<item type=\"input\">RIGHTB(\"office\";3)</item> returns \"ice\" (3 non-DBCS characters each consisting of 1 byte)."
-msgstr ""
+msgstr "<item type=\"input\">በ ቀኝ ባይት(\"ቢሮ\";3)</item> ይመልሳል \"ice\" (3 ምንም-ድርብ ባይት ባህሪ እያንዳንዱ የያዘ 1 ባይት ባህሪዎች)."
#: 04060110.xhp
msgctxt ""
@@ -25674,7 +25674,7 @@ msgctxt ""
"bm_id3149566\n"
"help.text"
msgid "<bookmark_value>ISLEAPYEAR function</bookmark_value><bookmark_value>leap year determination</bookmark_value>"
-msgstr "<bookmark_value>ሙሉ ነው ተግባር</bookmark_value> <bookmark_value>ሙሉ integers</bookmark_value>"
+msgstr "<bookmark_value>የ መዝለያ አመት ተግባር</bookmark_value><bookmark_value>የ መዝለያ አመት መወሰኛ</bookmark_value>"
#: 04060111.xhp
msgctxt ""
@@ -25737,7 +25737,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "=ISLEAPYEAR(A1) returns 1, if A1 contains 1968-02-29, the valid date 29th of February 1968 in your locale setting."
-msgstr ""
+msgstr "=የ መዝለያ አመት ነው(A1) ይመልሳል 1, ከሆነ A1 የያዘው 1968-02-29, ዋጋ ያለው ቀን ከሆነ 29ኛ የ February 1968 በ እርስዎ የ ቋንቋ ማሰናጃ ውስጥ"
#: 04060111.xhp
msgctxt ""
@@ -25745,7 +25745,7 @@ msgctxt ""
"par_idN107E7\n"
"help.text"
msgid "You may also use =ISLEAPYEAR(DATE(1968;2;29)) or =ISLEAPYEAR(\"1968-02-29\") giving the date string in the ISO 8601 notation."
-msgstr ""
+msgstr "እርስዎ እንዲሁም መጠቀም ይችላሉ =የ መዝለያ አመት ነው(ቀን(1968;2;29)) ወይንም =የ መዝለያ አመት ነው(\"1968-02-29\") የ ቀን ሀረግ ከ ተሰጠ በ ISO 8601 ምልክት ውስጥ"
#: 04060111.xhp
msgctxt ""
@@ -25753,7 +25753,7 @@ msgctxt ""
"par_idN107EA\n"
"help.text"
msgid "Never use =ISLEAPYEAR(2/29/68), because this would first evaluate 2 divided by 29 divided by 68, and then calculate the ISLEAPYEAR function from this small number as a serial date number."
-msgstr "በፍጹም አይጠቀሙ =የ መዝለያ አመት ነው(2/29/68), ምክንያቱም ይህ በ መጀመሪያ ይገመግማል 2 ሲካፈል በ 29 ሲካፈል በ 68, እና ከዛ ያሰላል የ መዝለያ አመት ነው ተግባር ከዚህ ትንሽ ቁጥር ውስጥ እንደ ተከታታይ የ ቀን ቁጥር"
+msgstr "በፍጹም አይጠቀሙ =የ መዝለያ አመት ነው(2/29/68): ምክንያቱም ይህ በ መጀመሪያ ይገመግማል 2 ሲካፈል በ 29 ሲካፈል በ 68, እና ከዛ ያሰላል የ መዝለያ አመት ነው ተግባር ከዚህ ትንሽ ቁጥር ውስጥ እንደ ተከታታይ የ ቀን ቁጥር"
#: 04060111.xhp
msgctxt ""
@@ -26428,7 +26428,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "Under Windows: FAR PASCAL (_far _pascal)"
-msgstr ""
+msgstr "በ መስኮት ውስጥ: FAR PASCAL (_far _pascal)"
#: 04060112.xhp
msgctxt ""
@@ -26482,7 +26482,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "Paramtype"
-msgstr ""
+msgstr "መደበኛ አይነት"
#: 04060112.xhp
msgctxt ""
@@ -29013,13 +29013,12 @@ msgid "<item type=\"input\">=DEC2OCT(100;4)</item> returns 0144."
msgstr "<item type=\"input\">=DEC2OCT(100;4)</item> ይመልሳል 0144."
#: 04060115.xhp
-#, fuzzy
msgctxt ""
"04060115.xhp\n"
"bm_id3083446\n"
"help.text"
msgid "<bookmark_value>ERF function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
-msgstr "<bookmark_value>ሙሉ ነው ተግባር</bookmark_value> <bookmark_value>ሙሉ integers</bookmark_value>"
+msgstr "<bookmark_value>የ ስህተት ዝቅተኛ እና ከፍተኛ ተግባር</bookmark_value><bookmark_value>ጋውሺያን ስህተት የ ተዋሀደ</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -29037,7 +29036,7 @@ msgctxt ""
"136\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_ERF\">Returns values of the Gaussian error integral.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ERF\">የ ጋውሺያን ስህተት የ ተዋሀደ አካል ዋጋዎች ይመልሳል </ahelp>"
#: 04060115.xhp
msgctxt ""
@@ -29094,13 +29093,12 @@ msgid "<item type=\"input\">=ERF(0;1)</item> returns 0.842701."
msgstr "<item type=\"input\">=ERF(0;1)</item> ይመልሳል 0.842701."
#: 04060115.xhp
-#, fuzzy
msgctxt ""
"04060115.xhp\n"
"bm_id2983446\n"
"help.text"
msgid "<bookmark_value>ERF.PRECISE function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
-msgstr "<bookmark_value>ሙሉ ነው ተግባር</bookmark_value> <bookmark_value>ሙሉ integers</bookmark_value>"
+msgstr "<bookmark_value>የ ስህተት ዝቅተኛ እና ከፍተኛ.ትክክለኛ ተግባር</bookmark_value><bookmark_value>ጋውሺያን ስህተት የ ተዋሀደ</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -29109,7 +29107,7 @@ msgctxt ""
"135\n"
"help.text"
msgid "ERF.PRECISE"
-msgstr ""
+msgstr "የ ስህተት ዝቅተኛ እና ከፍተኛ.ትክክለኛ"
#: 04060115.xhp
msgctxt ""
@@ -29117,7 +29115,7 @@ msgctxt ""
"par_id2950381\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ERF_MS\">Returns values of the Gaussian error integral between 0 and the given limit.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_ERF_MS\">ዋጋዎች ይመልሳል የ ጋውሺያን ስህተት አካል በ 0 እና በ ተሰጠው መጠን መካከል </ahelp>"
#: 04060115.xhp
msgctxt ""
@@ -29135,7 +29133,7 @@ msgctxt ""
"138\n"
"help.text"
msgid "ERF.PRECISE(LowerLimit)"
-msgstr ""
+msgstr "የ ስህተት ዝቅተኛ እና ከፍተኛ.ትክክለኛ(ዝቅተኛ መጠን)"
#: 04060115.xhp
msgctxt ""
@@ -29160,7 +29158,7 @@ msgctxt ""
"par_id2952974\n"
"help.text"
msgid "<item type=\"input\">=ERF.PRECISE(1)</item> returns 0.842701."
-msgstr ""
+msgstr "<item type=\"input\">=የ ስህተት ዝቅተኛ እና ከፍተኛ.ትክክለኛ(1)</item> ይመልሳል 0.842701."
#: 04060115.xhp
msgctxt ""
@@ -29186,7 +29184,7 @@ msgctxt ""
"144\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ERFC\">ተጨማሪ ዋጋዎች ይመልሳል ለ ጋውሺያን ስህተት አካል በ x እና በ ኢንፊኒቲ መካከል </ahelp>"
#: 04060115.xhp
msgctxt ""
@@ -29257,7 +29255,7 @@ msgctxt ""
"144\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ERFC_MS\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_ERFC_MS\">ተጨማሪ ዋጋዎች ይመልሳል ለ ጋውሺያን ስህተት አካል በ x እና በ ኢንፊኒቲ መካከል </ahelp>"
#: 04060115.xhp
msgctxt ""
@@ -29850,7 +29848,7 @@ msgctxt ""
"67\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">The result is the argument (the phi angle) of a complex number.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">ውጤቱ ክርክር ነው (ለ ፊ አንግል ) ለ ውስብስብ ቁጥር </ahelp>"
#: 04060116.xhp
msgctxt ""
@@ -30603,7 +30601,7 @@ msgctxt ""
"158\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">The result is a complex number which is returned from a real coefficient and an imaginary coefficient.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">ውጤቱ የ ውስብስብ ቁጥር የ ተመለሰ ከ ሪያል ኮኦፊሸንት እና ከ ኢማጂነሪ ኮኦፊሸንት ይሆናል</ahelp>"
#: 04060116.xhp
msgctxt ""
@@ -30746,7 +30744,7 @@ msgctxt ""
"224\n"
"help.text"
msgid "<item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
-msgstr "<item type=\"input\">=OCT2BIN(3;3)</item> ይመልሳል 011."
+msgstr "<item type=\"input\">=ኦክቶ2ቢን(3;3)</item> ይመልሳል 011."
#: 04060116.xhp
msgctxt ""
@@ -30959,7 +30957,7 @@ msgctxt ""
"180\n"
"help.text"
msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
-msgstr ""
+msgstr "<emph>ግራም</emph>, sg, ፓውንድ ሜትሪክ <emph>u</emph>, ozm, ድንጋይ, ቶን, ግሬይን, ፔኒዌት, hweight, shweight, brton"
#: 04060116.xhp
msgctxt ""
@@ -31013,7 +31011,7 @@ msgctxt ""
"186\n"
"help.text"
msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
-msgstr "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
+msgstr "<emph>ፓስካል</emph>, <emph>አትሞስፌየር</emph>, <emph>በ</emph>, <emph>ሚሚ ሜርኩሪ</emph>, ቶር: ግፊት በ ስዄር ኢንች"
#: 04060116.xhp
msgctxt ""
@@ -31031,7 +31029,7 @@ msgctxt ""
"188\n"
"help.text"
msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
-msgstr "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
+msgstr "<emph>ኒውተን</emph>, <emph>ዳይኔ</emph>, <emph>ዳይኔ</emph> ፓውንድ <emph>ፑንዳል</emph>"
#: 04060116.xhp
msgctxt ""
@@ -31040,7 +31038,7 @@ msgctxt ""
"189\n"
"help.text"
msgid "Energy"
-msgstr ""
+msgstr "ሐይል"
#: 04060116.xhp
msgctxt ""
@@ -31049,7 +31047,7 @@ msgctxt ""
"190\n"
"help.text"
msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
-msgstr "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
+msgstr "<emph>ጁዉል</emph>, <emph>ሀይል</emph>, <emph>ካሎሪ</emph>, <emph>ካሎሪ</emph>, <emph>ኤሌክትሮ ቮልት</emph>, <emph>ኤሌክትሮ ቮልት</emph>የ ፈረስ ጉበት<emph>ዋት</emph>, <emph>ዋት</emph> ፉት ፑንዳል, ቡት, ቡት"
#: 04060116.xhp
msgctxt ""
@@ -31058,7 +31056,7 @@ msgctxt ""
"191\n"
"help.text"
msgid "Power"
-msgstr ""
+msgstr "ሀይል"
#: 04060116.xhp
msgctxt ""
@@ -31067,7 +31065,7 @@ msgctxt ""
"192\n"
"help.text"
msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
-msgstr "<emph>W</emph>, <emph>w</emph>, HP, PS"
+msgstr "<emph>ዋት</emph>, <emph>ዋት</emph> የ ፈረስ ጉልበት, የ ፈረስ ጉልበት"
#: 04060116.xhp
msgctxt ""
@@ -31226,7 +31224,7 @@ msgctxt ""
"par_id3149491\n"
"help.text"
msgid "Z (zetta)"
-msgstr "Z (zetta)"
+msgstr "Z (ዜታ)"
#: 04060116.xhp
msgctxt ""
@@ -31242,7 +31240,7 @@ msgctxt ""
"par_id3149492\n"
"help.text"
msgid "E (exa)"
-msgstr "E (exa)"
+msgstr "E (ኤክሳ)"
#: 04060116.xhp
msgctxt ""
@@ -31258,7 +31256,7 @@ msgctxt ""
"par_id3149493\n"
"help.text"
msgid "P (peta)"
-msgstr "P (peta)"
+msgstr "P (ፔታ)"
#: 04060116.xhp
msgctxt ""
@@ -31274,7 +31272,7 @@ msgctxt ""
"par_id3149494\n"
"help.text"
msgid "T (tera)"
-msgstr "T (tera)"
+msgstr "T (ቴራ)"
#: 04060116.xhp
msgctxt ""
@@ -31290,7 +31288,7 @@ msgctxt ""
"par_id3149495\n"
"help.text"
msgid "G (giga)"
-msgstr "ጊ (ጊጋ)"
+msgstr "G (ጊጋ)"
#: 04060116.xhp
msgctxt ""
@@ -31306,7 +31304,7 @@ msgctxt ""
"par_id3149496\n"
"help.text"
msgid "M (mega)"
-msgstr "ሜ (ሜጋ)"
+msgstr "M (ሜጋ)"
#: 04060116.xhp
msgctxt ""
@@ -31322,7 +31320,7 @@ msgctxt ""
"par_id3149497\n"
"help.text"
msgid "k (kilo)"
-msgstr "ኪ (ኪሎ)"
+msgstr "k (ኪሎ)"
#: 04060116.xhp
msgctxt ""
@@ -31338,7 +31336,7 @@ msgctxt ""
"par_id3149498\n"
"help.text"
msgid "h (hecto)"
-msgstr "ሄ (ሄክቶ)"
+msgstr "h (ሄክቶ)"
#: 04060116.xhp
msgctxt ""
@@ -31402,7 +31400,7 @@ msgctxt ""
"par_id3149502\n"
"help.text"
msgid "m (milli)"
-msgstr "ሚ (ሚሊ)"
+msgstr "m (ሚሊ)"
#: 04060116.xhp
msgctxt ""
@@ -31630,7 +31628,7 @@ msgctxt ""
"212\n"
"help.text"
msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
-msgstr "<emph>ከ ክፍል</emph> ክፍል ነው መቀየሪያው የሚካሄድበት"
+msgstr "<emph>ከ ክፍል</emph> መቀየሪያው የሚካሄድበት ክፍል ነው"
#: 04060116.xhp
msgctxt ""
@@ -31639,7 +31637,7 @@ msgctxt ""
"213\n"
"help.text"
msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
-msgstr "<emph>ወደ ክፍል</emph> ክፍል ነው መቀየሪያው የሚካሄድበት: ሁለቱም ክፍሎች ተመሳሳይ መሆን አለባቸው"
+msgstr "<emph>ወደ ክፍል</emph> መቀየሪያው የሚካሄድበት ክፍል ነው: ሁለቱም ክፍሎች ተመሳሳይ መሆን አለባቸው"
#: 04060116.xhp
msgctxt ""
@@ -32425,7 +32423,7 @@ msgctxt ""
"par_idN10E62\n"
"help.text"
msgid "If the payments take place at regular intervals, use the <link href=\"text/scalc/01/04060103.xhp#irr\" name=\"IRR\">IRR</link> function."
-msgstr ""
+msgstr "ክፍያው የሚካሄደው መደበኛ ክፍተቱን ጠብቆ ከሆነ: ይህን ይጠቀሙ የ <link href=\"text/scalc/01/04060103.xhp#irr\" name=\"IRR\">የ ውስጥ መጠን ለ ተከታታይ ገንዘብ ይመልሳል </link> ተግባር"
#: 04060118.xhp
msgctxt ""
@@ -32673,7 +32671,7 @@ msgctxt ""
"par_idN11138\n"
"help.text"
msgid "If the payments take place at regular intervals, use the <link href=\"text/scalc/01/04060119.xhp#npv\" name=\"NPV\">NPV</link> function."
-msgstr ""
+msgstr "ክፍያው የሚካሄደው መደበኛ ክፍተቱን ጠብቆ ከሆነ: ይህን ይጠቀሙ የ <link href=\"text/scalc/01/04060119.xhp#npv\" name=\"NPV\">የ አሁኑ ካፒታል ዋጋ</link> ተግባር"
#: 04060118.xhp
msgctxt ""
@@ -32769,7 +32767,7 @@ msgctxt ""
"par_id3148804\n"
"help.text"
msgid "RRI(P; PV; FV)"
-msgstr ""
+msgstr "የ ካፒታሉ ዋጋ ሲጨምር እኩል የ ወለድ መጠን ይመልሳል(ካፒታል: የ አሁኑ ዋጋ: የ ወደፊት ዋጋ)"
#: 04060118.xhp
msgctxt ""
@@ -34834,7 +34832,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "=PRICE(\"1999-02-15\"; \"2007-11-15\"; 0.0575; 0.065; 100; 2; 0) returns 95.04287."
-msgstr "=PRICE(\"1999-02-15\"; \"2007-11-15\"; 0.0575; 0.065; 100; 2; 0) ይመልሳል 95.04287."
+msgstr "=የ ደህንነት ወለድ ዋጋ(\"1999-02-15\"; \"2007-11-15\"; 0.0575; 0.065; 100; 2; 0) ይመልሳል 95.04287."
#: 04060119.xhp
msgctxt ""
@@ -35155,7 +35153,7 @@ msgctxt ""
"288\n"
"help.text"
msgid "At an interest rate of 4.75%, a cash value of 25,000 currency units and a future value of 1,000,000 currency units, a duration of 79.49 payment periods is returned. The periodic payment is the resulting quotient from the future value and the duration, in this case 1,000,000/79.49=12,850.20."
-msgstr "በ ወለድ መጠን በ 4.75%,የ ገንዘብ ዋጋ ለ 25,000 ገንዘብ ክፍሎች እና የ ወደፊት ዋጋ ለ 1,000,000 ገንዘብ ክፍሎች: የሚፈጀው ጊዜ ለ 79.49 ክፍያ ጊዜዎች ይመልሳል: የ ክፍያ ጊዜዎች የ ውጤት ውጤት ነው ከ ወደፊት ዋጋ እና የሚፈጀው ጊዜ ጋር: ስለዚህ እንዲህ ይሆናል 1,000,000/79.49=12,850.20."
+msgstr "በ ወለድ መጠን በ 4.75%,የ ገንዘብ ዋጋ ለ 25,000 ገንዘብ ክፍሎች እና የ ወደፊት ዋጋ ለ 1,000,000 ገንዘብ ክፍሎች: የሚፈጀው ጊዜ ለ 79.49 ክፍያ ጊዜዎች ይመልሳል: የ ክፍያ ጊዜዎች የ ውጤት የ ክፍያ ውጤት ነው ከ ወደፊት ዋጋ እና የሚፈጀው ጊዜ ጋር: ስለዚህ እንዲህ ይሆናል 1,000,000/79.49=12,850.20."
#: 04060119.xhp
msgctxt ""
@@ -35256,13 +35254,12 @@ msgid "<item type=\"input\">=SLN(50000;3,500;84)</item> = 553.57 currency units.
msgstr "<item type=\"input\">=የ ንብረት እርጅና በ ቀጥታ-መስመር(50000;3,500;84)</item> = 553.57 የ ገንዘብ ክፍል: በየ ጊዜው በየ ወሩ እርጅናው ለ ቢሮ እቃዎች 553.57 የ ገንዘብ ክፍል ነው"
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"bm_id3153739\n"
"help.text"
msgid "<bookmark_value>MDURATION function</bookmark_value><bookmark_value>Macauley duration</bookmark_value>"
-msgstr "<bookmark_value>ምልክት ተግባር</bookmark_value> <bookmark_value>algebraic ምልክት</bookmark_value>"
+msgstr "<bookmark_value>የተሻሻለው ደህንነት የሚፈጀው ጊዜ ተግባር</bookmark_value><bookmark_value>የ ማካውሌይ የሚፈጀው ጊዜ</bookmark_value>"
#: 04060119.xhp
msgctxt ""
@@ -35403,7 +35400,7 @@ msgctxt ""
"par_idN111381\n"
"help.text"
msgid "If the payments take place at irregular intervals, use the <link href=\"text/scalc/01/04060118.xhp#xnpv\" name=\"XNPV\">XNPV</link> function."
-msgstr ""
+msgstr "ክፍያው የሚካሄደው መደበኛ ክፍተቱን ጠብቆ ካልሆነ: ይህን ይጠቀሙ የ <link href=\"text/scalc/01/04060118.xhp#xnpv\" name=\"XNPV\">የ ካፒታል የ አሁኑን ዋጋ ስርአቱን ለማይከተል ክፍያ</link> ተግባር"
#: 04060119.xhp
msgctxt ""
@@ -35563,7 +35560,7 @@ msgctxt ""
"bm_id3155123\n"
"help.text"
msgid "<bookmark_value>NOMINAL_ADD function</bookmark_value>"
-msgstr "<bookmark_value>NOMINAL_ADD function</bookmark_value>"
+msgstr "<bookmark_value>አነስተኛ_መጨመሪያ ተግባር</bookmark_value>"
#: 04060119.xhp
msgctxt ""
@@ -35644,7 +35641,7 @@ msgctxt ""
"237\n"
"help.text"
msgid "<item type=\"input\">=NOMINAL_ADD(5.3543%;4)</item> returns 0.0525 or 5.25%."
-msgstr "<item type=\"input\">=NOMINAL_ADD(5.3543%;4)</item> ይመልሳል 0.0525 ወይንም 5.25%."
+msgstr "<item type=\"input\">=አነስተኛ_መጨመሪያ(5.3543%;4)</item> ይመልሳል 0.0525 ወይንም 5.25%."
#: 04060119.xhp
msgctxt ""
@@ -35733,7 +35730,7 @@ msgctxt ""
"216\n"
"help.text"
msgid "<item type=\"input\">=DOLLARFR(1.125;8)</item> converts into eighths. The result is 1.1 for 1 plus 1/8."
-msgstr "<item type=\"input\">=ዴሲማል ወደ ክፍልፋይ(1.125;16)</item> መቀየሪያ ወደ አንድ ስምንተኛ: ውጤቱ ይሆናል 1.1 ለ 1 ሲደመር 1/16."
+msgstr "<item type=\"input\">=ዴሲማል ወደ ክፍልፋይ(1.125;8)</item> መቀየሪያ ወደ አንድ ስምንተኛ: ውጤቱ ይሆናል 1.1 ለ 1 ሲደመር 1/8"
#: 04060119.xhp
msgctxt ""
@@ -36597,7 +36594,7 @@ msgctxt ""
"bm_id3152912\n"
"help.text"
msgid "<bookmark_value>TBILLYIELD function</bookmark_value><bookmark_value>treasury bills;rates of return</bookmark_value><bookmark_value>rates of return of treasury bills</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ተቀማጭ ገንዘብ ትርፍ ተግባር</bookmark_value><bookmark_value>የ ተቀማጭ ገንዘብ: መጠን የሚመልሰው</bookmark_value><bookmark_value>የሚመልሰው መጠን ለ ተቀማጭ ገንዘብ</bookmark_value>"
#: 04060119.xhp
msgctxt ""
@@ -36606,7 +36603,7 @@ msgctxt ""
"80\n"
"help.text"
msgid "TBILLYIELD"
-msgstr ""
+msgstr "የ ተቀማጭ ገንዘብ ትርፍ"
#: 04060119.xhp
msgctxt ""
@@ -36615,7 +36612,7 @@ msgctxt ""
"81\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\">Calculates the yield of a treasury bill.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_AAI_FUNC_TBILLYIELD\">የ ተቀማጭ ገንዘብ ትርፍ ያሰላል </ahelp>"
#: 04060119.xhp
msgctxt ""
@@ -36633,7 +36630,7 @@ msgctxt ""
"83\n"
"help.text"
msgid "TBILLYIELD(Settlement; Maturity; Price)"
-msgstr ""
+msgstr "የ ተቀማጭ ገንዘብ ትርፍ(የ ስምምነት ጊዜ: የ ክፍያው ጊዜ: ዋጋ)"
#: 04060119.xhp
msgctxt ""
@@ -36660,7 +36657,7 @@ msgctxt ""
"86\n"
"help.text"
msgid "<emph>Price</emph> is the price (purchase price) of the treasury bill per 100 currency units of par value."
-msgstr ""
+msgstr "<emph>ዋጋ</emph> ዋጋ ነው (የ ተገዛበት ዋጋ) የ ተቀማጭ ገንዘብ በ 100 ገንዘብ ክፍል በ ክፍያ"
#: 04060119.xhp
msgctxt ""
@@ -36687,7 +36684,7 @@ msgctxt ""
"89\n"
"help.text"
msgid "The yield of the treasury bill is worked out as follows:"
-msgstr ""
+msgstr "የ ተቀማጭ ገንዘብ ትርፍ የሚሰራው እንደሚከተለው ነው:"
#: 04060119.xhp
msgctxt ""
@@ -36696,7 +36693,7 @@ msgctxt ""
"90\n"
"help.text"
msgid "=TBILLYIELD(\"1999-03-31\";\"1999-06-01\"; 98.45) returns 0.091417 or 9.1417 per cent."
-msgstr ""
+msgstr "=የ ተቀማጭ ገንዘብ ትርፍ(\"1999-03-31\";\"1999-06-01\"; 98.45) ይመልሳል 0.091417 ወይንም 9.1417 በ ሳንቲም"
#: 04060119.xhp
msgctxt ""
@@ -36748,7 +36745,7 @@ msgctxt ""
"238\n"
"help.text"
msgid "BITAND"
-msgstr ""
+msgstr "ቢት እና"
#: 04060120.xhp
msgctxt ""
@@ -36757,7 +36754,7 @@ msgctxt ""
"239\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BITAND\">Returns a bitwise logical \"and\" of the parameters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_BITAND\">ይመልሳል ከ ቢት አንፃር ሎጂካል \"እና\" ደንቦች </ahelp>"
#: 04060120.xhp
msgctxt ""
@@ -36775,7 +36772,7 @@ msgctxt ""
"241\n"
"help.text"
msgid "BITAND(number1; number2)"
-msgstr ""
+msgstr "ቢት እና(ቁጥር1: ቁጥር2)"
#: 04060120.xhp
msgctxt ""
@@ -36819,7 +36816,7 @@ msgctxt ""
"252\n"
"help.text"
msgid "BITOR"
-msgstr ""
+msgstr "ቢት ወይንም"
#: 04060120.xhp
msgctxt ""
@@ -36828,7 +36825,7 @@ msgctxt ""
"253\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BITOR\">Returns a bitwise logical \"or\" of the parameters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_BITOR\">ይመልሳል ከ ቢት አንፃር ሎጂካል \"ወይንም\" ደንቦች </ahelp>"
#: 04060120.xhp
msgctxt ""
@@ -36846,7 +36843,7 @@ msgctxt ""
"255\n"
"help.text"
msgid "BITOR(number1; number2)"
-msgstr ""
+msgstr "ቢት ወይንም(ቁጥር1: ቁጥር2)"
#: 04060120.xhp
msgctxt ""
@@ -36881,7 +36878,7 @@ msgctxt ""
"182\n"
"help.text"
msgid "BITXOR"
-msgstr ""
+msgstr "ቢት ወይንም"
#: 04060120.xhp
msgctxt ""
@@ -36890,7 +36887,7 @@ msgctxt ""
"183\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BITXOR\">Returns a bitwise logical \"exclusive or\" of the parameters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_BITXOR\">ይመልሳል ከ ቢት አንፃር ሎጂካል \"አስፈላጊ ወይንም\" ደንቦች </ahelp>"
#: 04060120.xhp
msgctxt ""
@@ -37567,7 +37564,7 @@ msgctxt ""
"par_id3148392\n"
"help.text"
msgid "B(Trials; SP; T1; T2)"
-msgstr ""
+msgstr "ባይኖሚያል(ሙከራዎች: የምናልባት ስኬት: ዝቅተኛ መጠንT1; ከፍተኛ መጠንT2)"
#: 04060181.xhp
msgctxt ""
@@ -37599,7 +37596,7 @@ msgctxt ""
"par_id3149538\n"
"help.text"
msgid "<emph>T2</emph> (optional) defines the upper limit for the number of trials."
-msgstr "<emph>ሙከራ2</emph> (በ ምርጫ) የሚገልጸው ከፍተኛ መጠን የ ሙከራ ቁጥር ነው"
+msgstr "<emph>ሙከራ2</emph> (በ ምርጫ) የሚገልጸው የ ላይኛውን መጠን የ ሙከራ ቁጥር ነው"
#: 04060181.xhp
msgctxt ""
@@ -37626,13 +37623,12 @@ msgid "<item type=\"input\">=B(10;1/6;2)</item> returns a probability of 29%."
msgstr "<item type=\"input\">=B(10;1/6;2)</item> ይመልሳል ምናልባት የ 29%."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id3158416\n"
"help.text"
msgid "<bookmark_value>RSQ function</bookmark_value> <bookmark_value>determination coefficients</bookmark_value> <bookmark_value>regression analysis</bookmark_value>"
-msgstr "<bookmark_value>የ ክፍል ተግባሮች</bookmark_value> <bookmark_value>የ ክፍል መረጃ</bookmark_value> <bookmark_value>መረጃ ስለ ክፍሎች</bookmark_value>"
+msgstr "<bookmark_value>RSQ ተግባር</bookmark_value> <bookmark_value>መወሰኛ ኮፊሺየንት </bookmark_value> <bookmark_value>ዝቅ ማድረጊያ መመርመሪያ </bookmark_value>"
#: 04060181.xhp
msgctxt ""
@@ -37640,7 +37636,7 @@ msgctxt ""
"hd_id3158416\n"
"help.text"
msgid "RSQ"
-msgstr ""
+msgstr "RSQ"
#: 04060181.xhp
msgctxt ""
@@ -37664,7 +37660,7 @@ msgctxt ""
"par_id3155822\n"
"help.text"
msgid "RSQ(DataY; DataX)"
-msgstr ""
+msgstr "RSQ(ዳታ_Y:ዳታ_X)"
#: 04060181.xhp
msgctxt ""
@@ -37696,7 +37692,7 @@ msgctxt ""
"par_id3155991\n"
"help.text"
msgid "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> calculates the determination coefficient for both data sets in columns A and B."
-msgstr ""
+msgstr "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> የ ኮኦፊሺየንት መወሰኛ ያሰላል ለ ሁለቱም ዳታ ስብስቦች በ አምዶች A እና B. ውስጥ"
#: 04060181.xhp
msgctxt ""
@@ -37720,7 +37716,7 @@ msgctxt ""
"par_id3149825\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BETAINV\">Returns the inverse of the cumulative beta probability density function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BETAINV\">የ ተጠራቀመ የ ምናልባት አካል ተግባር ግልባጭ ይመልሳል </ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETAINV\">የ ተጠራቀመ የ ቤታ ምናልባት ጥልቀት ተግባር ግልባጭ ይመልሳል </ahelp>"
#: 04060181.xhp
msgctxt ""
@@ -37800,7 +37796,7 @@ msgctxt ""
"bm_id2945620\n"
"help.text"
msgid "<bookmark_value>BETA.INV function</bookmark_value> <bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
-msgstr "<bookmark_value>የ ቤታ ስርጭት ግልባጭ ተግባር</bookmark_value> <bookmark_value>የ ተጠራቀመ የ ምናልባት አካል ተግባር: ግልባጭ ለ</bookmark_value>"
+msgstr "<bookmark_value>የ ቤታ.ግልባጭ ተግባር</bookmark_value> <bookmark_value>የ ተጠራቀመ የ ምናልባት አካል ተግባር: ግልባጭ ለ</bookmark_value>"
#: 04060181.xhp
msgctxt ""
@@ -37808,7 +37804,7 @@ msgctxt ""
"hd_id2945620\n"
"help.text"
msgid "BETA.INV"
-msgstr "የ ቤታ ስርጭት. ግልባጭ"
+msgstr "የ ቤታ.ግልባጭ"
#: 04060181.xhp
msgctxt ""
@@ -37816,7 +37812,7 @@ msgctxt ""
"par_id2949825\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BETAINV_MS\">Returns the inverse of the cumulative beta probability density function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BETAINV_MS\">የ ተጠራቀመ የ ምናልባት አካል ተግባር ግልባጭ ይመልሳል </ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETAINV_MS\">የ ተጠራቀመ የ ቤታ ምናልባት መጠን ተግባር ግልባጭ ይመልሳል </ahelp>"
#: 04060181.xhp
msgctxt ""
@@ -37832,7 +37828,7 @@ msgctxt ""
"par_id2956300\n"
"help.text"
msgid "BETA.INV(Number; Alpha; Beta; Start; End)"
-msgstr "የ ቤታ ስርጭት ግልባጭ(ቁጥር: አልፋ: ቤታ: መጀመሪያ: መጨረሻ)"
+msgstr "የ ቤታ.ግልባጭ(ቁጥር: አልፋ: ቤታ: መጀመሪያ: መጨረሻ)"
#: 04060181.xhp
msgctxt ""
@@ -37888,7 +37884,7 @@ msgctxt ""
"par_id2946859\n"
"help.text"
msgid "<item type=\"input\">=BETA.INV(0.5;5;10)</item> returns the value 0.3257511553."
-msgstr "<item type=\"input\">=የ ቤታ ስርጭት ግልባጭ(0.5;5;10)</item> ይመልሳል ዋጋ 0.3257511553."
+msgstr "<item type=\"input\">=የ ቤታ.ግልባጭ(0.5;5;10)</item> ይመልሳል ዋጋ 0.3257511553."
#: 04060181.xhp
msgctxt ""
@@ -37904,7 +37900,7 @@ msgctxt ""
"hd_id3156096\n"
"help.text"
msgid "BETADIST"
-msgstr "የ ተጠራቀመ ስርጭት ተግባር"
+msgstr "የ ቤታ ስርጭት ተግባር"
#: 04060181.xhp
msgctxt ""
@@ -37928,7 +37924,7 @@ msgctxt ""
"par_id3147571\n"
"help.text"
msgid "BETADIST(Number; Alpha; Beta; Start; End; Cumulative)"
-msgstr "የ ተጠራቀመ ስርጭት ተግባር(ቁጥር: አልፋ: ቤታ: መጀመሪያ: መጨረሻ: የ ተጠራቀመ)"
+msgstr "የ ቤታ ስርጭት ተግባር(ቁጥር: አልፋ: ቤታ: መጀመሪያ: መጨረሻ: የ ተጠራቀመ)"
#: 04060181.xhp
msgctxt ""
@@ -37992,7 +37988,7 @@ msgctxt ""
"par_id3156118\n"
"help.text"
msgid "<item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96"
-msgstr "<item type=\"input\">=የ ተጠራቀመ ስርጭት ተግባር(0.75;3;4)</item> ይመልሳል ዋጋ 0.96"
+msgstr "<item type=\"input\">=የ ቤታ ስርጭት(0.75;3;4)</item> ይመልሳል ዋጋ 0.96"
#: 04060181.xhp
msgctxt ""
@@ -38016,7 +38012,7 @@ msgctxt ""
"par_id2950880\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BETADIST_MS\">Returns the beta function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BETADIST_MS\">የ ተጠራቀመ ስርጭት ተግባር ይመልሳል </ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETADIST_MS\">የ ቤታ ተግባር ይመልሳል </ahelp>"
#: 04060181.xhp
msgctxt ""
@@ -38096,7 +38092,7 @@ msgctxt ""
"par_id2956118\n"
"help.text"
msgid "<item type=\"input\">=BETA.DIST(2;8;10;1;1;3)</item> returns the value 0.6854706"
-msgstr "<item type=\"input\">=የ ተጠራቀመ ስርጭት(2;8;10;1;1;3)</item> ይመልሳል ዋጋ 0.6854706"
+msgstr "<item type=\"input\">=ቤታ.ስርጭት(2;8;10;1;1;3)</item> ይመልሳል ዋጋ 0.6854706"
#: 04060181.xhp
msgctxt ""
@@ -38104,7 +38100,7 @@ msgctxt ""
"par_id2956119\n"
"help.text"
msgid "<item type=\"input\">=BETA.DIST(2;8;10;0;1;3)</item> returns the value 1.4837646"
-msgstr "<item type=\"input\">=የ ተጠራቀመ ስርጭት(2;8;10;0;1;3)</item> ይመልሳል ዋጋ 1.4837646"
+msgstr "<item type=\"input\">=ቤታ.ስርጭት(2;8;10;0;1;3)</item> ይመልሳል ዋጋ 1.4837646"
#: 04060181.xhp
msgctxt ""
@@ -38208,7 +38204,7 @@ msgctxt ""
"bm_id2943228\n"
"help.text"
msgid "<bookmark_value>BINOM.DIST function</bookmark_value>"
-msgstr "<bookmark_value>BINOM.DIST function</bookmark_value>"
+msgstr "<bookmark_value> የ ባይኖሚያል.ስርጭት ተግባር </bookmark_value>"
#: 04060181.xhp
msgctxt ""
@@ -38312,7 +38308,7 @@ msgctxt ""
"hd_id2843228\n"
"help.text"
msgid "BINOM.INV"
-msgstr ""
+msgstr "ባይኖሚያል.ግልባጭ"
#: 04060181.xhp
msgctxt ""
@@ -38336,7 +38332,7 @@ msgctxt ""
"par_id2856009\n"
"help.text"
msgid "BINOM.INV(Trials; SP; Alpha)"
-msgstr ""
+msgstr "ባይኖሚያል.ግልባጭ(ሙከራዎች: የ ሙከራ ስኬቶች: አልፋ)"
#: 04060181.xhp
msgctxt ""
@@ -38568,7 +38564,7 @@ msgctxt ""
"par_id3150777\n"
"help.text"
msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 195, 151, 148, 189, 183 and 154 times (observation values). The hypothesis that the die is not fixed is to be tested."
-msgstr "ዳይ ቢወረወር 1020 ጊዜ: የ ዳይ ቁጥሮች ከ 1 እድከ 6 የሚወጣው 195, 151, 148, 189, 183 እና 154 ጊዜ ነው (የታዩት ዋጋዎች). ዳይ የ ተወሰነ እንዳልሆነ መላምት መሞከሪያ"
+msgstr "ዳይ ቢወረወር 1020 ጊዜ: የ ዳይ ቁጥሮች ከ 1 እስከ 6 የሚወጣው 195, 151, 148, 189, 183 እና 154 ጊዜ ነው (የታዩት ዋጋዎች) መላምት: ዳይ የ ተወሰነ አይደለም ለ መሞከር"
#: 04060181.xhp
msgctxt ""
@@ -38680,7 +38676,7 @@ msgctxt ""
"par_id2950777\n"
"help.text"
msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 195, 151, 148, 189, 183 and 154 times (observation values). The hypothesis that the die is not fixed is to be tested."
-msgstr "ዳይ ቢወረወር 1020 ጊዜ: የ ዳይ ቁጥሮች ከ 1 እድከ 6 የሚወጣው 195, 151, 148, 189, 183 እና 154 ጊዜ ነው (የታዩት ዋጋዎች). ዳይ የ ተወሰነ እንዳልሆነ መላምት መሞከሪያ"
+msgstr "ዳይ ቢወረወር 1020 ጊዜ: የ ዳይ ቁጥሮች ከ 1 እስከ 6 የሚወጣው 195, 151, 148, 189, 183 እና 154 ጊዜ ነው (የታዩት ዋጋዎች) መላምት: ዳይ የ ተወሰነ አይደለም ለ መሞከር"
#: 04060181.xhp
msgctxt ""
@@ -38752,7 +38748,7 @@ msgctxt ""
"par_id3148925\n"
"help.text"
msgid "The probability determined by CHITEST can also be determined with CHIDIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row."
-msgstr "ምናልባት የሚወሰነው በ ቺ ስኴር.መሞከሪያ ነው: እንዲሁም መወሰን ይቻላል በ ቺ ስኴር ስርጭት: ይህ ቺ ስኴር በ ደፈናው ናሙና ማለፍ አለበት እንደ ደንብ ከ ዳታ ረድፍ ይልቅ"
+msgstr "ምናልባት የሚወሰነው በ ቺ ስርጭት ነው: እንዲሁም መወሰን ይቻላል በ የ ቺ ስርጭት: ይህ ቺ ስኴር በ ደፈናው ናሙና ማለፍ አለበት እንደ ደንብ ከ ዳታ ረድፍ ይልቅ"
#: 04060181.xhp
msgctxt ""
@@ -39208,7 +39204,7 @@ msgctxt ""
"bm_id3148690\n"
"help.text"
msgid "<bookmark_value>CHIDIST function</bookmark_value>"
-msgstr "<bookmark_value>CHIDIST function</bookmark_value>"
+msgstr "<bookmark_value>የ ቺ ስርጭት ተግባር</bookmark_value>"
#: 04060181.xhp
msgctxt ""
@@ -39248,7 +39244,7 @@ msgctxt ""
"par_id3158439\n"
"help.text"
msgid "CHIDIST(Number; DegreesFreedom)"
-msgstr "የ ቺ ስኴር.መሞከሪያ(ቁጥር: የ ዲግሪዎች ነፃነት)"
+msgstr "የ ቺ ስርጭት(ቁጥር: የ ዲግሪዎች ነፃነት)"
#: 04060181.xhp
msgctxt ""
@@ -39280,7 +39276,7 @@ msgctxt ""
"par_id3145774\n"
"help.text"
msgid "<item type=\"input\">=CHIDIST(13.27; 5)</item> equals 0.02."
-msgstr "<item type=\"input\">=የ ቺ ስርጭት(13.27; 5)</item> እኩል ነ ከ 0.02."
+msgstr "<item type=\"input\">=የ ቺ ስርጭት(13.27; 5)</item> እኩል ነው ከ 0.02."
#: 04060181.xhp
msgctxt ""
@@ -39456,7 +39452,7 @@ msgctxt ""
"par_id2945774\n"
"help.text"
msgid "<item type=\"input\">=CHISQ.DIST.RT(13.27; 5)</item> equals 0.0209757694."
-msgstr "<item type=\"input\">=የ ቺ ስኴር.ስርጭት የ ቀኝ-ጭራ(13.27; 5)</item> እኩል ነው ከ 0.02."
+msgstr "<item type=\"input\">=የ ቺ ስኴር.ስርጭት የ ቀኝ-ጭራ(13.27; 5)</item> እኩል ነው ከ 0.0209757694."
#: 04060181.xhp
msgctxt ""
@@ -39696,7 +39692,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Statistical Functions Part Two"
-msgstr "የ Statistical ተግባሮች ክፍል ሁለት"
+msgstr "የ ስታትስቲክስ ተግባሮች ክፍል ሁለት"
#: 04060182.xhp
msgctxt ""
@@ -39705,7 +39701,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">Statistical Functions Part Two</link></variable>"
-msgstr "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">የ Statistical ተግባሮች ክፍል ሁለት</link></variable>"
+msgstr "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">የ ስታትስቲክስ ተግባሮች ክፍል ሁለት</link></variable>"
#: 04060182.xhp
msgctxt ""
@@ -39980,7 +39976,7 @@ msgctxt ""
"bm_id3150888\n"
"help.text"
msgid "<bookmark_value>FISHER function</bookmark_value>"
-msgstr "<bookmark_value>FISHER function</bookmark_value>"
+msgstr "<bookmark_value>የ ፊሸር ተግባር</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -39989,7 +39985,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "FISHER"
-msgstr "አጥማጅ"
+msgstr "ፊሸር"
#: 04060182.xhp
msgctxt ""
@@ -39998,7 +39994,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FISHER\">Returns the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FISHER\">አጥማጅ መቀየሪያ ለ x እና የ ተግባር መዝጊያ መፍጠሪያ ለ መደበኛ ስርጭት </ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FISHER\">ፊሸር መቀየሪያ ለ x እና ተግባር መዝጊያ መፍጠሪያ ለ መደበኛ ስርጭት </ahelp>"
#: 04060182.xhp
msgctxt ""
@@ -40016,7 +40012,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "FISHER(Number)"
-msgstr "አጥማጅ(ቁጥር)"
+msgstr "ፊሸር(ቁጥር)"
#: 04060182.xhp
msgctxt ""
@@ -40043,7 +40039,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "<item type=\"input\">=FISHER(0.5)</item> yields 0.55."
-msgstr "<item type=\"input\">=FISHER(0.5)</item> ትርፍ 0.55."
+msgstr "<item type=\"input\">=ፊሸር(0.5)</item> ትርፍ 0.55."
#: 04060182.xhp
msgctxt ""
@@ -40051,7 +40047,7 @@ msgctxt ""
"bm_id3155758\n"
"help.text"
msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
-msgstr "<bookmark_value>የ አጥማጅ ግልባጭ ተግባር</bookmark_value> <bookmark_value>ግልባጭ ለ አጥማጅ መቀየሪያ</bookmark_value>"
+msgstr "<bookmark_value>የ ፊሸር ግልባጭ ተግባር</bookmark_value> <bookmark_value>ግልባጭ ለ ፊሸር መቀየሪያ</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -40060,7 +40056,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "FISHERINV"
-msgstr "የ አጥማጅ ግልባጭ"
+msgstr "የ ፊሸር ግልባጭ"
#: 04060182.xhp
msgctxt ""
@@ -40069,7 +40065,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FISHERINV\">Returns the inverse of the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FISHERINV\">የ አጥማጅ መቀየሪያ ግልባጭ ለ x እና የ ተግባር መዝጊያ መፍጠሪያ ለ መደበኛ ስርጭት </ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FISHERINV\">የ ፊሸር መቀየሪያ ግልባጭ ለ x እና የ ተግባር መዝጊያ መፍጠሪያ ለ መደበኛ ስርጭት </ahelp>"
#: 04060182.xhp
msgctxt ""
@@ -40087,7 +40083,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "FISHERINV(Number)"
-msgstr "የ አጥማጅ ግልባጭ(ቁጥር)"
+msgstr "የ ፊሸር ግልባጭ(ቁጥር)"
#: 04060182.xhp
msgctxt ""
@@ -40114,7 +40110,7 @@ msgctxt ""
"26\n"
"help.text"
msgid "<item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
-msgstr "<item type=\"input\">=FISHERINV(0.5)</item> ትርፍ 0.46."
+msgstr "<item type=\"input\">=የ ፊሸር ግልባጭ(0.5)</item> ትርፍ 0.46."
#: 04060182.xhp
msgctxt ""
@@ -40122,7 +40118,7 @@ msgctxt ""
"bm_id3151390\n"
"help.text"
msgid "<bookmark_value>FTEST function</bookmark_value>"
-msgstr "<bookmark_value>FTEST function</bookmark_value>"
+msgstr "<bookmark_value>የ F መሞከሪያ ተግባር</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -40131,7 +40127,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "FTEST"
-msgstr "Fመሞከሪያ"
+msgstr "የ F መሞከሪያ"
#: 04060182.xhp
msgctxt ""
@@ -40158,7 +40154,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "FTEST(Data1; Data2)"
-msgstr "Fመሞከሪያ(ዳታ1; ዳታ2)"
+msgstr "የ F መሞከሪያ(ዳታ1; ዳታ2)"
#: 04060182.xhp
msgctxt ""
@@ -40194,7 +40190,7 @@ msgctxt ""
"35\n"
"help.text"
msgid "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item> calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population."
-msgstr "<item type=\"input\">=Fመሞከሪያ(A1:A30;B1:B12)</item> ያሰላል ሁለት ዳታ ማሰናጃ ልዩ መሆናቸውን በ ራሳቸው የ ተለያዩ እና ሁለቱም ማሰናጃዎች ምናልባት ይመልሳሉ ከ ተመሳሳይ ጠቅላላ ህዝብ ይሆናል የመጡት"
+msgstr "<item type=\"input\">=የ F መሞከሪያ(A1:A30;B1:B12)</item> ያሰላል ሁለት ዳታ ማሰናጃ ልዩ መሆናቸውን በ ራሳቸው የ ተለያዩ እና ሁለቱም ማሰናጃዎች ምናልባት ይመልሳሉ ከ ተመሳሳይ ጠቅላላ ህዝብ ይሆናል የመጡት"
#: 04060182.xhp
msgctxt ""
@@ -40371,7 +40367,7 @@ msgctxt ""
"bm_id2950372\n"
"help.text"
msgid "<bookmark_value>F.DIST function</bookmark_value>"
-msgstr "<bookmark_value>F.DIST function</bookmark_value>"
+msgstr "<bookmark_value>የ F.ስርጭት ተግባር</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -40461,7 +40457,7 @@ msgctxt ""
"45\n"
"help.text"
msgid "<item type=\"input\">=F.DIST(0.8;8;12;0)</item> yields 0.7095282499."
-msgstr "<item type=\"input\">=F.DIST(0.8;8;12;0)</item> ትርፍ 0.7095282499."
+msgstr "<item type=\"input\">=የ F.ስርጭት(0.8;8;12;0)</item> ትርፍ 0.7095282499."
#: 04060182.xhp
msgctxt ""
@@ -40470,7 +40466,7 @@ msgctxt ""
"45\n"
"help.text"
msgid "<item type=\"input\">=F.DIST(0.8;8;12;1)</item> yields 0.3856603563."
-msgstr "<item type=\"input\">=F.DIST(0.8;8;12;1)</item> ትርፍ 0.3856603563."
+msgstr "<item type=\"input\">=የ F.ስርጭት(0.8;8;12;1)</item> ትርፍ 0.3856603563."
#: 04060182.xhp
msgctxt ""
@@ -40478,7 +40474,7 @@ msgctxt ""
"bm_id2850372\n"
"help.text"
msgid "<bookmark_value>F.DIST.RT function</bookmark_value>"
-msgstr "<bookmark_value>F.DIST.RT function</bookmark_value>"
+msgstr "<bookmark_value>የ F.ስርጭት.የ ቀኝ ጭራ ተግባር</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -40559,7 +40555,7 @@ msgctxt ""
"45\n"
"help.text"
msgid "<item type=\"input\">=F.DIST.RT(0.8;8;12)</item> yields 0.6143396437."
-msgstr "<item type=\"input\">=F.DIST.RT(0.8;8;12)</item> ትርፍ 0.6143396437."
+msgstr "<item type=\"input\">=የ F. ስርጭት የ ቀኝ ጭራ(0.8;8;12)</item> ትርፍ 0.6143396437."
#: 04060182.xhp
msgctxt ""
@@ -41296,7 +41292,7 @@ msgctxt ""
"92\n"
"help.text"
msgid "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. The geometric mean value of this random sample is therefore 41.79."
-msgstr "<item type=\"input\">=የ ጂዮሜትሪክ አማካይ(23;46;69)</item> = 37.64. የ ጂዮሜትሪክ አማካይ ለ በደፈናው ናሙና ይህ ነው 41.79."
+msgstr "<item type=\"input\">=የ ጂዮሜትሪክ አማካይ(23;46;69)</item> = 41.79. የ ጂዮሜትሪክ አማካይ ለ በደፈናው ናሙና ይህ ነው 41.79."
#: 04060182.xhp
msgctxt ""
@@ -41837,7 +41833,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Statistical Functions Part Three"
-msgstr "የ Statistical ተግባሮች ክፍል ሶስት"
+msgstr "የ ስታትስቲክስ ተግባሮች ክፍል ሶስት"
#: 04060183.xhp
msgctxt ""
@@ -41846,7 +41842,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Statistical Functions Part Three</link></variable>"
-msgstr "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">የ Statistical ተግባሮች ክፍል ሶስት</link></variable>"
+msgstr "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">የ ስታትስቲክስ ተግባሮች ክፍል ሶስት</link></variable>"
#: 04060183.xhp
msgctxt ""
@@ -41872,7 +41868,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KGROESSTE\">Returns the Rank_c-th largest value in a data set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KGROESSTE\">ይመልሳል የ ደረጃ_c-ኛ ትልቁም ዋጋ ከ ዳታ ስብስብ ውስጥ </ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_KGROESSTE\">ይመልሳል የ ደረጃ_c-ኛ ትልቁን ዋጋ ከ ዳታ ስብስብ ውስጥ </ahelp>"
#: 04060183.xhp
msgctxt ""
@@ -42276,13 +42272,12 @@ msgid "<item type=\"input\">=CONFIDENCE.NORM(0.05;1.5;100)</item> gives 0.293994
msgstr "<item type=\"input\">=መተማመኛ.መደበኛ(0.05;1.5;100)</item> ይሰጣል 0.2939945977."
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id3148746\n"
"help.text"
msgid "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
-msgstr "<bookmark_value>መቀላቀያ ተግባሮች</bookmark_value> <bookmark_value>የ ቁጥር መቀላቀያ</bookmark_value>"
+msgstr "<bookmark_value>የ ፒርሰን ኮኦሪሊሽን ኮኦፊሺየንት ለ ሁለት ስብስብ ዳታ ተግባሮች</bookmark_value><bookmark_value>የ ኮኦፊሺየንት ኮኦሪሊሽን </bookmark_value>"
#: 04060183.xhp
msgctxt ""
@@ -42291,7 +42286,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "CORREL"
-msgstr ""
+msgstr "የ ፒርሰን ኮኦሪሊሽን ኮኦፊሺየንት ለ ሁለት ስብስብ ዳታ"
#: 04060183.xhp
msgctxt ""
@@ -42300,7 +42295,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_KORREL\">የ ፒርሰን ኮኦሪሊሽን ኮኦፊሺየንት ለ ሁለት ስብስብ ዳታ ይመልሳል </ahelp>"
#: 04060183.xhp
msgctxt ""
@@ -42318,7 +42313,7 @@ msgctxt ""
"33\n"
"help.text"
msgid "CORREL(Data1; Data2)"
-msgstr ""
+msgstr "የ ፒርሰን ኮኦሪሊሽን ኮኦፊሺየንት ለ ሁለት ስብስብ ዳታ(ዳታ1: ዳታ2)"
#: 04060183.xhp
msgctxt ""
@@ -42354,7 +42349,7 @@ msgctxt ""
"37\n"
"help.text"
msgid "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> calculates the correlation coefficient as a measure of the linear correlation of the two data sets."
-msgstr ""
+msgstr "<item type=\"input\">=የ ፒርሰን ኮኦሪሊሽን ኮኦፊሺየንት ለ ሁለት ስብስብ ዳታ(A1:A50;B1:B50)</item> የሚያሰላው የ ኮኦሪሊሽን ኮኦፊሺየንት እንደ መለኪያ ለ ቀጥተኛ ኮኦሪሊሽን ለ ሁለት ዳታ ስብስብ"
#: 04060183.xhp
msgctxt ""
@@ -42371,7 +42366,7 @@ msgctxt ""
"39\n"
"help.text"
msgid "COVAR"
-msgstr ""
+msgstr "ኮቫሪያንስ"
#: 04060183.xhp
msgctxt ""
@@ -42398,7 +42393,7 @@ msgctxt ""
"42\n"
"help.text"
msgid "COVAR(Data1; Data2)"
-msgstr ""
+msgstr "ኮቫሪያንስ(ዳታ1: ዳታ2)"
#: 04060183.xhp
msgctxt ""
@@ -42451,7 +42446,7 @@ msgctxt ""
"39\n"
"help.text"
msgid "COVARIANCE.P"
-msgstr ""
+msgstr "ኮቫሪያንስ.P"
#: 04060183.xhp
msgctxt ""
@@ -42478,7 +42473,7 @@ msgctxt ""
"42\n"
"help.text"
msgid "COVARIANCE.P(Data1; Data2)"
-msgstr ""
+msgstr "ኮቫሪያንስ.P(ዳታ1: ዳታ2)"
#: 04060183.xhp
msgctxt ""
@@ -42514,7 +42509,7 @@ msgctxt ""
"46\n"
"help.text"
msgid "<item type=\"input\">=COVARIANCE.P(A1:A30;B1:B30)</item>"
-msgstr "<item type=\"input\">=COVARIANCE.P(A1:A30;B1:B30)</item>"
+msgstr "<item type=\"input\">=ኮቫሪያንስ.P(A1:A30;B1:B30)</item>"
#: 04060183.xhp
msgctxt ""
@@ -42522,7 +42517,7 @@ msgctxt ""
"bm_id280652\n"
"help.text"
msgid "<bookmark_value>COVARIANCE.S function</bookmark_value>"
-msgstr "<bookmark_value>COVARIANCE.S function</bookmark_value>"
+msgstr "<bookmark_value>ኮቫሪያንስ.S ተግባር</bookmark_value>"
#: 04060183.xhp
msgctxt ""
@@ -42531,7 +42526,7 @@ msgctxt ""
"39\n"
"help.text"
msgid "COVARIANCE.S"
-msgstr ""
+msgstr "ኮቫሪያንስ.S"
#: 04060183.xhp
msgctxt ""
@@ -42558,7 +42553,7 @@ msgctxt ""
"42\n"
"help.text"
msgid "COVARIANCE.S(Data1; Data2)"
-msgstr ""
+msgstr "ኮቫሪያንስ.S(ዳታ1: ዳታ2)"
#: 04060183.xhp
msgctxt ""
@@ -42594,7 +42589,7 @@ msgctxt ""
"46\n"
"help.text"
msgid "<item type=\"input\">=COVARIANCE.S(A1:A30;B1:B30)</item>"
-msgstr "<item type=\"input\">=COVARIANCE.S(A1:A30;B1:B30)</item>"
+msgstr "<item type=\"input\">=ኮቫሪያንስ.S(A1:A30;B1:B30)</item>"
#: 04060183.xhp
msgctxt ""
@@ -43142,7 +43137,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Statistical Functions Part Four"
-msgstr "የ Statistical ተግባሮች ክፍል አራት"
+msgstr "የ ስታትስቲክስ ተግባሮች ክፍል አራት"
#: 04060184.xhp
msgctxt ""
@@ -43151,7 +43146,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">Statistical Functions Part Four</link></variable>"
-msgstr "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">የ Statistical ተግባሮች ክፍል አራት</link></variable>"
+msgstr "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">የ ስታትስቲክስ ተግባሮች ክፍል አራት</link></variable>"
#: 04060184.xhp
msgctxt ""
@@ -43185,7 +43180,7 @@ msgctxt ""
"par_id9282509\n"
"help.text"
msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
-msgstr "ይመልሳል 0 ምንም የ ቁጥር ዋጋ እና ምንም ስህተት ካልተገኘ በ ክፍል(ሎች) ውስጥ: እንደ ክፍል ማመሳከሪያ(ዎች) የ ታለፈውን: የ ጽሁፍ ክፍሎች ይተዋሉ በ አነስተኛ() እና ከፍተኛ(): ተግባሮች አነስተኛ የ ክርክር ዝርዝር() እና ከፍተኛ የ ክርክር ዝርዝር() ይመልሳል 0 ምንም ዋጋ (የ ቁጥር ወይንም ጽሁፍ) እና ምንም ስህተት ካልተገኘ: የ ታለፈውን የ ሀረግ ክርክር በ ትክክል ለ አነስተኛ() ወይንም ከፍተኛ(): ለምሳሌ: አነስተኛ(\"ሀረግ\"): ውጤቱ ስህተት ይሆናል"
+msgstr "ይመልሳል 0 ምንም የ ቁጥር ዋጋ እና ምንም ስህተት ካልተገኘ በ ክፍል(ሎች) ውስጥ: እንደ ክፍል ማመሳከሪያ(ዎች) የ ታለፈውን: የ ጽሁፍ ክፍሎች ይተዋሉ በ አነስተኛ ክርክር() እና ከፍተኛ ክርክር(): ተግባሮች አነስተኛ የ ክርክር ዝርዝር() እና ከፍተኛ የ ክርክር ዝርዝር() ይመልሳል 0 ምንም ዋጋ (የ ቁጥር ወይንም ጽሁፍ) እና ምንም ስህተት ካልተገኘ: የ ታለፈውን የ ሀረግ ክርክር በ ትክክል ለ አነስተኛ() ወይንም ከፍተኛ(): ለምሳሌ: አነስተኛ(\"ሀረግ\"): ውጤቱ ስህተት ይሆናል"
#: 04060184.xhp
msgctxt ""
@@ -43494,7 +43489,7 @@ msgctxt ""
"bm_id3147504\n"
"help.text"
msgid "<bookmark_value>MINA function</bookmark_value>"
-msgstr "<bookmark_value>MINA function</bookmark_value>"
+msgstr "<bookmark_value>አነስተኛ የ ክርክር ተግባር</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -43503,7 +43498,7 @@ msgctxt ""
"148\n"
"help.text"
msgid "MINA"
-msgstr "አነስተኛ"
+msgstr "አነስተኛ ክርክር"
#: 04060184.xhp
msgctxt ""
@@ -43538,7 +43533,7 @@ msgctxt ""
"151\n"
"help.text"
msgid "MINA(Value1; Value2; ... Value30)"
-msgstr "አነስተኛ(ዋጋ1: ዋጋ2: ... ዋጋ30)"
+msgstr "አነስተኛ የ ክርክር(ዋጋ1: ዋጋ2: ... ዋጋ30)"
#: 04060184.xhp
msgctxt ""
@@ -43565,7 +43560,7 @@ msgctxt ""
"154\n"
"help.text"
msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
-msgstr "<item type=\"input\">=MINA(1;\"Text\";20)</item> ይመልሳል 0."
+msgstr "<item type=\"input\">=አነስተኛ የ ክርክር(1;\"ጽሁፍ\";20)</item> ይመልሳል 0."
#: 04060184.xhp
msgctxt ""
@@ -43574,7 +43569,7 @@ msgctxt ""
"155\n"
"help.text"
msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
-msgstr "<item type=\"input\">=አነስተኛ የ ክርክር ዝርዝር(A1:B100)</item> ትንሹን ዋጋ ከ ዝርዝር ውስጥ ይመልሳል"
+msgstr "<item type=\"input\">=አነስተኛ የ ክርክር(A1:B100)</item> ትንሹን ዋጋ ከ ዝርዝር ውስጥ ይመልሳል"
#: 04060184.xhp
msgctxt ""
@@ -45130,7 +45125,7 @@ msgctxt ""
"119\n"
"help.text"
msgid "<item type=\"input\">=PERCENTILE.EXC(A1:A50;10%)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
-msgstr "<item type=\"input\">=ፐርሰንት.አያካትትም(A1:A50;0.1)</item> የሚወክለው ዋጋ ነው ለ ዳታ ማሰናጅ ውስጥ: እኩል ይሆናል ከ 10% ከ ጠቅላላ የ ዳታ መጠን ጋር A1:A50."
+msgstr "<item type=\"input\">=ፐርሰንት.አያካትትም(A1:A50;10%)</item> የሚወክለው ዋጋ ነው ለ ዳታ ማሰናጅ ውስጥ: እኩል ይሆናል ከ 10% ከ ጠቅላላ የ ዳታ መጠን ጋር A1:A50."
#: 04060184.xhp
msgctxt ""
@@ -45226,7 +45221,7 @@ msgctxt ""
"bm_id3148807\n"
"help.text"
msgid "<bookmark_value>PERCENTRANK function</bookmark_value>"
-msgstr "<bookmark_value>PERCENTRANK function</bookmark_value>"
+msgstr "<bookmark_value>የ ፐርሰንት ደረጃ ተግባር</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -45235,7 +45230,7 @@ msgctxt ""
"121\n"
"help.text"
msgid "PERCENTRANK"
-msgstr "ፐርሰንት ደረጃ"
+msgstr "የ ፐርሰንት ደረጃ"
#: 04060184.xhp
msgctxt ""
@@ -45306,7 +45301,7 @@ msgctxt ""
"bm_id2848807\n"
"help.text"
msgid "<bookmark_value>PERCENTRANK.EXC function</bookmark_value>"
-msgstr "<bookmark_value>PERCENTRANK.EXC function</bookmark_value>"
+msgstr "<bookmark_value>የ ፐርሰንት ደረጃ.አያካትትም ተግባር</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -45332,7 +45327,7 @@ msgctxt ""
"par_id2553976\n"
"help.text"
msgid "The difference between <item type=\"input\">PERCENTRANK.INC</item> and <item type=\"input\">PERCENTRANK.EXC</item> is that <item type=\"input\">PERCENTRANK.INC</item> calculates a value in the range 0 to 1 inclusive, whereas the <item type=\"input\">PERCENTRANK.EXC</item> function calculates a value in the range 0 to 1 exclusive."
-msgstr "ልዩነት በ <item type=\"input\">የ ፐርሰንት ደረጃ.ያካትታል</item> እና በ <item type=\"input\">የ ፐርሰንት ደረጃ.አያካትትም</item> ይህ በ <item type=\"input\">የ ፐርሰንት ደረጃ.ያካትታል</item> የ ተግባር ዋጋ ለ አልፋ በ መጠኑ ውስጥ ነው ከ 0 እስከ 1 ያካትታል: እና የ <item type=\"input\">የ ፐርሰንት ደረጃ.አያካትትም</item> የ ተግባር ዋጋ ለ አልፋ በ መጠኑ ውስጥ ነው ከ 0 እስከ 1 አያካትትም"
+msgstr "ልዩነት በ <item type=\"input\">የ ፐርሰንት ደረጃ.ያካትታል</item> እና በ <item type=\"input\">የ ፐርሰንት ደረጃ.አያካትትም</item> ይህ በ <item type=\"input\">የ ፐርሰንት ደረጃ.ያካትታል</item> ዋጋ ያሰላል በ መጠን ውስጥ ከ 0 እስከ 1 ያካትታል: እና የ <item type=\"input\">የ ፐርሰንት ደረጃ.አያካትትም</item> የ ተግባር ዋጋ በ መጠን ውስጥ ነው ከ 0 እስከ 1 አያካትትም"
#: 04060184.xhp
msgctxt ""
@@ -45403,7 +45398,7 @@ msgctxt ""
"bm_id2948807\n"
"help.text"
msgid "<bookmark_value>PERCENTRANK.INC function</bookmark_value>"
-msgstr "<bookmark_value>PERCENTRANK.INC function</bookmark_value>"
+msgstr "<bookmark_value>የ ፐርሰንት ደረጃ.ያካትታል ተግባር</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -45429,7 +45424,7 @@ msgctxt ""
"par_id2453976\n"
"help.text"
msgid "The difference between <item type=\"input\">PERCENTRANK.INC</item> and <item type=\"input\">PERCENTRANK.EXC</item> is that <item type=\"input\">PERCENTRANK.INC</item> calculates a value in the range 0 to 1 inclusive, whereas the <item type=\"input\">PERCENTRANK.EXC</item> function calculates a value in the range 0 to 1 exclusive."
-msgstr "ልዩነት በ <item type=\"input\">የ ፐርሰንት ደረጃ.ያካትታል</item> እና በ <item type=\"input\">የ ፐርሰንት ደረጃ.አያካትትም</item> ይህ በ <item type=\"input\">የ ፐርሰንት ደረጃ.ያካትታል</item> የ ተግባር ዋጋ ለ አልፋ በ መጠኑ ውስጥ ነው ከ 0 እስከ 1 ያካትታል: እና የ <item type=\"input\">የ ፐርሰንት ደረጃ.አያካትትም</item> የ ተግባር ዋጋ ለ አልፋ በ መጠኑ ውስጥ ነው ከ 0 እስከ 1 አያካትትም"
+msgstr "ልዩነት በ <item type=\"input\">የ ፐርሰንት ደረጃ.ያካትታል</item> እና በ <item type=\"input\">የ ፐርሰንት ደረጃ.አያካትትም</item> ይህ በ <item type=\"input\">የ ፐርሰንት ደረጃ.ያካትታል</item> ዋጋ ያሰላል በ መጠን ውስጥ ከ 0 እስከ 1 ያካትታል: እና የ <item type=\"input\">የ ፐርሰንት ደረጃ.አያካትትም</item> የ ተግባር ዋጋ በ መጠን ውስጥ ነው ከ 0 እስከ 1 አያካትትም"
#: 04060184.xhp
msgctxt ""
@@ -45492,7 +45487,7 @@ msgctxt ""
"128\n"
"help.text"
msgid "<item type=\"input\">=PERCENTRANK.INC(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
-msgstr "<item type=\"input\">=የ ፐርሰንት ደረጃ(A1:A50;50)</item> ይመልሳል የ ፐርሰንት ደረጃ ለ ዋጋ 50 ከ ጠቅላላ መጠን ውስጥ ለ ተገኙት ሁሉም ዋጋዎች ከ A1:A50. ይህ 50 የሚውል ከሆነ ከ ጠቅላላ መጠን ውጪ: የ ስህተት መልእክት ይታያል"
+msgstr "<item type=\"input\">=የ ፐርሰንት ደረጃ.ያካትታል(A1:A50;50)</item> ይመልሳል የ ፐርሰንት ደረጃ ለ ዋጋ 50 ከ ጠቅላላ መጠን ውስጥ ለ ተገኙት ሁሉም ዋጋዎች ከ A1:A50. ይህ 50 የሚውል ከሆነ ከ ጠቅላላ መጠን ውጪ: የ ስህተት መልእክት ይታያል"
#: 04060184.xhp
msgctxt ""
@@ -45756,7 +45751,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Statistical Functions Part Five"
-msgstr "የ Statistical ተግባሮች ክፍል አምስት"
+msgstr "የ ስታትስቲክስ ተግባሮች ክፍል አምስት"
#: 04060185.xhp
msgctxt ""
@@ -45765,7 +45760,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"Statistical Functions Part Five\">Statistical Functions Part Five</link></variable>"
-msgstr "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"Statistical Functions Part Five\">የ Statistical ተግባሮች ክፍል አምስት</link></variable>"
+msgstr "<variable id=\"rz\"><link href=\"text/scalc/01/04060185.xhp\" name=\"Statistical Functions Part Five\">የ ስታትስቲክስ ተግባሮች ክፍል አምስት</link></variable>"
#: 04060185.xhp
msgctxt ""
@@ -45773,7 +45768,7 @@ msgctxt ""
"bm_id3155071\n"
"help.text"
msgid "<bookmark_value>RANK function</bookmark_value> <bookmark_value>numbers;determining ranks</bookmark_value>"
-msgstr "<bookmark_value>ደረጃ ተግባር</bookmark_value> <bookmark_value>ቁጥሮች:ደረጃ መወሰኛ</bookmark_value>"
+msgstr "<bookmark_value>ደረጃ ተግባር</bookmark_value> <bookmark_value>ቁጥሮች: ደረጃ መወሰኛ</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -45782,7 +45777,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "RANK"
-msgstr "RANK"
+msgstr "ደረጃ"
#: 04060185.xhp
msgctxt ""
@@ -45827,7 +45822,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<emph>Data</emph> is the array or range of data in the sample."
-msgstr "<emph>ዳታ</emph> የ ዳታ ማዘጋጃ መጠን ነው ለ ናሙና"
+msgstr "<emph>ዳታ</emph> የ ዳታ ማዘጋጃ ወይንም መጠን ነው በ ናሙና ውስጥ"
#: 04060185.xhp
msgctxt ""
@@ -45940,7 +45935,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<emph>Data</emph> is the array or range of data in the sample."
-msgstr "<emph>ዳታ</emph> የ ዳታ ማዘጋጃ ነው ወይንም መጠን ለ ናሙና"
+msgstr "<emph>ዳታ</emph> የ ዳታ ማዘጋጃ ነው ወይንም መጠን በ ናሙና ውስጥ"
#: 04060185.xhp
msgctxt ""
@@ -46053,7 +46048,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<emph>Data</emph> is the array or range of data in the sample."
-msgstr "<emph>ዳታ</emph> የ ዳታ ማዘጋጃ ነው ወይንም መጠን ለ ናሙና"
+msgstr "<emph>ዳታ</emph> የ ዳታ ማዘጋጃ ነው ወይንም መጠን በ ናሙና ውስጥ"
#: 04060185.xhp
msgctxt ""
@@ -47168,7 +47163,7 @@ msgctxt ""
"70\n"
"help.text"
msgid "<item type=\"input\">=NORM.S.DIST(1;1)</item> returns 0.8413447461. The area below the standard normal distribution curve to the left of X value 1 is 84% of the total area."
-msgstr "<item type=\"input\">= መደበኛ.የ ተጠራቀመ.የ ስርጭት(1)</item> ይመልሳል 0.84. ከ መደበኛ የ ስርት ክብ በ ታች በ ግራ በኩል በ X ዋጋ 1 ከ 84% ከ ጠቅላላ ቦታው ውስጥ"
+msgstr "<item type=\"input\">= መደበኛ.የ ተጠራቀመ.የ ስርጭት(1;1)</item> ይመልሳል 0.8413447461. ከ መደበኛ የ ስርት ክብ በ ታች በ ግራ በኩል በ X ዋጋ 1 ከ 84% ከ ጠቅላላ ቦታው ውስጥ"
#: 04060185.xhp
msgctxt ""
@@ -47194,7 +47189,7 @@ msgctxt ""
"73\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STEIGUNG\">Returns the slope of the linear regression line.</ahelp> The slope is adapted to the data points set in the y and x values."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_STEIGUNG\">የ ቀጥተኛ ዝቅ ማድረጊያ መስመር ስሎፕ ይመልሳል </ahelp> ስሎፕ የሚገባው ወደ ዳታ ነጥቦች ማሰናጃ ውስጥ ነው በ y እና x ዋጋዎች"
#: 04060185.xhp
msgctxt ""
@@ -47248,7 +47243,7 @@ msgctxt ""
"79\n"
"help.text"
msgid "<item type=\"input\">=SLOPE(A1:A50;B1:B50)</item>"
-msgstr "<item type=\"input\">=SLOPE(A1:A50;B1:B50)</item>"
+msgstr "<item type=\"input\">=ስሎፕ(A1:A50;B1:B50)</item>"
#: 04060185.xhp
#, fuzzy
@@ -48095,7 +48090,7 @@ msgctxt ""
"126\n"
"help.text"
msgid "<item type=\"input\">=T.DIST.2T(1; 10)</item> returns 0.3408931323."
-msgstr "<item type=\"input\">=T.DIST.2T(1; 10)</item> ይመልሳል 0.3408931323."
+msgstr "<item type=\"input\">=T.ስርጭት.2T(1; 10)</item> ይመልሳል 0.3408931323."
#: 04060185.xhp
msgctxt ""
@@ -48325,7 +48320,7 @@ msgctxt ""
"bm_id3151045\n"
"help.text"
msgid "<bookmark_value>VARA function</bookmark_value>"
-msgstr "<bookmark_value>VARA function</bookmark_value>"
+msgstr "<bookmark_value>የ ቫራ ተግባር</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -48832,7 +48827,7 @@ msgctxt ""
"168\n"
"help.text"
msgid "<emph>Data</emph> is the array or range of data in the sample."
-msgstr "<emph>ዳታ</emph> ማዘጋጃ ወይን መጠን ነው ዳታ ለ ናሙና"
+msgstr "<emph>ዳታ</emph> የ ዳታ ማዘጋጃ ነው ወይንም መጠን በ ናሙና ውስጥ"
#: 04060185.xhp
msgctxt ""
@@ -48859,7 +48854,7 @@ msgctxt ""
"171\n"
"help.text"
msgid "<emph>End</emph> (optional) is the end value of the interval whose probabilities are to be summed. If this parameter is missing, the probability for the <emph>Start </emph>value is calculated."
-msgstr "<emph>መጨረሻ</emph> (በ ምርጫ) የ መጨረሻ ዋጋ ነው ለ ክፍተት ምናልባቶች የሚጨመሩበት: ይህ ደንብ ከ ጎደለ: ምናልባት ለ <emph>መጀመሪያ </emph>ዋጋ የሚሰላበት"
+msgstr "<emph>መጨረሻ</emph> (በ ምርጫ) የ መጨረሻ ዋጋ ነው ለ ክፍተት ምናልባቶች የሚጨመሩበት: ይህ ደንብ ከ ጎደለ: ምናልባት ለ <emph>መጀመሪያ </emph>ዋጋ ይሰላል"
#: 04060185.xhp
msgctxt ""
@@ -48919,7 +48914,7 @@ msgctxt ""
"par_id0305200911372777\n"
"help.text"
msgid "If C is 0, WEIBULL calculates the probability density function."
-msgstr ""
+msgstr "ጥርቅሙ ከሆነ 0: ዌይቡል የ ምናልባት መጠን ተግባር ያሰላል"
#: 04060185.xhp
msgctxt ""
@@ -48927,7 +48922,7 @@ msgctxt ""
"par_id0305200911372743\n"
"help.text"
msgid "If C is 1, WEIBULL calculates the cumulative distribution function."
-msgstr ""
+msgstr "ጥርቅሙ ከሆነ 1: ዌይቡል የ ጥርቅም ስርጭት ተግባር ያሰላል"
#: 04060185.xhp
msgctxt ""
@@ -48945,7 +48940,7 @@ msgctxt ""
"178\n"
"help.text"
msgid "WEIBULL(Number; Alpha; Beta; C)"
-msgstr ""
+msgstr "ዌይቡል(ቁጥር: አልፋ: ቤታ: ጥርቅም)"
#: 04060185.xhp
msgctxt ""
@@ -49049,7 +49044,7 @@ msgctxt ""
"par_id2905200911372777\n"
"help.text"
msgid "If C is 0, WEIBULL.DIST calculates the probability density function."
-msgstr ""
+msgstr "ጥርቅሙ ከሆነ 0: ዌይቡል.ስርጭት የ ምናልባት መጠን ተግባር ያሰላል"
#: 04060185.xhp
msgctxt ""
@@ -49057,7 +49052,7 @@ msgctxt ""
"par_id2905200911372743\n"
"help.text"
msgid "If C is 1, WEIBULL.DIST calculates the cumulative distribution function."
-msgstr ""
+msgstr "ጥርቅሙ ከሆነ 1: ዌይቡል.ስርጭት የ ጥርቅም ስርጭት ተግባር ያሰላል"
#: 04060185.xhp
msgctxt ""
@@ -49075,7 +49070,7 @@ msgctxt ""
"178\n"
"help.text"
msgid "WEIBULL.DIST(Number; Alpha; Beta; C)"
-msgstr ""
+msgstr "ዌይቡል.ስርጭት(ቁጥር: አልፋ: ቤታ: ጥርቅም)"
#: 04060185.xhp
msgctxt ""
@@ -49855,8 +49850,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "ስሞች"
+msgid "Named Ranges and Expressions"
+msgstr "የ ተሰየሙ መጠኖች እና መግለጫዎች"
#: 04070000.xhp
msgctxt ""
@@ -49864,8 +49859,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">ስሞች</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">የ ተሰየሙ መጠኖች እና መግለጫዎች</link>"
#: 04070000.xhp
msgctxt ""
@@ -50255,8 +50250,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "ይምረጡ ሁሉንም መጠኖች የያዘውን ቦታ እርስዎ መሰየም የሚፈልጉትን: እና ከዛ ይምረጡ <emph>ማስገቢያ - ስሞች - መፍጠሪያ</emph> ይህ ይከፍታል የ <emph>ስሞች መፍጠሪያ</emph> ንግግር: እርስዎ መምረጥ ይችላሉ የ መሰየሚያ ምርጫዎች እርስዎ የሚፈልጉትን"
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr "ይምረጡ ሁሉንም መጠኖች የያዘውን ቦታ እርስዎ መሰየም የሚፈልጉትን: ከዛ ይምረጡ <emph>ወረቀት - የ ተሰየሙ መጠኖች እና መግለጫዎች – መፍጠሪያ</emph> ይህ ይከፍታል የ <emph>ስሞች መፍጠሪያ</emph> ንግግር: እርስዎ ከዚህ የ መሰየሚያ መምረጫ ውስጥ መምረጥ ይችላሉ"
#: 04070300.xhp
msgctxt ""
@@ -50576,7 +50571,7 @@ msgctxt ""
"par_id3147345\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/functionpanel/insert\">Inserts the selected function into the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/functionpanel/insert\">የ ተመረጠውን ተግባር ወደ ሰነድ ውስጥ መጨመሪያ </ahelp>"
#: 04090000.xhp
msgctxt ""
@@ -51171,7 +51166,7 @@ msgctxt ""
"bm_id3155628\n"
"help.text"
msgid "<bookmark_value>spreadsheets; optimal column widths</bookmark_value><bookmark_value>columns; optimal widths</bookmark_value><bookmark_value>optimal column widths</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዥ: አጥጋቢ የ አምድ ስፋት</bookmark_value><bookmark_value>አምዶች; አጥጋቢ ስፋት</bookmark_value><bookmark_value>አጥጋቢ የ አምድ ስፋት</bookmark_value>"
+msgstr "<bookmark_value>ሰንጠረዥ: አጥጋቢ የ አምድ ስፋት</bookmark_value><bookmark_value>አምዶች: አጥጋቢ ስፋት</bookmark_value><bookmark_value>አጥጋቢ የ አምድ ስፋት</bookmark_value>"
#: 05040200.xhp
msgctxt ""
@@ -52142,8 +52137,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "ይምረጡ <emph>-ምንም-</emph> ለማስወገድ የ ማተሚያ መጠን መግለጫ ለ አሁኑ ሰንጠረዥ: ይምረጡ <emph>-ጠቅላላ ወረቀት-</emph> ለ ማሰናዳት ለ አሁኑ ወረቀት የ ማተሚያ መጠን: ይምረጡ <emph>-ምርጫ-</emph> ለ መግለጽ የ ተመረጠውን ቦታ ለ ሰንጠረዥ እንደ ማተሚያ መጠን: በ መምረጥ <emph>-በ ተጠቃሚ-የሚገለጽ-</emph>እርስዎ መግለጽ ይችላሉ የ ማተሚያ መጠን እርስዎ የ ገለጹትን በ መጠቀም በ <emph>አቀራረብ – ማተሚያ መጠኖች – መግለጫ</emph> ትእዛዝ: እርስዎ ስም ከሰጡ ለ መጠን በ መጠቀም የ <emph>ማስገቢያ - ስሞች - መግለጫ</emph> ትእዛዝ: ይህ ስም ይታያል እና ከ ዝርዝር ሳጥን መምረጥ ይቻላል"
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
@@ -54261,7 +54256,7 @@ msgctxt ""
"par_id3145172\n"
"help.text"
msgid "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect document</emph> dialog with <emph>Tools - Protect Spreadsheet</emph>. Optionally enter a password and click OK."
-msgstr ""
+msgstr "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">የ ወረቀቱን አካል የ እርስዎን ሰነድ ከ መሻሻል ይጠብቃል: ማስገባት ይቻላል: ማጥፋት: እንደገና መሰየም: ማንቀሳቀስ ወይንም ወረቀቱን ኮፒ ማድረግ ይቻላል: </ahelp></variable> ይክፈቱ የ <emph>ሰነድ መጠበቂያ</emph> ንግግር ከ <emph>መሳሪያዎች - ሰንጠረዥ መጠበቂያ </emph> ውስጥ: በ ምርጫ ያስገቡ የ መግቢያ ቃል እና ይጫኑ እሺ"
#: 06060200.xhp
msgctxt ""
@@ -60964,7 +60959,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AVERAGEIF function"
-msgstr "መካከለኛ ከሆኑ ተግባር"
+msgstr "አማካይ ከሆኑ ተግባር"
#: func_averageif.xhp
msgctxt ""
@@ -60972,7 +60967,7 @@ msgctxt ""
"bm_id237812197829662\n"
"help.text"
msgid "<bookmark_value>AVERAGEIF function</bookmark_value> <bookmark_value>arithmetic mean;satisfying condition</bookmark_value>"
-msgstr "<bookmark_value>መካከለኛ ከሆኑ ተግባር </bookmark_value> <bookmark_value>የ ሂሳብ መካከለኛ: የሚያሟሉት ሁኔታዎች</bookmark_value>"
+msgstr "<bookmark_value>አማካይ ከሆኑ ተግባር </bookmark_value> <bookmark_value>የ ሂሳብ አማካይ: የሚያሟሉት ሁኔታዎች</bookmark_value>"
#: func_averageif.xhp
msgctxt ""
@@ -60980,7 +60975,7 @@ msgctxt ""
"hd_id16852304621982\n"
"help.text"
msgid "<variable id=\"averageif_head\"><link href=\"text/scalc/01/func_averageif.xhp\">AVERAGEIF</link></variable> function"
-msgstr "<variable id=\"averageif_head\"><link href=\"text/scalc/01/func_averageif.xhp\">መካከለኛ ከሆኑ</link></variable> ተግባር"
+msgstr "<variable id=\"averageif_head\"><link href=\"text/scalc/01/func_averageif.xhp\">አማካይ ከሆኑ</link></variable> ተግባር"
#: func_averageif.xhp
msgctxt ""
@@ -60988,7 +60983,7 @@ msgctxt ""
"par_id7281266615152\n"
"help.text"
msgid "<ahelp hid=\".\"><variable id=\"averageif_des\">Returns the arithmetic mean of all cells in a range that satisfy a given condition. The AVERAGEIF function sums up all the results that match the logical test and divides this sum by the quantity of selected values.</variable></ahelp>"
-msgstr "<ahelp hid=\".\"><variable id=\"averageif_des\">የ ቁጥር አማካይ ለ ሁሉም ክፍሎች በ መጠን ውስጥ የ ተሰጠውን ሁኔታ የሚያሟላ ይመልሳል: መካከለኝ ከሆነ ተግባር ድምር የ ሁሉንም ውጤቶች ተመሳሳይ ለ logical መሞከሪያ እና ያካፍላል ይህን ድምር በ ተመረጠው የ ዋጋዎች መጠን </variable></ahelp>"
+msgstr "<ahelp hid=\".\"><variable id=\"averageif_des\">የ ቁጥር አማካይ ለ ሁሉም ክፍሎች በ መጠን ውስጥ የ ተሰጠውን ሁኔታ የሚያሟላ ይመልሳል: አማካይ ከሆነ ተግባር ድምር የ ሁሉንም ውጤቶች ተመሳሳይ ለ logical መሞከሪያ እና ያካፍላል ይህን ድምር በ ተመረጠው የ ዋጋዎች መጠን </variable></ahelp>"
#: func_averageif.xhp
msgctxt ""
@@ -61004,7 +60999,7 @@ msgctxt ""
"par_id200801176228491\n"
"help.text"
msgid "AVERAGEIF(Range; Criterion [; Average_Range ])"
-msgstr "መካከለኝ ከሆነ(መጠን: መመዘኛ [; መካከለኝ_መጠን ])"
+msgstr "አማካይ ከሆነ(መጠን: መመዘኛ [; አማካይ_መጠን ])"
#: func_averageif.xhp
msgctxt ""
@@ -61044,7 +61039,7 @@ msgctxt ""
"par_id278275053653\n"
"help.text"
msgid "If a cell in a range of values for calculating the mean is empty or contains text, function AVERAGEIF ignores this cell.<br/>If the whole range is empty, contains only text or all values of the range do not satisfy the condition (or any combination of those), the function returns the #DIV/0! error."
-msgstr "ክፍል በ መጠን ዋጋዎች ውስጥ አማካይ ለማስላት ባዶ ከሆነ ወይንም ጽሁፍ ከያዘ: ተግባር መከከለኛ ከሆነ ይህን ክፍል ይተወዋል <br/>ጠቅላላ መጠን ባዶ ከሆነ: ጽሁፍ ብቻ ከያዘ ወይንም ሁሉንም ዋጋዎች ለ መጠን ሁኔታውን ለማያሟሉ: (ወይንም ማንኛውም ቅልቅል ለ እነዚህ) ተግባር ይመልሳል የ #ማካፈያ በ/0! ስህተት"
+msgstr "ክፍል በ መጠን ዋጋዎች ውስጥ አማካይ ለማስላት ባዶ ከሆነ ወይንም ጽሁፍ ከያዘ: ተግባር አማካይ ከሆነ ይህን ክፍል ይተወዋል <br/>ጠቅላላ መጠን ባዶ ከሆነ: ጽሁፍ ብቻ ከያዘ ወይንም ሁሉንም ዋጋዎች ለ መጠን ሁኔታውን ለማያሟሉ: (ወይንም ማንኛውም ቅልቅል ለ እነዚህ) ተግባር ይመልሳል የ #ማካፈያ በ/0! ስህተት"
#: func_averageif.xhp
msgctxt ""
@@ -61068,7 +61063,7 @@ msgctxt ""
"par_id2509201519225446\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<35\")</item>"
-msgstr "<item type=\"input\">=AVERAGEIF(B2:B6;\"<35\")</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆነ(B2:B6;\"<35\")</item>"
#: func_averageif.xhp
msgctxt ""
@@ -61084,7 +61079,7 @@ msgctxt ""
"par_id250920151922590\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<\"&MAX(B2:B6))</item>"
-msgstr "<item type=\"input\">=መካከለኛ ከሆነ(B2:B6;\"<\"&ከፍተኛ(B2:B6))</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆነ(B2:B6;\"<\"&ከፍተኛ(B2:B6))</item>"
#: func_averageif.xhp
msgctxt ""
@@ -61100,7 +61095,7 @@ msgctxt ""
"par_id2509201519230832\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\">\"&SMALL(B2:B6;1))</item>"
-msgstr "<item type=\"input\">=AVERAGEIF(B2:B6;\">\"&SMALL(B2:B6;1))</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆነ(B2:B6;\">\"&ትንሽ(B2:B6;1))</item>"
#: func_averageif.xhp
msgctxt ""
@@ -61124,7 +61119,7 @@ msgctxt ""
"par_id2509201519315584\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<35\";C2:C6)</item>"
-msgstr "<item type=\"input\">=አማካይ ቢሆን (B2:B6;\"<35\";C2:C6)</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆነ(B2:B6;\"<35\";C2:C6)</item>"
#: func_averageif.xhp
msgctxt ""
@@ -61140,7 +61135,7 @@ msgctxt ""
"par_id2509201519315535\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\">\"&MIN(B2:B6);C2:C6)</item>"
-msgstr "<item type=\"input\">=AVERAGEIF(B2:B6;\">\"&MIN(B2:B6);C2:C6)</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆነ(B2:B6;\">\"&አነስተኛ(B2:B6);C2:C6)</item>"
#: func_averageif.xhp
msgctxt ""
@@ -61156,7 +61151,7 @@ msgctxt ""
"par_id2509201519315547\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<\"&LARGE(B2:B6;2);C2:C6)</item>"
-msgstr "<item type=\"input\">=AVERAGEIF(B2:B6;\"<\"&LARGE(B2:B6;2);C2:C6)</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆነ(B2:B6;\"<\"&ትልቅ(B2:B6;2);C2:C6)</item>"
#: func_averageif.xhp
msgctxt ""
@@ -61180,7 +61175,7 @@ msgctxt ""
"par_id2509201519360514\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIF(A2:A6;\"pen\";B2:B6)</item>"
-msgstr "<item type=\"input\">=መካከለኛ ከሆነ(A2:A6;\"ብዕር\";B2:B6)</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆነ(A2:A6;\"ብዕር\";B2:B6)</item>"
#: func_averageif.xhp
msgctxt ""
@@ -61196,7 +61191,7 @@ msgctxt ""
"par_id250920151936096\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIF(A2:A6;\"pen.*\";B2:B6)</item>"
-msgstr "<item type=\"input\">=መካከለኛ ከሆነ(A2:A6;\"ብዕር\";B2:B6)</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆነ(A2:A6;\"ብዕር\";B2:B6)</item>"
#: func_averageif.xhp
msgctxt ""
@@ -61212,7 +61207,7 @@ msgctxt ""
"par_id2509201519361352\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIF(A2:A6;\".*book.*\";B2:B6)</item>"
-msgstr "<item type=\"input\">=መካከለኛ ከሆነ(A2:A6;\".*መጽሀፍ.*\";B2:B6)</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆነ(A2:A6;\".*መጽሀፍ.*\";B2:B6)</item>"
#: func_averageif.xhp
msgctxt ""
@@ -61236,7 +61231,7 @@ msgctxt ""
"par_id177972099720424\n"
"help.text"
msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of AVERAGEIF function."
-msgstr "እርስዎ መመዘኛ በ ቀላሉ መቀየር ከ ፈለጉ: እርስዎ መግለጽ አለብዎት በ ተለየ ክፍል ውስጥ እና ማመሳከር አለብዎት ይህን ክፍል በ ሁኔታ ውስጥ በ መካከለኛ ከሆነ ተግባር"
+msgstr "እርስዎ መመዘኛ በ ቀላሉ መቀየር ከ ፈለጉ: እርስዎ መግለጽ አለብዎት በ ተለየ ክፍል ውስጥ እና ማመሳከር አለብዎት ይህን ክፍል በ ሁኔታ ውስጥ በ አማካይ ከሆነ ተግባር"
#: func_averageif.xhp
msgctxt ""
@@ -61244,7 +61239,7 @@ msgctxt ""
"par_id134941261230060\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIF(A2:A6;\".*\"&E2&\".*\";B2:B6)</item>"
-msgstr "<item type=\"input\">=AVERAGEIF(A2:A6;\".*\"&E2&\".*\";B2:B6)</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆነ(A2:A6;\".*\"&E2&\".*\";B2:B6)</item>"
#: func_averageif.xhp
msgctxt ""
@@ -61260,7 +61255,7 @@ msgctxt ""
"par_id316901523627285\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIF(B2:B6;\"<\"&E2;C2:C6)</item>"
-msgstr "<item type=\"input\">=አማካይ ቢሆን(B2:B6;\"<\"&E2;C2:C6)</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆነ(B2:B6;\"<\"&E2;C2:C6)</item>"
#: func_averageif.xhp
msgctxt ""
@@ -61284,7 +61279,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AVERAGEIFS function"
-msgstr "መካከለኛ ከሆኑ ተግባር"
+msgstr "አማካይ ከሆኑ ተግባር"
#: func_averageifs.xhp
msgctxt ""
@@ -61292,7 +61287,7 @@ msgctxt ""
"bm_id536715367153671\n"
"help.text"
msgid "<bookmark_value>AVERAGEIFS function</bookmark_value> <bookmark_value>arithmetic mean;satisfying conditions</bookmark_value>"
-msgstr "<bookmark_value>መካከለኛ ከሆኑ ተግባር </bookmark_value> <bookmark_value>የ ሂሳብ መካከለኛ: የሚያሟሉት ሁኔታዎች</bookmark_value>"
+msgstr "<bookmark_value>አማካይ ከሆኑ ተግባር </bookmark_value> <bookmark_value>የ ሂሳብ አማካይ: የሚያሟሉት ሁኔታዎች</bookmark_value>"
#: func_averageifs.xhp
msgctxt ""
@@ -61300,7 +61295,7 @@ msgctxt ""
"hd_id537445374453744\n"
"help.text"
msgid "<variable id=\"averageifs_head\"><link href=\"text/scalc/01/func_averageifs.xhp\">AVERAGEIFS</link></variable> function"
-msgstr "<variable id=\"averageifs_head\"><link href=\"text/scalc/01/func_averageifs.xhp\">መካከለኛ ከሆኑ</link></variable> ተግባር"
+msgstr "<variable id=\"averageifs_head\"><link href=\"text/scalc/01/func_averageifs.xhp\">አማካይ ከሆኑ</link></variable> ተግባር"
#: func_averageifs.xhp
msgctxt ""
@@ -61308,7 +61303,7 @@ msgctxt ""
"par_id538405384053840\n"
"help.text"
msgid "<ahelp hid=\".\"><variable id=\"averageifs_des\">Returns the arithmetic mean of all cells in a range that satisfy given multiple criteria. The AVERAGEIFS function sums up all the results that match the logical tests and divides this sum by the quantity of selected values.</variable></ahelp>"
-msgstr "<ahelp hid=\".\"><variable id=\"averageifs_des\">የ ቁጥር አማካይ ለ ሁሉም ክፍሎች በ መጠን ውስጥ የ ተሰጠውን በርካታ ሁኔታ የሚያሟላ ይመልሳል: መካከለኝ ከሆነ ተግባር ድምር የ ሁሉንም ውጤቶች ተመሳሳይ ለ logical መሞከሪያ እና ያካፍላል ይህን ድምር በ ተመረጠው የ ዋጋዎች መጠን </variable></ahelp>"
+msgstr "<ahelp hid=\".\"><variable id=\"averageifs_des\">የ ቁጥር አማካይ ለ ሁሉም ክፍሎች በ መጠን ውስጥ የ ተሰጠውን በርካታ ሁኔታ የሚያሟላ ይመልሳል: አማካይ ከሆነ ተግባር ድምር የ ሁሉንም ውጤቶች ተመሳሳይ ለ logical መሞከሪያ እና ያካፍላል ይህን ድምር በ ተመረጠው የ ዋጋዎች መጠን </variable></ahelp>"
#: func_averageifs.xhp
msgctxt ""
@@ -61324,7 +61319,7 @@ msgctxt ""
"par_id21050267713178\n"
"help.text"
msgid "AVERAGEIFS(Average_range; Criterion_range1; Criterion1 [; Criterion_range2; Criterion2 [; ...]])"
-msgstr "መካከለኛ ከሆኑ(መካከለኛ_መጠን; መመዘኛ_መጠን1; መመዘኛ1 [; መመዘኛ_መጠን2; መመዘኛ2 [; ...]])"
+msgstr "አማካይ ከሆኑ(መካከለኛ_መጠን; መመዘኛ_መጠን1; መመዘኛ1 [; መመዘኛ_መጠን2; መመዘኛ2 [; ...]])"
#: func_averageifs.xhp
msgctxt ""
@@ -61380,7 +61375,7 @@ msgctxt ""
"par_id51531273215056\n"
"help.text"
msgid "If a cell in a range of values for calculating the mean is empty or contains text, the function AVERAGEIFS ignores this cell.<br/>If a cell contains TRUE, it is treated as 1, if a cell contains FALSE – as 0 (zero).<br/>If the whole range is empty, contains only text or all values of the range do not satisfy the condition (or any combination of those), the function returns the #DIV/0! error.<br/>If the range of values for calculating the mean and any range for finding criterion have unequal sizes, the function returns err:502."
-msgstr "በ ክፍል ውስጥ የ ዋጋዎች መጠን አማካይ ለማስላት ባዶ ከሆነ ወይንም ጽሁፍ ከያዘ: ተግባር መካከለኛ ቢሆን ይህን ክፍል ይተወዋል:<br/>ክፍሉ እውነት ከያዘ: የሚታየው እንደ 1, ነው: ክፍሉ ሀሰት ከያዘ – እንደ 0 (ዜሮ). ነው:<br/>ጠቅላላ መጠኑ ባዶ ከሆነ: ጽሁፍ ብቻ ከያዘ: ሁሉም ዋጋዎች ለ መጠን ሁኔታውን አያሟሉም: (ወይንም ማንኛውም እነዚህ መቀላቀያዎች): ተግባር ይመልሳል #ማካፈያ በ/0! ስህተት.<br/>የ ዋጋዎች መጠን አማካይ ለማስሊያ እና ማንኛውም መጠን ለ መመዘኛ መፈለጊያ እኩል ያልሆኑ መጠኖች ይኖሩታል: ተግባር ይመልሳል ስህተት:502"
+msgstr "በ ክፍል ውስጥ የ ዋጋዎች መጠን አማካይ ለማስላት ባዶ ከሆነ ወይንም ጽሁፍ ከያዘ: ተግባር አማካይ ከሆነ ይህን ክፍል ይተወዋል:<br/>ክፍሉ እውነት ከያዘ: የሚታየው እንደ 1, ነው: ክፍሉ ሀሰት ከያዘ – እንደ 0 (ዜሮ). ነው:<br/>ጠቅላላ መጠኑ ባዶ ከሆነ: ጽሁፍ ብቻ ከያዘ: ሁሉም ዋጋዎች ለ መጠን ሁኔታውን አያሟሉም: (ወይንም ማንኛውም እነዚህ መቀላቀያዎች): ተግባር ይመልሳል #ማካፈያ በ/0! ስህተት.<br/>የ ዋጋዎች መጠን አማካይ ለማስሊያ እና ማንኛውም መጠን ለ መመዘኛ መፈለጊያ እኩል ያልሆኑ መጠኖች ይኖሩታል: ተግባር ይመልሳል ስህተት:502"
#: func_averageifs.xhp
msgctxt ""
@@ -61404,7 +61399,7 @@ msgctxt ""
"par_id24004653627203\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIFS(B2:B6;B2:B6;\">=20\")</item>"
-msgstr "<item type=\"input\">=መካከለኛ ከሆኑ(B2:B6;B2:B6;\">=20\")</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆኑ(B2:B6;B2:B6;\">=20\")</item>"
#: func_averageifs.xhp
msgctxt ""
@@ -61420,7 +61415,7 @@ msgctxt ""
"par_id30279247419921\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIFS(C2:C6;B2:B6;\">=20\";C2:C6;\">70\")</item>"
-msgstr "<item type=\"input\">=AVERAGEIFS(C2:C6;B2:B6;\">=20\";C2:C6;\">70\")</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆኑ(C2:C6;B2:B6;\">=20\";C2:C6;\">70\")</item>"
#: func_averageifs.xhp
msgctxt ""
@@ -61444,7 +61439,7 @@ msgctxt ""
"par_id457966021670\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIFS(C2:C6;B2:B6;\">\"&MIN(B2:B6);B2:B6;\"<\"&MAX(B2:B6))</item>"
-msgstr "<item type=\"input\">=መካከለኛ ከሆኑ(C2:C6;B2:B6;\">\"&አነስተኛ(B2:B6);B2:B6;\"<\"&ከፍተኛ(B2:B6))</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆኑ(C2:C6;B2:B6;\">\"&አነስተኛ(B2:B6);B2:B6;\"<\"&ከፍተኛ(B2:B6))</item>"
#: func_averageifs.xhp
msgctxt ""
@@ -61460,7 +61455,7 @@ msgctxt ""
"par_id303162761931870\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIFS(C2:C6;A2:A6;\"pen.*\";B2:B6;\"<\"&MAX(B2:B6))</item>"
-msgstr "<item type=\"input\">=መካከለኛ ከሆኑ(C2:C6;A2:A6;\"ብዕር.*\";B2:B6;\"<\"&ከፍተኛ(B2:B6))</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆኑ(C2:C6;A2:A6;\"ብዕር.*\";B2:B6;\"<\"&ከፍተኛ(B2:B6))</item>"
#: func_averageifs.xhp
msgctxt ""
@@ -61484,7 +61479,7 @@ msgctxt ""
"par_id316794795433\n"
"help.text"
msgid "If you need to change a criterion easily, you may want to specify it in a separate cell and use a reference to this cell in the condition of AVERAGEIFS function. For example, the above function can be rewritten as follows:"
-msgstr "እርስዎ መመዘኛ በ ቀላሉ መቀየር ከ ፈለጉ: እርስዎ መግለጽ አለብዎት በ ተለየ ክፍል ውስጥ እና ማመሳከር አለብዎት ይህን ክፍል በ ሁኔታ ውስጥ በ መካከለኛ ከሆነ ተግባር: ለምሳሌ: የ ላይኛውን ተግባር እንደገና መጻፍ ይቻላል እንደሚከተለው:"
+msgstr "እርስዎ መመዘኛ በ ቀላሉ መቀየር ከ ፈለጉ: እርስዎ መግለጽ አለብዎት በ ተለየ ክፍል ውስጥ እና ማመሳከር አለብዎት ይህን ክፍል በ ሁኔታ ውስጥ በ አማካይ ከሆኑ ተግባር: ለምሳሌ: የ ላይኛውን ተግባር እንደገና መጻፍ ይቻላል እንደሚከተለው:"
#: func_averageifs.xhp
msgctxt ""
@@ -61492,7 +61487,7 @@ msgctxt ""
"par_id67531072426731\n"
"help.text"
msgid "<item type=\"input\">=AVERAGEIFS(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&MAX(B2:B6))</item>"
-msgstr "<item type=\"input\">=መካከለኛ ከሆኑ(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&ከፍተኛ(B2:B6))</item>"
+msgstr "<item type=\"input\">=አማካይ ከሆኑ(C2:C6;A2:A6;E2&\".*\";B2:B6;\"<\"&ከፍተኛ(B2:B6))</item>"
#: func_averageifs.xhp
msgctxt ""
@@ -64117,7 +64112,7 @@ msgctxt ""
"par_id18472284929530\n"
"help.text"
msgid "<item type=\"input\">=IMCOT(2)</item><br/>returns -0.457657554360286 as a string. <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
-msgstr "<item type=\"input\">=የ ውስብስብ ቁጥር ኮታንጀንት(2)</item><br/>ይመልሳል -0.416146836547142 እንደ ሀረግ <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
+msgstr "<item type=\"input\">=የ ውስብስብ ቁጥር ኮታንጀንት(2)</item><br/>ይመልሳል 0.457657554360286 እንደ ሀረግ <embedvar href=\"text/scalc/01/ful_func.xhp#func_imag_zero\"/>"
#: func_imcsc.xhp
msgctxt ""
@@ -64640,13 +64635,12 @@ msgid "ISOWEEKNUM"
msgstr ""
#: func_isoweeknum.xhp
-#, fuzzy
msgctxt ""
"func_isoweeknum.xhp\n"
"bm_id3159161\n"
"help.text"
msgid "<bookmark_value>ISOWEEKNUM function</bookmark_value>"
-msgstr "<bookmark_value>WEEKNUM function</bookmark_value>"
+msgstr "<bookmark_value>ISO የ ሳምንት ቁጥር ተግባር</bookmark_value>"
#: func_isoweeknum.xhp
msgctxt ""
@@ -64717,7 +64711,7 @@ msgctxt ""
"64\n"
"help.text"
msgid "=ISOWEEKNUM(DATE(1995;1;1)) returns 52. Week 1 starts on Monday, 1995-01-02."
-msgstr "=ISOየ ሳምንት ቁጥር(ቀን(1995;1;1);21) ይመልሳል 52 ሳምንት 1 የሚጀምረው ሰኞ ነው 1995-01-02."
+msgstr "=ISOየ ሳምንት ቁጥር(ቀን(1995;1;1)) ይመልሳል 52 ሳምንት 1 የሚጀምረው ሰኞ ነው 1995-01-02."
#: func_isoweeknum.xhp
msgctxt ""
@@ -66438,7 +66432,7 @@ msgctxt ""
"bm_id3159161\n"
"help.text"
msgid "<bookmark_value>WEEKNUM function</bookmark_value>"
-msgstr "<bookmark_value>WEEKNUM function</bookmark_value>"
+msgstr "<bookmark_value>የ ሳምንት ቁጥር ተግባር</bookmark_value>"
#: func_weeknum.xhp
msgctxt ""
@@ -67945,7 +67939,7 @@ msgctxt ""
"par_id1701201619425624\n"
"help.text"
msgid "The following table has samples of a physical phenomenon taken in 1 second interval."
-msgstr ""
+msgstr "የሚቀጥለው ሰንጠረዥ ናሙናዎች አሉት: የ ሰውነት ሁኔታ በ 1 ሰከንድ ክፍተት የ ተወሰደ"
#: statistics.xhp
msgctxt ""
@@ -68009,7 +68003,7 @@ msgctxt ""
"par_id1000040\n"
"help.text"
msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - Sampling</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"sam01\">ይምረጡ <emph>ዳታ - ስታትስቲክስ - ናሙና</emph></variable>"
#: statistics.xhp
msgctxt ""
@@ -69305,7 +69299,7 @@ msgctxt ""
"par_id1003320\n"
"help.text"
msgid "Ftest"
-msgstr "F መሞከሪያ"
+msgstr "የ F መሞከሪያ"
#: statistics.xhp
msgctxt ""
@@ -69809,7 +69803,7 @@ msgctxt ""
"par_id1000040\n"
"help.text"
msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - Regression</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"sam01\">ይምረጡ <emph>ዳታ - ስታትስቲክስ - ዝቅ ማድረጊያ </emph></variable>"
#: statistics_regression.xhp
msgctxt ""
@@ -69857,7 +69851,7 @@ msgctxt ""
"par_id1701201620340139\n"
"help.text"
msgid "<emph>Power regression</emph>: Find a power curve in the form of <item type=\"literal\">y = a.x^b</item>, where <item type=\"literal\">a</item> is the coefficient, <item type=\"literal\">b</item> is the power that best fits the data."
-msgstr ""
+msgstr "<emph>ሀይል ዝቅ ማድረጊያ </emph>: የሚያገኘው የ ሀይልን ክብ ነው ከ <item type=\"literal\">y = a.x^b</item> ውስጥ ነው: ይህ <item type=\"literal\">a</item> ኮኦፊሸንት ነው <item type=\"literal\">b</item> ሀይል ነው ለ ዳታው ተስማሚ"
#: statistics_regression.xhp
msgctxt ""
@@ -69945,7 +69939,7 @@ msgctxt ""
"par_id14337286612130\n"
"help.text"
msgid "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Sampling</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Descriptive Statistics</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Analysis of Variance (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Correlation</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Exponential Smoothing</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Moving Average</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">t-test</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-test</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-test</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">Chi-square test</link>."
-msgstr "<link href=\"text/scalc/01/statistics.xhp#datasampling\">ናሙና</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">መግለጫ ስታስቲክስ</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">መመርመሪያ የ ልዩነት (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">ግንኙነት</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">ኤክስፖኔንሺያል ማለስለሻ </link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">በ መካከለኛ በ መጓዝ ላይ</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">t-መሞከሪያ</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-መሞከሪያ</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-መሞከሪያ</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">ቺ-ስኴር መሞከሪያ</link>."
+msgstr "<link href=\"text/scalc/01/statistics.xhp#datasampling\">ናሙና</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">መግለጫ ስታስቲክስ</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">መመርመሪያ የ ልዩነት (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">ግንኙነት</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">ኮቫሪያንስ</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">ኤክስፖኔንሺያል ማለስለሻ </link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">በ መካከለኛ በ መጓዝ ላይ</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">t-መሞከሪያ</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-መሞከሪያ</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-መሞከሪያ</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">ቺ-ስኴር መሞከሪያ</link>."
#: text2columns.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/02.po b/source/am/helpcontent2/source/text/scalc/02.po
index 03fadf91f24..48b45b18251 100644
--- a/source/am/helpcontent2/source/text/scalc/02.po
+++ b/source/am/helpcontent2/source/text/scalc/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2016-12-08 23:49+0000\n"
+"PO-Revision-Date: 2016-12-23 17:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481240996.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482515006.000000\n"
#: 02130000.xhp
msgctxt ""
@@ -1056,7 +1056,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Insert Cells Right</link>"
-msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">ክፍሎች በቀኝ ማስገቢያ</link>"
+msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">ክፍሎች በ ቀኝ ማስገቢያ</link>"
#: 18020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/04.po b/source/am/helpcontent2/source/text/scalc/04.po
index 1c214e2dfc2..51a8a52439f 100644
--- a/source/am/helpcontent2/source/text/scalc/04.po
+++ b/source/am/helpcontent2/source/text/scalc/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-09 01:12+0000\n"
+"PO-Revision-Date: 2016-12-23 17:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481245945.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482514102.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -1248,7 +1248,7 @@ msgctxt ""
"69\n"
"help.text"
msgid "Standard date format"
-msgstr "መደበኛ የቀን አቀራረብ"
+msgstr "መደበኛ የ ቀን አቀራረብ"
#: 01020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/guide.po b/source/am/helpcontent2/source/text/scalc/guide.po
index 574e2eb71a4..ccfa83b0728 100644
--- a/source/am/helpcontent2/source/text/scalc/guide.po
+++ b/source/am/helpcontent2/source/text/scalc/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-12-09 01:12+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-23 17:27+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481245971.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482514039.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -2131,8 +2131,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "የ መጠን ምንጭ ለማሰናዳት እንደ መጠን: ክፍሎች ይምረጡ እና ይምረጡ <emph>ማስገቢያ - ስሞች - መግለጫ</emph> የ ሰነዱን ምንጫ ማስቀመጫ እና አይዝጉት"
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -3680,7 +3680,7 @@ msgctxt ""
"bm_id3156329\n"
"help.text"
msgid "<bookmark_value>currency formats; spreadsheets</bookmark_value><bookmark_value>cells; currency formats</bookmark_value><bookmark_value>international currency formats</bookmark_value><bookmark_value>formats; currency formats in cells</bookmark_value><bookmark_value>currencies; default currencies</bookmark_value><bookmark_value>defaults;currency formats</bookmark_value><bookmark_value>changing;currency formats</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>"
+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>"
#: currency_format.xhp
msgctxt ""
@@ -9963,7 +9963,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">Row height</link>"
-msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">የረድፍ እርዝመት</link>"
+msgstr "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">የ ረድፍ እርዝመት</link>"
#: row_height.xhp
msgctxt ""
@@ -10891,7 +10891,7 @@ msgctxt ""
"bm_id3154346\n"
"help.text"
msgid "<bookmark_value>tables; transposing</bookmark_value><bookmark_value>transposing tables</bookmark_value><bookmark_value>inverting tables</bookmark_value><bookmark_value>swapping tables</bookmark_value><bookmark_value>columns; swap with rows</bookmark_value><bookmark_value>rows; swapping with columns</bookmark_value><bookmark_value>tables; rotating</bookmark_value><bookmark_value>rotating; tables</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዦች; ማዟዟሪያ</bookmark_value><bookmark_value>ማዟዟሪያ ሰንጠረዦች</bookmark_value><bookmark_value>መገልበጫ ሰንጠረዦች</bookmark_value><bookmark_value>መቀየሪያ ሰንጠረዦች</bookmark_value><bookmark_value>አምዶች; መቀየሪያ በ ረድፎች</bookmark_value><bookmark_value>ረድፎች; መቀየሪያ በ አምዶች</bookmark_value><bookmark_value>ሰንጠረዦች; ማዞሪያ</bookmark_value><bookmark_value>ማዞሪያ; ሰንጠረዦች</bookmark_value>"
+msgstr "<bookmark_value>ሰንጠረዦች: ማዟዟሪያ</bookmark_value><bookmark_value>ማዟዟሪያ ሰንጠረዦች</bookmark_value><bookmark_value>መገልበጫ ሰንጠረዦች</bookmark_value><bookmark_value>መቀየሪያ ሰንጠረዦች</bookmark_value><bookmark_value>አምዶች: መቀየሪያ በ ረድፎች</bookmark_value><bookmark_value>ረድፎች: መቀየሪያ በ አምዶች</bookmark_value><bookmark_value>ሰንጠረዦች: ማዞሪያ</bookmark_value><bookmark_value>ማዞሪያ: ሰንጠረዦች</bookmark_value>"
#: table_rotate.xhp
msgctxt ""
@@ -11109,7 +11109,7 @@ msgctxt ""
"bm_id3151112\n"
"help.text"
msgid "<bookmark_value>cells; rotating text</bookmark_value> <bookmark_value>rotating; text in cells</bookmark_value> <bookmark_value>text in cells; writing vertically</bookmark_value>"
-msgstr "<bookmark_value>ክፍሎች; ጽሁፍ ማዞሪያ</bookmark_value> <bookmark_value>ማዞሪያ; ጽሁፍ በ ክፍሎች ውስጥ</bookmark_value> <bookmark_value>ጽሁፍ በ ክፍሎች ውስጥ; በ ቁመት መጻፊያ</bookmark_value>"
+msgstr "<bookmark_value>ክፍሎች: ጽሁፍ ማዞሪያ</bookmark_value> <bookmark_value>ማዞሪያ: ጽሁፍ በ ክፍሎች ውስጥ</bookmark_value> <bookmark_value>ጽሁፍ በ ክፍሎች ውስጥ: በ ቁመት መጻፊያ</bookmark_value>"
#: text_rotate.xhp
msgctxt ""
@@ -11831,8 +11831,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "ይምረጡ ክፍል ወይንም መጠን ለ ክፍሎች: እና ከዛ ይምረጡ <emph>ማስገቢያ - ስሞች - መግለጫ</emph> የ <emph>ስሞች መግለጫ</emph> ንግግር ይታያል"
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11884,8 +11884,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">ማስገቢያ - ስሞች - መግለጫ</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/schart.po b/source/am/helpcontent2/source/text/schart.po
index d0989f4e008..584ee43a400 100644
--- a/source/am/helpcontent2/source/text/schart.po
+++ b/source/am/helpcontent2/source/text/schart.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-12-07 02:39+0000\n"
+"PO-Revision-Date: 2016-12-13 02:40+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481078385.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481596838.000000\n"
#: main0000.xhp
msgctxt ""
@@ -449,7 +449,7 @@ msgctxt ""
"par_id0810200904233174\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the trendline equation and the coefficient of determination R².</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ማስገቢያ የ trendline equation and the coefficient of determination R².</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ማስገቢያ የ አቅጣጫ መስመር እኩሌታ እና ኮኦፊሸንት መወሰኛ R².</ahelp>"
#: main0000.xhp
msgctxt ""
@@ -457,7 +457,7 @@ msgctxt ""
"par_id0810200904265639\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts the coefficient of determination R² value.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ማስገቢያ የ coefficient of determination R² value.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ማስገቢያ የ ኮኦፊሺየንት መወሰኛ R² ዋጋ </ahelp>"
#: main0000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/schart/01.po b/source/am/helpcontent2/source/text/schart/01.po
index e2deca6538e..697ef6a7600 100644
--- a/source/am/helpcontent2/source/text/schart/01.po
+++ b/source/am/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-07 21:10+0000\n"
+"PO-Revision-Date: 2016-12-23 17:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481145058.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482515010.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -460,7 +460,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "Left"
-msgstr "በግራ"
+msgstr "በ ግራ"
#: 04020000.xhp
msgctxt ""
@@ -496,7 +496,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "Right"
-msgstr "በቀኝ"
+msgstr "በ ቀኝ"
#: 04020000.xhp
msgctxt ""
@@ -1485,7 +1485,7 @@ msgctxt ""
"par_id8962065\n"
"help.text"
msgid "When the chart is in edit mode, %PRODUCTNAME gives you the equation of the trend line and the coefficient of determination R<sup>2</sup>, even if they are not shown: click on the trend line to see the information in the status bar."
-msgstr "ቻርትስ በ ማረሚያ ዘዴ ውስጥ ሲሆን: %PRODUCTNAME ይሰጣል equation የ አቅጣጫ መስመር እና የ coefficient of determination R<sup>2</sup>ምንም ባይታይም እንኳን: ይጫኑ በ አቅጣጫ መስመር ላይ መረጃ ለ መመልከት በ ሁኔታዎች መደርደሪያ ላይ"
+msgstr "ቻርት በ ማረሚያ ዘዴ ውስጥ ሲሆን: %PRODUCTNAME ይሰጣል እኩሌታ የ አቅጣጫ መስመር እና የ ኮኦፊሸንት መወሰኛ R<sup>2</sup>ምንም ባይታይም እንኳን: ይጫኑ በ አቅጣጫ መስመር ላይ መረጃ ለ መመልከት በ ሁኔታዎች መደርደሪያ ላይ"
#: 04050100.xhp
msgctxt ""
@@ -1501,7 +1501,7 @@ msgctxt ""
"par_id8962066\n"
"help.text"
msgid "To change format of values (use less significant digits or scientific notation), select the equation in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Format Trend Line Equation - Numbers</item>."
-msgstr "የ አቀራረብ ዋጋዎች ለ መቀየር (ይጠቀሙ አነስተኛ አስፈላጊ አሀዞች ወይንም ሳይንሳዊ ምልክቶች): ይምረጡ equation በ ቻርትስ ውስጥ: በ ቀኝ-ይጫኑ ለ መክፈት የ አገባብ ዝርዝር እና ይምረጡ <item type=\"menuitem\">አቀራረብ የ አቅጣጫ መስመር Equation - ቁጥሮች </item>."
+msgstr "የ አቀራረብ ዋጋዎች ለ መቀየር (ይጠቀሙ አነስተኛ አስፈላጊ አሀዞች ወይንም ሳይንሳዊ ምልክቶች): ይምረጡ እኩሌታ በ ቻርት ውስጥ: በ ቀኝ-ይጫኑ ለ መክፈት የ አገባብ ዝርዝር እና ይምረጡ <item type=\"menuitem\">አቀራረብ የ አቅጣጫ መስመር እኩሌታ - ቁጥሮች </item>."
#: 04050100.xhp
msgctxt ""
@@ -1549,7 +1549,7 @@ msgctxt ""
"par_id180820161604098009\n"
"help.text"
msgid "<emph>Linear</emph> trend line: regression through equation <item type=\"literal\">y=a∙x+b</item>. Intercept <item type=\"literal\">b</item> can be forced."
-msgstr "<emph>ቀጥተኛ</emph> የ አቅጣጫ መስመር: ዝቅ ማድረጊያ በ እኩሌታ ውስጥ <item type=\"literal\">y=a∙x+b</item>. ይገናኛል <item type=\"literal\">b</item> ማስገደድ ይቻላል"
+msgstr "<emph>ቀጥተኛ</emph> የ አቅጣጫ መስመር: ዝቅ ማድረጊያ በ እኩሌታ ውስጥ <item type=\"literal\">y=a∙x+b</item> ይገናኛል <item type=\"literal\">b</item> ማስገደድ ይቻላል"
#: 04050100.xhp
msgctxt ""
@@ -1661,7 +1661,7 @@ msgctxt ""
"hd_id5744193\n"
"help.text"
msgid "The linear regression equation"
-msgstr "የ ቀጥተኛ ዝቅ ማድረጊያ ስሌት"
+msgstr "የ ቀጥተኛ ዝቅ ማድረጊያ እኩሌታ"
#: 04050100.xhp
msgctxt ""
@@ -1669,7 +1669,7 @@ msgctxt ""
"par_id9251991\n"
"help.text"
msgid "The <emph>linear regression</emph> follows the equation <item type=\"literal\">y=m*x+b</item>."
-msgstr "የ <emph>ቀጥተኛ ዝቅ ማድረጊያ</emph> የሚከተለው ስሌቶች ነው <item type=\"literal\">y=m*x+b</item>."
+msgstr "የ <emph>ቀጥተኛ ዝቅ ማድረጊያ</emph> የሚከተለው እኩሌታ ነው <item type=\"literal\">y=m*x+b</item>."
#: 04050100.xhp
msgctxt ""
@@ -1701,7 +1701,7 @@ msgctxt ""
"par_id9244361\n"
"help.text"
msgid "r<sup>2</sup> = RSQ(Data_Y;Data_X)"
-msgstr "r<sup>2</sup> = ስኴር ይመልሳል ለ ፒርሰን ኮሪሌሽን ኮፊሸንት ለ ሁለት ስብስብ ዳታ(ዳታ_Y:ዳታ_X)"
+msgstr "r<sup>2</sup> = RSQ(ዳታ_Y:ዳታ_X)"
#: 04050100.xhp
msgctxt ""
@@ -1709,7 +1709,7 @@ msgctxt ""
"par_id2083498\n"
"help.text"
msgid "Besides m, b and r<sup>2</sup> the array function <emph>LINEST</emph> provides additional statistics for a regression analysis."
-msgstr "በተጨማሪ ከ m, b እና r<sup>2</sup>የ ማዘጋጃ ተግባር <emph>ቀጥታ መስመር</emph> ያቀርባል ተጨማሪ ስታትስቲክስ ለ ዝቅ ማድረጊያ መመርመሪያ"
+msgstr "በተጨማሪ ከ m, b እና r<sup>2</sup>የ ማዘጋጃ ተግባር <emph>የ ቀጥታ መስመር</emph> ያቀርባል ተጨማሪ ስታትስቲክስ ለ ዝቅ ማድረጊያ መመርመሪያ"
#: 04050100.xhp
msgctxt ""
@@ -1733,7 +1733,7 @@ msgctxt ""
"par_id2134159\n"
"help.text"
msgid "a = SLOPE(Data_Y;LN(Data_X))"
-msgstr "a = SLOPE(Data_Y;LN(Data_X))"
+msgstr "a = ስሎፕ(ዳታ_Y: ሎጋሪዝም(ዳታ_X))"
#: 04050100.xhp
msgctxt ""
@@ -1749,7 +1749,7 @@ msgctxt ""
"par_id5649281\n"
"help.text"
msgid "r<sup>2</sup> = RSQ(Data_Y;LN(Data_X))"
-msgstr "r<sup>2</sup> = ስኴር ይመልሳል ለ ፒርሰን ኮሪሌሽን ኮፊሸንት ለ ሁለት ስብስብ ዳታ(ዳታ_Y:ዳታ_X)"
+msgstr "r<sup>2</sup> = RSQ(ዳታ_Y:ዳታ_X)"
#: 04050100.xhp
msgctxt ""
@@ -1821,7 +1821,7 @@ msgctxt ""
"par_id5437177\n"
"help.text"
msgid "r<sup>2</sup> = RSQ(LN(Data_Y);Data_X)"
-msgstr "r<sup>2</sup> = ስኴር ይመልሳል ለ ፒርሰን ኮሪሌሽን ኮፊሸንት ለ ሁለት ስብስብ ዳታ(ቀጥተኛ ዘዴ(ዳታ_Y:ዳታ_X)"
+msgstr "r<sup>2</sup> = RSQ(ቀጥተኛ ዘዴ(ዳታ_Y:ዳታ_X)"
#: 04050100.xhp
msgctxt ""
@@ -1845,7 +1845,7 @@ msgctxt ""
"par_id1857661\n"
"help.text"
msgid "For <emph>power regression</emph> curves a transformation to a linear model takes place. The power regression follows the equation <item type=\"literal\">y=b*x^a</item> , which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
-msgstr "ለ <emph>ሀይል ዝቅ ማድረጊያ</emph> ክቦች መቀየሪያ ወደ ቀጥተኛ ዘዴ ይቀየራል: የ ሀይል ዝቅ ማድረጊያ እኩሌታ ይከተላል: <item type=\"literal\">y=b*x^a</item> , የሚቀየረውን ወደ <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
+msgstr "ለ <emph>ሀይል ዝቅ ማድረጊያ</emph> ክቦች መቀየሪያ ወደ ቀጥተኛ ዘዴ ይቀየራል: የ ሀይል ዝቅ ማድረጊያ እኩሌታ ይከተላል: <item type=\"literal\">y=b*x^a</item> የሚቀየረውን ወደ <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
#: 04050100.xhp
msgctxt ""
@@ -1869,7 +1869,7 @@ msgctxt ""
"par_id2357249\n"
"help.text"
msgid "r<sup>2</sup> = RSQ(LN(Data_Y);LN(Data_X))"
-msgstr "r<sup>2</sup> = ስኴር ይመልሳል ለ ፒርሰን ኮሪሌሽን ኮፊሸንት ለ ሁለት ስብስብ ዳታ(ቀጥተኛ ዘዴ(ዳታ_Y):ቀጥተኛ ዘዴ(ዳታ_X))"
+msgstr "r<sup>2</sup> = RSQ(ቀጥተኛ ዘዴ(ዳታ_Y):ቀጥተኛ ዘዴ(ዳታ_X))"
#: 04050100.xhp
msgctxt ""
@@ -1917,7 +1917,7 @@ msgctxt ""
"par_id8202154\n"
"help.text"
msgid "The first element of the third row of the LINEST output is the value of r<sup>2</sup>. See the <link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> function for details on proper use and an explanation of the other output parameters."
-msgstr "የ መጀመሪያው አካል የ ሶስተኛው ረድፍ የ ቀጥታ መስመር ውጤት ዋጋ ነው ለ r<sup>2</sup> ይህን ይመልከቱ <link href=\"text/scalc/01/04060107.xhp#Section8\">ቀጥታ መስመር</link> ተግባር ለ መደበኛ መጠቀሚያ እና ለ መግለጫ ለ ሌሎች ውጤቶች ደንብ"
+msgstr "የ መጀመሪያው አካል የ ሶስተኛው ረድፍ የ ቀጥታ መስመር ውጤት ዋጋ ነው ለ r<sup>2</sup> ይህን ይመልከቱ <link href=\"text/scalc/01/04060107.xhp#Section8\">የ ቀጥታ መስመር</link> ተግባር ለ መደበኛ መጠቀሚያ እና ለ መግለጫ ለ ሌሎች ውጤቶች ደንብ"
#: 04050100.xhp
msgctxt ""
@@ -1965,7 +1965,7 @@ msgctxt ""
"par_id4562215\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060181.xhp#rsq\">RSQ</link> function"
-msgstr "<link href=\"text/scalc/01/04060181.xhp#rsq\">ስኴር ይመልሳል ለ ፒርሰን ኮሪሌሽን ኮፊሸንት ለ ሁለት ስብስብ ዳታ</link> ተግባር"
+msgstr "<link href=\"text/scalc/01/04060181.xhp#rsq\">RSQ</link> ተግባር"
#: 04060000.xhp
msgctxt ""
@@ -3671,7 +3671,7 @@ msgctxt ""
"61\n"
"help.text"
msgid "Use this feature if you are working with values that differ sharply from each other. You can use logarithmic scaling to make the grid lines of the axis equidistant but have values that may increase or decrease."
-msgstr "ይህን ገጽታ ይጠቀሙ እርስዎ የሚሰሩ ከሆነ በጣም በሚለያዩ ዋጋዎች ከ እያንዳንዳቸ: እርስዎ መጠቀም ይችላሉ logarithmic መመጠኛ የ መጋጠሚያ መስመሮች ለ መፍጠር የ axis እኩል እርቀት ነገር ግን ዋጋ ያላቸው የሚጨምር ወይንም የሚቀንስ"
+msgstr "ይህን ገጽታ ይጠቀሙ እርስዎ የሚሰሩ ከሆነ በጣም በሚለያዩ ዋጋዎች ከ እያንዳንዳቸ: እርስዎ መጠቀም ይችላሉ ሎጋሪዝም መመጠኛ የ መጋጠሚያ መስመሮች ለ መፍጠር የ axis እኩል እርቀት ነገር ግን ዋጋ ያላቸው የሚጨምር ወይንም የሚቀንስ"
#: 05040201.xhp
msgctxt ""
@@ -4822,7 +4822,7 @@ msgctxt ""
"par_id4721823\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the x axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ማዞሪያ ማሰናጃ ለ ቻርትስ በ x axis ላይ: ለ አዲሱ ማሰናጃ ቅድመ እይታ ወዲያውኑ ይታያል </ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ማዞሪያ ማሰናጃ ለ ቻርት በ x axis ላይ: ለ አዲሱ ማሰናጃ ቅድመ እይታ ወዲያውኑ ይታያል </ahelp>"
#: three_d_view.xhp
msgctxt ""
@@ -4830,7 +4830,7 @@ msgctxt ""
"par_id5806756\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the y axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ማዞሪያ ማሰናጃ ለ ቻርትስ በ y axis ላይ: ለ አዲሱ ማሰናጃ ቅድመ እይታ ወዲያውኑ ይታያል </ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ማዞሪያ ማሰናጃ ለ ቻርት በ y axis ላይ: ለ አዲሱ ማሰናጃ ቅድመ እይታ ወዲያውኑ ይታያል </ahelp>"
#: three_d_view.xhp
msgctxt ""
@@ -4838,7 +4838,7 @@ msgctxt ""
"par_id8915372\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the z axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ማዞሪያ ማሰናጃ ለ ቻርትስ በ z axis ላይ: ለ አዲሱ ማሰናጃ ቅድመ እይታ ወዲያውኑ ይታያል </ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ማዞሪያ ማሰናጃ ለ ቻርት በ z axis ላይ: ለ አዲሱ ማሰናጃ ቅድመ እይታ ወዲያውኑ ይታያል </ahelp>"
#: three_d_view.xhp
msgctxt ""
@@ -5038,7 +5038,7 @@ msgctxt ""
"par_id6394238\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to switch between an illumination model of a sphere or a cube.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይጫኑ ለ መቀያየር የ ብርሀን ምንጭ ዘዴ ከ sphere ወይንም ከ cube.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይጫኑ ለ መቀያየር የ ብርሀን ምንጭ ዘዴ ከ ስፌር ወይንም ኲዩብ </ahelp>"
#: three_d_view.xhp
msgctxt ""
@@ -6966,7 +6966,7 @@ msgctxt ""
"par_id6128421\n"
"help.text"
msgid "The <emph>Resolution</emph> determines how many line segments are calculated to draw a piece of polynomial between two data points. You can see the intermediate points if you click any data point."
-msgstr "ይህ <emph>ሪዝፕሊሽን</emph> የሚወስነው ምን ያህል የ መስመር ክፋዮች እንደሚሰሉ ነው ለ መሳል ትንሽ የ polynomial በ ሁለት ዳታ ነጥቦች መካከል: እርስዎ መመልከት ይችላሉ መሀከለኛ ነጥቦች እርስዎ ከ ተጫኑ ማንኛውንም የ ዳታ ነጥብ"
+msgstr "ይህ <emph>ሪዞሊሽን</emph> የሚወስነው ምን ያህል የ መስመር ክፋዮች እንደሚሰሉ ነው ለ መሳል ትንሽ ፖሊኖሚያል በ ሁለት ዳታ ነጥቦች መካከል: እርስዎ መመልከት ይችላሉ መሀከለኛ ነጥቦች እርስዎ ከ ተጫኑ ማንኛውንም የ ዳታ ነጥብ"
#: type_xy.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sdraw.po b/source/am/helpcontent2/source/text/sdraw.po
index 97ee84d1b4d..364f1d6ef7d 100644
--- a/source/am/helpcontent2/source/text/sdraw.po
+++ b/source/am/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-01 01:08+0000\n"
+"PO-Revision-Date: 2016-12-14 16:50+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480554483.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481734231.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1063,7 +1063,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "You can create simple 3D objects such as cubes, spheres, and cylinders in $[officename] Draw and even modify the light source of the objects."
-msgstr "እርስዎ መፍጠር ይችላሉ የ 3ዲ እቃዎች እንደ cubes, spheres, and cylinders በ $[officename] መሳያ እና የ እቃውን ብርሀን ምንጭ በማሻሻል"
+msgstr "እርስዎ መፍጠር ይችላሉ የ 3ዲ እቃዎች እንደ ኪዩብስ: ስፌርስ: እና ሲሊንደሮች በ $[officename] መሳያ እና የ እቃውን ብርሀን ምንጭ በማሻሻል"
#: main0503.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sdraw/guide.po b/source/am/helpcontent2/source/text/sdraw/guide.po
index a5a1a85588a..b2ea08e3bfd 100644
--- a/source/am/helpcontent2/source/text/sdraw/guide.po
+++ b/source/am/helpcontent2/source/text/sdraw/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2016-12-09 00:50+0000\n"
+"PO-Revision-Date: 2016-12-23 17:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481244602.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482515042.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -623,7 +623,7 @@ msgctxt ""
"71\n"
"help.text"
msgid "In the following illustrations, the original objects are on the left and the modified shapes on the right."
-msgstr "በሚቀጥለው ማብራሪያ ማሳያ ዋናው እቃ በስተ ግራ ነው እና የተሻሻለው ቅርጽ በቀኝ ነው"
+msgstr "በሚቀጥለው ማብራሪያ ማሳያ ዋናው እቃ በስተ ግራ ነው እና የተሻሻለው ቅርጽ በ ቀኝ ነው"
#: combine_etc.xhp
msgctxt ""
@@ -885,7 +885,7 @@ msgctxt ""
"33\n"
"help.text"
msgid "Open the <emph>Ellipses</emph> toolbar and click one of the <emph>Circle Pie</emph> or <emph>Ellipse Pie</emph> icons <image id=\"img_id3155768\" src=\"cmd/sc_circlepie_unfilled.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3155768\">Icon</alt></image>. The mouse pointer changes to a cross hair with a small icon of a sector."
-msgstr "መክፈቻ የ <emph>Ellipses</emph> እቃ መደርደሪያ እና ይጫኑ አንዱን <emph>Circle Pie</emph> ወይንም <emph>Ellipse Pie</emph> ምልክቶች <image id=\"img_id3155768\" src=\"cmd/sc_circlepie_unfilled.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3155768\">ምልክት</alt></image>. የ አይጥ መጠቆሚያው ይቀየራል ወደ መስቀል ፀጉር አጠገቡም ትንሽ ክብ ምልክት ይኖራል"
+msgstr "መክፈቻ የ <emph>ኤሊፕስ</emph> እቃ መደርደሪያ እና ይጫኑ አንዱን <emph>ክብ ፓይ</emph> ወይንም <emph>ኤሊፕስ ፓይ</emph> ምልክቶች <image id=\"img_id3155768\" src=\"cmd/sc_circlepie_unfilled.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3155768\">ምልክት</alt></image> የ አይጥ መጠቆሚያው ይቀየራል ወደ መስቀል ፀጉር አጠገቡም ትንሽ ክብ ምልክት ይኖራል"
#: draw_sector.xhp
msgctxt ""
@@ -1000,7 +1000,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "The following example creates a stack of coins by making multiple copies of a single ellipse."
-msgstr "የሚቀጥለው ምሳሌ የ ሳንቲሞች ክምር ይፈጥራል በርካታ ኮፒዎች በ ነጠላ ellipse."
+msgstr "የሚቀጥለው ምሳሌ የ ሳንቲሞች ክምር ይፈጥራል በርካታ ኮፒዎች በ ነጠላ ኤሊፕስ"
#: duplicate_object.xhp
msgctxt ""
@@ -1705,7 +1705,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Right-click and choose <emph>Modify - Connect</emph>."
-msgstr "በቀኝ-ይጫኑ እና ይምረጡ <emph>ማሻሻያ - ማገናኛ</emph>."
+msgstr "በ ቀኝ-ይጫኑ እና ይምረጡ <emph>ማሻሻያ - ማገናኛ</emph>."
#: join_objects.xhp
msgctxt ""
@@ -2056,7 +2056,7 @@ msgctxt ""
"bm_id3154684\n"
"help.text"
msgid "<bookmark_value>rotating; draw objects</bookmark_value><bookmark_value>draw objects; rotating</bookmark_value><bookmark_value>pivot points of draw objects</bookmark_value><bookmark_value>skewing draw objects</bookmark_value>"
-msgstr "<bookmark_value>ማዞሪያ; መሳያ እቃዎች</bookmark_value><bookmark_value>መሳያ እቃዎች; ማዞሪያ</bookmark_value><bookmark_value>pivot points of መሳያ እቃዎች</bookmark_value><bookmark_value>skewing መሳያ እቃዎች</bookmark_value>"
+msgstr "<bookmark_value>ማዞሪያ: መሳያ እቃዎች</bookmark_value><bookmark_value>መሳያ እቃዎች: ማዞሪያ</bookmark_value><bookmark_value>የ pivot ነጥቦች ለ መሳያ እቃዎች</bookmark_value><bookmark_value>የሚያጋድልበት ለ መሳያ እቃዎች</bookmark_value>"
#: rotate_object.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index cecabe039d2..1a18fd7c088 100644
--- a/source/am/helpcontent2/source/text/shared/00.po
+++ b/source/am/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-11-17 14:49+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-12-23 17:30+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479394176.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482514207.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -617,7 +617,7 @@ msgctxt ""
"bm_id3150702\n"
"help.text"
msgid "<bookmark_value>Internet glossary</bookmark_value> <bookmark_value>common terms;Internet glossary</bookmark_value> <bookmark_value>glossaries;Internet terms</bookmark_value> <bookmark_value>terminology;Internet glossary</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ኢንተርኔት ቃላት መፍቻ</bookmark_value> <bookmark_value>የ ተለመደ ደንብ: የ ኢንተርኔት ቃላት መፍቻ</bookmark_value> <bookmark_value>ቃላት መፍቻ: የ ኢንተርኔት ደንቦች</bookmark_value> <bookmark_value>የ ስርአት ደንብ: የ ኢንተርኔት ቃላት መፍቻ</bookmark_value>"
#: 00000002.xhp
msgctxt ""
@@ -625,7 +625,7 @@ msgctxt ""
"hd_id3150702\n"
"help.text"
msgid "<link href=\"text/shared/00/00000002.xhp\" name=\"Glossary of Internet Terms\">Glossary of Internet Terms</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000002.xhp\" name=\"Glossary of Internet Terms\">የ ኢንተርኔት ደንብ ቃላት መፍቻ</link>"
#: 00000002.xhp
msgctxt ""
@@ -633,7 +633,7 @@ msgctxt ""
"par_id3155577\n"
"help.text"
msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, e-mail, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news."
-msgstr ""
+msgstr "እርስዎ አዲስ ከሆኑ ለ ኢንተርኔት: ብዙ አዲስ ያልተለመዱ ቃሎች ይገጥምዎታል: ለምሳሌ: መቃኛ: ምልክት ማድረጊያ: ኢ-ሜይል: ድህረ ገጽ: መፈለጊያ ሞተር: እና በጣም ብዙ በርካታ ቃሎች ይገጥምዎታል: የ መጀመሪያውን ደረጃ ቀላል ለማድረግ: ይህ ቃላት መፍቻ ጥቂት በጣም አስፈላጊ የሆኑትን ለ መግለጽ ይሞክራል በ ኢንተርኔት: ኢንትራኔት: ደብዳቤ: እና ዜናዎች ውስጥ"
#: 00000002.xhp
msgctxt ""
@@ -641,7 +641,7 @@ msgctxt ""
"hd_id18082016234439503\n"
"help.text"
msgid "CMIS"
-msgstr ""
+msgstr "CMIS"
#: 00000002.xhp
msgctxt ""
@@ -673,7 +673,7 @@ msgctxt ""
"hd_id3153146\n"
"help.text"
msgid "Frames"
-msgstr ""
+msgstr "ክፈፎች"
#: 00000002.xhp
msgctxt ""
@@ -681,7 +681,7 @@ msgctxt ""
"par_id3157909\n"
"help.text"
msgid "Frames are useful for designing the layout of <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages. $[officename] uses floating frames into which you can place objects such as graphics, movie files and sound. The context menu of a frame shows the options for restoring or editing frame contents. Some of these commands are also listed in <emph>Edit - Object</emph> when the frame is selected."
-msgstr ""
+msgstr "ክፈፎች በጣም ጠቃሚ ናቸው ንድፍ ለ መፍጠር የ<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> ገጾች $[officename] ተንሳፋፊ ክፈፎች ይጠቀሙ እርስዎ እቃዎችን የሚያስቀምጡበት እንደ ንድፎች: ሙቪ ፋይሎች: እና ድምጾች: የ ክፈፍ አገባብ ዝርዝር የሚያሳየው ምርጫዎች ለ እንደ ነበር መመለሻ ወይንም የ ክፈፍ ይዞታዎችን ለማረም ነው: አንዳንድ ትእዛዞች ተዘርዝረዋል: በ <emph> ማረሚያ - እቃ</emph> ክፈፍ በሚመረጥ ጊዜ"
#: 00000002.xhp
msgctxt ""
@@ -689,7 +689,7 @@ msgctxt ""
"hd_id3147077\n"
"help.text"
msgid "FTP"
-msgstr ""
+msgstr "FTP"
#: 00000002.xhp
msgctxt ""
@@ -697,7 +697,7 @@ msgctxt ""
"par_id3147335\n"
"help.text"
msgid "FTP stands for File Transfer Protocol and is the standard transfer protocol for files in the Internet. An FTP server is a program on a computer connected to the Internet which stores files to be transmitted with the aid of FTP. While FTP is responsible for transmitting and downloading Internet files, <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol) provides the connection setup and data transfer between WWW servers and clients."
-msgstr ""
+msgstr "FTP ማለት የ File Transfer Protocol እና መደበኛ የ ማስተላለፊያ አሰራር ነው ለ ፋይሎች በ ኢንተርኔት ውስጥ: የ FTP ሰርቨር ፕሮግራም ነው: በ ኮምፒዩተር ላይ ከ ኢንተርኔት ጋር የ ተገናኘ ፋይሎች የሚያጠራቅም እና የሚያስተላልፍ በ FTP. በመረዳት: FTP ሀላፊ ነው ለ ማስተላለፍ እና ለማውረድ ፋይሎችን ከ ኢንተርኔት ላይ: <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol) የሚያቀርበው ግንኙነት ማሰናዳት ነው እና ዳታ ማስተላለፍ በ WWW ሰርቨሮች እና ደንበኞች መካከል"
#: 00000002.xhp
msgctxt ""
@@ -713,7 +713,7 @@ msgctxt ""
"hd_id3145609\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: 00000002.xhp
msgctxt ""
@@ -769,7 +769,7 @@ msgctxt ""
"hd_id3149290\n"
"help.text"
msgid "Hyperlink"
-msgstr ""
+msgstr "Hyperlink"
#: 00000002.xhp
msgctxt ""
@@ -857,7 +857,7 @@ msgctxt ""
"hd_id3152881\n"
"help.text"
msgid "Server Side ImageMaps"
-msgstr ""
+msgstr "የ ሰርቨር በኩል የ ምስል ካርታ"
#: 00000002.xhp
msgctxt ""
@@ -873,7 +873,7 @@ msgctxt ""
"par_id3147502\n"
"help.text"
msgid "W3C (CERN) HTTP Server (Format type: MAP - CERN)"
-msgstr ""
+msgstr "W3C (CERN) HTTP ሰርቨር (የ አቀራረብ አይነት: ካርታ - CERN)"
#: 00000002.xhp
msgctxt ""
@@ -881,7 +881,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "NCSA HTTP Server (Format type: MAP - NCSA)"
-msgstr ""
+msgstr "NCSA HTTP ሰርቨር (የ አቀራረብ አይነት: ካርታ - NCSA)"
#: 00000002.xhp
msgctxt ""
@@ -905,7 +905,7 @@ msgctxt ""
"hd_id3152418\n"
"help.text"
msgid "Client Side ImageMap"
-msgstr ""
+msgstr "በ ደንበኛ በኩል የ ምስል ካርታ"
#: 00000002.xhp
msgctxt ""
@@ -953,7 +953,7 @@ msgctxt ""
"hd_id3145647\n"
"help.text"
msgid "Proxy"
-msgstr ""
+msgstr "ወኪል"
#: 00000002.xhp
msgctxt ""
@@ -1009,7 +1009,7 @@ msgctxt ""
"hd_id3153950\n"
"help.text"
msgid "Search Engines"
-msgstr ""
+msgstr "መፈለጊያ ሞተሮች"
#: 00000002.xhp
msgctxt ""
@@ -1420,7 +1420,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "Line Style"
-msgstr "የመስመር ዘዴ"
+msgstr "የ መስመር ዘዴ"
#: 00000004.xhp
msgctxt ""
@@ -1437,7 +1437,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "Line Color"
-msgstr "የመስመር ቀለም"
+msgstr "የ መስመር ቀለም"
#: 00000004.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "Line Width"
-msgstr "የመስመር ስፋት"
+msgstr "የ መስመር ስፋት"
#: 00000004.xhp
msgctxt ""
@@ -1471,7 +1471,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "Area Style / Filling"
-msgstr "የቦታ ዘዴ / መሙያ"
+msgstr "የ ቦታ ዘዴ / መሙያ"
#: 00000004.xhp
msgctxt ""
@@ -2183,7 +2183,7 @@ msgctxt ""
"107\n"
"help.text"
msgid "Number System"
-msgstr "የቁጥር ስርአት"
+msgstr "የ ቁጥር ስርአት"
#: 00000005.xhp
msgctxt ""
@@ -4202,7 +4202,7 @@ msgctxt ""
"par_id3\n"
"help.text"
msgid "The other file types show options dialogs where you can set the width and height of the exported image."
-msgstr "ሌሎች የ ፋይል አይነቶች የሚያሳዩት የ ምርጫዎች ንግግር እርስዎም የሚያስችል ነው ስፋት እና እርዝመት ማሰናዳት ለሚላከው ምስል"
+msgstr "ሌሎች የ ፋይል አይነቶች የሚያሳዩት የ ምርጫዎች ንግግር እርስዎን የሚያስችል ነው ስፋት እና እርዝመት ማሰናዳት ለሚላከው ምስል"
#: 00000200.xhp
msgctxt ""
@@ -5182,7 +5182,7 @@ msgctxt ""
"32\n"
"help.text"
msgid "Applies a date format (Day, Month, Year) to the imported data in a column."
-msgstr "የቀን አቀራረብ መፈጸሚያ (ቀን ፡ ወር ፡ አመት) ወደ አምዱ ለመጡት ዳታ"
+msgstr "የ ቀን አቀራረብ መፈጸሚያ (ቀን: ወር: አመት) ወደ አምዱ ለመጣው ዳታ"
#: 00000208.xhp
msgctxt ""
@@ -5200,7 +5200,7 @@ msgctxt ""
"34\n"
"help.text"
msgid "Applies a date format (Month, Day, Year) to the imported data in a column."
-msgstr "የቀን አቀራረብ መፈጸሚያ (ወር ፡ ቀን ፡ አመት) ወደ አምዱ ለመጡት ዳታ"
+msgstr "የ ቀን አቀራረብ መፈጸሚያ (ቀን: ወር: አመት) ወደ አምዱ ለመጣው ዳታ"
#: 00000208.xhp
msgctxt ""
@@ -5218,7 +5218,7 @@ msgctxt ""
"36\n"
"help.text"
msgid "Applies a date format (Year, Month, Day) to the imported data in a column."
-msgstr "የቀን አቀራረብ መፈጸሚያ (አመት ፡ ወር ፡ ቀን) ወደ አምዱ ለመጡት ዳታ"
+msgstr "የ ቀን አቀራረብ መፈጸሚያ (አመት: ወር: ቀን) ወደ አምዱ ለመጣው ዳታ"
#: 00000208.xhp
msgctxt ""
@@ -5281,7 +5281,7 @@ msgctxt ""
"77\n"
"help.text"
msgid "Date format"
-msgstr "የቀን አቀራረብ"
+msgstr "የ ቀን አቀራረብ"
#: 00000208.xhp
msgctxt ""
@@ -8414,7 +8414,7 @@ msgctxt ""
"par_id9988402\n"
"help.text"
msgid "<variable id=\"packagemanager_eu\">Choose <emph>Tools - Extension Manager</emph>, click <emph>Updates</emph> button</variable>"
-msgstr "<variable id=\"packagemanager_eu\">ይምረጡ <emph>መሳሪያዎች - የተጨማሪ አስተዳዳሪ</emph> ይጫኑ <emph>ማሻሻያ</emph>ቁልፍ</variable>"
+msgstr "<variable id=\"packagemanager_eu\">ይምረጡ <emph>መሳሪያዎች - የ ተጨማሪ አስተዳዳሪ</emph> ይጫኑ <emph>ማሻሻያ</emph>ቁልፍ</variable>"
#: 00000406.xhp
msgctxt ""
@@ -9640,7 +9640,7 @@ msgctxt ""
"25\n"
"help.text"
msgid "<variable id=\"FehlendesElement\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph>. When referenced fields no longer exist, you see this dialog</variable>"
-msgstr "<variable id=\"FehlendesElement\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ: ይምረጡ የ <emph>ጥያቄዎች</emph> ምልክት እና ከዛ ይምረጡ <emph>ማረሚያ - ማረሚያ</emph>. ማመሳከሪያው ገጽ በምይገኝ ጊዜ: ይህ ንግግር ለ እርስዎ ይታያልdialog</variable>"
+msgstr "<variable id=\"FehlendesElement\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ: ይምረጡ የ <emph>ጥያቄዎች</emph> ምልክት እና ከዛ ይምረጡ <emph>ማረሚያ - ማረሚያ</emph> ማመሳከሪያው ገጽ በማይገኝ ጊዜ: ይህ ንግግር ለ እርስዎ ይታያል </variable>"
#: 00000450.xhp
msgctxt ""
@@ -12070,15 +12070,6 @@ msgstr "ይምረጡ <emph>አቀራረብ - ገጽ - መደብ</emph> tab (በ
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "ይምረጡ <emph>አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph>ቦታ - ቀለሞች</emph> tab"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
@@ -12101,7 +12092,7 @@ msgctxt ""
"143\n"
"help.text"
msgid "Choose <emph>Format - Chart Wall - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ -የ ቻርትስ ግድግዳ - ግልጽነት</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph>አቀራረብ -የ ቻርት ግድግዳ - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -12110,7 +12101,7 @@ msgctxt ""
"144\n"
"help.text"
msgid "Choose <emph>Format - Chart Area - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - የ ቻርትስ ቦታ - ግልጽነት</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph>አቀራረብ - የ ቻርት ቦታ - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -12119,7 +12110,7 @@ msgctxt ""
"145\n"
"help.text"
msgid "Choose <emph>Format - Chart Floor - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ -የ ቻርትስ ወለል - ግልጽነት</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph>አቀራረብ -የ ቻርት ወለል - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -12128,7 +12119,7 @@ msgctxt ""
"146\n"
"help.text"
msgid "Choose <emph>Format - Title - All Titles - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - ሁሉም አርእስቶች - ግልጽነት</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - ሁሉንም አርእስቶች - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -12137,7 +12128,7 @@ msgctxt ""
"147\n"
"help.text"
msgid "Choose <emph>Format - Title - Main Title - Transparency </emph>tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - ዋናው አርእስት - ግልጽነት</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - ዋናው አርእስት - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -12146,7 +12137,7 @@ msgctxt ""
"148\n"
"help.text"
msgid "Choose <emph>Format - Title - Subtitle - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - ንዑስ አርእስት - ግልጽነት</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - ንዑስ አርእስት - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -12155,7 +12146,7 @@ msgctxt ""
"149\n"
"help.text"
msgid "Choose <emph>Format - Title - Title (X Axis) - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - አርእስት (X Axis) - ግልጽነት</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - አርእስት (X Axis) - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -12164,7 +12155,7 @@ msgctxt ""
"150\n"
"help.text"
msgid "Choose <emph>Format - Title - Title (Y Axis) - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - አርእስት (Y Axis) - ግልጽነት</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - አርእስት (Y Axis) - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -12173,7 +12164,7 @@ msgctxt ""
"151\n"
"help.text"
msgid "Choose <emph>Format - Title - Title (Z Axis) - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - አርእስት (Z Axis) - ግልጽነት</emph> tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph>አቀራረብ - አርእስት - አርእስት (Z Axis) - ግልጽነት</emph> tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -12182,7 +12173,7 @@ msgctxt ""
"152\n"
"help.text"
msgid "Choose <emph>Format - Object Properties - Data Point - Transparency</emph> - tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - እቃ ባህሪዎች - የ ዳታ ነጥብ - ግልጽነት</emph> - tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph>አቀራረብ - እቃ ባህሪዎች - የ ዳታ ነጥብ - ግልጽነት</emph> - tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
@@ -12191,7 +12182,7 @@ msgctxt ""
"153\n"
"help.text"
msgid "Choose <emph>Format - Object Properties - Data Series - Transparency</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph>አቀራረብ - እቃ ባህሪዎች - ተከታታይ ዳታ - ግልጽነት</emph> - tab (የ ቻርትስ ሰነዶች)"
+msgstr "ይምረጡ <emph>አቀራረብ - እቃ ባህሪዎች - ተከታታይ ዳታ - ግልጽነት</emph> - tab (የ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index 556019ca264..dd3c13fe641 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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-12-09 23:32+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-12-23 18:22+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481326354.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482517364.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7075,7 +7075,7 @@ msgctxt ""
"par_idN109CC\n"
"help.text"
msgid "After you select the attributes that you want to search for, the <emph>Paragraph Styles</emph> box in the <emph>Other options</emph> area of the %PRODUCTNAME Writer <emph>Find & Replace</emph> dialog changes to <emph>Including Styles</emph>."
-msgstr ""
+msgstr "እርስዎ ባህሪዎች ከ መረጡ በኋላ እርስዎ የሚፈልጉትን በ <emph>አንቀጽ ዘዴዎች</emph> ሳጥን ውስጥ በ <emph>ሌሎች ምርጫ</emph> ቦታ በ %PRODUCTNAME መጻፊያ <emph>መፈለጊያ & መቀየሪያ</emph> ንግግር ይቀየራል ወደ <emph>ዘዴዎች ማካተቻ </emph>."
#: 02100000.xhp
msgctxt ""
@@ -8291,8 +8291,8 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
-msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">ያስገቡ የ ባህሪዎች ቁጥር ለ መፈለጊያ ደንብ የሚቀያየረውን </ahelp> ለምሳሌ: እርስዎ ከ ወሰኑ 2 የሚቀያየር ባህሪዎች: \"black\" እና \"crack\" እንደ ተመሳሳይ ይወሰዳሉ"
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
+msgstr ""
#: 02100100.xhp
msgctxt ""
@@ -9000,7 +9000,7 @@ msgctxt ""
"par_id3145383\n"
"help.text"
msgid "The search criteria for attributes are listed below the <emph>Find</emph> box."
-msgstr ""
+msgstr "የ መፈለጊያ መመዘኛ ደንብ ለ ባህሪዎች ከ ታች በኩል ተዘርዝሯል በ <emph>መፈለጊያ</emph> ሳን ውስጥ"
#: 02100300.xhp
msgctxt ""
@@ -13989,7 +13989,7 @@ msgctxt ""
"bm_id3152937\n"
"help.text"
msgid "<bookmark_value>formulas; starting formula editor</bookmark_value><bookmark_value>$[officename] Math start</bookmark_value><bookmark_value>Math formula editor</bookmark_value><bookmark_value>equations in formula editor</bookmark_value><bookmark_value>editors;formula editor</bookmark_value>"
-msgstr "<bookmark_value>መቀመሪያ: ማስጀመሪያ የ መቀመሪያ አራሚ</bookmark_value><bookmark_value>$[officename] ሂሳብ ማስጀመሪያ</bookmark_value><bookmark_value>ሂሳብ መቀመሪያ አራሚ</bookmark_value><bookmark_value>ስሌቶች በ መቀመሪያ አራሚ</bookmark_value><bookmark_value>አራሚ: መቀመሪያ አራሚ</bookmark_value>"
+msgstr "<bookmark_value>መቀመሪያ: ማስጀመሪያ የ መቀመሪያ አራሚ</bookmark_value><bookmark_value>$[officename] ሂሳብ ማስጀመሪያ</bookmark_value><bookmark_value>ሂሳብ መቀመሪያ አራሚ</bookmark_value><bookmark_value>እኩሌታዎች በ መቀመሪያ አራሚ</bookmark_value><bookmark_value>አራሚ: መቀመሪያ አራሚ</bookmark_value>"
#: 04160300.xhp
msgctxt ""
@@ -14540,7 +14540,7 @@ msgctxt ""
"par_idN10CD6\n"
"help.text"
msgid "To undo the last change, right-click."
-msgstr "የ መጨረሻውን ለውጥ ለመተው በቀኝ-ይጫኑ"
+msgstr "የ መጨረሻውን ለውጥ ለመተው በ ቀኝ-ይጫኑ"
#: 05020200.xhp
msgctxt ""
@@ -14941,7 +14941,7 @@ msgctxt ""
"bm_id3152942\n"
"help.text"
msgid "<bookmark_value>formats; number and currency formats</bookmark_value><bookmark_value>number formats; formats</bookmark_value><bookmark_value>currencies;format codes</bookmark_value><bookmark_value>defaults; number formats</bookmark_value>"
-msgstr "<bookmark_value>አቀራረብ: ቁጥር እና ገንዘብ አቀራረብ</bookmark_value><bookmark_value>ቁጥር አቀራረብ: አቀራረብ</bookmark_value><bookmark_value>ገንዘቦች: አቀራረብ codes</bookmark_value><bookmark_value>ነባር: ቁጥር አቀራረብ</bookmark_value>"
+msgstr "<bookmark_value>አቀራረብ: ቁጥር እና ገንዘብ አቀራረብ</bookmark_value><bookmark_value>ቁጥር አቀራረብ: አቀራረብ</bookmark_value><bookmark_value>ገንዘቦች: አቀራረብ ኮዶች</bookmark_value><bookmark_value>ነባር: ቁጥር አቀራረብ</bookmark_value>"
#: 05020300.xhp
msgctxt ""
@@ -25620,32 +25620,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">የ ተመረጠውን እቃ መሙያ እርስዎ በሚጫኑት መፈጸሚያ </ahelp>"
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "ቀለሞች"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">ቀለሞች</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr "ይምረጡ ቀለም ለ መፈጸም: የ አሁኑን ቀለም ዝርዝር ማስቀመጫ: ወይንም የ ተለየ የ ቀልም ዝርዝር መጫኛ"
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -26887,7 +26861,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"groessetext\"><ahelp hid=\".uno:TransformDialog\">Resizes, moves, rotates, or slants the selected object.</ahelp></variable>"
-msgstr "<variable id=\"groessetext\"><ahelp hid=\".uno:TransformDialog\">የ ተመረጠውን እቃ እንደገና መመጠኛ፡ ማንቀሳቀሻ፡ ማዞሪያ ወይንም ማንጋደጃ</ahelp></variable>"
+msgstr "<variable id=\"groessetext\"><ahelp hid=\".uno:TransformDialog\">የ ተመረጠውን እቃ እንደገና መመጠኛ: ማንቀሳቀሻ: ማዞሪያ ወይንም ማንጋደጃ</ahelp></variable>"
#: 05230100.xhp
msgctxt ""
@@ -33408,7 +33382,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Arrow left"
-msgstr "ቀስት በግራ"
+msgstr "ቀስት በ ግራ"
#: 06020000.xhp
msgctxt ""
@@ -35297,7 +35271,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Smart Tags"
-msgstr ""
+msgstr "Smart Tags"
#: 06040700.xhp
msgctxt ""
@@ -35305,7 +35279,7 @@ msgctxt ""
"bm_id9057588\n"
"help.text"
msgid "<bookmark_value>smart tag configuration</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>smart tag ማሰናጃ</bookmark_value>"
#: 06040700.xhp
msgctxt ""
@@ -35313,7 +35287,7 @@ msgctxt ""
"hd_id3563951\n"
"help.text"
msgid "Smart Tags"
-msgstr ""
+msgstr "Smart Tags"
#: 06040700.xhp
msgctxt ""
@@ -40133,7 +40107,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "Normally in a mixed text selection made of Hangul and Hanja characters, all Hangul characters will be converted to Hanja and all Hanja characters will be converted to Hangul. If you want to convert a mixed text selection only in one direction, use the following conversion options."
-msgstr ""
+msgstr "በ መደበኛ የ ተቀላቀለ ጽሁፍ ምርጫ በ Hangul እና Hanja ባህሪዎች ውስጥ: ሁሉም የ Hangul ባህሪዎች ይቀየራሉ ወደ Hanja እና ሁሉም የ Hanja ባህሪዎች ይቀየራሉ ወደ Hangul. እርስዎ መቀየር ከ ፈለጉ የ ተቀላቀለ ጽሁፍ ምርጫ ብቻ በ አንድ አቅጣጫ: የሚቀጥለውን መቀየሪያ ምርጫ ይጠቀሙ"
#: 06200000.xhp
msgctxt ""
@@ -41177,7 +41151,7 @@ msgctxt ""
"bm_id9930722\n"
"help.text"
msgid "<bookmark_value>CTL;(not) wrapping words</bookmark_value> <bookmark_value>words;wrapping in CTL</bookmark_value>"
-msgstr "<bookmark_value>CTL:(አይደለም) ቃላት መጠቅለያ</bookmark_value> <bookmark_value>ቃላት: መጠቅለያ በ CTL</bookmark_value>"
+msgstr "<bookmark_value>CTL: (አይደለም) ቃላት መጠቅለያ</bookmark_value> <bookmark_value>ቃላት: መጠቅለያ በ CTL</bookmark_value>"
#: formatting_mark.xhp
msgctxt ""
@@ -42210,7 +42184,7 @@ msgctxt ""
"par_id190920161732262244\n"
"help.text"
msgid "<ahelp hid=\".\">The notebook bar is a new form of displaying commands icons for a quicker usage</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ማስታወሻ ደብተር መደርደሪያ አዲስ ማሳያ ዘዴ ነው ለ ትእዛዝ ምልክቶች በፍጥነት ለ መጠቀም </ahelp>"
#: notebook_bar.xhp
msgctxt ""
@@ -42218,7 +42192,7 @@ msgctxt ""
"par_id190920161744065146\n"
"help.text"
msgid "By default, %PRODUCTNAME commands are grouped in cascading menus and in toolbars filled with icons."
-msgstr ""
+msgstr "በ ነባር: %PRODUCTNAME ትእዛዞች በ ቡድን ይሆናሉ በ ዝርዝር ውስጥ እና የ እቃ መደርደሪያ በ ምልክቶች ይሞላል"
#: notebook_bar.xhp
msgctxt ""
@@ -42226,7 +42200,7 @@ msgctxt ""
"par_id190920161744061691\n"
"help.text"
msgid "The notebook bar shows a different way to organize controls and icons than a collection of straight rows of icons, displaying contextual groups of commands and contents."
-msgstr ""
+msgstr "የ ማስታወሻ ደብተር መደርደሪያ የሚያሳየው የ ተለየ መንገድ ነው ለማደራጀት መቆጣጠሪያዎችን እና ምልክቶችን ከ ቀጥታ ረድፎች እና ምልክቶች ስብስብ: የሚያሳየው የ ቡድኖች ስብስብ ለ ትእዛዝ ይዞታዎች ነው"
#: notebook_bar.xhp
msgctxt ""
@@ -42242,7 +42216,7 @@ msgctxt ""
"par_id190920161744067918\n"
"help.text"
msgid "The notebook bar is available in Writer, Calc and Impress. The user interface has now several available layouts. Two entries in the <item type=\"menuitem\">View</item> menu controls the notebook bar: <item type=\"menuitem\">Toolbar Layout</item> and <item type=\"menuitem\">Notebook bar</item>."
-msgstr ""
+msgstr "የ ማስታወሻ ደብተር መደርደሪያ ዝግጁ ነው ለ መጻፊያ: ሰንጠረዥ: እና ማስደነቂያ: የ ተጠቃሚ ገጽታ አሁን በርካታ ዝግጁ እቅዶች አሉት: ሁለት ማስገቢያዎች በ <item type=\"menuitem\">መመልከቻ</item> ዝርዝር መቆጣጠሪያ በ ማስታወሻ ደብተር መደርደሪያ ውስጥ: <item type=\"menuitem\">የ እቃ መደርደሪያ እቅድ</item> እና <item type=\"menuitem\">የ ማስታወሻ ደብተር መደርደሪያ</item>."
#: notebook_bar.xhp
msgctxt ""
@@ -42250,7 +42224,7 @@ msgctxt ""
"par_id190920161744066306\n"
"help.text"
msgid "Choose menu <item type=\"menuitem\">View - Toolbar layout - Notebook bar</item>"
-msgstr ""
+msgstr "ይምረጡ ዝርዝር <item type=\"menuitem\">መመልከቻ - እቃ መደርደሪያ እቅድ - የ ማስታወሻ ደብተር መደርደሪያ </item>"
#: notebook_bar.xhp
msgctxt ""
@@ -42258,7 +42232,7 @@ msgctxt ""
"hd_id190920161911374012\n"
"help.text"
msgid "User interface layouts"
-msgstr ""
+msgstr "የ ተጠቃሚ ገጽታ እቅዶች"
#: notebook_bar.xhp
msgctxt ""
@@ -42266,7 +42240,7 @@ msgctxt ""
"par_id190920161744068946\n"
"help.text"
msgid "The Toolbar Layout entry defines which user interface elements are visible. The available layouts are:"
-msgstr ""
+msgstr "የ እቃ መደርደሪያ እቅድ ማስገቢያ ይገልጻል የትኛው የ ተጠቃሚ ገጽታ አካላቶች እንደሚታዩ: ዝግጁ የሆኑት እቅዶች እነዚህ ናቸው:"
#: notebook_bar.xhp
msgctxt ""
@@ -42274,7 +42248,7 @@ msgctxt ""
"par_id190920161744068819\n"
"help.text"
msgid "<emph>Default</emph> – classic mode with two visible toolbars – standard and formatting. The sidebar is partially collapsed and shows only tabs."
-msgstr ""
+msgstr "<emph>ነባር</emph> – ዘመናዊ ዘዴ ከ ሁለት የሚታዩ እቃ መደርደሪያዎች ጋር – መደበኛ እና አቀራረብ: የ ጎን መደርደሪያ በ ከፊል ማጠፍ ይቻላል እና የሚታየው tabs ብቻ ነው"
#: notebook_bar.xhp
msgctxt ""
@@ -42282,7 +42256,7 @@ msgctxt ""
"par_id190920161744061192\n"
"help.text"
msgid "<emph>Single toolbar</emph> – one toolbar with all frequently used features. The sidebar is collapsed."
-msgstr ""
+msgstr "<emph>ነጠላ እቃ መደርደሪያ</emph> – አንድ እቃ መደርደሪያ ከ ሁሉም አዘውትረው ከሚጠቀሙት ገጽታዎች ጋር: የ ጎን መደርደሪያ ይታጠፋል"
#: notebook_bar.xhp
msgctxt ""
@@ -42298,7 +42272,7 @@ msgctxt ""
"par_id190920161744063875\n"
"help.text"
msgid "<emph>Notebook bar</emph> – all toolbar and sidebar are hidden and the notebook bar is placed on the top. The menu entry: <item type=\"menuitem\">View </item><item type=\"menuitem\">-</item><item type=\"menuitem\"> Notebook bar</item> is active only in this mode and user can then choose the notebook bar layout."
-msgstr ""
+msgstr "<emph>ማስታወሻ ደብተር መደርደሪያ</emph> – ሁሉም እቃ መደርደሪያ እና የ ጎን መደርደሪያ ይደበቃል እና የ ማስታወሻ ደብተር መደርደሪያ ከ ላይ ይታያል: የ ዝርዝር ማስገቢያ: <item type=\"menuitem\">መመልከቻ </item><item type=\"menuitem\">-</item><item type=\"menuitem\"> ማስታወሻ ደብተር መደርደሪያ</item> ንቁ የሚሆነው በዚህ ዘዴ ብቻ ነው: እና ተጠቃሚው የ ማስታወሻ ደብተር መደርደሪያ እቅድ መምረጥ ይችላል"
#: notebook_bar.xhp
msgctxt ""
@@ -42306,7 +42280,7 @@ msgctxt ""
"par_id190920161744063797\n"
"help.text"
msgid "When user activates additional toolbars, they will be saved in the user profile. Therefore, on returning to the notebook bar mode, all toolbars set visible before will show again."
-msgstr ""
+msgstr "ተጠቃሚ በሚያስጀምር ጊዜ ተጨማር እቃ መደርደሪያዎች: በ ተጠቃሚው ገጽታ ውስጥ ይቀመጣሉ: ስለዚህ በሚመለሱ ጊዜ የ ማስታወሻ ደብተር መደርደሪያ ዘዴ: ሁሉንም የ ተሰናዱ የ በፊቱን እቃ መደርደሪያዎች ያሳያል"
#: notebook_bar.xhp
msgctxt ""
@@ -42314,7 +42288,7 @@ msgctxt ""
"hd_id190920161744069618\n"
"help.text"
msgid "Available Notebook bar modes"
-msgstr ""
+msgstr "ዝግጁ የ ማስታወሻ ደብተር እቃ መደርደሪያ ዘዴዎች"
#: notebook_bar.xhp
msgctxt ""
@@ -42322,7 +42296,7 @@ msgctxt ""
"par_id190920161744069064\n"
"help.text"
msgid "<emph>Tabbed</emph> – In this mode, the bar is divided into tabs, where each tab displays a set of icons grouped by context. The context can also change depending on the object selected in the document, for example a table or an image."
-msgstr ""
+msgstr "<emph>ምልክት የ ተደረገበት</emph> – በዚህ ዘዴ ውስጥ: መደርደሪያው ይከፋፈላል ወደ ምልክቶች: እያንዳንዱ ምልክት የ ምልክቶች ስብስብ በ ቡድን አገባብ ያሳያል: አገባቡን መቀየር ይቻላል እንደ ተመረጠው እቃ አይነት በ ሰነዱ ውስጥ: ለምሳሌ ሰንጠረዥ ወይንም ምልክት"
#: notebook_bar.xhp
msgctxt ""
@@ -42330,7 +42304,7 @@ msgctxt ""
"par_id190920161744064039\n"
"help.text"
msgid "In the tabbed mode the menu bar is hidden by default. To display the menu bar, select the %PRODUCTNAME icon on the top left position of the window and choose <item type=\"menuitem\">Menubar</item>."
-msgstr ""
+msgstr "በ ምልክት ዘዴ ውስጥ የ ዝርዝር ማሳያ ይደበቃል በ ነባር: ዝርዝር መደርደሪያውን ለማሳየት: ይምረጡ %PRODUCTNAME ምልክት ከ ላይ በ ግራ ቦታ በኩል በ መስኮት ውስጥ እና ይምረጡ <item type=\"menuitem\">ዝርዝር መደርደሪያ</item>."
#: notebook_bar.xhp
msgctxt ""
@@ -42338,7 +42312,7 @@ msgctxt ""
"par_id190920161744067802\n"
"help.text"
msgid "<emph>Contextual groups</emph> – The notebook bar is divided into 4 groups. The File, Clipboard and Format groups are fixed. The Insert group contents are replaced with commands that depends on the nature of the selected object in the document, as for a table, an image or an OLE object."
-msgstr ""
+msgstr "<emph>በ ቡድን አገባብ</emph> – የ ማስታወሻ ደብተር መደርደሪያ የ ተከፈለ ነው በ 4 ቡድኖች: ፋይል: ቁራጭ ሰሌዳ: እና አቀራረብ ቡድን ቋሚ ነው: የ ማስገቢያ ቡድን ይዞታዎች ይቀየራሉ በ ትእዛዝ እንደ ሁኔታው እንደ ተመረጠው እቃ በ ሰነዱ ውስጥ: ለ ሰንጠረዥ: በ ምስል ወይንም በ OLE እቃ"
#: notebook_bar.xhp
msgctxt ""
@@ -42354,7 +42328,7 @@ msgctxt ""
"par_id190920161744076273\n"
"help.text"
msgid "The notebook bar icon size is adjustable in <item type=\"menuitem\">Tools - Options - LibreOffice - View - Notebook bar </item>listbox."
-msgstr ""
+msgstr "የ ማስታወሻ ደብተር መደርደሪያ ምልክቶች ማስተካከል ይቻላል በ <item type=\"menuitem\">መሳሪያዎች - ምርጫዎች - LibreOffice - መመልከቻ - የ ማስታወሻ ደብተር መደርደሪያ </item>ዝርዝር ሳጥን ውስጥ"
#: notebook_bar.xhp
msgctxt ""
@@ -42362,7 +42336,7 @@ msgctxt ""
"par_id190920161744074862\n"
"help.text"
msgid "The notebook bar cannot be customized."
-msgstr ""
+msgstr "የ ማስታወሻ ደብተር መደርደሪያ ማስተካከል አይቻልም"
#: notebook_bar.xhp
msgctxt ""
@@ -42370,7 +42344,7 @@ msgctxt ""
"par_id190920161744078275\n"
"help.text"
msgid "The current implementation (%PRODUCTNAME %PRODUCTVERSION) of the notebook bar is common to Writer, Calc and Impress modules. A change in the notebook bar in one module will affect the notebook bar of the other modules."
-msgstr ""
+msgstr "የ አሁኑ መፈጸሚያ (%PRODUCTNAME %PRODUCTVERSION) የ ማስታወሻ ደብተር መደርደሪያ የ ተለመደ ነው ለ መጻፊያ: ሰንጠረዥ: እና ለ ማስደነቂያ ክፍሎች: ማንኛውም ለውጦች በ ማስታወሻ ደብተር መደርደሪያ ላይ የሚያደርጉት ተጽእኖ ይፈጥራል በሌሎች ክፍሎች ውስጥ"
#: notebook_bar.xhp
msgctxt ""
@@ -43243,6 +43217,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">ዋናውን የ መግቢያ ቃል እንደ-ገና ያስገቡ</ahelp>"
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
@@ -45615,7 +45797,7 @@ msgctxt ""
"bm_id433973\n"
"help.text"
msgid "<bookmark_value>editing;data binding of XForms</bookmark_value><bookmark_value>data binding change in XForms</bookmark_value>"
-msgstr "<bookmark_value>ማረሚያ:የ ዳታ ማጣመሪያ ለ Xፎርሞች</bookmark_value><bookmark_value>የ ዳታ ማጣመሪያ መቀየሪያ በ Xፎርሞች ውስጥ</bookmark_value>"
+msgstr "<bookmark_value>ማረሚያ: የ ዳታ ማጣመሪያ ለ Xፎርሞች</bookmark_value><bookmark_value>የ ዳታ ማጣመሪያ መቀየሪያ በ Xፎርሞች ውስጥ</bookmark_value>"
#: xformsdatachange.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index 668ce5d2ee0..341dea1eebc 100644
--- a/source/am/helpcontent2/source/text/shared/02.po
+++ b/source/am/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-09 00:28+0000\n"
+"PO-Revision-Date: 2016-12-23 17:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481243337.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482514590.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -89,7 +89,7 @@ msgctxt ""
"bm_id3150476\n"
"help.text"
msgid "<bookmark_value>Drawing bar</bookmark_value> <bookmark_value>lines; draw functions</bookmark_value> <bookmark_value>polygon drawing</bookmark_value> <bookmark_value>freeform lines; draw functions</bookmark_value> <bookmark_value>text boxes; positioning</bookmark_value> <bookmark_value>headings; entering as text box</bookmark_value> <bookmark_value>text objects; draw functions</bookmark_value> <bookmark_value>ticker text</bookmark_value> <bookmark_value>text; animating</bookmark_value> <bookmark_value>vertical callouts</bookmark_value> <bookmark_value>vertical text boxes</bookmark_value> <bookmark_value>cube drawing</bookmark_value> <bookmark_value>triangle drawing</bookmark_value> <bookmark_value>ellipse drawing</bookmark_value> <bookmark_value>rectangle drawing</bookmark_value> <bookmark_value>shapes</bookmark_value>"
-msgstr "<bookmark_value>የ መሳያ መደርደሪያ</bookmark_value> <bookmark_value>መስመሮች: የ መሳያ ተግባሮች</bookmark_value> <bookmark_value>ፖሊጎን መሳያ</bookmark_value> <bookmark_value>ነፃ የ እጅ መስመሮች: የ መሳያ ተግባሮች</bookmark_value> <bookmark_value>የ ጽሁፍ ሳጥኖች: አቀማመጥ</bookmark_value> <bookmark_value>ራስጌ: ማስገቢያ እንደ ጽሁፍ ሳጥን</bookmark_value> <bookmark_value>የ ጽሁፍ እቃዎች: የ መሳያ ተግባሮች</bookmark_value> <bookmark_value>ጽሁፍ ማተሚያ</bookmark_value> <bookmark_value>የ ጽሁፍ: እንቅስቃሴ</bookmark_value> <bookmark_value>በ ቁመት መጥሪያዎች</bookmark_value> <bookmark_value>የ ቁመት ጽሁፍ ሳጥኖች</bookmark_value> <bookmark_value>cube መሳያ</bookmark_value> <bookmark_value>ሶስት ማእዘን መሳያ</bookmark_value> <bookmark_value>ellipse መሳያ</bookmark_value> <bookmark_value>አራት ማእዘን መሳያ</bookmark_value> <bookmark_value>ቅርጾች</bookmark_value>"
+msgstr "<bookmark_value>የ መሳያ መደርደሪያ</bookmark_value> <bookmark_value>መስመሮች: የ መሳያ ተግባሮች</bookmark_value> <bookmark_value>ፖሊጎን መሳያ</bookmark_value> <bookmark_value>ነፃ የ እጅ መስመሮች: የ መሳያ ተግባሮች</bookmark_value> <bookmark_value>የ ጽሁፍ ሳጥኖች: አቀማመጥ</bookmark_value> <bookmark_value>ራስጌ: ማስገቢያ እንደ ጽሁፍ ሳጥን</bookmark_value> <bookmark_value>የ ጽሁፍ እቃዎች: የ መሳያ ተግባሮች</bookmark_value> <bookmark_value>ጽሁፍ ማተሚያ</bookmark_value> <bookmark_value>የ ጽሁፍ: እንቅስቃሴ</bookmark_value> <bookmark_value>በ ቁመት መጥሪያዎች</bookmark_value> <bookmark_value>የ ቁመት ጽሁፍ ሳጥኖች</bookmark_value> <bookmark_value>ኪዩብ መሳያ</bookmark_value> <bookmark_value>ሶስት ማእዘን መሳያ</bookmark_value> <bookmark_value>ኤሊፕስ መሳያ</bookmark_value> <bookmark_value>አራት ማእዘን መሳያ</bookmark_value> <bookmark_value>ቅርጾች</bookmark_value>"
#: 01140000.xhp
msgctxt ""
@@ -384,7 +384,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "Ellipse Pie"
-msgstr "Ellipse Pie"
+msgstr "ኤሊፕስ ፓይ"
#: 01140000.xhp
msgctxt ""
@@ -401,7 +401,7 @@ msgctxt ""
"67\n"
"help.text"
msgid "<ahelp hid=\".uno:Pie\">Draws a filled shape that is defined by the arc of an oval and two radius lines in the current document. To draw an ellipse pie, drag an oval to the size you want, and then click to define the first radius line. Move your pointer to where you want to place the second radius line and click. You do not need to click on the oval. To draw a circle pie, hold down Shift while you drag.</ahelp>"
-msgstr "<ahelp hid=\".uno:Pie\">የ ተሞላ ቅርጽ መሳያ እንደ ተገለጸው በ ቅስት ለ oval እና ሁለት radius መስመሮች በ አሁኑ ሰነድ ውስጥ: የ ellipse pie ለ መሳል: ይጎትቱ oval እርስዎ እስከሚፈልጉት መጠን ድረስ: እና ከዛ ይጫኑ ለ መግለጽ የ መጀመሪያውን radius መስመር: መጠቆሚያውን ያንቀሳቅሱ እርስዎ ሁለተኛው የ radius መስመር ቦታ እና ይጫኑ: እርስዎ መጫን የለብዎትም በ oval ላይ: ክብ pie ለ መሳል: ተጭነው ይያዙ Shift በሚጎትቱ ጊዜ </ahelp>"
+msgstr "<ahelp hid=\".uno:Pie\">የ ተሞላ ቅርጽ መሳያ እንደ ተገለጸው በ ቅስት ለ ኦቫል እና ሁለት radius መስመሮች በ አሁኑ ሰነድ ውስጥ: የ ኤሊፕስ ፓይ ለ መሳል: ይጎትቱ ኦቫል እርስዎ እስከሚፈልጉት መጠን ድረስ: እና ከዛ ይጫኑ ለ መግለጽ የ መጀመሪያውን radius መስመር: መጠቆሚያውን ያንቀሳቅሱ እርስዎ ሁለተኛው የ radius መስመር ቦታ እና ይጫኑ: እርስዎ መጫን የለብዎትም በ ኦቫል ላይ: ክብ ፓይ ለ መሳል: ተጭነው ይያዙ Shift በሚጎትቱ ጊዜ </ahelp>"
#: 01140000.xhp
msgctxt ""
@@ -1311,7 +1311,7 @@ msgctxt ""
"par_idN11D42\n"
"help.text"
msgid "Symbol color"
-msgstr "የምልክት ቀለም"
+msgstr "የ ምልክት ቀለም"
#: 01170000.xhp
msgctxt ""
@@ -1360,7 +1360,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "Image Button"
-msgstr "የምስል ቁልፍ"
+msgstr "የ ምስል ቁልፍ"
#: 01170000.xhp
msgctxt ""
@@ -1447,7 +1447,7 @@ msgctxt ""
"131\n"
"help.text"
msgid "If you assign the \"Dropdown\" property to the date field, the user can open a calendar to select a date under the date field. This also applies to a date field within a Table Control field."
-msgstr "እርስዎ ከ መደቡ \"ወደ ታች የሚዘረገፍ\" ናህሪዎች ለ ቀን ሜዳ: ተጠቃሚው የ ቀን መቁጠሪያ መክፈት ይችላል ቀን ለ መምረጥ በ ቀን ሜዳ ውስጥ: ይህን ለ ቀን ሜዳ በ ሰንጠረዥ መቆጣጠሪያ ሜዳ ውስጥ መፈጸም ይቻላል"
+msgstr "እርስዎ ከ መደቡ \"ወደ ታች የሚዘረገፍ\" ባህሪዎች ለ ቀን ሜዳ: ተጠቃሚው የ ቀን መቁጠሪያ መክፈት ይችላል ቀን ለ መምረጥ በ ቀን ሜዳ ውስጥ: ይህን ለ ቀን ሜዳ በ ሰንጠረዥ መቆጣጠሪያ ሜዳ ውስጥ መፈጸም ይቻላል"
#: 01170000.xhp
msgctxt ""
@@ -1938,7 +1938,7 @@ msgctxt ""
"105\n"
"help.text"
msgid "Image Button"
-msgstr "የምስል ቁልፍ"
+msgstr "የ ምስል ቁልፍ"
#: 01170001.xhp
msgctxt ""
@@ -2107,7 +2107,7 @@ msgctxt ""
"bm_id3150774\n"
"help.text"
msgid "<bookmark_value>formatted fields; properties</bookmark_value><bookmark_value>fields; formatted fields</bookmark_value><bookmark_value>controls; formatted fields</bookmark_value>"
-msgstr "<bookmark_value>የ አቀራረብ ሜዳዎች; ባህሪዎች</bookmark_value><bookmark_value>ሜዳዎች; የ አቀራረብ ሜዳዎች</bookmark_value><bookmark_value>መቆጣጠሪያዎች; የ አቀራረብ ሜዳዎች</bookmark_value>"
+msgstr "<bookmark_value>የ አቀራረብ ሜዳዎች: ባህሪዎች</bookmark_value><bookmark_value>ሜዳዎች: የ አቀራረብ ሜዳዎች</bookmark_value><bookmark_value>መቆጣጠሪያዎች: የ ሜዳዎች አቀራረብ</bookmark_value>"
#: 01170002.xhp
msgctxt ""
@@ -2116,7 +2116,7 @@ msgctxt ""
"131\n"
"help.text"
msgid "Special properties of a formatted field"
-msgstr "የ ተለዩ ባህሪዎች ለ አቀራረብ ሜዳ"
+msgstr "የ ተለዩ ባህሪዎች ለ ሜዳ አቀራረብ"
#: 01170002.xhp
msgctxt ""
@@ -3269,7 +3269,7 @@ msgctxt ""
"82\n"
"help.text"
msgid "Date format"
-msgstr "የቀን አቀራረብ"
+msgstr "የ ቀን አቀራረብ"
#: 01170101.xhp
msgctxt ""
@@ -3826,7 +3826,7 @@ msgctxt ""
"212\n"
"help.text"
msgid "Help URL"
-msgstr "የእርዳታ URL"
+msgstr "የ እርዳታ URL"
#: 01170101.xhp
msgctxt ""
@@ -4075,7 +4075,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "Text type"
-msgstr "የጽሁፍ አይነት"
+msgstr "የ ጽሁፍ አይነት"
#: 01170101.xhp
msgctxt ""
@@ -4108,7 +4108,7 @@ msgctxt ""
"par_idN114EF\n"
"help.text"
msgid "Word break"
-msgstr "የቃላት መጨረሻ"
+msgstr "የ ቃላት መጨረሻ"
#: 01170101.xhp
msgctxt ""
@@ -4188,7 +4188,7 @@ msgctxt ""
"par_idN115B8\n"
"help.text"
msgid "Border color"
-msgstr "የድንበር ቀለም"
+msgstr "የ ድንበር ቀለም"
#: 01170101.xhp
msgctxt ""
@@ -4204,7 +4204,7 @@ msgctxt ""
"par_idN115B7\n"
"help.text"
msgid "Symbol color"
-msgstr "የምልክት ቀለም"
+msgstr "የ ምልክት ቀለም"
#: 01170101.xhp
msgctxt ""
@@ -4435,7 +4435,7 @@ msgctxt ""
"hd_id0509200912114423\n"
"help.text"
msgid "Mouse wheel scroll"
-msgstr "የአይጥ ጎማ መሸብለያ"
+msgstr "የ አይጥ ጎማ መሸብለያ"
#: 01170101.xhp
msgctxt ""
@@ -4894,7 +4894,7 @@ msgctxt ""
"149\n"
"help.text"
msgid "Currency symbol"
-msgstr "የገንዘብ ምልክት"
+msgstr "የ ገንዘብ ምልክት"
#: 01170101.xhp
msgctxt ""
@@ -5002,7 +5002,7 @@ msgctxt ""
"162\n"
"help.text"
msgid "Row height"
-msgstr "የረድፍ እርዝመት"
+msgstr "የ ረድፍ እርዝመት"
#: 01170101.xhp
msgctxt ""
@@ -5019,7 +5019,7 @@ msgctxt ""
"par_idN11FB6\n"
"help.text"
msgid "Text lines end with"
-msgstr "የጽሁፍ መስመሮች የሚያልቁት በ"
+msgstr "የ ጽሁፍ መስመሮች የሚያልቁት በ"
#: 01170101.xhp
msgctxt ""
@@ -5036,7 +5036,7 @@ msgctxt ""
"168\n"
"help.text"
msgid "Time format"
-msgstr "የሰአት አቀራረብ"
+msgstr "የ ሰአት አቀራረብ"
#: 01170101.xhp
msgctxt ""
@@ -7359,7 +7359,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "Mouse button released"
-msgstr "የአይጥ ቁልፍ ለቀዋል"
+msgstr "የ አይጥ ቁልፍ ለቀዋል"
#: 01170103.xhp
msgctxt ""
@@ -7838,7 +7838,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "Before update"
-msgstr "ከመሻሻሉ በፊት"
+msgstr "ከ መሻሻሉ በፊት"
#: 01170202.xhp
msgctxt ""
@@ -7856,7 +7856,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "After update"
-msgstr "ከተሻሻለ በኋላ"
+msgstr "ከ ተሻሻለ በኋላ"
#: 01170202.xhp
msgctxt ""
@@ -11206,7 +11206,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "This border can be the border of a frame, graphic or table. The <emph>Line Style</emph> icon will only be visible if a graphic, table, chart object or frame has been selected."
-msgstr "ይህ ድንበር የ ክፈፍ: የ ንድፍ: ወይንም የ ሰንጠረዥ ድንበር ሊሆን ይችላል: የ <emph>መስመር ዘዴ</emph> ምልክቱ የሚታየው የ ንድፍ: የ ሰንጠረዥ: የ ቻርትስ እቃ ወይንም ክፈፍ በሚመረጥ ጊዜ ነው"
+msgstr "ይህ ድንበር የ ክፈፍ: የ ንድፍ: ወይንም የ ሰንጠረዥ ድንበር ሊሆን ይችላል: የ <emph>መስመር ዘዴ</emph> ምልክቱ የሚታየው የ ንድፍ: የ ሰንጠረዥ: የ ቻርት እቃ ወይንም ክፈፍ በሚመረጥ ጊዜ ነው"
#: 03140000.xhp
msgctxt ""
@@ -11240,7 +11240,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Border Color"
-msgstr "የድንበር ቀለም"
+msgstr "የ ድንበር ቀለም"
#: 03150000.xhp
msgctxt ""
@@ -11249,7 +11249,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/shared/02/03150000.xhp\" name=\"Border Color\">Border Color</link>"
-msgstr "<link href=\"text/shared/02/03150000.xhp\" name=\"Border Color\">የድንበር ቀለም</link>"
+msgstr "<link href=\"text/shared/02/03150000.xhp\" name=\"Border Color\">የ ድንበር ቀለም</link>"
#: 03150000.xhp
msgctxt ""
@@ -16300,7 +16300,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "In order to change the left indent starting with the second line of a paragraph, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, click the triangle on the bottom left, and drag it to the right."
-msgstr "የ ግራ ማስረጊያ ለ መቀየር ከ አንቀጹ ሁለተኛ መስመር ጀምሮ የጭነው ይያዙ የ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline> ቁልፍ: ይጫኑ ከ ታች በ ግራ በኩል ያለውን ሶስት ማእዘን እና ወደ ቀኝ ይጎትቱት"
+msgstr "የ ግራ ማስረጊያ ለ መቀየር ከ አንቀጹ ሁለተኛ መስመር ጀምሮ ተጭነው ይያዙ የ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline> ቁልፍ: ይጫኑ ከ ታች በ ግራ በኩል ያለውን ሶስት ማእዘን እና ወደ ቀኝ ይጎትቱት"
#: 13020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/04.po b/source/am/helpcontent2/source/text/shared/04.po
index cb51371af01..0b5c2a6ac06 100644
--- a/source/am/helpcontent2/source/text/shared/04.po
+++ b/source/am/helpcontent2/source/text/shared/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2016-11-06 23:31+0000\n"
+"PO-Revision-Date: 2016-12-13 02:43+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.7\n"
-"X-POOTLE-MTIME: 1478475091.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481596987.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -264,7 +264,7 @@ msgctxt ""
"164\n"
"help.text"
msgid "If you want to terminate a macro that is currently running, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Q."
-msgstr "አሁን እየሄደ ያለ macro ማቋረጥ ከ ፈለጉ፡ ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Q."
+msgstr "አሁን እየሄደ ያለውን macro ማቋረጥ ከ ፈለጉ: ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Q."
#: 01010000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/autopi.po b/source/am/helpcontent2/source/text/shared/autopi.po
index a91edab1236..dadd2a2d96e 100644
--- a/source/am/helpcontent2/source/text/shared/autopi.po
+++ b/source/am/helpcontent2/source/text/shared/autopi.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-07 02:29+0000\n"
+"PO-Revision-Date: 2016-12-23 17:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481077776.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482514694.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3130,7 +3130,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Columnar - Labels Left"
-msgstr "የአምድ - ምልክቶች በግራ"
+msgstr "የ አምድ - ምልክቶች በ ግራ"
#: 01090300.xhp
msgctxt ""
@@ -3209,7 +3209,7 @@ msgctxt ""
"par_idN106D5\n"
"help.text"
msgid "Columnar - Labels Left"
-msgstr "የአምድ - ምልክቶች በግራ"
+msgstr "የ አምድ - ምልክቶች በ ግራ"
#: 01090300.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/explorer/database.po b/source/am/helpcontent2/source/text/shared/explorer/database.po
index c66d8b0dd0e..8d808271d43 100644
--- a/source/am/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/am/helpcontent2/source/text/shared/explorer/database.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-12-09 22:47+0000\n"
+"PO-Revision-Date: 2016-12-22 19:21+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481323629.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482434485.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1225,7 +1225,7 @@ msgctxt ""
"par_id3148651\n"
"help.text"
msgid "To use other functions not listed in the list box, you must enter them under <emph>Field</emph>."
-msgstr "ሌላ ተግባር ለ መጠቀም በ ዝርዝር ሳጥን ውስጥ የሌለ: እርስዎ ማስገባት አለብዎት በ <emph>ሜዳ</emph>ስር"
+msgstr "ሌላ ተግባር ለ መጠቀም በ ዝርዝር ሳጥን ውስጥ የሌለ: እርስዎ ማስገባት አለብዎት በ <emph>ሜዳ</emph> ውስጥ"
#: 02010100.xhp
msgctxt ""
@@ -1233,7 +1233,7 @@ msgctxt ""
"par_id3155098\n"
"help.text"
msgid "You can also assign aliases to function calls. If the query is not to be displayed in the column header, enter the desired name under <emph>Alias</emph>."
-msgstr "እርስዎ መመደብ ይችላሉ የ ሀሰት ተግባር መጥሪያዎች: ጥያቄው በ አምድ ራስጌ ላይ የማይታይ ከሆነ: የሚፈልጉትን ስም ያስገቡ በ <emph>ሀስት</emph>ስር"
+msgstr "እርስዎ መመደብ ይችላሉ የ ሀሰት ተግባር መጥሪያዎች: ጥያቄው በ አምድ ራስጌ ላይ የማይታይ ከሆነ: የሚፈልጉትን ስም ያስገቡ በ <emph>ሀስት</emph> ውስጥ"
#: 02010100.xhp
msgctxt ""
@@ -2009,7 +2009,7 @@ msgctxt ""
"par_id3159085\n"
"help.text"
msgid "IN (a, b, c...)"
-msgstr "IN (a, b, c...)"
+msgstr "ውስጥ (a, b, c...)"
#: 02010100.xhp
msgctxt ""
@@ -2041,7 +2041,7 @@ msgctxt ""
"par_id3153544\n"
"help.text"
msgid "NOT IN (a, b, c...)"
-msgstr "NOT IN (a, b, c...)"
+msgstr "ውስጥ አይደለም (a, b, c...)"
#: 02010100.xhp
msgctxt ""
@@ -2737,7 +2737,7 @@ msgctxt ""
"bm_id3154015\n"
"help.text"
msgid "<bookmark_value>links;relational databases (Base)</bookmark_value> <bookmark_value>inner joins (Base)</bookmark_value> <bookmark_value>joins in databases (Base)</bookmark_value> <bookmark_value>left joins (Base)</bookmark_value> <bookmark_value>right joins (Base)</bookmark_value> <bookmark_value>full joins (Base)</bookmark_value>"
-msgstr "<bookmark_value>አገናኞች;ተዛማጅ ዳታቤዝ (Base)</bookmark_value> <bookmark_value>የ ውስጥ ማገናኛ (Base)</bookmark_value> <bookmark_value>ማገናኛ በ ዳታቤዝ (Base)</bookmark_value> <bookmark_value>በ ግራ ማገናኛ (Base)</bookmark_value> <bookmark_value>በ ቀኝ ማገናኛ (Base)</bookmark_value> <bookmark_value>በ ሙሉ ማገናኛ (Base)</bookmark_value>"
+msgstr "<bookmark_value>አገናኞች: ተዛማጅ ዳታቤዝ (Base)</bookmark_value> <bookmark_value>የ ውስጥ ማገናኛ (Base)</bookmark_value> <bookmark_value>ማገናኛ ከ ዳታቤዝ (Base)</bookmark_value> <bookmark_value>በ ግራ ማገናኛ (Base)</bookmark_value> <bookmark_value>በ ቀኝ ማገናኛ (Base)</bookmark_value> <bookmark_value>በ ሙሉ ማገናኛ (Base)</bookmark_value>"
#: 02010101.xhp
msgctxt ""
@@ -8392,7 +8392,7 @@ msgctxt ""
"par_idN105FE\n"
"help.text"
msgid "JDBC driver class"
-msgstr ""
+msgstr "JDBC driver class"
#: dabapropgen.xhp
msgctxt ""
@@ -9160,7 +9160,7 @@ msgctxt ""
"par_idN10579\n"
"help.text"
msgid "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=c:\\Access\\nwind2000.mdb"
-msgstr ""
+msgstr "አቅራቢው=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=c:\\Access\\nwind2000.mdb"
#: dabawiz02ado.xhp
msgctxt ""
@@ -9176,7 +9176,7 @@ msgctxt ""
"par_idN1057F\n"
"help.text"
msgid "PROVIDER=sqloledb;DATA SOURCE=turner;INITIAL CATALOG=First"
-msgstr ""
+msgstr "አቅራቢው=sqloledb;DATA SOURCE=turner;INITIAL CATALOG=First"
#: dabawiz02ado.xhp
msgctxt ""
@@ -9192,7 +9192,7 @@ msgctxt ""
"par_idN10585\n"
"help.text"
msgid "DSN=SQLSERVER"
-msgstr ""
+msgstr "DSN=SQLSERVER"
#: dabawiz02ado.xhp
msgctxt ""
@@ -9464,7 +9464,7 @@ msgctxt ""
"par_idN10699\n"
"help.text"
msgid "port is the default port for MySQL databases, namely 3306."
-msgstr ""
+msgstr "port ነባር port ነው ለ MySQL ዳታቤዝ: የ ተሰየመው 3306."
#: dabawiz02jdbc.xhp
msgctxt ""
@@ -9496,7 +9496,7 @@ msgctxt ""
"par_idN106BB\n"
"help.text"
msgid "JDBC Driver Class"
-msgstr ""
+msgstr "JDBC Driver Class"
#: dabawiz02jdbc.xhp
msgctxt ""
@@ -9600,7 +9600,7 @@ msgctxt ""
"par_idN10594\n"
"help.text"
msgid "Base DN"
-msgstr ""
+msgstr "Base DN"
#: dabawiz02ldap.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index 7c98c0cd949..f8993a50212 100644
--- a/source/am/helpcontent2/source/text/shared/guide.po
+++ b/source/am/helpcontent2/source/text/shared/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-12-08 23:39+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-12-23 18:23+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481240393.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482517434.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2190,7 +2190,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2270,7 +2270,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -4857,7 +4857,7 @@ msgctxt ""
"par_id7510910\n"
"help.text"
msgid "Right-click the name of a report in the database file window, then choose Edit."
-msgstr "በቀኝ-ይጫኑ የ መግለጫውን ስም ከ ዳታቤዝ ፋይል መስኮት ውስጥ: እና ካዛ ይጫኑ ማረሚያ"
+msgstr "በ ቀኝ-ይጫኑ የ መግለጫውን ስም ከ ዳታቤዝ ፋይል መስኮት ውስጥ: እና ካዛ ይጫኑ ማረሚያ"
#: data_report.xhp
msgctxt ""
@@ -5755,7 +5755,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "On the left you can see the <link href=\"text/shared/02/12000000.xhp\" name=\"Data source explorer\">Data source explorer</link>. If you select a table or query there, you see the contents of this table or query on the right. At the top margin is the <link href=\"text/shared/main0212.xhp\" name=\"Database bar\">Table Data bar</link>."
-msgstr "በ ግራ በኩል ይታይዎታል <link href=\"text/shared/02/12000000.xhp\" name=\"Data source explorer\">የ ዳታ ምንጭ መቃኛ</link> ሰንጠረዥ ወይንም ጥያቄ ከመረጡ: ሰንጠረዥ ወይንም ጥያቄ እዛ ከመረጡ የ ሰንጠረዥ ወይንም ጥያቄ ይዞታው ከላይ መስመር በቀኝ በኩል ይታያል <link href=\"text/shared/main0212.xhp\" name=\"Database bar\">የ ሰንጠረዥ ዳታ መደርደሪያ</link>."
+msgstr "በ ግራ በኩል ይታይዎታል <link href=\"text/shared/02/12000000.xhp\" name=\"Data source explorer\">የ ዳታ ምንጭ መቃኛ</link> ሰንጠረዥ ወይንም ጥያቄ ከመረጡ: ሰንጠረዥ ወይንም ጥያቄ እዛ ከመረጡ የ ሰንጠረዥ ወይንም ጥያቄ ይዞታው ከላይ መስመር በ ቀኝ በኩል ይታያል <link href=\"text/shared/main0212.xhp\" name=\"Database bar\">የ ሰንጠረዥ ዳታ መደርደሪያ</link>."
#: database_main.xhp
msgctxt ""
@@ -8536,7 +8536,7 @@ msgctxt ""
"par_idN1069D\n"
"help.text"
msgid "After you select the attributes that you want to search for, the <emph>Paragraph Styles</emph> box in the <emph>Other options</emph> area of the %PRODUCTNAME Writer <emph>Find & Replace </emph>dialog changes to <emph>Including Styles</emph>."
-msgstr ""
+msgstr "እርስዎ ባህሪዎች ከ መረጡ በኋላ እርስዎ የሚፈልጉትን በ <emph>አንቀጽ ዘዴዎች</emph> ሳጥን ውስጥ በ <emph>ሌሎች ምርጫ</emph> ቦታ በ %PRODUCTNAME መጻፊያ <emph>መፈለጊያ & መቀየሪያ</emph> ንግግር ይቀየራል ወደ <emph>ዘዴዎች ማካተቻ </emph>."
#: find_attributes.xhp
msgctxt ""
@@ -8552,7 +8552,7 @@ msgctxt ""
"par_idN106B7\n"
"help.text"
msgid "The search criteria for attributes are listed below the <emph>Find</emph> box."
-msgstr ""
+msgstr "የ መፈለጊያ መመዘኛ ደንብ ለ ባህሪዎች ከ ታች በኩል ተዘርዝሯል በ <emph>መፈለጊያ</emph> ሳን ውስጥ"
#: find_attributes.xhp
msgctxt ""
@@ -8600,7 +8600,7 @@ msgctxt ""
"par_idN106E8\n"
"help.text"
msgid "In the <emph>Find & Replace</emph> dialog, you now can read \"Font\" below the <emph>Find</emph> text box."
-msgstr ""
+msgstr "በ <emph>መፈለጊያ & መቀየሪያ</emph> ንግግር ውስጥ አሁን ማንበብ ይችላሉ \"ፊደል\" ከ ታች ከ <emph>መፈለጊያ </emph> ጽሁፍ ሳጥን ውስጥ"
#: find_attributes.xhp
msgctxt ""
@@ -9834,7 +9834,7 @@ msgctxt ""
"par_idN1082C\n"
"help.text"
msgid "Right-click the \"Internet Link\" or \"Visited Internet Link\" character style, and choose <emph>Modify</emph>."
-msgstr "በቀኝ-ይጫኑ የ \"ኢንተርኔት አገናኝ\" ወይንም \"የተጎበኘ የ ኢንተርኔት አገናኝ\" ባህሪ ዘዴ እና ይጫኑ <emph>ማሻሻያ</emph>."
+msgstr "በ ቀኝ-ይጫኑ የ \"ኢንተርኔት አገናኝ\" ወይንም \"የተጎበኘ የ ኢንተርኔት አገናኝ\" ባህሪ ዘዴ እና ይጫኑ <emph>ማሻሻያ</emph>."
#: hyperlink_edit.xhp
msgctxt ""
@@ -9919,8 +9919,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "በ ሰንጠረዥ ውስጥ ወደ ክፍል ውስጥ ለ መዝለል: መጀመሪያ ያስገቡ ስም ለ ክፍሉ (<emph>ማስገቢያ - ስም - መግለጫ</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -10123,7 +10123,7 @@ msgctxt ""
"par_idN106A0\n"
"help.text"
msgid "Use the icons in the ImageMap Editor to draw a hotspot shape, for example a rectangle, over the image at the background."
-msgstr "ይጠቀሙ ምልክቶች በ ምስል ካርታ አራሚዎች ውስጥ ለ መሳል የ hotspot ቅርጽ: ለምሳሌ: አራት ማእዘን: በ ምስል መደብ ላይ"
+msgstr "ይጠቀሙ ምልክቶች በ ምስል ካርታ አራሚዎች ውስጥ ለ መሳል የ ትኩስ ቦታ ቅርጽ: ለምሳሌ: አራት ማእዘን: በ ምስል መደብ ላይ"
#: imagemap.xhp
msgctxt ""
@@ -10155,7 +10155,7 @@ msgctxt ""
"par_idN106B3\n"
"help.text"
msgid "Click the Apply button to apply your changes, and close the ImageMap Editor."
-msgstr "ይጫኑ የ መፈጸሚያ ቁልፍ የ እርስዎን ለውጦች ለ መፈጸም: እና ይዝሁ የ ምስል ካርታ አራሚን"
+msgstr "ይጫኑ የ መፈጸሚያ ቁልፍ የ እርስዎን ለውጦች ለ መፈጸም: እና የ ምስል ካርታ አራሚን ይዝጉ"
#: imagemap.xhp
msgctxt ""
@@ -10342,7 +10342,7 @@ msgctxt ""
"bm_id3154136\n"
"help.text"
msgid "<bookmark_value>graphics, see also pictures</bookmark_value><bookmark_value>images, see also pictures</bookmark_value><bookmark_value>images; inserting and editing bitmaps</bookmark_value><bookmark_value>illustrations, see pictures</bookmark_value><bookmark_value>bitmaps; inserting and editing</bookmark_value><bookmark_value>pixel graphics; inserting and editing</bookmark_value><bookmark_value>exporting; bitmaps</bookmark_value><bookmark_value>importing; bitmaps</bookmark_value><bookmark_value>pictures; editing</bookmark_value><bookmark_value>editing; pictures</bookmark_value><bookmark_value>invert filter</bookmark_value><bookmark_value>smoothing filter</bookmark_value><bookmark_value>sharpening filter</bookmark_value><bookmark_value>remove noise filter</bookmark_value><bookmark_value>solarization filter</bookmark_value><bookmark_value>aging filter</bookmark_value><bookmark_value>posterizing filter</bookmark_value><bookmark_value>pop-art filter</bookmark_value><bookmark_value>charcoal sketches filter</bookmark_value><bookmark_value>mosaic filter</bookmark_value><bookmark_value>pictures;filters</bookmark_value><bookmark_value>filters;pictures</bookmark_value>"
-msgstr "<bookmark_value>ንድፎች: ስእሎችን ይመልከቱ</bookmark_value><bookmark_value>ምስሎች: ስእሎችን ይመልከቱ</bookmark_value><bookmark_value>ምስሎች: ማስገቢያ እና ማረሚያ bitmaps</bookmark_value><bookmark_value>ማብራሪያ: ስእሎችን ይመልከቱ</bookmark_value><bookmark_value>bitmaps: ማስገቢያ እና ማረሚያ</bookmark_value><bookmark_value>ፒክስል ንድፎች: ማስገቢያ እና ማረሚያ</bookmark_value><bookmark_value>መላኪያ: bitmaps</bookmark_value><bookmark_value>ማምጫ: bitmaps</bookmark_value><bookmark_value>ስእሎች: ማረሚያ</bookmark_value><bookmark_value>ማረሚያ: ስእሎች</bookmark_value><bookmark_value>መገልበጫ ማጣሪያ</bookmark_value><bookmark_value>ማለስለሻ ማጣሪያ</bookmark_value><bookmark_value>ማጥሪያ ማጣሪያ</bookmark_value><bookmark_value>ረብሻ ማስወገጃ ማጣሪያ</bookmark_value><bookmark_value>solarization ማጣሪያ</bookmark_value><bookmark_value>እርጅና ማጣሪያ</bookmark_value><bookmark_value>posterizing ማጣሪያ</bookmark_value><bookmark_value>pop-art ማጣሪያ</bookmark_value><bookmark_value>charcoal sketches ማጣሪያ</bookmark_value><bookmark_value>mosaic ማጣሪያ</bookmark_value><bookmark_value>ስእሎች: ማጣሪያ</bookmark_value><bookmark_value>ማጣሪያ: ስእሎች</bookmark_value>"
+msgstr "<bookmark_value>ንድፎች: ስእሎችን ይመልከቱ</bookmark_value><bookmark_value>ምስሎች: ስእሎችን ይመልከቱ</bookmark_value><bookmark_value>ምስሎች: ማስገቢያ እና ማረሚያ bitmaps</bookmark_value><bookmark_value>ማብራሪያ: ስእሎችን ይመልከቱ</bookmark_value><bookmark_value>bitmaps: ማስገቢያ እና ማረሚያ</bookmark_value><bookmark_value>ፒክስል ንድፎች: ማስገቢያ እና ማረሚያ</bookmark_value><bookmark_value>መላኪያ: bitmaps</bookmark_value><bookmark_value>ማምጫ: bitmaps</bookmark_value><bookmark_value>ስእሎች: ማረሚያ</bookmark_value><bookmark_value>ማረሚያ: ስእሎች</bookmark_value><bookmark_value>መገልበጫ ማጣሪያ</bookmark_value><bookmark_value>ማለስለሻ ማጣሪያ</bookmark_value><bookmark_value>ማጥሪያ ማጣሪያ</bookmark_value><bookmark_value>ረብሻ ማስወገጃ ማጣሪያ</bookmark_value><bookmark_value>solarization ማጣሪያ</bookmark_value><bookmark_value>እርጅና ማጣሪያ</bookmark_value><bookmark_value>posterizing ማጣሪያ</bookmark_value><bookmark_value>pop-art ማጣሪያ</bookmark_value><bookmark_value>የ ከሰል ንድፎች ማጣሪያ</bookmark_value><bookmark_value>mosaic ማጣሪያ</bookmark_value><bookmark_value>ስእሎች: ማጣሪያ</bookmark_value><bookmark_value>ማጣሪያ: ስእሎች</bookmark_value>"
#: insert_bitmap.xhp
msgctxt ""
@@ -10475,7 +10475,7 @@ msgctxt ""
"par_id3154124\n"
"help.text"
msgid "A number of filters are located on the <link href=\"text/shared/02/24010000.xhp\" name=\"Image Filter\"><emph>Image Filter</emph></link> toolbar, which you can open with the icon on the <emph>Image</emph> Bar."
-msgstr ""
+msgstr "ማጣሪያዎች ተገኝተዋል በ <link href=\"text/shared/02/24010000.xhp\" name=\"Image Filter\"><emph>ምስል ማጣሪያ</emph></link> እቃ መደርደሪያ ውስጥ: እርስዎ መክፈት የሚችሉት በ ምልክት በ <emph>ምስል</emph> መደርደሪያ ውስጥ"
#: insert_bitmap.xhp
msgctxt ""
@@ -10783,7 +10783,7 @@ msgctxt ""
"bm_id3154927\n"
"help.text"
msgid "<bookmark_value>characters; special</bookmark_value><bookmark_value>inserting; special characters</bookmark_value><bookmark_value>special characters</bookmark_value><bookmark_value>text; inserting special characters</bookmark_value><bookmark_value>accents</bookmark_value><bookmark_value>compose key to insert special characters</bookmark_value>"
-msgstr "<bookmark_value>ባህሪዎች: የተለዩ</bookmark_value><bookmark_value>ማስገቢያ: የተለዩ ባህሪዎች</bookmark_value><bookmark_value>የተለዩ ባህሪዎች</bookmark_value><bookmark_value>ጽሁፍ: ማስገቢያ የተለዩ ባህሪዎች</bookmark_value><bookmark_value>accents</bookmark_value><bookmark_value>ማዋቀሪያ ቁልፍ የተለዩ ባህሪዎች ለማስገቢያ</bookmark_value>"
+msgstr "<bookmark_value>ባህሪዎች: የተለዩ</bookmark_value><bookmark_value>ማስገቢያ: የተለዩ ባህሪዎች</bookmark_value><bookmark_value>የተለዩ ባህሪዎች</bookmark_value><bookmark_value>ጽሁፍ: ማስገቢያ የተለዩ ባህሪዎች</bookmark_value><bookmark_value>አክሰንተስ</bookmark_value><bookmark_value>ማዋቀሪያ ቁልፍ የተለዩ ባህሪዎች ለማስገቢያ</bookmark_value>"
#: insert_specialchar.xhp
msgctxt ""
@@ -10837,7 +10837,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">At present there are three ways of entering letters with accents directly from the keyboard.</caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">ሶስት መንገዶች አሉ በ አሁኑ ጊዜ ፊደሎች ለ ማስገባት ከ accents ጋር በ ቀጥታ ከ ፊደል ገበታ ላይ</caseinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">ሶስት መንገዶች አሉ በ አሁኑ ጊዜ ፊደሎች ለ ማስገባት ከ አክሰንተስ ጋር በ ቀጥታ ከ ፊደል ገበታ ላይ</caseinline></switchinline>"
#: insert_specialchar.xhp
msgctxt ""
@@ -12428,20 +12428,20 @@ msgstr "ከ <emph>ምርጫ</emph> tab ገጽ ውስጥ: እርግጠኛ ይሁ
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "እርስዎ ወዲያውኑ እንደ ተጫኑ በ <emph>አዲስ ሰነድ</emph>ውስጥ: ለ እርስዎ ትንሽ መስኮት ይታያል በ <emph>ምልክቶች ማስማሚያ</emph> ቁልፍ ውስጥ: የ መጀመሪያውን ምልክት ያስገቡ: እርስዎ በሚጫኑ ጊዜ በ <emph>ምልክቶች ማስማሚያ</emph> ቁልፍ ውስጥ: የ አሁኑ እያንዳንዱ ምልክት ኮፒ ይደረጋል ወደ ሁሉም ሌሎች ምልክቶች በ ወረቀቱ ውስጥ"
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "ይጫኑ በ <emph>አዲስ ሰነድ</emph> ላይ ለ መፍጠር አዲስ ሰነድ እርስዎ ባስገቡት ማሰናጃዎች መሰረት"
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "ይጫኑ በ <emph>አዲስ ሰነድ</emph> ላይ ለ መፍጠር አዲስ ሰነድ እርስዎ ባስገቡት ማሰናጃዎች መሰረት"
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "እርስዎ ወዲያውኑ እንደ ተጫኑ በ <emph>አዲስ ሰነድ</emph>ውስጥ: ለ እርስዎ ትንሽ መስኮት ይታያል በ <emph>ምልክቶች ማስማሚያ</emph> ቁልፍ ውስጥ: የ መጀመሪያውን ምልክት ያስገቡ: እርስዎ በሚጫኑ ጊዜ በ <emph>ምልክቶች ማስማሚያ</emph> ቁልፍ ውስጥ: የ አሁኑ እያንዳንዱ ምልክት ኮፒ ይደረጋል ወደ ሁሉም ሌሎች ምልክቶች በ ወረቀቱ ውስጥ"
#: labels.xhp
msgctxt ""
@@ -18304,758 +18304,721 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "ማስጀመሪያ የ $[officename] ሶፍትዌር በ ደንቦች"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>ደንቦች መጀመሪያ</bookmark_value><bookmark_value>የ ትእዛዝ መስመር ደንቦች</bookmark_value><bookmark_value>ደንቦች: የ ትእዛዝ መስመር</bookmark_value><bookmark_value>ክርክሮች በ ትእዛዝ መስመር ውስጥ</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "ማስጀመሪያ የ $[officename] ሶፍትዌር በ ደንቦች"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "በማስጀመር የ $[officename] ሶፍትዌር ከ ትእዛዝ መስመር እርስዎ መመደብ ይችላሉ የ ተለያዩ ደንቦች: እርስዎ መፈጸም ይችላሉ: የ ትእዛዝ መስመር ደንቦችን እንዲጠቀሙ የምንመክረው በርካታ ልምድ ላለቸው ተጠቃሚዎች ነው"
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "ለ መደበኛ አያያዝ: የ ትእዛዝ መስመር ደንቦች መጠቀም አስፈላጊ አይደለም: ጥቂት ደንቦች ብቻ ጥልቅ የሆነ የ ቴክኒካል እውቀት ይፈልጋሉ ለ $[officename] ሶፍትዌር ቴክኖሎጂ"
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "ማስጀመሪያ ከ $[officename] ሶፍትዌር ከ ትእዛዝ መስመር ውስጥ"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
-msgstr "በ Windows ውስጥ ይምረጡ <emph>ማስኬጃ</emph> ከ Windows ዝርዝር ማስጀመሪያ ውስጥ: ወይንም ይክፈቱ shell በ Linux, *BSD, ወይንም Mac OS X መድረኮች ውስጥ"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "በ Windows ውስጥ ይጻፍፉ የሚቀጥለውን ጽሁፍ በ <emph>መክፈቻ </emph>ጽሁፍ ሜዳ ውስጥ እና ይጫኑ <emph>እሺ</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
-msgstr "በ UNIX-መሰል ስርአቶች ውስጥ ይጻፉ የሚቀጥለውን መስመር ጽሁፍ እና ይጫኑ <emph>ማስገቢያ</emph>:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "መቀየሪያ <emph>{install}</emph> በ እርስዎ መግጠሚያ መንገድ ለ $[officename] ሶፍትዌር (ለምሳሌ: <emph>C:\\Program Files\\Office</emph>, ወይንም <emph>~/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "በሚያስፈልግ ጊዜ መቀየሪያ <emph>{parameter}</emph> በ አንድ ወይንም ከዚያ በላይ በሆኑ በሚቀጥለው የ ትእዛዝ መስመር ደንቦች"
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "ዋጋ ያለው ትእዛዝ መስመር ደንቦች"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "ደንብ"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "ትርጉም"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "--እርዳታ / -እ / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "ዝግጁ የ ትእዛዝ መስመር ደንቦች ዝርዝር <switchinline select=\"sys\"><caseinline select=\"WIN\">በ ንግግር ሳጥን</caseinline><defaultinline>ክፍል ውስጥ</defaultinline></switchinline>."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
-msgstr "--እትም"
+msgid "Opens the file and applies specified macros from the file."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
-msgstr "የ እትም መረጃ ማሳያ"
+msgid "Getting help and information"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "--መጻፊያ"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "መጀመሪያ በ ባዶ የ መጻፊያ ሰነድ"
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "--ሰንጠረዥ"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "መጀመሪያ በ ባዶ የ ሰንጠረዥ ሰነድ"
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "--መሳያ"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "መጀመሪያ በ ባዶ የ መሳያ ሰነድ"
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "--ማስደነቂያ"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "መጀመሪያ በ ባዶ የ ማስደነቂያ ሰነድ"
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "--ሂሳብ"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "መጀመሪያ በ ባዶ የ ሂሳብ ሰነድ"
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "--አለም አቀፍ"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "መጀመሪያ በ ባዶ ዋናው የ መጻፊያ ሰነድ"
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "--ዌብ"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "መጀመሪያ በ ባዶ የ HTML ሰነድ"
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "--ማሳያ {የ ፋይል ስም.odp}"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "በ ማስደነቂያ ፋይል ማስጀመሪያ <emph>{filename.odp}</emph> እና ማቅረቢያ ይጀምራል: ወደ ማረሚያ ዘዴ ውስጥ ይገባል ከ ማቅረቢያ በኋላ"
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
+"help.text"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
"help.text"
-msgid "--minimized"
-msgstr "--ማሳነሻ"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "አሳንሶ ማስጀመሪያ: ብልጭ የሚለው መመልከቻ አይታይም"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "--የማይታይ"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "በማይታይ ዘዴ ማስጀመሪያ"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "የ ማስጀ-መሪያ አርማ ወይንም የ ፕሮግራም ማስጀመሪያ መስኮት ይታያል: ነገር ግን: የ $[officename] ሶፍትዌር መቆጣጠር ይቻላል እና ሰነዶች እና ንግግሮች መክፈቻ በ <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
-msgstr "ይህ የ $[officename] ሶፍትዌር በዚህ ደንብ ተጀምሯል: ይህን መጨረስ በ መጠቀም የ ስራ አስተዳዳሪ (መስኮቶች) ወይንም የ <emph>መግደያ</emph>ትእዛዝ (UNIX-like ስርአቶች)"
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "እንደ አገናኝ መጠቀም አይቻልም <emph>-በፍጥነት ማስጀምር</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "ተጨማሪ መረጃ ይገኛል በ <emph>$[officename] አበልፃጊዎች መመሪያ ውስጥ </emph>"
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
+"help.text"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
"help.text"
-msgid "--norestore"
-msgstr "--እንደ ነበር መመለስ የለም"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "ማሰናከያ እንደገና ማስጀመሪያ እና ፋይል ማዳኛ ስርአቱ ከ ተጋጨ በኋላ"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--የ መጀመሪያ ማስጀመሪያ አዋቂ የለም"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "የ እንኳን ደህና መጡ አዋቂ ማሰናከያ"
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "--በፍጥነት ማስጀመሪያ"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "በፍጥነት ማስጀመሪያ ማስነሻ"
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "--እቀበላለሁ={UNO ሀረግ}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "ማስታወቂያ የ $[officename] ሶፍትዌር በሚፈጠር ጊዜ የ \"UNO Acceptor Threads\": የ \"UNO Accept String\" ይጠቀማል"
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "ተጨማሪ መረጃ ይገኛል በ <emph>$[officename] አበልፃጊዎች መመሪያ ውስጥ </emph>"
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "--አልቀበልም={UNO ሀረግ}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
-msgstr "መቀበያ መዝጊያ የ ተፈጠረውን በ --እቀበላለሁ={UNO ሀረግ}. ይጠቀሙ --አልቀበልም=ሁሉንም መዝጊያ ሁሉንም የ ተከፈቱ መቀበያዎች"
+msgid "Exit after loading documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-ማ {የ ፋይል ስም1} {የ ፋይል ስም2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "ፋይሎች ማተሚያ <emph>{የ ፋይል ስም1} {የ ፋይል ስም2} ...</emph> ወደ ነባር ማተሚያ እና መጨረሻ: ብልጭ የሚለው መመልከቻ አይታይም"
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "የ ፋይል ስም ክፍተቶች ከያዘ: እና ከዛ መዘጋት አለበት በ ትምህርተ ጥቅስ ምልክት"
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "--ማተ {የ ማተሚያ ስም} {የ ፋይል ስም1} {የ ፋይል ስም2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "ፋይሎች ማተሚያ <emph>{የ ፋይል ስም1} {የ ፋይል ስም2} ...</emph> ወደ ነባር ማተሚያ<emph>{Printername}</emph> እና መጨረሻ: ብልጭ የሚለው መመልከቻ አይታይም"
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "የ ፋይል ስም ክፍተቶች ከያዘ: እና ከዛ መዘጋት አለበት በ ትምህርተ ጥቅስ ምልክት"
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-መ {የ ፋይል ስም}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "መክፈቻ <emph>{የ ፋይል ስም}</emph> ለ ማረሚያ ቴምፕሌትም ቢሆን"
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "--መመልከቻ {የ ፋይል ስም}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "ጊዚያዊ ኮፒ መፍጠሪያ ለ <emph>{የ ፋይል ስም}</emph> እና መክፈቻ ለ ማንበብ-ብቻ"
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-አ {የ ፋይል ስም}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "አዲስ ሰነድ መፍጠሪያ በ መጠቀም <emph>{የ ፋይል ስም}</emph> እንደ ቴምፕሌት"
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "--አርማ የለም"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "ብልጭ የሚለውን መመልከቻ ማሰናከያ ፕሮግራሙ በሚጀምር ጊዜ"
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "--ነባር የለም"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "የ ፋይል ስም ክፍተቶች ከያዘ: እና ከዛ መዘጋት አለበት በ ትምህርተ ጥቅስ ምልክት"
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "ምንም ነገር ሳያሳይ ማስጀመሪያ ብልጭ ከሚለው መመልከቻ በስተቀር"
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
-msgstr "--መቆለፊያ መመርመሪያ የለም"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
-msgstr "መግጠሚያውን በ መጠቀም የ ሩቅ ሁኔታዎችን መመርመሪያ ማሰናከያ"
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3150828\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--የ መጀመሪያ ማስጀመሪያ አዋቂ የለም"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3145268\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "ወደ ፕሮግራሙ ማስጀመሪያ ይህን ደንብ መጨመሪያ የ እንኳን ደህና መጡ ትእዛዝ እንዲያግድ"
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id3153838\n"
"help.text"
-msgid "--display {display}"
-msgstr "--ማሳያ {ማሳያ}"
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id315053p\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
-msgstr "ማሰናጃ የ <emph>ማሳያ </emph>አካባቢ ተለዋዋጭ በ UNIX-like platforms ወደ ዋጋው <emph>{display}</emph> ይህ ደንብ የ ተደገፈው ለ ማስጀመሪያ script ነው ለ $[officename] ሶፍትዌር በ UNIX-like platforms."
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "--headless"
-msgstr "--ራስጌ የሌለው"
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id315053q\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "መጀመሪያ በ \"ራስጌ በሌለው ዘዴ\" መተግበሪያ ያለ ተጠቃሚ ገጽታ መጠቀም ያስችላል"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "ይህን የ ተለየ ዘዴ መጠቀም የሚቻለው መተግበሪያው በ ውጪ ደንበኞች ሲቆጣጠሩት ነው በ <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "--infilter={filter}"
-msgstr "--ማጣሪያ={ማጣሪያ}"
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
-msgstr "ማስገደጃ የ ማስገቢያ አይነት: ከተቻለ: ለምሳሌ: --infilter=\"Calc Office Open XML\"."
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
-msgstr "--መቀየሪያ-ወደ ውጤት_ፋይል_ተጨማሪዎች[:ውጤት_ማጣሪያ_ስም] [--outdir output_dir] ፋይሎች"
+msgid "Ignored switches"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
-msgstr "Batch ፋይሎች ይቀይራል: If --outdir ካልተወሰነ: ከዛ የ መስሪያ ዳይሬክቶሪ ይጠቀማል እንደ output_dir.<br/>ለምሳሌ: --መቀየሪያ-ወደ pdf *.doc<br/>--መቀየሪያ-ወደ pdf:መጻፊያ_pdf_መላኪያ --outdir /home/user *.doc"
+msgid "Ignored (MacOS X only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
-msgstr "--ማተሚያ-ወደ-ፋይል [--የ ማተሚያው-ስም የ ማተሚያው_ስም] [--outdir output_dir] ፋይሎች"
+msgid "Ignored (COM+ related; Windows only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id20161204014529900\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
-msgstr "Batch ያትማል ፋይሎችን ወደ ፋይል: ከሆነ --outdir ካልተወሰነ: ከዛ የ አሁኑ መስሪያ ዳይረክቶሪ ይጠቀማል እንደ output_dir.<br/>ለምሳሌ: --ማተሚያ-ወደ-ፋይል *.doc<br/>--ማተሚያ-ወደ-ፋይል --የ ማተሚያ-ስም nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id2016120401463584\n"
+"help.text"
+msgid "Used only in unit tests and should have two arguments."
+msgstr ""
#: startcenter.xhp
msgctxt ""
@@ -20306,7 +20269,7 @@ msgctxt ""
"par_idN10B39\n"
"help.text"
msgid "<link href=\"http://www.w3.org/Style/XSL/\">World Wide Web Consortium Pages on Extensible <emph>Stylesheet</emph> Language (XSL)</link>"
-msgstr ""
+msgstr "<link href=\"http://www.w3.org/Style/XSL/\">World Wide Web Consortium Pages on Extensible <emph>Stylesheet</emph> Language (XSL)</link>"
#: xsltfilter.xhp
msgctxt ""
@@ -20314,7 +20277,7 @@ msgctxt ""
"par_idN10B4E\n"
"help.text"
msgid "<link href=\"http://www.w3.org/XML/\">World Wide Web Consortium Pages on Extensible Markup Language (XML)</link>"
-msgstr ""
+msgstr "<link href=\"http://www.w3.org/XML/\">World Wide Web Consortium Pages on Extensible Markup Language (XML)</link>"
#: xsltfilter.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index c5fed2e24a0..6932cc8378e 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-09 23:13+0000\n"
+"PO-Revision-Date: 2016-12-23 17:30+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481325226.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482514252.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2433,7 +2433,7 @@ msgctxt ""
"43\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpage/C\">Cyan</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/colorpage/C\">Cyan</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/colorpage/C\">አረንጓዴ ሰማያዊ</ahelp>"
#: 01010500.xhp
msgctxt ""
@@ -3508,7 +3508,7 @@ msgctxt ""
"bm_id3155341\n"
"help.text"
msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</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>WYSIWYG iበ ፊደል ዝርዝር ውስጥ</bookmark_value> <bookmark_value>ቅድመ እይታ: የ ፊደሎች ዝርዝር</bookmark_value> <bookmark_value>የ ፊደሎች ዝርዝር</bookmark_value> <bookmark_value>የ ፊደል ስም ሳጥን</bookmark_value> <bookmark_value>የ አይጥ: ቦታ</bookmark_value> <bookmark_value>ቁራጭ ሰሌዳ: መምረጫ ቁራጭ ሰሌዳ</bookmark_value> <bookmark_value>ምርጫ ቁራጭ ሰሌዳ</bookmark_value> <bookmark_value>OpenGL: ማሰናጃዎች</bookmark_value> <bookmark_value>OpenGL: ጥቁር ዝርዝር</bookmark_value> <bookmark_value>OpenGL: ነጭ ዝርዝር</bookmark_value> <bookmark_value>OpenGL: የ ንድፎች ውጤት</bookmark_value> <bookmark_value>የ ማስታወሻ ደብተር መደርደሪያ: ምልክት መጠን</bookmark_value>"
#: 01010800.xhp
msgctxt ""
@@ -3556,7 +3556,7 @@ msgctxt ""
"hd_id310720161555082010\n"
"help.text"
msgid "Sidebar icon size"
-msgstr ""
+msgstr "የ ጎን መደርደሪያ ምልክት መጠን"
#: 01010800.xhp
msgctxt ""
@@ -3564,7 +3564,7 @@ msgctxt ""
"par_id310720161554582186\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">Specifies the display size of sidebar icons.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/optviewpage/sidebariconsize\">የ ጎን መደርደሪያ ምልክት መጠን ይወስኑ </ahelp>"
#: 01010800.xhp
msgctxt ""
@@ -3572,7 +3572,7 @@ msgctxt ""
"hd_id190920161822223888\n"
"help.text"
msgid "Notebook bar icon size"
-msgstr ""
+msgstr "የ ማስታወሻ ደብተር መደርደሪያ ምልክት መጠን"
#: 01010800.xhp
msgctxt ""
@@ -3580,7 +3580,7 @@ msgctxt ""
"par_id190920161825438077\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">የ ማሳያ መጠን ይወስኑ ለ <link href=\"text/shared/01/notebook_bar.xhp\">ማስታወሻ ደብተር መደርደሪያ</link> ምልክቶች </ahelp>"
#: 01010800.xhp
msgctxt ""
@@ -3588,7 +3588,7 @@ msgctxt ""
"hd_id310720161555238963\n"
"help.text"
msgid "Icon style"
-msgstr ""
+msgstr "የ ምልክት ዘዴ"
#: 01010800.xhp
msgctxt ""
@@ -3596,7 +3596,7 @@ msgctxt ""
"par_id310720161555341027\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">Specifies the icon style for icons in toolbars and dialogs.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/optviewpage/iconstyle\">የ ምልክት ዘዴ ለ ምልክቶች በ እቃ መደርደሪያ እና ንግግሮች ውስጥ ይወስኑ </ahelp>"
#: 01010800.xhp
msgctxt ""
@@ -3676,7 +3676,7 @@ msgctxt ""
"par_id3155810\n"
"help.text"
msgid "<emph>Paste clipboard</emph> - pressing the middle mouse button inserts the contents of the \"Selection clipboard\" at the cursor position."
-msgstr ""
+msgstr "<emph>ቁራጭ ሰሌዳ መለጠፊያ</emph> - የ አይጥ መሀከል ቁልፍ መጫን ይዞታውን ያስገባል ወደ \"ተመረጠው ቁራጭ ሰሌዳ\" መጠቆሚያው ባለበት ቦታ"
#: 01010800.xhp
msgctxt ""
@@ -3732,7 +3732,7 @@ msgctxt ""
"par_id3149331\n"
"help.text"
msgid "<emph>Paste content</emph>"
-msgstr ""
+msgstr "<emph>ይዞታ መለጠፊያ</emph>"
#: 01010800.xhp
msgctxt ""
@@ -3756,7 +3756,7 @@ msgctxt ""
"par_id3159206\n"
"help.text"
msgid "<emph>Pasting into another document</emph>"
-msgstr ""
+msgstr "<emph>ወደ ሌላ ሰነድ መለጠፊያ</emph>"
#: 01010800.xhp
msgctxt ""
@@ -3868,7 +3868,7 @@ msgctxt ""
"hd_id3156056\n"
"help.text"
msgid "Icons in menus"
-msgstr ""
+msgstr "ምልክቶች በ ዝርዝር ውስጥ"
#: 01010800.xhp
msgctxt ""
@@ -3892,7 +3892,7 @@ msgctxt ""
"hd_id3149262\n"
"help.text"
msgid "Show preview of fonts"
-msgstr ""
+msgstr "ፊደሎች በ ቅድመ እይታ ማሳያ"
#: 01010800.xhp
msgctxt ""
@@ -6378,7 +6378,7 @@ msgctxt ""
"par_id7700735\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the size of the font.</ahelp>"
-msgstr "<ahelp hid=\".\">የፊደል መጠን መወሰኛ</ahelp>"
+msgstr "<ahelp hid=\".\">የ ፊደል መጠን መወሰኛ</ahelp>"
#: 01040300.xhp
msgctxt ""
@@ -6833,7 +6833,7 @@ msgctxt ""
"bm_id3149656\n"
"help.text"
msgid "<bookmark_value>inserting; new text tables defaults</bookmark_value><bookmark_value>tables in text; default settings</bookmark_value><bookmark_value>aligning;tables in text</bookmark_value><bookmark_value>number formats; recognition in text tables</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>"
#: 01040500.xhp
msgctxt ""
@@ -8546,7 +8546,7 @@ msgctxt ""
"par_id4653767\n"
"help.text"
msgid "Expand word space on lines with manual line breaks in justified paragraphs"
-msgstr "የቃላትን ክፍተት ማስፊያ በመስመሮች ላይ በእጅ መስመር መጨረሻ አንቀጾችን እኩል ማካፈያ"
+msgstr "የ ቃላትን ክፍተት ማስፊያ በ መስመሮች ላይ በእጅ መስመር መጨረሻ አንቀጾችን እኩል ማካፈያ"
#: 01041100.xhp
msgctxt ""
@@ -9135,7 +9135,7 @@ msgctxt ""
"bm_id3147242\n"
"help.text"
msgid "<bookmark_value>cells; showing grid lines (Calc)</bookmark_value> <bookmark_value>borders; cells on screen (Calc)</bookmark_value> <bookmark_value>grids; displaying lines (Calc)</bookmark_value> <bookmark_value>colors; grid lines and cells (Calc)</bookmark_value> <bookmark_value>page breaks; displaying (Calc)</bookmark_value> <bookmark_value>guides; showing (Calc)</bookmark_value> <bookmark_value>displaying; zero values (Calc)</bookmark_value> <bookmark_value>zero values; displaying (Calc)</bookmark_value> <bookmark_value>tables in spreadsheets; value highlighting</bookmark_value> <bookmark_value>cells; formatting without effect (Calc)</bookmark_value> <bookmark_value>cells; coloring (Calc)</bookmark_value> <bookmark_value>anchors; displaying (Calc)</bookmark_value> <bookmark_value>colors;restriction (Calc)</bookmark_value> <bookmark_value>text overflow in spreadsheet cells</bookmark_value> <bookmark_value>references; displaying in color (Calc)</bookmark_value> <bookmark_value>objects; displaying in spreadsheets</bookmark_value> <bookmark_value>pictures; displaying in Calc</bookmark_value> <bookmark_value>charts; displaying (Calc)</bookmark_value> <bookmark_value>draw objects; displaying (Calc)</bookmark_value> <bookmark_value>row headers; displaying (Calc)</bookmark_value> <bookmark_value>column headers; displaying (Calc)</bookmark_value> <bookmark_value>scrollbars; displaying (Calc)</bookmark_value> <bookmark_value>sheet tabs; displaying</bookmark_value> <bookmark_value>tabs; displaying sheet tabs</bookmark_value> <bookmark_value>outlines;outline symbols</bookmark_value>"
-msgstr "<bookmark_value>ክፍሎች: ማሳያ መጋጠሚያ መስመሮች (ሰንጠረዥ)</bookmark_value> <bookmark_value>ድንበሮች: ክፍሎች በ መመልከቻ ላይ (ሰንጠረዥ)</bookmark_value> <bookmark_value>መጋጠሚያ: ማሳያ መስመሮች (ሰንጠረዥ)</bookmark_value> <bookmark_value>ቀለሞች: መጋጠሚያ መስመሮች እና ክፍሎች (ሰንጠረዥ)</bookmark_value> <bookmark_value>ገጽ መጨረሻ: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>መምሪያ: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>ማሳያ: ዜሮ ዋጋዎች (ሰንጠረዥ)</bookmark_value> <bookmark_value>ዜሮ ዋጋዎች: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>ክፍሎች በ ሰንጠረዥ ውስጥ: ዋጋ ማድመቂያ</bookmark_value> <bookmark_value>ክፍሎች: አቀራረብ ያለ ውጤት (ሰንጠረዥ)</bookmark_value> <bookmark_value>ክፍሎች: ቀለሞች (ሰንጠረዥ)</bookmark_value> <bookmark_value>ማስቆሚያ: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>ቀለሞች: መከልከያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>ጽሁፍ መጠኑን አልፏል በ ሰንጠረዥ ክፍሎች</bookmark_value> <bookmark_value>ማመሳከሪያዎች: ማሳያ በ ቀለም (ሰንጠረዥ)</bookmark_value> <bookmark_value>እቃዎች: ማሳያ በ ሰንጠረዥ</bookmark_value> <bookmark_value>ስእሎች: ማሳያ በ ሰንጠረዥ</bookmark_value> <bookmark_value>charts: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>መሳያ እቃዎች: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>የ ረድፍ ራስጌዎች: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>የ አምድ ራስጌዎች: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>መሸብለያ መደርደሪያ: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>ወረቀት tabs: ማሳያ</bookmark_value> <bookmark_value>tabs: ማሳያ ወረቀት tabs</bookmark_value> <bookmark_value>ረቂቆች: ረቂቅ ምልክቶች</bookmark_value>"
+msgstr "<bookmark_value>ክፍሎች: ማሳያ መጋጠሚያ መስመሮች (ሰንጠረዥ)</bookmark_value> <bookmark_value>ድንበሮች: ክፍሎች በ መመልከቻ ላይ (ሰንጠረዥ)</bookmark_value> <bookmark_value>መጋጠሚያ: ማሳያ መስመሮች (ሰንጠረዥ)</bookmark_value> <bookmark_value>ቀለሞች: መጋጠሚያ መስመሮች እና ክፍሎች (ሰንጠረዥ)</bookmark_value> <bookmark_value>ገጽ መጨረሻ: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>መምሪያ: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>ማሳያ: ዜሮ ዋጋዎች (ሰንጠረዥ)</bookmark_value> <bookmark_value>ዜሮ ዋጋዎች: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>ክፍሎች በ ሰንጠረዥ ውስጥ: ዋጋ ማድመቂያ</bookmark_value> <bookmark_value>ክፍሎች: አቀራረብ ያለ ውጤት (ሰንጠረዥ)</bookmark_value> <bookmark_value>ክፍሎች: ቀለሞች (ሰንጠረዥ)</bookmark_value> <bookmark_value>ማስቆሚያ: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>ቀለሞች: መከልከያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>ጽሁፍ መጠኑን አልፏል በ ሰንጠረዥ ክፍሎች</bookmark_value> <bookmark_value>ማመሳከሪያዎች: ማሳያ በ ቀለም (ሰንጠረዥ)</bookmark_value> <bookmark_value>እቃዎች: ማሳያ በ ሰንጠረዥ</bookmark_value> <bookmark_value>ስእሎች: ማሳያ በ ሰንጠረዥ</bookmark_value> <bookmark_value>ቻርትስ: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>መሳያ እቃዎች: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>የ ረድፍ ራስጌዎች: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>የ አምድ ራስጌዎች: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>መሸብለያ መደርደሪያ: ማሳያ (ሰንጠረዥ)</bookmark_value> <bookmark_value>ወረቀት tabs: ማሳያ</bookmark_value> <bookmark_value>tabs: ማሳያ ወረቀት tabs</bookmark_value> <bookmark_value>ረቂቆች: ረቂቅ ምልክቶች</bookmark_value>"
#: 01060100.xhp
msgctxt ""
@@ -10599,7 +10599,7 @@ msgctxt ""
"60\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulawildcards\">Specifies that wildcards are enabled when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">database functions</link>, and to VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulawildcards\">መደበኛ መግለጫ መወሰኛ ቀላል ከ ሁለገብ ይልቅ ተችለዋል በሚፈልጉ ጊዜ እና እንዲሁም ለ ባህሪ ሀረግ ማነፃፀሪያ</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> ይህ ይዛመዳል ከ <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">ዳታቤዝ ተግባሮች</link> ጋር እና ወደ በ ቁመት መፈለጊያ: በ አግድም መፈለጊያ: ተመሳሳይ: መካከለኛ ከሆነ: መካከለኛ ከሆኑ: መቁጠሪያ ከሆነ: መቁጠሪያ ከሆኑ: ድምር ከሆነ: ድምር ከሆኑ: እና መፈለጊያ</caseinline></switchinline>"
+msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulawildcards\">መደበኛ መግለጫ መወሰኛ ቀላል ከ ሁለገብ ይልቅ ተችለዋል በሚፈልጉ ጊዜ እና እንዲሁም ለ ባህሪ ሀረግ ማነፃፀሪያ</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> ይህ ይዛመዳል ከ <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">ዳታቤዝ ተግባሮች</link> ጋር እና ወደ በ ቁመት መፈለጊያ: በ አግድም መፈለጊያ: ተመሳሳይ: አማካይ ከሆነ: አማካይ ከሆኑ: መቁጠሪያ ከሆነ: መቁጠሪያ ከሆኑ: ድምር ከሆነ: ድምር ከሆኑ: እና መፈለጊያ</caseinline></switchinline>"
#: 01060500.xhp
msgctxt ""
@@ -10649,7 +10649,7 @@ msgctxt ""
"59\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formularegex\">Specifies that regular expressions instead of simple wildcards are enabled when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">database functions</link>, and to VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formularegex\">መደበኛ መግለጫ መወሰኛ ከ ቀላል ከ ሁለገብ ይልቅ ተችለዋል በሚፈልጉ ጊዜ እና እንዲሁም ለ ባህሪ ሀረግ ማነፃፀሪያ</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> ይህ ይዛመዳል ከ <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">ዳታቤዝ ተግባሮች</link> ጋር እና ወደ በ ቁመት መፈለጊያ: በ አግድም መፈለጊያ: ተመሳሳይ: መካከለኛ ከሆነ: መካከለኛ ከሆኑ: መቁጠሪያ ከሆነ: መቁጠሪያ ከሆኑ: ድምር ከሆነ: ድምር ከሆኑ: እና መፈለጊያ</caseinline></switchinline>"
+msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formularegex\">መደበኛ መግለጫ መወሰኛ ከ ቀላል ከ ሁለገብ ይልቅ ተችለዋል በሚፈልጉ ጊዜ እና እንዲሁም ለ ባህሪ ሀረግ ማነፃፀሪያ</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> ይህ ይዛመዳል ከ <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">ዳታቤዝ ተግባሮች</link> ጋር እና ወደ በ ቁመት መፈለጊያ: በ አግድም መፈለጊያ: ተመሳሳይ: አማካይ ከሆነ: አማካይ ከሆኑ: መቁጠሪያ ከሆነ: መቁጠሪያ ከሆኑ: ድምር ከሆነ: ድምር ከሆኑ: እና መፈለጊያ</caseinline></switchinline>"
#: 01060500.xhp
msgctxt ""
@@ -10675,7 +10675,7 @@ msgctxt ""
"59\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulaliteral\">Specifies that only literal strings are used when searching and also for character string comparisons.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This relates to the <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">database functions</link>, and to VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.</caseinline></switchinline>"
-msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulaliteral\">መወሰኛ ቃል በ ቃል ሀረጎችን የ ተጠቀሙትን በሚፈልጉ ጊዜ እና እንዲሁም የ ባህሪ ሀረግ ማነፃፀሪያ </ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> ይህ ይዛመዳል ከ <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">ዳታቤዝ ተግባሮች</link>ጋር እና ወደ በ ቁመት መፈለጊያ: በ አግድም መፈለጊያ: ተመሳሳይ: መካከለኛ ከሆነ: መካከለኛ ከሆኑ: መቁጠሪያ ከሆነ: መቁጠሪያ ከሆኑ: ድምር ከሆነ: ድምር ከሆኑ: እና መፈለጊያ</caseinline></switchinline>"
+msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/formulaliteral\">መወሰኛ ቃል በ ቃል ሀረጎችን የ ተጠቀሙትን በሚፈልጉ ጊዜ እና እንዲሁም የ ባህሪ ሀረግ ማነፃፀሪያ </ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> ይህ ይዛመዳል ከ <link href=\"text/scalc/01/04060101.xhp\" name=\"database functions\">ዳታቤዝ ተግባሮች</link>ጋር እና ወደ በ ቁመት መፈለጊያ: በ አግድም መፈለጊያ: ተመሳሳይ: አማካይ ከሆነ: አማካይ ከሆኑ: መቁጠሪያ ከሆነ: መቁጠሪያ ከሆኑ: ድምር ከሆነ: ድምር ከሆኑ: እና መፈለጊያ</caseinline></switchinline>"
#: 01060500.xhp
msgctxt ""
@@ -12376,7 +12376,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">icon</link> in the <emph>Option</emph> bar.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>በ ማቅረቢያ ወይንም በ መሳያ ሰነድ ውስጥ: እርስዎ ማስነሳት ይችላሉ ይህን ዘዴ <emph>ይምረጡ የ ጽሁፍ ቦታ ብቻ </emph> <link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">ምልክት</link> በ <emph>ምርጫ</emph> መደርደሪያ ላይ.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>በ ማቅረቢያ ወይንም በ መሳያ ሰነድ ውስጥ: እርስዎ ማስነሳት ይችላሉ ይህን ዘዴ <emph> ይምረጡ የ ጽሁፍ ቦታ ብቻ </emph> <link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">ምልክት</link> በ <emph>ምርጫ</emph> መደርደሪያ ላይ.</defaultinline></switchinline>"
#: 01070500.xhp
msgctxt ""
@@ -14162,7 +14162,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "Logical"
-msgstr ""
+msgstr "ሎጂካል"
#: 01150300.xhp
msgctxt ""
@@ -14852,7 +14852,7 @@ msgctxt ""
"hd_id1000010\n"
"help.text"
msgid "This feature is experimental and may produce errors or behave unexpectedly. To enable it anyway, <variable id=\"exptal\">choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Advanced</emph> and select <emph>Enable experimental features</emph> checkbox.</variable>"
-msgstr "ይህ ገጽታ ለ ሙከረ ነው እና ስህተቶች ወይንም ያልተጠበቁ ውጤቶች ሊፈጥር ይችላል: ለማንኛውም ማስቻል ከፈለጉ <variable id=\"exptal\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - የረቀቀ</emph> እና ይምረጡ <emph>የ ሙከራ ገጽታ ማስቻያ</emph> ሳጥ ውስጥ ምልክት ያድርጉ </variable>"
+msgstr "ይህ ገጽታ ለ ሙከረ ነው እና ስህተቶች ወይንም ያልተጠበቁ ውጤቶች ሊፈጥር ይችላል: ለማንኛውም ማስቻል ከፈለጉ <variable id=\"exptal\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - የረቀቀ</emph> እና ይምረጡ <emph>የ ሙከራ ገጽታ ማስቻያ</emph> ሳጥን ውስጥ ምልክት ያድርጉ </variable>"
#: expertconfig.xhp
msgctxt ""
@@ -15308,7 +15308,7 @@ msgctxt ""
"par_idN1059F\n"
"help.text"
msgid "<ahelp hid=\"SVX_EDIT_RID_SVXPAGE_INET_SCRIPTING_ED_CLASSPATH\">Specifies the location of Java classes or Java class libraries.</ahelp> The new classpath becomes valid after you restart <item type=\"productname\">%PRODUCTNAME</item>."
-msgstr ""
+msgstr "<ahelp hid=\"SVX_EDIT_RID_SVXPAGE_INET_SCRIPTING_ED_CLASSPATH\">አካባቢውን ይወስኑ ለ Java classes ወይንም ለ Java class libraries.</ahelp> አዲሱ የ classpath ዋጋ የሚኖረው እርስዎ እንደገና ሲያስነሱ ነው <item type=\"productname\">%PRODUCTNAME</item>."
#: javaclasspath.xhp
msgctxt ""
@@ -16196,7 +16196,7 @@ msgctxt ""
"bm_id4077578\n"
"help.text"
msgid "<bookmark_value>Open CL;setting options</bookmark_value><bookmark_value>setting options;Open CL</bookmark_value>"
-msgstr "<bookmark_value>Open CL:ማሰናጃ ምርጫ</bookmark_value><bookmark_value>ማሰናጃ ምርጫ:Open CL</bookmark_value>"
+msgstr "<bookmark_value>Open CL: ማሰናጃ ምርጫ</bookmark_value><bookmark_value>ማሰናጃ ምርጫ: Open CL</bookmark_value>"
#: opencl.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress.po b/source/am/helpcontent2/source/text/simpress.po
index 0e653bb4d2d..fe80920a59e 100644
--- a/source/am/helpcontent2/source/text/simpress.po
+++ b/source/am/helpcontent2/source/text/simpress.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2016-12-07 19:24+0000\n"
+"PO-Revision-Date: 2016-12-23 17:45+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481138692.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482515112.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1101,7 +1101,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "To specify the measurement units for a ruler, right-click the ruler, and then choose a new unit from the list."
-msgstr "ለ ማስመሪያው የ መለኪያ ክፍሎችን ለመወሰን፡ በቀኝ-ይጫኑ ማስመሪያው ላይ እና ከዛ ይምረጡ አዲስ የሚፈልጉትን መለኪያ ከ ዝርዝር ውስጥ"
+msgstr "ለ ማስመሪያው የ መለኪያ ክፍሎችን ለመወሰን: በ ቀኝ-ይጫኑ ማስመሪያው ላይ እና ከዛ ይምረጡ አዲስ የሚፈልጉትን መለኪያ ከ ዝርዝር ውስጥ"
#: main0209.xhp
msgctxt ""
@@ -1764,7 +1764,7 @@ msgctxt ""
"par_id0921200901104120\n"
"help.text"
msgid "Left click, right arrow, down arrow, spacebar, page down, enter, return, 'N'"
-msgstr "በግራ ይጫኑ ፡ በቀኝ ቀስት ፡ በታች ቀስት ፡ በቦታ ባር ፡ በገጽ ወደ ታች ፡ ማስገቢያ ፡ መመለሻ ፡ 'N'"
+msgstr "በ ግራ ይጫኑ: በ ቀኝ ቀስት: በ ታች ቀስት: በ ክፍተት መደርደሪያ: በ ገጽ ወደ ታች: ማስገቢያ: መመለሻ: 'N'"
#: presenter.xhp
msgctxt ""
@@ -1780,7 +1780,7 @@ msgctxt ""
"par_id0921200901104115\n"
"help.text"
msgid "Right click, left arrow, up arrow, page up, backspace, 'P'"
-msgstr "በቀኝ ይጫኑ ፡ በግራ ቀስት ፡ በላይ ቀስት ፡ በገጽ ወደ ላይ ፡ በኋሊት ደምሳሽ ፡ 'P'"
+msgstr "በ ቀኝ ይጫኑ: በ ግራ ቀስት: በ ላይ ቀስት: በ ገጽ ወደ ላይ: በኋሊት ደምሳሽ: 'P'"
#: presenter.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/00.po b/source/am/helpcontent2/source/text/simpress/00.po
index 39eb79f6802..3352ccb8439 100644
--- a/source/am/helpcontent2/source/text/simpress/00.po
+++ b/source/am/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-10-11 22:12+0000\n"
+"PO-Revision-Date: 2016-12-23 17:45+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: 1476223934.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482515120.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -764,7 +764,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "In a Draw document, right-click a layer tab and choose <emph>Modify Layer</emph>"
-msgstr "በ መሳያ ሰነድ ውስጥ በቀኝ-ይጫኑ የ ደሬዐጃ tab እና ይምረጡ <emph>ደረጃ ማሻሻያ</emph>"
+msgstr "በ መሳያ ሰነድ ውስጥ በ ቀኝ-ይጫኑ የ ደሬዐጃ tab እና ይምረጡ <emph>ደረጃ ማሻሻያ</emph>"
#: 00000405.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Slide - Slide Master Design</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">ይምረጡ <emph>ተንሸራታች - ዋናው የ ተንሸራታች ንድፍ - </emph></variable>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/01.po b/source/am/helpcontent2/source/text/simpress/01.po
index e03e5c27328..78df77c4066 100644
--- a/source/am/helpcontent2/source/text/simpress/01.po
+++ b/source/am/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-09 01:13+0000\n"
+"PO-Revision-Date: 2016-12-23 17:45+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481246030.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482515158.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/first\">Jumps to the first slide in the slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/first\">በ ተንሸራታች ማሳያ ወደ መጀመሪያው ተንሸራታች ውስጥ መዝለያ </ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/previous\">Moves back one slide in the slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/previous\">በ ተንሸራታች ማሳያ ውስጥ አንድ ተንሸራታች ወደ ኋላ መሄጃ </ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -633,7 +633,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/next\">Move forward one slide in the slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/next\">በ ተንሸራታች ማሳያ ውስጥ አንድ ተንሸራታች ወደ ፊት መሄጃ </ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -668,7 +668,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/last\">Jumps to the last slide in the slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/last\">በ ተንሸራታች ማሳያ ውስጥ ወደ መጨረሻው ተንሸራታች መሄጃ </ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -842,7 +842,7 @@ msgctxt ""
"37\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/tree\">Lists available slides. Double-click a slide to make it the active slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/tree\">ዝግጁ የ ተንሸራታች ዝርዝር: ሁለት ጊዜ-ይጫኑ ተንሸራታች ላይ ተንሰራታቹን ንቁ ለማድረግ </ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1796,7 +1796,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Right-click a slide in <emph>Normal</emph> view and choose <emph>Slide Show.</emph>"
-msgstr "በቀኝ-ይጫኑ ተንሸራታች ውስጥ <emph>መደበኛ</emph> መመልከቻ ይምረጡ እና <emph>ተንሸራታች ማሳያ</emph>"
+msgstr "በ ቀኝ-ይጫኑ ተንሸራታች ውስጥ <emph>መደበኛ</emph> መመልከቻ ይምረጡ እና <emph>ተንሸራታች ማሳያ</emph>"
#: 03130000.xhp
msgctxt ""
@@ -2159,7 +2159,7 @@ msgctxt ""
"par_id083120160418133174\n"
"help.text"
msgid "<image id=\"img_id083120160418043590\" src=\"media/screenshots/modules/simpress/ui/headerfooterdialog/HeaderFooterDialog.png\" width=\"6.5835in\" height=\"5.5102in\"><alt id=\"alt_id083120160418043590\">Header and footer dialog</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id083120160418043590\" src=\"media/screenshots/modules/simpress/ui/headerfooterdialog/HeaderFooterDialog.png\" width=\"6.5835in\" height=\"5.5102in\"><alt id=\"alt_id083120160418043590\">የ ራስጌ እና ግርጌ ንግግር </alt></image>"
#: 03152000.xhp
msgctxt ""
@@ -2700,7 +2700,7 @@ msgctxt ""
"par_id083120160555409190\n"
"help.text"
msgid "<image id=\"img_id083120160554511738\" src=\"media/screenshots/modules/sdraw/ui/dlgsnap/SnapObjectDialog.png\" width=\"3.0728in\" height=\"2.6354in\"><alt id=\"alt_id083120160554511738\">Snap points dialog</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id083120160554511738\" src=\"media/screenshots/modules/sdraw/ui/dlgsnap/SnapObjectDialog.png\" width=\"3.0728in\" height=\"2.6354in\"><alt id=\"alt_id083120160554511738\">የ ነጥቦች ንግግር መቁረጫ </alt></image>"
#: 04030000.xhp
msgctxt ""
@@ -5019,7 +5019,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Select the object(s) that you want to move to the foreground. Right-click and choose <emph>Arrange – In Front of Object</emph>, and then click an object in your slide."
-msgstr "ይምረጡ እቃ(ዎች) ወደ ፊት ማንቀሳቀስ የሚፈልጉትን፡ በቀኝ-ይጫኑ እና ከዛ ይምረጡ <emph>ማዘጋጃ – ከ እቃው ፊት ለፊት</emph> እና ከዛ ይጫኑ እቃውን በ እርስዎ ተንሸራታች ውስጥ"
+msgstr "ይምረጡ እቃ(ዎች) ወደ ፊት ማንቀሳቀስ የሚፈልጉትን: በ ቀኝ-ይጫኑ እና ከዛ ይምረጡ <emph>ማዘጋጃ – ከ እቃው ፊት ለፊት</emph> እና ከዛ ይጫኑ እቃውን በ እርስዎ ተንሸራታች ውስጥ"
#: 05250600.xhp
msgctxt ""
@@ -5062,7 +5062,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Select the object(s) that you want to move behind an other object. Right-click and choose <emph>Arrange - Behind Object</emph>, and then click an object in your slide."
-msgstr "ይምረጡ እቃ(ዎች) ወደ ፊት ማንቀሳቀስ የሚፈልጉትን፡ በቀኝ-ይጫኑ እና ከዛ ይምረጡ <emph>ማዘጋጃ - ከ እቃው ጀርባ</emph> እና ከዛ ይጫኑ እቃውን በ እርስዎ ተንሸራታች ውስጥ"
+msgstr "ይምረጡ እቃ(ዎች) ወደ ፊት ማንቀሳቀስ የሚፈልጉትን: በ ቀኝ-ይጫኑ እና ከዛ ይምረጡ <emph>ማዘጋጃ - ከ እቃው ጀርባ</emph> እና ከዛ ይጫኑ እቃውን በ እርስዎ ተንሸራታች ውስጥ"
#: 05250600.xhp
msgctxt ""
@@ -6768,7 +6768,7 @@ msgctxt ""
"bm_id3153818\n"
"help.text"
msgid "<bookmark_value>presentations; settings for</bookmark_value> <bookmark_value>slide shows; settings for</bookmark_value> <bookmark_value>presentations; window / full screen</bookmark_value> <bookmark_value>multiple displays</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ማቅረቢያዎች: ማሰናጃዎች ለ</bookmark_value> <bookmark_value>ተንሸራታች ማሳያ: ማሰናጃዎች ለ</bookmark_value> <bookmark_value>ማቅረቢያዎች: መስኮት / በ ሙሉ መመልከቻ</bookmark_value> <bookmark_value>በርካታ ማሳያ</bookmark_value>"
#: 06080000.xhp
msgctxt ""
@@ -6856,7 +6856,7 @@ msgctxt ""
"hd_id3150653\n"
"help.text"
msgid "Presentation Mode"
-msgstr ""
+msgstr "የ ማቅረቢያ ዘዴ"
#: 06080000.xhp
msgctxt ""
@@ -6872,7 +6872,7 @@ msgctxt ""
"hd_id3150482\n"
"help.text"
msgid "Full screen"
-msgstr ""
+msgstr "በ ሙሉ መመልከቻ"
#: 06080000.xhp
msgctxt ""
@@ -6888,7 +6888,7 @@ msgctxt ""
"hd_id3153034\n"
"help.text"
msgid "In a window"
-msgstr ""
+msgstr "በ መስኮት ውስጥ"
#: 06080000.xhp
msgctxt ""
@@ -7064,7 +7064,7 @@ msgctxt ""
"hd_id6086611\n"
"help.text"
msgid "Multiple Displays"
-msgstr ""
+msgstr "በርካታ ማሳያዎች"
#: 06080000.xhp
msgctxt ""
@@ -7080,7 +7080,7 @@ msgctxt ""
"hd_id4962309\n"
"help.text"
msgid "Presentation display"
-msgstr ""
+msgstr "ማቅረቢያ ማሳያ"
#: 06080000.xhp
msgctxt ""
@@ -7088,7 +7088,7 @@ msgctxt ""
"par_id5168919\n"
"help.text"
msgid "<ahelp hid=\".\">Select a display to use for full screen slide show mode.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ይምረጡ ማሳያ ተንሸራታች በ ሙሉ መመልከቻ ዘዴ ለማሳየት</ahelp>"
#: 06080000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/02.po b/source/am/helpcontent2/source/text/simpress/02.po
index fa48e34c885..3864c16d814 100644
--- a/source/am/helpcontent2/source/text/simpress/02.po
+++ b/source/am/helpcontent2/source/text/simpress/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-07 19:04+0000\n"
+"PO-Revision-Date: 2016-12-23 17:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481137487.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482515185.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -724,7 +724,7 @@ msgctxt ""
"bm_id3150199\n"
"help.text"
msgid "<bookmark_value>flipping around a flip line</bookmark_value><bookmark_value>mirroring objects</bookmark_value><bookmark_value>3D rotation objects; converting to</bookmark_value><bookmark_value>slanting objects</bookmark_value><bookmark_value>objects; effects</bookmark_value><bookmark_value>distorting objects</bookmark_value><bookmark_value>shearing objects</bookmark_value><bookmark_value>transparency; of objects</bookmark_value><bookmark_value>gradients; transparent</bookmark_value><bookmark_value>colors; defining gradients interactively</bookmark_value><bookmark_value>gradients; defining colors</bookmark_value><bookmark_value>circles; of objects</bookmark_value>"
-msgstr "<bookmark_value>መገልበጥ በ መገልበጫ መስመር ዙሪያ</bookmark_value><bookmark_value>ማንጽባረቂያ እቃዎች</bookmark_value><bookmark_value>3ዲ ማሽከርከሪያ እቃዎች; መቀየሪያ ወደ</bookmark_value><bookmark_value>ማዘንበያ እቃዎች</bookmark_value><bookmark_value>የ እቃዎች; ውጤቶች</bookmark_value><bookmark_value>ማጣመሚያ እቃዎች</bookmark_value><bookmark_value>መቆራረጫ እቃዎች</bookmark_value><bookmark_value>ግልጽነት; የ እቃዎች</bookmark_value><bookmark_value>ከፍታዎች; ግልጽነት</bookmark_value><bookmark_value>ቀለሞች; ከፍታዎች መግለጫ ወዲያውኑ</bookmark_value><bookmark_value>ከፍታዎች; መግለጫ ቀለሞች</bookmark_value><bookmark_value>ክቦች; የ እቃዎች</bookmark_value>"
+msgstr "<bookmark_value>መገልበጥ በ መገልበጫ መስመር ዙሪያ</bookmark_value><bookmark_value>ማንጽባረቂያ እቃዎች</bookmark_value><bookmark_value>3ዲ ማሽከርከሪያ እቃዎች: መቀየሪያ ወደ</bookmark_value><bookmark_value>ማዘንበያ እቃዎች</bookmark_value><bookmark_value>የ እቃዎች: ውጤቶች</bookmark_value><bookmark_value>ማጣመሚያ እቃዎች</bookmark_value><bookmark_value>መቆራረጫ እቃዎች</bookmark_value><bookmark_value>ግልጽነት: የ እቃዎች</bookmark_value><bookmark_value>ከፍታዎች: ግልጽነት</bookmark_value><bookmark_value>ቀለሞች: ከፍታዎች መግለጫ ወዲያውኑ</bookmark_value><bookmark_value>ከፍታዎች: መግለጫ ቀለሞች</bookmark_value><bookmark_value>ክቦች: የ እቃዎች</bookmark_value>"
#: 10030000.xhp
msgctxt ""
@@ -1180,7 +1180,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "Exit Direction Left"
-msgstr "የመውጫ አቅጣጫ በግራ"
+msgstr "የ መውጫ አቅጣጫ በ ግራ"
#: 10030200.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Exit Direction Left"
-msgstr "የመውጫ አቅጣጫ በግራ"
+msgstr "የ መውጫ አቅጣጫ በ ግራ"
#: 10030200.xhp
msgctxt ""
@@ -1250,7 +1250,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "Exit Direction Right"
-msgstr "የመውጫ አቅጣጫ በቀኝ"
+msgstr "የ መውጫ አቅጣጫ በ ቀኝ"
#: 10030200.xhp
msgctxt ""
@@ -1276,7 +1276,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "Exit Direction Right"
-msgstr "የመውጫ አቅጣጫ በቀኝ"
+msgstr "የ መውጫ አቅጣጫ በ ቀኝ"
#: 10030200.xhp
msgctxt ""
@@ -1355,7 +1355,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "Glue Point Horizontal Left"
-msgstr "የመጋጠሚያ ነጥብ በግራ አግድም"
+msgstr "የ መጋጠሚያ ነጥብ በ ግራ አግድም"
#: 10030200.xhp
msgctxt ""
@@ -1381,7 +1381,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "Glue Point Horizontal Left"
-msgstr "የመጋጠሚያ ነጥብ በግራ አግድም"
+msgstr "የ መጋጠሚያ ነጥብ በ ግራ አግድም"
#: 10030200.xhp
msgctxt ""
@@ -1425,7 +1425,7 @@ msgctxt ""
"27\n"
"help.text"
msgid "Glue Point Horizontal Right"
-msgstr "የመጋጠሚያ ነጥብ በቀኝ አግድም"
+msgstr "የ መጋጠሚያ ነጥብ በ ቀኝ አግድም"
#: 10030200.xhp
msgctxt ""
@@ -1451,7 +1451,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "Glue Point Horizontal Right"
-msgstr "የመጋጠሚያ ነጥብ በቀኝ አግድም"
+msgstr "የ መጋጠሚያ ነጥብ በ ቀኝ አግድም"
#: 10030200.xhp
msgctxt ""
@@ -2163,7 +2163,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "Ellipse Pie"
-msgstr "Ellipse Pie"
+msgstr "ኤሊፕስ ፓይ"
#: 10070000.xhp
msgctxt ""
@@ -2172,7 +2172,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<ahelp hid=\".uno:Circle\">Draws a filled shape that is defined by the arc of an oval and two radius lines in the current document. To draw an ellipse pie, drag an oval to the size you want, and then click to define the first radius line. Move your pointer to where you want to place the second radius line and click. You do not need to click on the oval. To draw a circle pie, hold down Shift while you drag.</ahelp>"
-msgstr "<ahelp hid=\".uno:Circle\">የ ተሞላ ቅርጽ መሳያ በ ተወሰነ ቅስት እና oval እና ሁለት radius መስመሮች በ አሁኑ ሰነድ ውስጥ: ለ መሳል ellipse pie, ይጎተቱ oval እርስዎ በሚፈልጉት መጠን: እና ከዛ ይጫኑ ለ መግለጽ የ መጀመሪያውን radius መስመር: ያንቀሳቅሱ የ እርስዎን መጠቆሚያ ሁለተኛው radius መስመር እንዲሆን በሚፈልጉበት እና ይጫኑ: እርስዎ መጫን የለብዎትም በ oval ላይ: ለ መሳል የ ክብ pie, ተጭነው ይያዙ የ Shift ቁልፍ በሚጎትቱ ጊዜ </ahelp>"
+msgstr "<ahelp hid=\".uno:Circle\">የ ተሞላ ቅርጽ መሳያ በ ተወሰነ ቅስት እና oval እና ሁለት radius መስመሮች በ አሁኑ ሰነድ ውስጥ: ለ መሳል ኤሊፕስ ፓይ ይጎተቱ ኦቫል እርስዎ በሚፈልጉት መጠን: እና ከዛ ይጫኑ ለ መግለጽ የ መጀመሪያውን radius መስመር: ያንቀሳቅሱ የ እርስዎን መጠቆሚያ ሁለተኛው radius መስመር እንዲሆን በሚፈልጉበት እና ይጫኑ: እርስዎ መጫን የለብዎትም በ ኦቫል ላይ: ለ መሳል የ ክብ ፓይ ተጭነው ይያዙ የ Shift ቁልፍ በሚጎትቱ ጊዜ </ahelp>"
#: 10070000.xhp
msgctxt ""
@@ -2189,7 +2189,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "Ellipse Pie"
-msgstr "Ellipse Pie"
+msgstr "ኤሊፕስ ፓይ"
#: 10070000.xhp
msgctxt ""
@@ -2207,7 +2207,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<ahelp hid=\".uno:CirclePie\">Draws a filled shape that is defined by the arc of a circle and two radius lines in the current document. To draw a circle pie, drag a circle to the size you want, and then click to define the first radius line. Move your pointer to where you want to place the second radius line and click. You do not need to click on the circle. To draw an ellipse pie, hold down Shift while you drag.</ahelp>"
-msgstr "<ahelp hid=\".uno:CirclePie\">የ ተሞላ ቅርጽ መሳያ በ ተወሰነ ቅስት እና ክብ እና ሁለት radius መስመሮች በ አሁኑ ሰነድ ውስጥ: ለ መሳል ክብ pie, ይጎተቱ ክብ እርስዎ በሚፈልጉት መጠን: እና ከዛ ይጫኑ ለ መግለጽ የ መጀመሪያውን radius መስመር: ያንቀሳቅሱ የ እርስዎን መጠቆሚያ ሁለተኛው radius መስመር እንዲሆን በሚፈልጉበት እና ይጫኑ: እርስዎ መጫን የለብዎትም በ ክብ ላይ: ለ መሳል የ ellipse pie, ተጭነው ይያዙ የ Shift ቁልፍ በሚጎትቱ ጊዜ </ahelp>"
+msgstr "<ahelp hid=\".uno:CirclePie\">የ ተሞላ ቅርጽ መሳያ በ ተወሰነ ቅስት እና ክብ እና ሁለት radius መስመሮች በ አሁኑ ሰነድ ውስጥ: ለ መሳል ክብ ፓይ ይጎተቱ ክብ እርስዎ በሚፈልጉት መጠን: እና ከዛ ይጫኑ ለ መግለጽ የ መጀመሪያውን radius መስመር: ያንቀሳቅሱ የ እርስዎን መጠቆሚያ ሁለተኛው radius መስመር እንዲሆን በሚፈልጉበት እና ይጫኑ: እርስዎ መጫን የለብዎትም በ ክብ ላይ: ለ መሳል የ ኤሊፕስ ፓይ ተጭነው ይያዙ የ Shift ቁልፍ በሚጎትቱ ጊዜ </ahelp>"
#: 10070000.xhp
msgctxt ""
@@ -2373,7 +2373,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "Ellipse Pie, Unfilled"
-msgstr "Ellipse Pie, ያልተሞላ"
+msgstr "ኤሊፕስ ፓይ: ያልተሞላ"
#: 10070000.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "<ahelp hid=\".uno:Pie_Unfilled\">Draws an empty shape that is defined by the arc of an oval and two radius lines in the current document. To draw an ellipse pie, drag an oval to the size you want, and then click to define the first radius line. Move your pointer to where you want to place the second radius line and click. You do not need to click on the oval. To draw a circle pie, hold down Shift while you drag.</ahelp>"
-msgstr "<ahelp hid=\".uno:Pie_Unfilled\">ባዶ ቅርጽ መሳያ በ ቅስት የ ተገለጸ በ oval እና ሁለት radius lines በ አሁኑ ሰነድ ውስጥ: የ ellipse pie ለ መሳል: ይጎትቱ oval እርስዎ እስከሚፈልጉት መጠን ድረስ: እና ከዛ ይጫኑ ለ መግለጽ የ መጀመሪያውን radius line. የ እርስዎን መጠቆሚያ ያንቀሳቅሱ ወደ እርስዎ ሁለተኛው radius line እንዲሆን የሚፈልጉበት ቦታ እና ይጫኑ: እርስዎ መጫን የለብዎትም በ oval ላይ: ለ መሳል የ circle pie: ተጭነው ይያዙ የ Shift ቁልፍ በሚጎትቱ ጊዜ </ahelp>"
+msgstr "<ahelp hid=\".uno:Pie_Unfilled\">ባዶ ቅርጽ መሳያ በ ቅስት የ ተገለጸ በ ኦቫል እና ሁለት radius መስመሮች በ አሁኑ ሰነድ ውስጥ: የ ኤሊፕስ ፓይ ለ መሳል: ይጎትቱ ኦቫል እርስዎ እስከሚፈልጉት መጠን ድረስ: እና ከዛ ይጫኑ ለ መግለጽ የ መጀመሪያውን radius መስመር የ እርስዎን መጠቆሚያ ያንቀሳቅሱ ወደ እርስዎ ሁለተኛው radius መስመር እንዲሆን የሚፈልጉበት ቦታ እና ይጫኑ: እርስዎ መጫን የለብዎትም በ ኦቫል ላይ: ለ መሳል የ ክብ ፓይ: ተጭነው ይያዙ የ Shift ቁልፍ በሚጎትቱ ጊዜ </ahelp>"
#: 10070000.xhp
msgctxt ""
@@ -2399,7 +2399,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "Ellipse Pie, Unfilled"
-msgstr "Ellipse Pie, ያልተሞላ"
+msgstr "ኤሊፕስ ፓይ: ያልተሞላ"
#: 10070000.xhp
msgctxt ""
@@ -2417,7 +2417,7 @@ msgctxt ""
"34\n"
"help.text"
msgid "<ahelp hid=\".uno:CirclePie_Unfilled\">Draws an empty shape that is defined by the arc of a circle and two radius lines in the current document. To draw a circle pie, drag a circle to the size you want, and then click to define the first radius line. Move your pointer to where you want to place the second radius line and click. You do not need to click on the circle. To draw an ellipse pie, hold down Shift while you drag.</ahelp>"
-msgstr "<ahelp hid=\".uno:CirclePie_Unfilled\">ባዶ ቅርጽ መሳያ በ ቅስት የ ተገለጸ በ oval እና ሁለት radius lines በ አሁኑ ሰነድ ውስጥ: የ ክብ pie ለ መሳል: ይጎትቱ ክብ እርስዎ እስከሚፈልጉት መጠን ድረስ: እና ከዛ ይጫኑ ለ መግለጽ የ መጀመሪያውን radius line. የ እርስዎን መጠቆሚያ ያንቀሳቅሱ ወደ እርስዎ ሁለተኛው radius line እንዲሆን የሚፈልጉበት ቦታ እና ይጫኑ: እርስዎ መጫን የለብዎትም በ ክብ ላይ: ለ መሳል የ ellipse pie: ተጭነው ይያዙ የ Shift ቁልፍ በሚጎትቱ ጊዜ</ahelp>"
+msgstr "<ahelp hid=\".uno:CirclePie_Unfilled\">ባዶ ቅርጽ መሳያ በ ቅስት የ ተገለጸ በ ኦቫል እና ሁለት radius መስመሮች በ አሁኑ ሰነድ ውስጥ: የ ክብ ፓይ ለ መሳል: ይጎትቱ ክብ እርስዎ እስከሚፈልጉት መጠን ድረስ: እና ከዛ ይጫኑ ለ መግለጽ የ መጀመሪያውን radius መስመር የ እርስዎን መጠቆሚያ ያንቀሳቅሱ ወደ እርስዎ ሁለተኛው radius መስመር እንዲሆን የሚፈልጉበት ቦታ እና ይጫኑ: እርስዎ መጫን የለብዎትም በ ክብ ላይ: ለ መሳል የ ኤሊፕስ ፓይ: ተጭነው ይያዙ የ Shift ቁልፍ በሚጎትቱ ጊዜ</ahelp>"
#: 10070000.xhp
msgctxt ""
@@ -2895,7 +2895,7 @@ msgctxt ""
"bm_id3150208\n"
"help.text"
msgid "<bookmark_value>toolbars;3D objects</bookmark_value><bookmark_value>3D objects; inserting</bookmark_value><bookmark_value>inserting;3D objects</bookmark_value><bookmark_value>cubes</bookmark_value><bookmark_value>spheres</bookmark_value><bookmark_value>cylinders</bookmark_value><bookmark_value>cones</bookmark_value><bookmark_value>pyramids</bookmark_value><bookmark_value>torus</bookmark_value><bookmark_value>shells</bookmark_value><bookmark_value>half-spheres</bookmark_value><bookmark_value>drawing;3D objects</bookmark_value>"
-msgstr "<bookmark_value>እቃ መደርደሪያ;3ዲ እቃዎች</bookmark_value><bookmark_value>3ዲ እቃዎች; ማስገቢያ</bookmark_value><bookmark_value>ማስገቢያ;3ዲ እቃዎች</bookmark_value><bookmark_value>cubes</bookmark_value><bookmark_value>spheres</bookmark_value><bookmark_value>cylinders</bookmark_value><bookmark_value>cones</bookmark_value><bookmark_value>pyramids</bookmark_value><bookmark_value>torus</bookmark_value><bookmark_value>shells</bookmark_value><bookmark_value>half-spheres</bookmark_value><bookmark_value>መሳያ;3ዲ እቃዎች</bookmark_value>"
+msgstr "<bookmark_value>እቃ መደርደሪያ: 3ዲ እቃዎች</bookmark_value><bookmark_value>3ዲ እቃዎች: ማስገቢያ</bookmark_value><bookmark_value>ማስገቢያ: 3ዲ እቃዎች</bookmark_value><bookmark_value>ኪዩብስ</bookmark_value><bookmark_value>ስፌርስ</bookmark_value><bookmark_value>ሲይልንደርስ</bookmark_value><bookmark_value>ኮንስ</bookmark_value><bookmark_value>ፒራሚድ</bookmark_value><bookmark_value>ቶሩስ</bookmark_value><bookmark_value>ሼልስ</bookmark_value><bookmark_value>ግማሽ-ስፌርስ</bookmark_value><bookmark_value>መሳያ: 3ዲ እቃዎች</bookmark_value>"
#: 10090000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/guide.po b/source/am/helpcontent2/source/text/simpress/guide.po
index d44f25d0e43..7ec77f508e6 100644
--- a/source/am/helpcontent2/source/text/simpress/guide.po
+++ b/source/am/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-08 23:53+0000\n"
+"PO-Revision-Date: 2016-12-23 17:47+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481241212.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482515253.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -108,7 +108,7 @@ msgctxt ""
"par_id31506541\n"
"help.text"
msgid "The Status bar displays \"Shape selected\". The Custom Shapes can be viewed in a 2D mode or in a 3D mode. At any time, you can switch the view between the two modes. You use the Basic Shapes, Symbol Shapes, and the following icons on the Drawing toolbar to create Custom Shapes. The Custom Shapes can be changed using the 3D Settings toolbar. They do not form a 3D scene, they cannot be illuminated by more than one light source, they show no reflections, and there are some more limitations. You can convert them to a 3D scene, but then they are no longer Custom Shapes. Custom Shapes in 2D or 3D mode can be exported to and imported from Microsoft Office formats."
-msgstr "የ ሁኔታዎች መደርደሪያ የሚያሳየው \"የ ተመረጠውን ቅርጽ\" ነው: ቅርጾች ማስተካከያ መመልከት ይቻላል በ 2ዲ ዘዴ ወይንም በ 3ዲ ዘዴ ውስጥ: በማንኛውም ጊዜ: እርስዎ መቀየር ይችላሉ በ መመልከቻው መካከል በ ሁለቱ ዘዴዎች ውስጥ: እርስዎ መሰረታዊ ቅርጾች መጠቀም ይችላሉ: የ ምልክቶች ቅርጽ: እና የሚቀጥሉት ምልክቶች በ መሳያ መደርደሪያ ላይ ቅርጾች ማስተካከያ ለመፍጠር: ቅርጾች ማስተካከያ መቀየር ይቻላል የ 3ዲ እቃ መደርደሪያ ማሰናጃ በ መጠቀም: አይፈጥሩም የ 3ዲ እይታ: ማንጸባረቅ አይችሉም ከ አንድ ብርሀን ምንጭ በላይ: ምንም ነፀብራቅ አያሳዩም: እና አንዳንድ ገደብ አለ: እርስዎ መቀየር ይችላሉ ወደ የ 3ዲ እይታ: ነገር ግን ቅርጽ ማስተካከያ አይደሉም: ቅርጽ ማስተካከያ በ 2ዲ ወይንም በ 3ዲ ዘዴ መላክ እና ማምጣት ይቻላል ከMicrosoft Office አቀራረብ ውስጥ"
+msgstr "የ ሁኔታዎች መደርደሪያ የሚያሳየው \"የ ተመረጠውን ቅርጽ\" ነው: ቅርጾች ማስተካከያ መመልከት ይቻላል በ 2ዲ ዘዴ ወይንም በ 3ዲ ዘዴ ውስጥ: በማንኛውም ጊዜ: እርስዎ መቀየር ይችላሉ በ መመልከቻው መካከል በ ሁለቱ ዘዴዎች ውስጥ: እርስዎ መሰረታዊ ቅርጾች መጠቀም ይችላሉ: የ ምልክቶች ቅርጽ: እና የሚቀጥሉት ምልክቶች በ መሳያ መደርደሪያ ላይ ቅርጾች ማስተካከያ ለመፍጠር: ቅርጾች ማስተካከያ መቀየር ይቻላል የ 3ዲ እቃ መደርደሪያ ማሰናጃ በ መጠቀም: አይፈጥሩም የ 3ዲ እይታ: ማንጸባረቅ አይችሉም ከ አንድ ብርሀን ምንጭ በላይ: ምንም ነፀብራቅ አያሳዩም: እና አንዳንድ ገደብ አለ: እርስዎ መቀየር ይችላሉ ወደ የ 3ዲ እይታ: ነገር ግን ቅርጽ ማስተካከያ አይደሉም: ቅርጽ ማስተካከያ በ 2ዲ ወይንም በ 3ዲ ዘዴ መላክ እና ማምጣት ይቻላል ከ Microsoft Office አቀራረብ ውስጥ"
#: 3d_create.xhp
msgctxt ""
@@ -135,7 +135,7 @@ msgctxt ""
"54\n"
"help.text"
msgid "Right-click the object and choose <emph>Convert - To Curve</emph>."
-msgstr "እቃውን በቀኝ-ይጫኑ እና ይምረጡ <emph>መቀየሪያ - ወደ ክብ</emph>."
+msgstr "እቃውን በ ቀኝ-ይጫኑ እና ይምረጡ <emph>መቀየሪያ - ወደ ክብ</emph>."
#: 3d_create.xhp
msgctxt ""
@@ -171,7 +171,7 @@ msgctxt ""
"59\n"
"help.text"
msgid "Right-click the object and choose <emph>Convert - To Polygon.</emph>"
-msgstr "እቃውን በቀኝ-ይጫኑ እና ይምረጡ <emph>መቀየሪያ - ወደ ፖሊጎን</emph>."
+msgstr "እቃውን በ ቀኝ-ይጫኑ እና ይምረጡ <emph>መቀየሪያ - ወደ ፖሊጎን</emph>."
#: 3d_create.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_idN1088B\n"
"help.text"
msgid "Click the <emph>Extrusion On/Off</emph> icon<image id=\"img_id2490920\" src=\"cmd/sc_extrusiontoggle.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2490920\">Icon</alt></image> on the <emph>Drawing</emph> bar, or right-click the object and choose <emph>Convert - To 3D</emph>."
-msgstr "ይጫኑ የ <emph>ማሾለኪያ ማብሪያ/ማጥፊያ </emph> ምልክት <image id=\"img_id2490920\" src=\"cmd/sc_extrusiontoggle.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2490920\">ምልክት </alt></image> በ <emph>መሳያ </emph> መደርደሪያ ላይ ወይንም በቀኝ-ይጫኑ እቃው ላይ እና ይምረጡ <emph> መቀየሪያ - ወደ 3ዲ</emph>."
+msgstr "ይጫኑ የ <emph>ማሾለኪያ ማብሪያ/ማጥፊያ </emph> ምልክት <image id=\"img_id2490920\" src=\"cmd/sc_extrusiontoggle.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2490920\">ምልክት </alt></image> በ <emph>መሳያ </emph> መደርደሪያ ላይ ወይንም በ ቀኝ-ይጫኑ እቃው ላይ እና ይምረጡ <emph> መቀየሪያ - ወደ 3ዲ</emph>."
#: 3d_create.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "To temporarily remove a slide from your presentation, go to <emph>Slide Sorter</emph>, right-click the slide, and then choose <emph>Show/Hide Slide</emph>. The number of the hidden slide is crossed out. To show the slide, right-click the slide, and then choose <emph>Show/Hide Slide</emph>."
-msgstr "ከማቅረቢያ ውስጥ ተንሸራታች ለጊዜው ለማስወገድ ፡ ይሂዱ ወደ <emph>ተንሸራታች መለያ</emph>, ተንሸራታቹን በቀኝ-ይጫኑ እና ከዛ ይምረጡ <emph>ተንሸራታች ማሳያ/መደበቂያ </emph>. የሚደበቀው ተንሸራታች ቁጥር ይሰረዛል ፡ ተንሸራታቹን ለማሳየት ተንሸራታቹን በቀኝ-ይጫኑ እና ከዛ ይምረጡ<emph>ተንሸራታች ማሳያ/መደበቂያ</emph>."
+msgstr "ከ ማቅረቢያ ውስጥ ተንሸራታች ለጊዜው ለማስወገድ: ይሂዱ ወደ <emph>ተንሸራታች መለያ</emph> ተንሸራታቹን በ ቀኝ-ይጫኑ እና ከዛ ይምረጡ <emph>ተንሸራታች ማሳያ/መደበቂያ </emph> የሚደበቀው ተንሸራታች ቁጥር ይሰረዛል: ተንሸራታቹን ለማሳየት ተንሸራታቹን በ ቀኝ-ይጫኑ እና ከዛ ይምረጡ<emph>ተንሸራታች ማሳያ/መደበቂያ</emph>."
#: background.xhp
msgctxt ""
@@ -1178,7 +1178,7 @@ msgctxt ""
"par_idN1083F\n"
"help.text"
msgid "Choose <emph>File - Templates - Save As Template</emph> to save the document as a template."
-msgstr ""
+msgstr "ይምረጡ <emph>ፋይል - ቴምፕሌት - ማስቀመጫ እንደ ቴምፕሌት</emph> ሰነዱን እንደ ቴምፕሌት ለማስቀመጥ"
#: background.xhp
msgctxt ""
@@ -1194,7 +1194,7 @@ msgctxt ""
"par_idN1084A\n"
"help.text"
msgid "Now you can use the Templates window to open a new presentation based on your new template."
-msgstr ""
+msgstr "እርስዎ አሁን መጠቀም ይችላሉ የ ቴምፕሌቶች መስኮት ለ መክፈት አዲስ ማቅረቢያ የ እርስዎን አዲስ ቴምፕሌት መሰረት ያደረገ"
#: change_scale.xhp
msgctxt ""
@@ -3633,7 +3633,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "Select <emph>Slide - Slide Master Design</emph>."
-msgstr ""
+msgstr "ይምረጡ <emph>ተንሸራታች - ዋናው የ ተንሸራታች ንድፍ</emph>."
#: masterpage.xhp
msgctxt ""
@@ -3704,7 +3704,7 @@ msgctxt ""
"par_idN106FA\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Left-click to apply the master page to all slides. Right-click for a submenu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">በ ግራ-ይጫኑ ለ መፈጸም ዋናውን ገጽ በ ሁሉም ተንሸራታቾች ላይ: በ ቀኝ-ይጫኑ ለ ንዑስ ዝርዝር </ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -3712,7 +3712,7 @@ msgctxt ""
"par_idN10747\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies the master page to all slides.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ዋናውን ገጽ በ ሁሉም ተንሸራታቾች ላይ መፈጸሚያ </ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -3720,7 +3720,7 @@ msgctxt ""
"par_idN10762\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies the master page or the slide design to the selected slides.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ዋናውን ገጽ ወይንም የ ተንሸራታች ንድፍ ለ ተመረጡት ተንሸራታቾች መፈጸሚያ </ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -3728,7 +3728,7 @@ msgctxt ""
"par_idN10785\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Resizes the preview of the master pages.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">የ ዋናውን ገጾች ቅድመ እይታ እንደገና መመጠኛ </ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -3736,7 +3736,7 @@ msgctxt ""
"par_idN107CB\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to apply a slide design to all selected slides. Right-click for a submenu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ይጫኑ ለ መፈጸም ዋናውን የ ተንሸራታች ንድፍ በሁሉም በ ተመረጡት ተንሸራታቾች ላይ ለመፈጸም: በ ቀኝ-ይጫኑ ለ ንዑስ ዝርዝር </ahelp>"
#: masterpage.xhp
msgctxt ""
@@ -4799,7 +4799,7 @@ msgctxt ""
"par_id3145248\n"
"help.text"
msgid "If you want the whole presentation to auto-repeat, open the menu <emph>Slide Show - Slide Show Settings</emph>. Click <emph>Loop and repeat after</emph> and <emph>OK</emph>."
-msgstr ""
+msgstr "እርስዎ ከ ፈለጉ ጠቅላላ ተንሸራታች በራሱ-እንዲደግም: ይክፈቱ ዝርዝር <emph>ተንሸራታች ማሳያ - ተንሸራታች ማሳያ ማሰናጃ</emph> ይጫኑ <emph>ዙር እና በ ኋላ መድገሚያ </emph> እና <emph>እሺ</emph>."
#: rehearse_timings.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath/00.po b/source/am/helpcontent2/source/text/smath/00.po
index a7d272455f7..2b6152a8d15 100644
--- a/source/am/helpcontent2/source/text/smath/00.po
+++ b/source/am/helpcontent2/source/text/smath/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-10-06 21:33+0000\n"
+"PO-Revision-Date: 2016-12-23 15:25+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1475789631.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482506750.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -322,7 +322,7 @@ msgctxt ""
"par_id3153535\n"
"help.text"
msgid "<image id=\"img_id3151310\" src=\"res/helpimg/starmath/im21101.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151310\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151310\" src=\"res/helpimg/starmath/im21101.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151310\">ምልክት</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -357,7 +357,7 @@ msgctxt ""
"par_id3147531\n"
"help.text"
msgid "<image id=\"img_id3151103\" src=\"res/helpimg/starmath/bi21309.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151103\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151103\" src=\"res/helpimg/starmath/bi21309.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151103\">ምልክት</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"par_id3146921\n"
"help.text"
msgid "<image id=\"img_id3146927\" src=\"res/helpimg/starmath/im21105.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146927\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146927\" src=\"res/helpimg/starmath/im21105.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3146927\">ምልክት</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -427,7 +427,7 @@ msgctxt ""
"par_id3149103\n"
"help.text"
msgid "<image id=\"img_id3154825\" src=\"res/helpimg/starmath/im21104.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3154825\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154825\" src=\"res/helpimg/starmath/im21104.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3154825\">ምልክት</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_id3147584\n"
"help.text"
msgid "<image id=\"img_id3148733\" src=\"res/helpimg/starmath/im21107.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148733\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148733\" src=\"res/helpimg/starmath/im21107.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3148733\">ምልክት</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -497,7 +497,7 @@ msgctxt ""
"par_id3154376\n"
"help.text"
msgid "<image id=\"img_id3154390\" src=\"res/helpimg/starmath/at21706.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154390\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154390\" src=\"res/helpimg/starmath/at21706.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154390\">ምልክት</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -532,7 +532,7 @@ msgctxt ""
"par_id3151029\n"
"help.text"
msgid "<image id=\"img_id3151036\" src=\"res/helpimg/starmath/im21108.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151036\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151036\" src=\"res/helpimg/starmath/im21108.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151036\">ምልክት</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -567,7 +567,7 @@ msgctxt ""
"par_id3151377\n"
"help.text"
msgid "<image id=\"img_id3151384\" src=\"res/helpimg/starmath/op21401.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151384\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151384\" src=\"res/helpimg/starmath/op21401.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3151384\">ምልክት</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_id3154715\n"
"help.text"
msgid "<image id=\"img_id3154722\" src=\"res/helpimg/starmath/im21117.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154722\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154722\" src=\"res/helpimg/starmath/im21117.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154722\">ምልክት</alt></image>"
#: 00000004.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath/01.po b/source/am/helpcontent2/source/text/smath/01.po
index 252bf8d34cd..1d1f6874f5c 100644
--- a/source/am/helpcontent2/source/text/smath/01.po
+++ b/source/am/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-09 23:20+0000\n"
+"PO-Revision-Date: 2016-12-23 17:47+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481325615.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482515265.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -1035,7 +1035,7 @@ msgctxt ""
"par_idN10086\n"
"help.text"
msgid "<image id=\"img_id3153573\" src=\"res/helpimg/starmath/bi21301.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3153573\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153573\" src=\"res/helpimg/starmath/bi21301.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3153573\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1061,7 +1061,7 @@ msgctxt ""
"par_idN100BF\n"
"help.text"
msgid "<image id=\"img_id3147523\" src=\"res/helpimg/starmath/bi21302.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3147523\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147523\" src=\"res/helpimg/starmath/bi21302.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3147523\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1087,7 +1087,7 @@ msgctxt ""
"par_idN10101\n"
"help.text"
msgid "<image id=\"img_id3154196\" src=\"res/helpimg/starmath/bi21303.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3154196\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154196\" src=\"res/helpimg/starmath/bi21303.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3154196\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1113,7 +1113,7 @@ msgctxt ""
"par_idN10140\n"
"help.text"
msgid "<image id=\"img_id3154835\" src=\"res/helpimg/starmath/bi21304.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3154835\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154835\" src=\"res/helpimg/starmath/bi21304.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3154835\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1139,7 +1139,7 @@ msgctxt ""
"par_idN10182\n"
"help.text"
msgid "<image id=\"img_id3147321\" src=\"res/helpimg/starmath/bi21322.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3147321\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147321\" src=\"res/helpimg/starmath/bi21322.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3147321\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1165,7 +1165,7 @@ msgctxt ""
"par_idN101BF\n"
"help.text"
msgid "<image id=\"img_id3151030\" src=\"res/helpimg/starmath/bi21323.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151030\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151030\" src=\"res/helpimg/starmath/bi21323.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151030\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1191,7 +1191,7 @@ msgctxt ""
"par_idN101FC\n"
"help.text"
msgid "<image id=\"img_id3155133\" src=\"res/helpimg/starmath/bi21305.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3155133\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155133\" src=\"res/helpimg/starmath/bi21305.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3155133\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1217,7 +1217,7 @@ msgctxt ""
"par_idN1023B\n"
"help.text"
msgid "<image id=\"img_id3147468\" src=\"res/helpimg/starmath/bi21306.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3147468\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147468\" src=\"res/helpimg/starmath/bi21306.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3147468\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1243,7 +1243,7 @@ msgctxt ""
"par_idN10279\n"
"help.text"
msgid "<image id=\"img_id3155982\" src=\"res/helpimg/starmath/bi21307.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3155982\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155982\" src=\"res/helpimg/starmath/bi21307.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3155982\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1269,7 +1269,7 @@ msgctxt ""
"par_idN102B5\n"
"help.text"
msgid "<image id=\"img_id3155773\" src=\"res/helpimg/starmath/bi21308.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155773\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155773\" src=\"res/helpimg/starmath/bi21308.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155773\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1295,7 +1295,7 @@ msgctxt ""
"par_idN102F3\n"
"help.text"
msgid "<image id=\"img_id3148442\" src=\"res/helpimg/starmath/bi21309.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148442\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148442\" src=\"res/helpimg/starmath/bi21309.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148442\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1321,7 +1321,7 @@ msgctxt ""
"par_idN10331\n"
"help.text"
msgid "<image id=\"img_id3153299\" src=\"res/helpimg/starmath/bi21310.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3153299\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153299\" src=\"res/helpimg/starmath/bi21310.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3153299\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1347,7 +1347,7 @@ msgctxt ""
"par_idN1036F\n"
"help.text"
msgid "<image id=\"img_id3153976\" src=\"res/helpimg/starmath/bi21311.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3153976\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153976\" src=\"res/helpimg/starmath/bi21311.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3153976\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1373,7 +1373,7 @@ msgctxt ""
"par_idN103AD\n"
"help.text"
msgid "<image id=\"img_id3151195\" src=\"res/helpimg/starmath/bi21312.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151195\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151195\" src=\"res/helpimg/starmath/bi21312.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151195\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1399,7 +1399,7 @@ msgctxt ""
"par_idN103EB\n"
"help.text"
msgid "<image id=\"img_id3150103\" src=\"res/helpimg/starmath/bi21313.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3150103\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150103\" src=\"res/helpimg/starmath/bi21313.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3150103\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1425,7 +1425,7 @@ msgctxt ""
"par_idN1042C\n"
"help.text"
msgid "<image id=\"img_id3151228\" src=\"res/helpimg/starmath/bi21314.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151228\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151228\" src=\"res/helpimg/starmath/bi21314.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151228\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1451,7 +1451,7 @@ msgctxt ""
"par_idN1046D\n"
"help.text"
msgid "<image id=\"img_id3151003\" src=\"res/helpimg/starmath/bi21315.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151003\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151003\" src=\"res/helpimg/starmath/bi21315.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3151003\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1477,7 +1477,7 @@ msgctxt ""
"par_idN104AB\n"
"help.text"
msgid "<image id=\"img_id3149631\" src=\"res/helpimg/starmath/bi21316.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3149631\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149631\" src=\"res/helpimg/starmath/bi21316.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3149631\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1503,7 +1503,7 @@ msgctxt ""
"par_idN104E7\n"
"help.text"
msgid "<image id=\"img_id3149969\" src=\"res/helpimg/starmath/bi21324.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3149969\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149969\" src=\"res/helpimg/starmath/bi21324.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3149969\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1529,7 +1529,7 @@ msgctxt ""
"par_idN10525\n"
"help.text"
msgid "<image id=\"img_id3149516\" src=\"res/helpimg/starmath/bi21325.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3149516\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149516\" src=\"res/helpimg/starmath/bi21325.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3149516\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1555,7 +1555,7 @@ msgctxt ""
"par_idN10563\n"
"help.text"
msgid "<image id=\"img_id3148697\" src=\"res/helpimg/starmath/bi21326.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148697\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148697\" src=\"res/helpimg/starmath/bi21326.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148697\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1581,7 +1581,7 @@ msgctxt ""
"par_idN10564\n"
"help.text"
msgid "<image id=\"img_id3148698\" src=\"res/helpimg/starmath/bi21327.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148698\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148698\" src=\"res/helpimg/starmath/bi21327.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148698\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1607,7 +1607,7 @@ msgctxt ""
"par_idN10565\n"
"help.text"
msgid "<image id=\"img_id3148699\" src=\"res/helpimg/starmath/bi21329.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148699\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148699\" src=\"res/helpimg/starmath/bi21329.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148699\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1633,7 +1633,7 @@ msgctxt ""
"par_idN10566\n"
"help.text"
msgid "<image id=\"img_id3148700\" src=\"res/helpimg/starmath/bi21328.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148700\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148700\" src=\"res/helpimg/starmath/bi21328.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148700\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1659,7 +1659,7 @@ msgctxt ""
"par_idN10567\n"
"help.text"
msgid "<image id=\"img_id3148701\" src=\"res/helpimg/starmath/bi21330.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148701\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148701\" src=\"res/helpimg/starmath/bi21330.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148701\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1685,7 +1685,7 @@ msgctxt ""
"par_idN10568\n"
"help.text"
msgid "<image id=\"img_id3148702\" src=\"res/helpimg/starmath/bi21331.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148702\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148702\" src=\"res/helpimg/starmath/bi21331.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148702\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1711,7 +1711,7 @@ msgctxt ""
"par_idN10569\n"
"help.text"
msgid "<image id=\"img_id3148703\" src=\"res/helpimg/starmath/bi21332.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148703\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148703\" src=\"res/helpimg/starmath/bi21332.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148703\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1737,7 +1737,7 @@ msgctxt ""
"par_idN10570\n"
"help.text"
msgid "<image id=\"img_id3148704\" src=\"res/helpimg/starmath/bi21333.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148704\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148704\" src=\"res/helpimg/starmath/bi21333.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148704\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1763,7 +1763,7 @@ msgctxt ""
"par_idN10571\n"
"help.text"
msgid "<image id=\"img_id3148705\" src=\"res/helpimg/starmath/bi21334.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148705\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148705\" src=\"res/helpimg/starmath/bi21334.png\" width=\"0.847cm\" height=\"0.847cm\"><alt id=\"alt_id3148705\">ምልክት</alt></image>"
#: 03090200.xhp
msgctxt ""
@@ -1851,7 +1851,7 @@ msgctxt ""
"bm_id3153150\n"
"help.text"
msgid "<bookmark_value>operators; general</bookmark_value><bookmark_value>upper limits</bookmark_value><bookmark_value>limits; in %PRODUCTNAME Math</bookmark_value><bookmark_value>product</bookmark_value><bookmark_value>coproduct</bookmark_value><bookmark_value>lower limits</bookmark_value><bookmark_value>curve integrals</bookmark_value><bookmark_value>user-defined operators; general</bookmark_value><bookmark_value>integrals; signs</bookmark_value><bookmark_value>summation</bookmark_value>"
-msgstr "<bookmark_value>አንቀሳቃሽ; ባጠቃላይ</bookmark_value><bookmark_value>የ ላይኛው መጠን</bookmark_value><bookmark_value>መጠን; በ %PRODUCTNAME ሂሳብ</bookmark_value><bookmark_value>ውጤት</bookmark_value><bookmark_value>coproduct</bookmark_value><bookmark_value>የ ታችኛው መጠን</bookmark_value><bookmark_value>curve integrals</bookmark_value><bookmark_value>በ ተጠቃሚ-የሚገለጽ አንቀሳቃሽ; ባጠቃላይ</bookmark_value><bookmark_value>integrals; ምልክቶች</bookmark_value><bookmark_value>ድምር</bookmark_value>"
+msgstr "<bookmark_value>አንቀሳቃሽ: ባጠቃላይ</bookmark_value><bookmark_value>የ ላይኛው መጠን</bookmark_value><bookmark_value>መጠን: በ %PRODUCTNAME ሂሳብ</bookmark_value><bookmark_value>ውጤት</bookmark_value><bookmark_value>ኮኦፕሮዳክት</bookmark_value><bookmark_value>የ ታችኛው መጠን</bookmark_value><bookmark_value>ክብ ኢንትግራልስ</bookmark_value><bookmark_value>በ ተጠቃሚ-የሚገለጽ አንቀሳቃሽ: ባጠቃላይ</bookmark_value><bookmark_value>ኢንትግራልስ: ምልክቶች</bookmark_value><bookmark_value>ድምር</bookmark_value>"
#: 03090300.xhp
msgctxt ""
@@ -1895,7 +1895,7 @@ msgctxt ""
"par_idN10088\n"
"help.text"
msgid "<image id=\"img_id3152944\" src=\"res/helpimg/starmath/fo21601.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152944\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152944\" src=\"res/helpimg/starmath/fo21601.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152944\">ምልክት</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -1921,7 +1921,7 @@ msgctxt ""
"par_idN100C4\n"
"help.text"
msgid "<image id=\"img_id3150970\" src=\"res/helpimg/starmath/fo21602.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150970\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150970\" src=\"res/helpimg/starmath/fo21602.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150970\">ምልክት</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -1947,7 +1947,7 @@ msgctxt ""
"par_idN10102\n"
"help.text"
msgid "<image id=\"img_id3146932\" src=\"res/helpimg/starmath/fo21603.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3146932\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146932\" src=\"res/helpimg/starmath/fo21603.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3146932\">ምልክት</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -1973,7 +1973,7 @@ msgctxt ""
"par_idN1013E\n"
"help.text"
msgid "<image id=\"img_id3149814\" src=\"res/helpimg/starmath/fo21604.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149814\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149814\" src=\"res/helpimg/starmath/fo21604.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3149814\">ምልክት</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -1982,7 +1982,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "Coproduct"
-msgstr ""
+msgstr "ኮኦፕሮዳክት"
#: 03090300.xhp
msgctxt ""
@@ -1991,7 +1991,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_COPRODX\">Inserts a <emph>coproduct symbol</emph> with one placeholder.</ahelp> You can also enter <emph>coprod <?></emph> directly in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_COPRODX\">ማስገቢያ የ <emph>coproduct symbol</emph> ከ አንድ ቦታ ያዢ ጋር</ahelp> እንዲሁም ማስገባት ይችላሉ <emph>coprod <?></emph> በ ቀጥታ በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
+msgstr "<ahelp hid=\"HID_SMA_COPRODX\">ማስገቢያ የ <emph>ኮኦፕሮዳክት ምልክት</emph> ከ አንድ ቦታ ያዢ ጋር</ahelp> እንዲሁም ማስገባት ይችላሉ <emph>ኮኦፕሮዳክት <?></emph> በ ቀጥታ በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
#: 03090300.xhp
msgctxt ""
@@ -1999,7 +1999,7 @@ msgctxt ""
"par_idN1017A\n"
"help.text"
msgid "<image id=\"img_id3152766\" src=\"res/helpimg/starmath/fo21613.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152766\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152766\" src=\"res/helpimg/starmath/fo21613.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3152766\">ምልክት</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -2025,7 +2025,7 @@ msgctxt ""
"par_idN101B8\n"
"help.text"
msgid "<image id=\"img_id3151023\" src=\"res/helpimg/starmath/fo21605.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3151023\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151023\" src=\"res/helpimg/starmath/fo21605.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3151023\">ምልክት</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -2051,7 +2051,7 @@ msgctxt ""
"par_idN101F4\n"
"help.text"
msgid "<image id=\"img_id3145772\" src=\"res/helpimg/starmath/fo21606.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3145772\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145772\" src=\"res/helpimg/starmath/fo21606.png\" width=\"0.25inch\" height=\"0.25inch\"><alt id=\"alt_id3145772\">ምልክት</alt></image>"
#: 03090300.xhp
msgctxt ""
@@ -4819,7 +4819,7 @@ msgctxt ""
"25\n"
"help.text"
msgid "Matrix stack"
-msgstr ""
+msgstr "የ መከመሪያ መነሻ"
#: 03090700.xhp
msgctxt ""
@@ -5003,7 +5003,7 @@ msgctxt ""
"bm_id3156318\n"
"help.text"
msgid "<bookmark_value>set operations in $[officename]Math</bookmark_value><bookmark_value>sets of numbers</bookmark_value><bookmark_value>included in set operator</bookmark_value><bookmark_value>not included in set operator</bookmark_value><bookmark_value>owns command</bookmark_value><bookmark_value>includes set operator</bookmark_value><bookmark_value>empty set</bookmark_value><bookmark_value>intersection of sets</bookmark_value><bookmark_value>union of sets</bookmark_value><bookmark_value>difference set operator</bookmark_value><bookmark_value>quotient set</bookmark_value><bookmark_value>cardinal numbers</bookmark_value><bookmark_value>subset set operators</bookmark_value><bookmark_value>superset set operators</bookmark_value><bookmark_value>not subset set operators</bookmark_value><bookmark_value>not superset set operators</bookmark_value><bookmark_value>natural numbers</bookmark_value><bookmark_value>whole numbers</bookmark_value><bookmark_value>real numbers</bookmark_value><bookmark_value>complex numbers; set</bookmark_value><bookmark_value>rational numbers</bookmark_value>"
-msgstr "<bookmark_value>የ ስብስብ አንቀሳቃሾች በ $[officename]ሂሳብ</bookmark_value><bookmark_value> ስብስብ የ ቁጥር</bookmark_value><bookmark_value>ያካትታል በ ስብስብ አንቀሳቃሽ ውስጥ</bookmark_value><bookmark_value>አያካትትም በ ስብስብ አንቀሳቃሽ ውስጥ</bookmark_value><bookmark_value>ትእዛዝ አለው </bookmark_value><bookmark_value> በ ስብስብ አንቀሳቃሽ ውስጥ</bookmark_value><bookmark_value>ባዶ ስብስብ</bookmark_value><bookmark_value>የ ጋራ ስብስቦች</bookmark_value><bookmark_value>ጠቅላላ የ ስብስቦች</bookmark_value><bookmark_value>ልዩነት ከ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>quotient ስብስብ</bookmark_value><bookmark_value>cardinal ቁጥሮች</bookmark_value><bookmark_value>ንዑስ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>ትልቅ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>ንዑስ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>አይደለም ንዑስ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>የ ተፈጥሮ ቁጥሮች</bookmark_value><bookmark_value>ሙሉ ቁጥሮች</bookmark_value><bookmark_value>real ቁጥሮች</bookmark_value><bookmark_value>ውስብስብ ቁጥሮች: ስብስብ</bookmark_value><bookmark_value>rational ቁጥሮች</bookmark_value>"
+msgstr "<bookmark_value>የ ስብስብ አንቀሳቃሾች በ $[officename]ሂሳብ</bookmark_value><bookmark_value> ስብስብ የ ቁጥር</bookmark_value><bookmark_value>ያካትታል በ ስብስብ አንቀሳቃሽ ውስጥ</bookmark_value><bookmark_value>አያካትትም በ ስብስብ አንቀሳቃሽ ውስጥ</bookmark_value><bookmark_value>ትእዛዝ አለው </bookmark_value><bookmark_value> በ ስብስብ አንቀሳቃሽ ውስጥ</bookmark_value><bookmark_value>ባዶ ስብስብ</bookmark_value><bookmark_value>የ ጋራ ስብስቦች</bookmark_value><bookmark_value>ጠቅላላ የ ስብስቦች</bookmark_value><bookmark_value>ልዩነት ከ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>የ ክፍያ ውጤት ስብስብ</bookmark_value><bookmark_value>cardinal ቁጥሮች</bookmark_value><bookmark_value>ንዑስ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>ትልቅ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>ንዑስ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>አይደለም ንዑስ ስብስብ አንቀሳቃሽ</bookmark_value><bookmark_value>የ ተፈጥሮ ቁጥሮች</bookmark_value><bookmark_value>ሙሉ ቁጥሮች</bookmark_value><bookmark_value>real ቁጥሮች</bookmark_value><bookmark_value>ውስብስብ ቁጥሮች: ስብስብ</bookmark_value><bookmark_value>rational ቁጥሮች</bookmark_value>"
#: 03090800.xhp
msgctxt ""
@@ -5238,7 +5238,7 @@ msgctxt ""
"60\n"
"help.text"
msgid "Quotient set"
-msgstr "ኮሸንት ማሰናጃ"
+msgstr "የ ክፍያ ውጤት ማሰናጃ"
#: 03090800.xhp
msgctxt ""
@@ -5247,7 +5247,7 @@ msgctxt ""
"51\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XSLASHY\">Use this icon to insert a slash for creating a <emph>quotient set</emph> with two placeholders.</ahelp> Enter <emph><?>slash<?></emph> in the Commands window, to achieve the same result."
-msgstr "<ahelp hid=\"HID_SMA_XSLASHY\">ይህን ምልክት ይጠቀሙ ለ ማስገባት slash ለ መፍጠር የ <emph>quotient set</emph> ከ ሁለት ቦታ ያዢዎች ጋር </ahelp> ያስገቡ <emph><?>slash<?></emph> በ ትእዛዝ መስኮት ውስጥ: ተመሳሳይ ውጤት ለማግኘት"
+msgstr "<ahelp hid=\"HID_SMA_XSLASHY\">ይህን ምልክት ይጠቀሙ ለ ማስገባት slash ለ መፍጠር <emph>የ ክፍያ ውጤት ማሰናጃ</emph> ከ ሁለት ቦታ ያዢዎች ጋር </ahelp> ያስገቡ <emph><?>slash<?></emph> በ ትእዛዝ መስኮት ውስጥ: ተመሳሳይ ውጤት ለማግኘት"
#: 03090800.xhp
msgctxt ""
@@ -6736,7 +6736,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "Using the \"csub\" and \"csup\" commands, you can write super- and subscripts directly above or below a character. An example is \"a csub y csup x\". Combinations of indexes and exponents together are also possible: \"abc_1^2 lsub 3 lsup 4 csub 55555 csup 66666\"."
-msgstr ""
+msgstr "ይጠቀሙ የ \"መሀከል ዝቅ ብሎ\" መጻፊያ እና \"መሀከል ከፍ ብሎ\" መጻፊያ ትእዛዝ: እርስዎ መጻፍ ይችላሉ ሱፐር- እና ዝቅ ብሎ መጻፊያ በ ቀጥታ ወይንም ከ ባህሪው በ ታች: ለምሳሌ ይህ \"መሀከል ዝቅ ብሎ y መሀከል ከፍ ብሎ x\". መቀላቀያ ማውጫዎች እና ኤክስፖነንትስ በ አንድ ላይ እንዲሁም ይችላሉ: \"abc_1^2 በ ግራ ዝቅ ብሎ 3 በ ግራ ከፍ ብሎ 4 መሀከል ዝቅ ብሎ 55555 መሀከል ከፍ ብሎ 66666\"."
#: 03091200.xhp
msgctxt ""
@@ -6745,7 +6745,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "Super- and subscripts can be attached to most unary and binary operators. Two examples: \"a div_2 b a<csub n b +_2 h\" and \"a toward csub f b x toward csup f y\"."
-msgstr ""
+msgstr "ሱፐር - እና ዝቅ ብሎ መጻፊያ ማያያዝ ይቻላል ከ በርካታ unary እና binary አንቀሳቃሾች ጋር: ሁለት ምሳሌዎች: \"a ሲካፈል በ_2 b a< መሀከል ዝቅ ብሎ n b +_2 h\" እና \"a ወደ መሀከል ዝቅ ብሎ f b x ወደ መሀከል ከፍ ብሎ f y\"."
#: 03091200.xhp
msgctxt ""
@@ -8434,7 +8434,7 @@ msgctxt ""
"54\n"
"help.text"
msgid "Slash / for quotient set (slash) between characters"
-msgstr "ስላሽ / ለ ኮሸንት ማሰናጃ (ስላሽ) በ ባሀኢዎች መካከል"
+msgstr "ስላሽ / ለ ክፍያ ውጤት ማሰናጃ (ስላሽ) በ ባህሪዎች መካከል"
#: 03091503.xhp
msgctxt ""
@@ -9079,7 +9079,7 @@ msgctxt ""
"142\n"
"help.text"
msgid "Coproduct"
-msgstr ""
+msgstr "ኮኦፕሮዳክት"
#: 03091505.xhp
msgctxt ""
@@ -9130,7 +9130,7 @@ msgctxt ""
"158\n"
"help.text"
msgid "Triple integral"
-msgstr ""
+msgstr "ትሪፕል ኢንትግራል"
#: 03091505.xhp
msgctxt ""
@@ -9938,7 +9938,7 @@ msgctxt ""
"150\n"
"help.text"
msgid "Existential quantifier, there is at least one"
-msgstr ""
+msgstr "ሁሉም የነበረ: ቢያንስ አንድ አለ"
#: 03091507.xhp
msgctxt ""
@@ -9955,7 +9955,7 @@ msgctxt ""
"150\n"
"help.text"
msgid "Existential quantifier, there does not exist"
-msgstr ""
+msgstr "ሁሉም የነበረ: ምንም የለም"
#: 03091507.xhp
msgctxt ""
@@ -10099,7 +10099,7 @@ msgctxt ""
"228\n"
"help.text"
msgid "Partial derivative or set margin"
-msgstr ""
+msgstr "በ ከፊል የ መነጨው ወይንም መስመር ማሰናጃ"
#: 03091507.xhp
msgctxt ""
@@ -10167,7 +10167,7 @@ msgctxt ""
"230\n"
"help.text"
msgid "p function, Weierstrass p"
-msgstr ""
+msgstr "p ተግባር: ዌይርስታራስ p"
#: 03091508.xhp
msgctxt ""
@@ -10715,7 +10715,7 @@ msgctxt ""
"par_idN13117\n"
"help.text"
msgid "<item type=\"literal\">^</item> or <item type=\"literal\">sup</item> or <item type=\"literal\">rsup</item>"
-msgstr ""
+msgstr "<item type=\"literal\">^</item> ወይንም <item type=\"literal\">ከፍ ብሎ መጻፊያ</item> ወይንም <item type=\"literal\">በ ቀኝ ከፍ ብሎ መጻፊያ</item>"
#: 03091509.xhp
msgctxt ""
@@ -10749,7 +10749,7 @@ msgctxt ""
"303\n"
"help.text"
msgid "Binom"
-msgstr ""
+msgstr "ባይኖሚያል"
#: 03091509.xhp
msgctxt ""
@@ -10808,7 +10808,7 @@ msgctxt ""
"par_idN1322D\n"
"help.text"
msgid "<item type=\"literal\">_</item> or <item type=\"literal\">sub</item> or <item type=\"literal\">rsub</item>"
-msgstr ""
+msgstr "<item type=\"literal\">_</item> ወይንም <item type=\"literal\">ዝቅ ብሎ መጻፊያ</item> ወይንም <item type=\"literal\">በ ቀኝ ዝቅ ብሎ መጻፊያ</item>"
#: 03091509.xhp
msgctxt ""
@@ -10927,7 +10927,7 @@ msgctxt ""
"307\n"
"help.text"
msgid "Matrix"
-msgstr ""
+msgstr "መነሻ"
#: 03091509.xhp
msgctxt ""
@@ -10968,7 +10968,7 @@ msgctxt ""
"bm_id3149261\n"
"help.text"
msgid "<bookmark_value>mathematical symbols; other</bookmark_value><bookmark_value>real part of complex numbers</bookmark_value><bookmark_value>symbols;for complex numbers</bookmark_value><bookmark_value>partial differentiation symbol</bookmark_value><bookmark_value>infinity symbol</bookmark_value><bookmark_value>Nabla operator</bookmark_value><bookmark_value>there exists symbol</bookmark_value><bookmark_value>there does not exist symbol</bookmark_value><bookmark_value>existence quantor symbol</bookmark_value><bookmark_value>for all symbol</bookmark_value><bookmark_value>universal quantifier symbol</bookmark_value><bookmark_value>h-bar symbol</bookmark_value><bookmark_value>lambda-bar symbol</bookmark_value><bookmark_value>imaginary part of a complex number</bookmark_value><bookmark_value>complex numbers; symbols</bookmark_value><bookmark_value>weierstrass p symbol</bookmark_value><bookmark_value>left arrow symbol</bookmark_value><bookmark_value>right arrow symbol</bookmark_value><bookmark_value>up arrow symbol</bookmark_value><bookmark_value>down arrow symbol</bookmark_value><bookmark_value>arrows;symbols in %PRODUCTNAME Math</bookmark_value><bookmark_value>center dots symbol</bookmark_value><bookmark_value>axis-ellipsis</bookmark_value><bookmark_value>vertical dots symbol</bookmark_value><bookmark_value>diagonal upward dots;symbol</bookmark_value><bookmark_value>diagonal downward dots;symbol</bookmark_value><bookmark_value>epsilon; back</bookmark_value><bookmark_value>back epsilon symbol</bookmark_value><bookmark_value>placeholders; inserting in formulas</bookmark_value><bookmark_value>ellipsis symbols</bookmark_value>"
-msgstr "<bookmark_value>የ ሂሳብ ምልክቶች: ሌሎች</bookmark_value><bookmark_value>የ ውስብስብ ቁጥር ትክክለኛ አካል</bookmark_value><bookmark_value>ምልክቶች: ለ ውስብስብ ቁጥር</bookmark_value><bookmark_value>በ ከፊል መለያ ምልክቶች</bookmark_value><bookmark_value>ኢንፊኒቲ ምልክቶች</bookmark_value><bookmark_value>ናብላ አንቀሳቃሽ</bookmark_value><bookmark_value>የ ነበረ ምልክቶች</bookmark_value><bookmark_value>ያል ነበረ ምልክቶች</bookmark_value><bookmark_value>existence quantor ምልክቶች</bookmark_value><bookmark_value>ለ ሁሉም ምልክቶች</bookmark_value><bookmark_value>universal quantifier ምልክቶች</bookmark_value><bookmark_value>h-bar ምልክቶች</bookmark_value><bookmark_value>lambda-bar ምልክቶች</bookmark_value><bookmark_value>imaginary part ለ ውስብስብ ቁጥር</bookmark_value><bookmark_value>ውስብስብ ቁጥር: ምልክቶች</bookmark_value><bookmark_value>weierstrass p ምልክቶች</bookmark_value><bookmark_value>የ ግራ ቀስት ምልክቶች</bookmark_value><bookmark_value> የ ቀኝ ቀስት ምልክቶች</bookmark_value><bookmark_value>ቀስት ወደ ላይ ምልክቶች</bookmark_value><bookmark_value> ቀስት ወደ ታች ምልክቶች</bookmark_value><bookmark_value>ቀስቶች: ምልክቶች በ %PRODUCTNAME ሂሳብ</bookmark_value><bookmark_value>መሀከል ነጥቦች ምልክቶች</bookmark_value><bookmark_value>axis-ኤሊፕስስ</bookmark_value><bookmark_value>በ ቁመት ነጥቦች ምልክቶች</bookmark_value><bookmark_value>በ ሰያፍ ወደ ላይ ነጥቦች: ምልክቶች</bookmark_value><bookmark_value> በ ሰያፍ ወደ ታች ነጥቦች: ምልክቶች</bookmark_value><bookmark_value>ኤፕሲሎን: ወደ ኋላ የ ዞረ</bookmark_value><bookmark_value>ወደ ኋላ የ ዞረ ኤፕሲሎን ምልክቶች</bookmark_value><bookmark_value>ቦታ ያዢዎች: ማስገቢያ በ መቀመሪያዎች</bookmark_value><bookmark_value> ኤሊፕስስ ምልክቶች</bookmark_value>"
+msgstr "<bookmark_value>የ ሂሳብ ምልክቶች: ሌሎች</bookmark_value><bookmark_value>የ ውስብስብ ቁጥር ትክክለኛ አካል</bookmark_value><bookmark_value>ምልክቶች: ለ ውስብስብ ቁጥር</bookmark_value><bookmark_value>በ ከፊል መለያ ምልክቶች</bookmark_value><bookmark_value>ኢንፊኒቲ ምልክቶች</bookmark_value><bookmark_value>ናብላ አንቀሳቃሽ</bookmark_value><bookmark_value>የ ነበረ ምልክቶች</bookmark_value><bookmark_value>ያል ነበረ ምልክቶች</bookmark_value><bookmark_value>existence quantor ምልክቶች</bookmark_value><bookmark_value>ለ ሁሉም ምልክቶች</bookmark_value><bookmark_value>universal quantifier ምልክቶች</bookmark_value><bookmark_value>h-ባር ምልክቶች</bookmark_value><bookmark_value>ላምብዳ-ባር ምልክቶች</bookmark_value><bookmark_value>ኢማጂነሪ አካል ለ ውስብስብ ቁጥር</bookmark_value><bookmark_value>ውስብስብ ቁጥር: ምልክቶች</bookmark_value><bookmark_value>weierstrass p ምልክቶች</bookmark_value><bookmark_value>የ ግራ ቀስት ምልክቶች</bookmark_value><bookmark_value> የ ቀኝ ቀስት ምልክቶች</bookmark_value><bookmark_value>ቀስት ወደ ላይ ምልክቶች</bookmark_value><bookmark_value> ቀስት ወደ ታች ምልክቶች</bookmark_value><bookmark_value>ቀስቶች: ምልክቶች በ %PRODUCTNAME ሂሳብ</bookmark_value><bookmark_value>መሀከል ነጥቦች ምልክቶች</bookmark_value><bookmark_value>axis-ኤሊፕስስ</bookmark_value><bookmark_value>በ ቁመት ነጥቦች ምልክቶች</bookmark_value><bookmark_value>በ ሰያፍ ወደ ላይ ነጥቦች: ምልክቶች</bookmark_value><bookmark_value> በ ሰያፍ ወደ ታች ነጥቦች: ምልክቶች</bookmark_value><bookmark_value>ኤፕሲሎን: ወደ ኋላ የ ዞረ</bookmark_value><bookmark_value>ወደ ኋላ የ ዞረ ኤፕሲሎን ምልክቶች</bookmark_value><bookmark_value>ቦታ ያዢዎች: ማስገቢያ በ መቀመሪያዎች</bookmark_value><bookmark_value> ኤሊፕስስ ምልክቶች</bookmark_value>"
#: 03091600.xhp
msgctxt ""
@@ -11194,7 +11194,7 @@ msgctxt ""
"60\n"
"help.text"
msgid "<emph>Lambda Bar</emph>"
-msgstr ""
+msgstr "<emph>ላምብዳ መደርደሪያ</emph>"
#: 03091600.xhp
msgctxt ""
@@ -11203,7 +11203,7 @@ msgctxt ""
"59\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LAMBDABAR\">Inserts the symbol for a lambda-bar.</ahelp> Command for the <emph>Commands</emph> window: <emph>lambdabar</emph>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_SMA_LAMBDABAR\">የ ላምብዳ-መደርደሪያ</ahelp> ትእዛዝ ለ <emph>ትእዛዝ</emph> መስኮት: <emph>ላምብዳ መደርደሪያ</emph>"
#: 03091600.xhp
msgctxt ""
@@ -11272,7 +11272,7 @@ msgctxt ""
"51\n"
"help.text"
msgid "<emph>Weierstrass p</emph>"
-msgstr ""
+msgstr "<emph>ዌርስትራስ p</emph>"
#: 03091600.xhp
msgctxt ""
@@ -11281,7 +11281,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_WP\">This icon inserts a Weierstrass p-function symbol.</ahelp> Command for the <emph>Commands</emph> window: <emph>wp</emph>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_SMA_WP\">ይህ ምልክት ያስገባል የ ዌርስትራስ p-ተግባር ምልክት </ahelp> ትእዛዝ ለ <emph>ትእዛዞች</emph> መስኮት: <emph>ዌርስትራስ p</emph>"
#: 03091600.xhp
msgctxt ""
@@ -11524,7 +11524,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "A <emph>back epsilon</emph> can be inserted by typing <emph>backepsilon</emph> in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "ይህ <emph>ወደ ኋላ የ ዞረ ኤፕሲሎን</emph> በ መጻፍ ማስገባት ይቻላል <emph>ወደ ኋላ የ ዞረ ኤፕሲሎን</emph> በ <emph>ትእዛዝ</emph> መስኮት ውስጥ"
#: 03091600.xhp
msgctxt ""
@@ -11720,7 +11720,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/fonttypedialog/serifCB\">You can specify the font to be used for the <emph>font serif</emph> format.</ahelp> Serifs are the small \"guides\" that can be seen, for example, at the bottom of a capital A when the Times serif font is used. Using serifs is quite helpful since it guides a reader's eye in a straight line and can speed up reading."
-msgstr ""
+msgstr "<ahelp hid=\"modules/smath/ui/fonttypedialog/serifCB\">እርስዎ መወሰን ይችላሉ ፊደል የሚጠቀሙትን በ <emph>serif ፊደል</emph> አቀራረብ </ahelp> Serifs ትንሽ \"መምሪያ\" የሚታይ ይዟል: ለምሳሌ: ከ ታቻ በኩል በ አቢይ ፊደል: ይህ በ Times serif ፊደል ሲጠቀሙ: serifs መጠቀም በጣም ይረዳል አንባቢውን በ ቀጥታ መስመር ላይ እና ማንበቡን ያፈጥናል"
#: 05010000.xhp
msgctxt ""
@@ -12471,7 +12471,7 @@ msgctxt ""
"41\n"
"help.text"
msgid "Excess size (left/right)"
-msgstr "ትርፍ መጠን (በግራ/በቀኝ)"
+msgstr "ትርፍ መጠን (በ ግራ/በ ቀኝ)"
#: 05030000.xhp
msgctxt ""
@@ -12543,7 +12543,7 @@ msgctxt ""
"45\n"
"help.text"
msgid "Matrices"
-msgstr ""
+msgstr "መነሻዎች"
#: 05030000.xhp
msgctxt ""
@@ -12723,7 +12723,7 @@ msgctxt ""
"68\n"
"help.text"
msgid "Left"
-msgstr "በግራ"
+msgstr "በ ግራ"
#: 05030000.xhp
msgctxt ""
@@ -12741,7 +12741,7 @@ msgctxt ""
"70\n"
"help.text"
msgid "Right"
-msgstr "በቀኝ"
+msgstr "በ ቀኝ"
#: 05030000.xhp
msgctxt ""
@@ -12865,7 +12865,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Left"
-msgstr "በግራ"
+msgstr "በ ግራ"
#: 05040000.xhp
msgctxt ""
@@ -12883,7 +12883,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "Text is always aligned left."
-msgstr "ጽሁፍ ሁልጊዜ በግራ ማሰለፊያ"
+msgstr "ጽሁፍ ሁልጊዜ በ ግራ ማሰለፊያ"
#: 05040000.xhp
msgctxt ""
@@ -12910,7 +12910,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "Right"
-msgstr "በቀኝ"
+msgstr "በ ቀኝ"
#: 05040000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter.po b/source/am/helpcontent2/source/text/swriter.po
index 4f57a9fc96a..e2797feb9af 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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-07 18:58+0000\n"
+"PO-Revision-Date: 2016-12-23 18:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481137115.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482518290.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_idN106CD\n"
"help.text"
msgid "National Security"
-msgstr "የ አገር ድህንነት"
+msgstr "የ አገር ደህንነት"
#: classificationbar.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"hd_id030820161747122444\n"
"help.text"
msgid "Default levels of classification"
-msgstr ""
+msgstr "ነባር የ ማሻሻያ ደረጃዎች"
#: classificationbar.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_id030820161747139337\n"
"help.text"
msgid "%PRODUCTNAME provides default levels of document classification (<item type=\"acronym\">BAILS</item>) shown below, sorted by increasing level of business sensitivity:"
-msgstr ""
+msgstr "%PRODUCTNAME የሚያቀርበው ነባር የ ማሻሻያ ደረጃዎች ነው ለ ሰነድ (<item type=\"acronym\">BAILS</item>) ከ ታች እንደሚታየው: መለያ በ እየጨመረ በሚሄድ ደረጃ ለ ንግድ sensitivity:"
#: classificationbar.xhp
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"par_idN106E9\n"
"help.text"
msgid "Row Height"
-msgstr "የረድፍ እርዝመት"
+msgstr "የ ረድፍ እርዝመት"
#: main0110.xhp
msgctxt ""
@@ -2482,7 +2482,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "The program interface is designed so that you can configure it according to your preferences, including customizing icons and menus. You can position various program windows, such as the Styles and Formatting window or the Navigator as floating windows anywhere on the screen. You can also <link href=\"text/shared/guide/autohide.xhp\" name=\"dock\">dock</link> some windows to the edge of the workspace."
-msgstr "ይህ የ ፕሮግራም ገጽታ የተዘጋጀው እርስዎ እንደሚፈልጉት እንዲያሰናዱት ተደርጎ ነው: ምልክቶችን ማስተካከል ይችላሉ እና ዝርዝሮችን: የ ተለያዩ የ ፕሮግራም መስኮቶችን ቦታ መቀየር ይችላሉ: እንደ ዘዴዎች እና አቀራረብ መስኮት ወይንም መቃኛውን እንደ ተንሳፋፊ መስኮቶች በ ማንኛውም ቦታ በ መስኮቱ ውስጥ ማድረግ ይችላሉ: እርስዎ <link href=\"text/shared/guide/autohide.xhp\" name=\"dock\">dock</link>አንዳንድ መስኮቶችን በ መስሪያ ቦታ ጠርዝ በኩል ማድረግ ይችላሉ"
+msgstr "ይህ የ ፕሮግራም ገጽታ የተዘጋጀው እርስዎ እንደሚፈልጉት እንዲያሰናዱት ተደርጎ ነው: ምልክቶችን ማስተካከል ይችላሉ እና ዝርዝሮችን: የ ተለያዩ የ ፕሮግራም መስኮቶችን ቦታ መቀየር ይችላሉ: እንደ ዘዴዎች እና አቀራረብ መስኮት ወይንም መቃኛውን እንደ ተንሳፋፊ መስኮቶች በ ማንኛውም ቦታ በ መስኮቱ ውስጥ ማድረግ ይችላሉ: እርስዎ <link href=\"text/shared/guide/autohide.xhp\" name=\"dock\">ማሳረፊያ</link>አንዳንድ መስኮቶችን በ መስሪያ ቦታ ጠርዝ በኩል ማድረግ ይችላሉ"
#: main0503.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/00.po b/source/am/helpcontent2/source/text/swriter/00.po
index ff23d6a6914..5f2c40bd83b 100644
--- a/source/am/helpcontent2/source/text/swriter/00.po
+++ b/source/am/helpcontent2/source/text/swriter/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-07 18:58+0000\n"
+"PO-Revision-Date: 2016-12-23 17:48+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481137123.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482515290.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1379,7 +1379,7 @@ msgctxt ""
"par_idN10715\n"
"help.text"
msgid "Right-click a paragraph with style <item type=\"literal\">Text body</item>. Choose <emph>Edit Paragraph Style - Condition</emph> tab"
-msgstr "በቀኝ-ይጫኑ አንቀጽ ከ ዘዴ ጋር <item type=\"literal\">የጽሁፍ ሰውነት</item>. ይምረጡ <emph>የአንቀጽ ዘዴ ማረሚያ - ሁኔታ</emph> tab"
+msgstr "በ ቀኝ-ይጫኑ አንቀጽ ከ ዘዴ ጋር <item type=\"literal\">የጽሁፍ ሰውነት</item> ይምረጡ <emph>የ አንቀጽ ዘዴ ማረሚያ - ሁኔታ</emph> tab"
#: 00000405.xhp
msgctxt ""
@@ -1895,7 +1895,7 @@ msgctxt ""
"78\n"
"help.text"
msgid "<variable id=\"zelle\">Right-click in a table, choose <emph>Cell</emph></variable>"
-msgstr "<variable id=\"zelle\">በቀኝ-ይጫኑ በሰንጠረዡ ውስጥ እና ይምረጡ <emph>ክፍል</emph></variable>"
+msgstr "<variable id=\"zelle\">በ ቀኝ-ይጫኑ በ ሰንጠረዡ ውስጥ እና ይምረጡ <emph>ክፍል</emph></variable>"
#: 00000405.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index 5d4994868cb..30410e4d4ae 100644
--- a/source/am/helpcontent2/source/text/swriter/01.po
+++ b/source/am/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-08 23:41+0000\n"
+"PO-Revision-Date: 2016-12-23 17:48+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481240471.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482515308.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5061,7 +5061,7 @@ msgctxt ""
"par_id7174596\n"
"help.text"
msgid "Right-click the field on the status line that shows \"Envelope\"."
-msgstr "በቀኝ-ይጫኑ ሜዳውን ከ ሁኔታው መስመር ላይ የሚያሳየውን \"ፖስታ\"."
+msgstr "በ ቀኝ-ይጫኑ ሜዳውን ከ ሁኔታው መስመር ላይ የሚያሳየውን \"ፖስታ\"."
#: 04070000.xhp
msgctxt ""
@@ -9220,7 +9220,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "When you define a condition, use the same <link href=\"text/swriter/02/14020000.xhp\">elements</link> for defining a formula, namely comparative operators, mathematical and statistical functions, number formats, variables and constants."
-msgstr "እርስዎ ሁኔታዎችን በሚገልጹ ጊዜ ይጠቀሙ ተመሳሳይ <link href=\"text/swriter/02/14020000.xhp\">አካላቶች</link> ለ መግለጽ መቀመሪያ: ተግባሮች ማነፃፃሪያ: ሂሳብ: እና statistical ተግባሮች: የ ቁጥር አቀራረብ: ተለዋዋጮች እና የሚቀጥሉ"
+msgstr "እርስዎ ሁኔታዎችን በሚገልጹ ጊዜ ይጠቀሙ ተመሳሳይ <link href=\"text/swriter/02/14020000.xhp\">አካላቶች</link> ለ መግለጽ መቀመሪያ: ተግባሮች ማነፃፃሪያ: ሂሳብ: እና የ ስታትስቲክስ ተግባሮች: የ ቁጥር አቀራረብ: ተለዋዋጮች እና የሚቀጥሉ"
#: 04090200.xhp
msgctxt ""
@@ -20506,7 +20506,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "You can also right-click in a cell, and then choose <link href=\"text/swriter/01/05110200.xhp\" name=\"Row - Optimal Height\"><emph>Row - Optimal Height</emph></link>."
-msgstr "እንዲሁም ይችላሉ ክፍሉን በቀኝ-ይጫኑ እና ከዛ ይምረጡ <link href=\"text/swriter/01/05110200.xhp\" name=\"Row - Optimal Height\"><emph>ረድፍ - አጥጋቢ እርዝመት</emph></link>."
+msgstr "እንዲሁም ይችላሉ ክፍሉን በ ቀኝ-ይጫኑ እና ከዛ ይምረጡ <link href=\"text/swriter/01/05110200.xhp\" name=\"Row - Optimal Height\"><emph>ረድፍ - አጥጋቢ እርዝመት</emph></link>."
#: 05110200.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/02.po b/source/am/helpcontent2/source/text/swriter/02.po
index 8bd40ebe491..5a9394fc661 100644
--- a/source/am/helpcontent2/source/text/swriter/02.po
+++ b/source/am/helpcontent2/source/text/swriter/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-14 17:17+0000\n"
+"PO-Revision-Date: 2016-12-23 17:48+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: 1479143839.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482515313.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1325,7 +1325,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "Left"
-msgstr "በግራ"
+msgstr "በ ግራ"
#: 10110000.xhp
msgctxt ""
@@ -1361,7 +1361,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "Right"
-msgstr "በቀኝ"
+msgstr "በ ቀኝ"
#: 10110000.xhp
msgctxt ""
@@ -1753,7 +1753,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "Calculates the quotient"
-msgstr "ክፍያን ማስሊያ"
+msgstr "የ ክፍያ ውጤት ማስሊያ"
#: 14020000.xhp
msgctxt ""
@@ -2086,7 +2086,7 @@ msgctxt ""
"172\n"
"help.text"
msgid "Example: <A1> NEQ 2 displays 0 (wrong), if the content of A1 equals 2."
-msgstr "ለምሳሌ: <A1> እኩል አይደለም 2 ያሳያል 0 (ስህተት), ይዞታው ከሆነ A1 እኩል ከ 2."
+msgstr "ለምሳሌ: <A1> እኩል አይደለም 2 ያሳያል 0 (ስህተት): ይዞታው ከሆነ A1 እኩል ከ 2."
#: 14020000.xhp
msgctxt ""
@@ -2122,7 +2122,7 @@ msgctxt ""
"173\n"
"help.text"
msgid "Example: <A1> LEQ 2 displays 1 (true), if the content of A1 is less than or equal to 2."
-msgstr "ለምሳሌ: <A1> ያንሳል ወይን እኩል ነው 2 ያሳያል 1 (እውነት), ይዞታው ከሆነ A1 የሚያንስ ከሆነ ወይንም እኩል ከ 2."
+msgstr "ለምሳሌ: <A1> ያንሳል ወይን እኩል ነው 2 ያሳያል 1 (እውነት): ይዞታው ከሆነ A1 የሚያንስ ከሆነ ወይንም እኩል ከ 2."
#: 14020000.xhp
msgctxt ""
@@ -2158,7 +2158,7 @@ msgctxt ""
"174\n"
"help.text"
msgid "Example: <A1> GEQ 2 displays 1 (true), if the content of A1 is greater than or equal to 2."
-msgstr "ለምሳሌ: <A1> ይበልጣል ወይንም እኩል ነው 2 ያሳያል 1 (እውነት), ይዞታው ከሆነ A1 ይበልጣል ወይንም እኩል ነው ከ 2."
+msgstr "ለምሳሌ: <A1> ይበልጣል ወይንም እኩል ነው 2 ያሳያል 1 (እውነት): ይዞታው ከሆነ A1 ይበልጣል ወይንም እኩል ነው ከ 2."
#: 14020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/04.po b/source/am/helpcontent2/source/text/swriter/04.po
index 53b1d08d541..5de0724d47e 100644
--- a/source/am/helpcontent2/source/text/swriter/04.po
+++ b/source/am/helpcontent2/source/text/swriter/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-07-04 16:53+0200\n"
-"PO-Revision-Date: 2016-12-07 18:08+0000\n"
+"PO-Revision-Date: 2016-12-23 17:48+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481134120.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482515336.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -715,7 +715,7 @@ msgctxt ""
"80\n"
"help.text"
msgid "Align Left"
-msgstr "በግራ ማሰለፊያ"
+msgstr "በ ግራ ማሰለፊያ"
#: 01020000.xhp
msgctxt ""
@@ -2266,7 +2266,7 @@ msgctxt ""
"255\n"
"help.text"
msgid "Resizes by moving lower right corner."
-msgstr "እንደገና መመጠኛ በማንቀሳቀስ ከታች በቀኝ ጠርዝ በኩል"
+msgstr "እንደገና መመጠኛ በማንቀሳቀስ ከ ታች በ ቀኝ ጠርዝ በኩል"
#: 01020000.xhp
msgctxt ""
@@ -2284,7 +2284,7 @@ msgctxt ""
"258\n"
"help.text"
msgid "Resizes by moving top left corner."
-msgstr "እንደገና መመጠኛ በማንቀሳቀስ ከታች በቀኝ ጠርዝ በኩል"
+msgstr "እንደገና መመጠኛ በማንቀሳቀስ ከ ታች በ ቀኝ ጠርዝ በኩል"
#: 01020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index cff7e6575cb..07f9826d02c 100644
--- a/source/am/helpcontent2/source/text/swriter/guide.po
+++ b/source/am/helpcontent2/source/text/swriter/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-12-07 19:15+0000\n"
+"PO-Revision-Date: 2016-12-23 18:25+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481138127.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482517550.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"33\n"
"help.text"
msgid "Right-click a word with a red wavy underline, and then choose a suggested replacement word from the list, or from the <emph>AutoCorrect </emph>submenu."
-msgstr "በቀኝ-ይጫኑ ቃላት ከስሩ በቀይ ማእበል የተስመረበትን እና ከዛ ይምረጡ የሚመከሩትን መቀየሪያ ቃላት ከ ዝርዝር ውስጥ ወይንም ከ <emph>በራሱ አራሚ</emph>ንዑስ ዝርዝር ውስጥ"
+msgstr "በ ቀኝ-ይጫኑ ቃላት ከስሩ በ ቀይ ማእበል የተስመረበትን እና ከዛ ይምረጡ የሚመከሩትን መቀየሪያ ቃላት ከ ዝርዝር ውስጥ ወይንም ከ <emph>በራሱ አራሚ</emph>ንዑስ ዝርዝር ውስጥ"
#: auto_spellcheck.xhp
msgctxt ""
@@ -1420,7 +1420,7 @@ msgctxt ""
"par_id3119149\n"
"help.text"
msgid "Select a line style, width and color for the selected border style in the <emph>Line</emph> area. These settings apply to all border lines that are included in the selected border style."
-msgstr "ይምረጡ የ መስመር ዘዴ ስፋት እና ቀለም ለ ተመረጠው ድንበር ዘዴ ከ<emph>መስመር</emph> ቦታ: ይህ ማሰናጃ ይፈጸማል ለ ሁሉም ድንበር መስመሮች በ ተመረጠው የድንበር ዘዴ ውስጥ ለሚካተቱት ሁሉ"
+msgstr "ይምረጡ የ መስመር ዘዴ ስፋት እና ቀለም ለ ተመረጠው የ ድንበር ዘዴ ከ<emph>መስመር</emph> ቦታ ውስጥ: ይህ ማሰናጃ ይፈጸማል ለ ሁሉም ድንበር መስመሮች በ ተመረጠው የ ድንበር ዘዴ ውስጥ ለሚካተቱት ሁሉ"
#: border_character.xhp
msgctxt ""
@@ -1656,7 +1656,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Select a line style, width and color for the selected border style in the <emph>Line</emph> area. These settings apply to all border lines that are included in the selected border style."
-msgstr "ይምረጡ የ መስመር ዘዴ ስፋት እና ቀለም ለ ተመረጠው ድንበር ዘዴ ከ<emph>መስመር</emph> ቦታ: ይህ ማሰናጃ ይፈጸማል ለ ሁሉም ድንበር መስመሮች በ ተመረጠው የድንበር ዘዴ ውስጥ ለሚካተቱት ሁሉ"
+msgstr "ይምረጡ የ መስመር ዘዴ ስፋት እና ቀለም ለ ተመረጠው የ ድንበር ዘዴ ከ<emph>መስመር</emph> ቦታ ውስጥ: ይህ ማሰናጃ ይፈጸማል ለ ሁሉም ድንበር መስመሮች በ ተመረጠው የ ድንበር ዘዴ ውስጥ ለሚካተቱት ሁሉ"
#: border_page.xhp
msgctxt ""
@@ -2993,7 +2993,7 @@ msgctxt ""
"par_id3155541\n"
"help.text"
msgid "Choose <emph>Insert - Header and Footer - Header</emph>, and choose the new page style from the list."
-msgstr ""
+msgstr "ይምረጡ <emph>ማስገቢያ - ራስጌ እና ግርጌ - ራስጌ </emph> እና ይምረጡ አዲስ የ ገጽ ዘዴ ከ ዝርዝሩ ውስጥ"
#: change_header.xhp
msgctxt ""
@@ -3297,7 +3297,7 @@ msgctxt ""
"par_id3155936\n"
"help.text"
msgid "Type <item type=\"literal\">Reminder EQ \"3\"</item> in the <item type=\"menuitem\">Condition</item> box. In other words, the conditional text will be displayed when the variable in the field that you defined in the first part of this example is equal to three."
-msgstr "ይጻፉ <item type=\"literal\">አስታዋሽ EQ \"3\"</item> በ <item type=\"menuitem\">ሁኔታው</item>ሳጥን ውስጥ: በ ሌላ ቃል: የ ሁኔታው ጽሁፍ ይታያል ተለዋዋጭ በ ሜዳ ውስጥ እርስዎ በ ገለጹት በ መጀመሪያው ክፍል በዚህ ምሳሌ ውስጥ እኩል ይሆናል ከ ሶስት ጋር"
+msgstr "ይጻፉ <item type=\"literal\">አስታዋሽ: እኩል ነው \"3\"</item> በ <item type=\"menuitem\">ሁኔታው</item>ሳጥን ውስጥ: በ ሌላ ቃል: የ ሁኔታው ጽሁፍ ይታያል ተለዋዋጭ በ ሜዳ ውስጥ እርስዎ በ ገለጹት በ መጀመሪያው ክፍል በዚህ ምሳሌ ውስጥ እኩል ይሆናል ከ ሶስት ጋር"
#: conditional_text.xhp
msgctxt ""
@@ -4722,7 +4722,7 @@ msgctxt ""
"par_id4286935\n"
"help.text"
msgid "Enter the text to search in the <emph>Find</emph>text box."
-msgstr ""
+msgstr "የሚፈልጉትን ጽሁፍ ያስገቡ በ <emph>መፈለጊያው </emph>ጽሁፍ ሳጥን ውስጥ"
#: finding.xhp
msgctxt ""
@@ -4786,7 +4786,7 @@ msgctxt ""
"par_id896938\n"
"help.text"
msgid "Click <emph>Other options</emph> to expand the dialog."
-msgstr ""
+msgstr "ይጫኑ <emph>ተጨማሪ ምርጫዎች</emph> ንግግሩን ለማስፋት"
#: finding.xhp
msgctxt ""
@@ -4794,7 +4794,7 @@ msgctxt ""
"par_id9147007\n"
"help.text"
msgid "Check <item type=\"menuitem\">Paragraph Styles</item>.<br/>The <item type=\"menuitem\">Find</item> text box now is a list box, where you can select any of the Paragraph Styles that are applied in the current document."
-msgstr ""
+msgstr "ይመርምሩ <item type=\"menuitem\">የ አንቀጽ ዘዴዎች</item>.<br/>የ <item type=\"menuitem\">መፈለጊያ</item> ጽሁፍ ሳጥን አሁን የ ዝርዝር ሳጥን ነው: እርስዎ መምረጥ የሚችሉበት ማንኛውንም የ አንቀጽ ዘዴዎች የሚፈጸሙትን በ አሁኑ ሰነድ ውስጥ"
#: finding.xhp
msgctxt ""
@@ -5867,7 +5867,7 @@ msgctxt ""
"par_id3153022\n"
"help.text"
msgid "To add an index, such as a table of contents, right-click in the Navigator list, and then choose <emph>Insert - Index</emph>."
-msgstr "ማውጫ ለመጨመር እንደ የ ሰንጠረዥ ማውጫ የመሰለ በቀኝ-ይጫኑ በ መቃኛው ዝርዝር ላይ እና ከዛ ይምረጡ <emph>ማስገቢያ - ማውጫ</emph>."
+msgstr "ማውጫ ለ መጨመር እንደ የ ሰንጠረዥ ማውጫ የመሰለ በ ቀኝ-ይጫኑ በ መቃኛው ዝርዝር ላይ እና ከዛ ይምረጡ <emph>ማስገቢያ - ማውጫ</emph>."
#: globaldoc_howtos.xhp
msgctxt ""
@@ -6043,7 +6043,7 @@ msgctxt ""
"par_id3155896\n"
"help.text"
msgid "To add a header to a page, choose <emph>Insert - Header and Footer - Header</emph>, and then select the page style for the current page from the submenu."
-msgstr ""
+msgstr "ወደ ገጹ ራስጌ ለ መጨመር ይምረጡ <emph>ማስገቢያ - ራስጌ እና ግርጌ - ራስጌ</emph> እና ከዛ ይምረጡ የ ገጽ ዘዴ ለ አሁኑ ገጽ ከ ንዑስ ዝርዝር ውስጥ"
#: header_footer.xhp
msgctxt ""
@@ -6051,7 +6051,7 @@ msgctxt ""
"par_id3147119\n"
"help.text"
msgid "To add a footer to a page, choose <emph>Insert - Header and Footer - Footer</emph>, and then select the page style for the current page from the submenu."
-msgstr ""
+msgstr "ወደ ገጹ ግርጌ ለ መጨመር ይምረጡ<emph>ማስገቢያ - ራስጌ እና ግርጌ - ግርጌ</emph> እና ከዛ ይምረጡ የ ገጽ ዘዴ ለ አሁኑ ገጽ ከ ንዑስ ዝርዝር ውስጥ"
#: header_footer.xhp
msgctxt ""
@@ -6059,7 +6059,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "You can also choose <item type=\"menuitem\">Format - Page</item>, click the <item type=\"menuitem\">Header</item> or <item type=\"menuitem\">Footer</item> tab, and then select <item type=\"menuitem\">Header on</item> or <item type=\"menuitem\">Footer on</item>. Clear the <item type=\"menuitem\">Same content left/right</item> check box if you want to define different headers and footers for even and odd pages."
-msgstr "እርስዎ መምረጥ ይችላሉ <item type=\"menuitem\">አቀራረብ - ገጽ</item> ይጫኑ <item type=\"menuitem\">ራስጌ</item> ወይንም <item type=\"menuitem\">ግርጌ</item> tab, እና ይምረጡ <item type=\"menuitem\">ራስጌ ማብሪያ</item> ወይንም <item type=\"menuitem\">ግርጌ ማብሪያ</item> ማጽጃ <item type=\"menuitem\">ተመሳሳይ ይዞታዎች በግራ/በቀኝ</item> ሳጥኑ ውስጥ ምልክት ያድርጉ የተለዩ ራስጌዎች እና ግርጌዎች ለሙሉ እና ለ ጎዶሎ ገጾች መግለጽ ከፈለጉ"
+msgstr "እርስዎ መምረጥ ይችላሉ <item type=\"menuitem\">አቀራረብ - ገጽ</item> ይጫኑ <item type=\"menuitem\">ራስጌ</item> ወይንም <item type=\"menuitem\">ግርጌ</item> tab, እና ይምረጡ <item type=\"menuitem\">ራስጌ ማብሪያ</item> ወይንም <item type=\"menuitem\">ግርጌ ማብሪያ</item> ማጽጃ <item type=\"menuitem\">ተመሳሳይ ይዞታዎች በ ግራ/በ ቀኝ</item> ሳጥኑ ውስጥ ምልክት ያድርጉ የተለዩ ራስጌዎች እና ግርጌዎች ለ ሙሉ እና ለ ጎዶሎ ገጾች መግለጽ ከፈለጉ"
#: header_footer.xhp
msgctxt ""
@@ -6363,7 +6363,7 @@ msgctxt ""
"par_id3153729\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Header and Footer - Header</item> or <item type=\"menuitem\">Insert - Header and Footer - Footer</item>, and then select the page style for the current page from the submenu."
-msgstr ""
+msgstr "ይምረጡ <item type=\"menuitem\">ማስገቢያ - ራስጌ እና ግርጌ - ራስጌ </item> ወይንም <item type=\"menuitem\">ማስገቢያ - ራስጌ እና ግርጌ - ግርጌ </item> እና ከዛ ይጫኑ የ ገጽ ዘዴ ለ አሁኑ ገጽ ከ ንዑስ ዝርዝር ውስጥ"
#: header_with_chapter.xhp
msgctxt ""
@@ -7211,7 +7211,7 @@ msgctxt ""
"bm_id3155186\n"
"help.text"
msgid "<bookmark_value>indexes; editing or deleting entries</bookmark_value> <bookmark_value>tables of contents; editing or deleting entries</bookmark_value> <bookmark_value>deleting;entries of indexes/tables of contents</bookmark_value> <bookmark_value>editing;table/index entries</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>"
#: indices_delete.xhp
msgctxt ""
@@ -10477,7 +10477,7 @@ msgctxt ""
"par_id1558885\n"
"help.text"
msgid "You need some pages with the roman numbering style, followed by the remaining pages in another style."
-msgstr "You need some pages with the roman numbering style, followed by the remaining pages in another style."
+msgstr "እርስዎ ለ አንዳንድ ገጾች ቁጥር መስጠት ከፈለጉ በ ሮማውያን ቁጥር: ተከታዮቹን ቀሪ ገጾች በ ሌላ ዘዴ"
#: pagenumbers.xhp
msgctxt ""
@@ -10541,7 +10541,7 @@ msgctxt ""
"par_id1911679\n"
"help.text"
msgid "It depends on your document what is best: to use a manually inserted page break between page styles, or to use an automatic change. If you just need one title page with a different style than the other pages, you can use the automatic method:"
-msgstr "It depends on your document what is best: to use a manually inserted page break between page styles, or to use an automatic change. If you just need one title page with a different style than the other pages, you can use the automatic method:"
+msgstr "እንደ እርስዎ ሰነድ አይነት ይለያያል የትኛው ጥሩ እንደሆን: በ እጅ የ ገባ የ ገጽ መጨረሻ ለ መጠቀም በ ገጽ መጨረሻ እና በ ገጽ ዘዴዎች መካከል: ወይንም ራሱ በራሱ መቀየሪያ ለ መጠቀም: እርስዎ አንድ የ አርእስት ገጽ ብቻ ከፈለጉ ከ ተለየ ዘዴ ጋር ከ ሌሎቹ ገጾች: እርስዎ መጠቀም ይችላሉ ራሱ በራሱ መቀየሪያ ዘዴ:"
#: pagenumbers.xhp
msgctxt ""
@@ -10589,7 +10589,7 @@ msgctxt ""
"par_id2318796\n"
"help.text"
msgid "Now your title page has the style \"First Page\", and the next pages automatically have the \"Default\" style."
-msgstr "የ እርስዎ ገጽ ዘዴ አሁን ዘዴ አለው \"First Page\", እና የሚቀጥሉት ገጾች ራሱ በራሱ ይኖረዋል የ \"ነባር\" ዘዴ"
+msgstr "የ እርስዎ ገጽ ዘዴ አሁን ዘዴ አለው የ \"መጀመሪያ ገጽ\": እና የሚቀጥሉት ገጾች ራሱ በራሱ ይኖረዋል የ \"ነባር\" ዘዴ"
#: pagenumbers.xhp
msgctxt ""
@@ -12376,7 +12376,7 @@ msgctxt ""
"bm_id3149687\n"
"help.text"
msgid "<bookmark_value>hard returns in pasted text</bookmark_value> <bookmark_value>line breaks;removing</bookmark_value> <bookmark_value>deleting; line breaks</bookmark_value> <bookmark_value>copies;removing line breaks</bookmark_value> <bookmark_value>paragraph marks;removing</bookmark_value>"
-msgstr "<bookmark_value>hard returns በ ተለጠፈ ጽሁፍ ውስጥ</bookmark_value> <bookmark_value>የ መስመር መጨረሻ;ማስወገጃ</bookmark_value> <bookmark_value>ማጥፊያ; የ መስመር መጨረሻ</bookmark_value> <bookmark_value>ኮፒ;ማስወገጃ የ መስመር መጨረሻ</bookmark_value> <bookmark_value>አንቀጽ ምልክት ማድረጊያ;ማስወገጃ</bookmark_value>"
+msgstr "<bookmark_value>አስገድዶ መመለሻ በ ተለጠፈ ጽሁፍ ውስጥ</bookmark_value> <bookmark_value>የ መስመር መጨረሻ: ማስወገጃ</bookmark_value> <bookmark_value>ማጥፊያ: የ መስመር መጨረሻ</bookmark_value> <bookmark_value>ኮፒ: ማስወገጃ የ መስመር መጨረሻ</bookmark_value> <bookmark_value>አንቀጽ ምልክት ማድረጊያ: ማስወገጃ</bookmark_value>"
#: removing_line_breaks.xhp
msgctxt ""
@@ -15471,7 +15471,7 @@ msgctxt ""
"par_id1120200910485778\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Text - Uppercase</item>."
-msgstr ""
+msgstr "ይምረጡ <item type=\"menuitem\">አቀራረብ - ጽሁፍ - Uppercase</item>."
#: text_capital.xhp
msgctxt ""
@@ -16362,7 +16362,7 @@ msgctxt ""
"bm_id3155911\n"
"help.text"
msgid "<bookmark_value>text; rotating</bookmark_value> <bookmark_value>rotating;text</bookmark_value>"
-msgstr "<bookmark_value>ጽሁፍ; ማዞሪያ</bookmark_value> <bookmark_value>ማዞሪያ;ጽሁፍ</bookmark_value>"
+msgstr "<bookmark_value>ጽሁፍ: ማዞሪያ</bookmark_value> <bookmark_value>ማዞሪያ: ጽሁፍ</bookmark_value>"
#: text_rotate.xhp
msgctxt ""
@@ -17317,7 +17317,7 @@ msgctxt ""
"bm_id3148882\n"
"help.text"
msgid "<bookmark_value>automatic word completion</bookmark_value> <bookmark_value>completion of words</bookmark_value> <bookmark_value>AutoCorrect function; word completion</bookmark_value> <bookmark_value>word completion;using/disabling</bookmark_value> <bookmark_value>disabling;word completion</bookmark_value> <bookmark_value>switching off;word completion</bookmark_value> <bookmark_value>deactivating;word completion</bookmark_value> <bookmark_value>refusing word completions</bookmark_value> <bookmark_value>rejecting word completions</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>"
+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>"
#: word_completion.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/librelogo.po b/source/am/helpcontent2/source/text/swriter/librelogo.po
index e496512f31f..1568cd75eca 100644
--- a/source/am/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/am/helpcontent2/source/text/swriter/librelogo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-08-06 22:51+0200\n"
-"PO-Revision-Date: 2016-12-07 03:27+0000\n"
+"PO-Revision-Date: 2016-12-13 00:06+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481081270.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481587562.000000\n"
#: LibreLogo.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"par_890\n"
"help.text"
msgid "LEFT 90 ; turn counterclockwise 90 degrees<br/> LEFT 90° ; see above<br/> LT 3h ; see above (clock position)<br/> LT any ; turn to a random position<br/>"
-msgstr "በ ግራ 90 ; ማዞሪያ ከ ግራ ወደ ቀኝ 90 ዲግሪዎች<br/> በ ግራ 90° ; ከ ላይ ይመልከቱ<br/> LT 3ሰ ; ከ ላይ ይመልከቱ (የ ሰአት ቦታ)<br/> LT ማንኛውም ; ማዞሪያ በ ነሲብ ቦታ<br/>"
+msgstr "በ ግራ 90 ; ማዞሪያ ከ ግራ ወደ ቀኝ 90 ዲግሪዎች<br/> በ ግራ 90° ; ከ ላይ ይመልከቱ<br/> ከ ግራ ወደ ቀኝ 3ሰ : ከ ላይ ይመልከቱ (የ ሰአት ቦታ)<br/> ከ ግራ ወደ ቀኝ ማንኛውም : ማዞሪያ በ ነሲብ ቦታ<br/>"
#: LibreLogo.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"par_990\n"
"help.text"
msgid "HEADING 0 ; turn north<br/> HEADING 12h ; see above<br/> HEADING [0, 0] ; turn to the top-left corner<br/> HEADING ANY ; turn to a random direction<br/>"
-msgstr "ራስጌ 0 ; ማዞሪያ ወደ ሰሜን<br/> ራስጌ 12h ; ከ ላይ ይመልከቱ<br/> ራስጌ [0, 0] ; ማዞሪያ ወደ ላይ-በ ግራ ጠርዝ በኩል<br/> ራስጌ ማንኛውም ; ማዞሪያ ወደ በ ነሲብ አቅጣጫ<br/>"
+msgstr "ራስጌ 0 ; ማዞሪያ ወደ ሰሜን<br/> ራስጌ 12ሰ ; ከ ላይ ይመልከቱ<br/> ራስጌ [0, 0] ; ማዞሪያ ወደ ላይ-በ ግራ ጠርዝ በኩል<br/> ራስጌ ማንኛውም ; ማዞሪያ ወደ በ ነሲብ አቅጣጫ<br/>"
#: LibreLogo.xhp
msgctxt ""
diff --git a/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 0e99fb58843..d7812aea22e 100644
--- a/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-10 03:22+0000\n"
+"PO-Revision-Date: 2016-12-22 23:42+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481340163.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482450154.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"OOO_CONTROL_103\n"
"LngText.text"
msgid "Some files that need to be updated are currently in use."
-msgstr "አንዳንድ መሻሻል የሚገባቸው ፋይሎች አሁን በስራ ላይ ናቸው"
+msgstr "አንዳንድ መሻሻል የሚገባቸው ፋይሎች አሁን በ ስራ ላይ ናቸው"
#: Control.ulf
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"OOO_CONTROL_104\n"
"LngText.text"
msgid "The following applications are using files that need to be updated by this setup. Close these applications and click Retry to continue."
-msgstr "የሚቀጥለው መተግበሪያ ማሰናጃው ሊያሻሻል የሚፈልጋቸውን ፋይሎችን እየተጠቀመበት ነው ፡ ይህን መተግበሪያ ይዝጉ እና ይጫኑ እንደገና መሞከሪያ የሚለውን"
+msgstr "የሚቀጥለው መተግበሪያ ማሰናጃው ሊያሻሻል የሚፈልጋቸውን ፋይሎችን እየተጠቀመበት ነው: ይህን መተግበሪያ ይዝጉ እና ይጫኑ እንደገና መሞከሪያ የሚለውን"
#: Control.ulf
msgctxt ""
@@ -1918,7 +1918,7 @@ msgctxt ""
"OOO_CONTROL_162\n"
"LngText.text"
msgid "The Installation Wizard will install the Patch for [ProductName] on your computer. To continue, click Update."
-msgstr "የመግጠሚያው አዋቂ አሁን መለጠፊያውን ይገጥማል ለ [ProductName] በ እርስዎ ኮምፒዩተር ላይ ለመቀጠል ይጫኑ ማሻሻያ የሚለውን"
+msgstr "የ መግጠሚያው አዋቂ አሁን መለጠፊያውን ይገጥማል ለ [ProductName] በ እርስዎ ኮምፒዩተር ላይ ለ መቀጠል ይጫኑ ማሻሻያ የሚለውን"
#: Control.ulf
msgctxt ""
@@ -2654,7 +2654,7 @@ msgctxt ""
"OOO_CONTROL_300\n"
"LngText.text"
msgid "A version of [DEFINEDPRODUCT] [DEFINEDVERSION] was found by the [ProductName] Installation Wizard. This version will be updated."
-msgstr "ይህ እትም [DEFINEDPRODUCT] [DEFINEDVERSION] ተገኝቷል በ [ProductName] መግጠሚያው አዋቂ ፡ ይህ እትም ይሻሻላል"
+msgstr "ይህ እትም [DEFINEDPRODUCT] [DEFINEDVERSION] ተገኝቷል በ [ProductName] መግጠሚያው አዋቂ: ይህ እትም ይሻሻላል"
#: Control.ulf
msgctxt ""
@@ -3246,7 +3246,7 @@ msgctxt ""
"OOO_ERROR_53\n"
"LngText.text"
msgid "Error applying patch to file [2]. It has probably been updated by other means, and can no longer be modified by this patch. For more information contact your patch vendor. {{System Error: [3]}}"
-msgstr "ስህተት patch ወደ ፋይል መፈጸም አልተቻለም [2]. ምናልባት በሌላ መንገድ ተሻሽሎ ሊሆን ይችላል ፡ እና በዚህ patch ማሻሻል አይቻልም ፡ በበለጠ ለመረዳታ የ patch vendor ያማክሩ {{የስርአት ስህተት: [3]}}"
+msgstr "ስህተት መለጠፊያ ወደ ፋይል መፈጸም አልተቻለም [2]. ምናልባት በሌላ መንገድ ተሻሽሎ ሊሆን ይችላል: እና በዚህ መለጠፊያ ማሻሻል አይቻልም: በበለጠ ለመረዳታ የ መለጠፊያ ሻጩን ያማክሩ {{የ ስርአት ስህተት: [3]}}"
#: Error.ulf
msgctxt ""
@@ -3694,7 +3694,7 @@ msgctxt ""
"OOO_ERROR_109\n"
"LngText.text"
msgid "Could not update the INI file [2][3]. Verify that the file exists and that you can access it."
-msgstr "ማሻሻል አልተቻለም የ INI file [2][3]. ፋይሉ መኖሩን ያረጋግጡ እና እርስዎ በቂ ፍቃድ እንዳለዎት ፋይሉ ጋር ለመድረስ"
+msgstr "ማሻሻል አልተቻለም የ INI file [2][3]. ፋይሉ መኖሩን ያረጋግጡ እና እርስዎ በቂ ፍቃድ እንዳለዎት ፋይሉ ጋር ለ መድረስ"
#: Error.ulf
msgctxt ""
diff --git a/source/am/officecfg/registry/data/org/openoffice/Office.po b/source/am/officecfg/registry/data/org/openoffice/Office.po
index 09f95d63698..b831690e205 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/am/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-22 20:01+0000\n"
+"PO-Revision-Date: 2016-12-15 01:01+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479844913.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481763718.000000\n"
#: Addons.xcu
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"HomePhone\n"
"value.text"
msgid "Phone (Home)"
-msgstr "ስልክ (የቤት)"
+msgstr "ስልክ (የ ቤት)"
#: DataAccess.xcu
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"HomeZipCode\n"
"value.text"
msgid "ZIP/Postal (Home)"
-msgstr "ፖስታ ሳጥን ቁጥር (ቤት)"
+msgstr "ፖስታ ሳጥን ቁጥር (የ ቤት)"
#: DataAccess.xcu
msgctxt ""
@@ -1589,7 +1589,7 @@ msgctxt ""
"Left\n"
"value.text"
msgid "Right click, left or up arrow, page up, backspace, 'P'"
-msgstr "በ ቀኝ ይጫኑ: በ ግራ ወይም ቀስት ወደ ላይ: በ ገጽ ወደ ላይ: በ ኋሊት ደምሳሽ: 'P'"
+msgstr "በ ቀኝ ይጫኑ: በ ግራ ወይም ቀስት ወደ ላይ: በ ገጽ ወደ ላይ: የ ኋሊት ደምሳሽ: 'P'"
#: PresenterScreen.xcu
msgctxt ""
@@ -10949,7 +10949,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SecuritySymbol"
-msgstr "የደህንነቱ ምልክት"
+msgstr "የ ደህንነት ምልክት"
#: TableWizard.xcu
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 a0e084dccd0..b07c67493ee 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-12-10 03:25+0000\n"
+"PO-Revision-Date: 2016-12-21 23:31+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481340318.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482363094.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -1628,14 +1628,13 @@ msgid "~Correlation..."
msgstr "~ግንኙነቶች..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:CovarianceDialog\n"
"Label\n"
"value.text"
msgid "~Covariance..."
-msgstr "~Covariance..."
+msgstr "~ኮቫሪያንስ..."
#: CalcCommands.xcu
msgctxt ""
@@ -2256,7 +2255,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Rows Below"
-msgstr "~ረድፎች ከ ስር ማስገቢያ"
+msgstr "~ረድፎች ከ ታች ማስገቢያ"
#: CalcCommands.xcu
msgctxt ""
@@ -8880,7 +8879,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Row Below"
-msgstr "ረድፍ ከ ስር ማስገቢያ"
+msgstr "ረድፍ ከ ታች ማስገቢያ"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -11850,7 +11849,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sine Wave"
-msgstr "Sine Wave"
+msgstr "የ ሳይን ማዕበል"
#: Effects.xcu
msgctxt ""
@@ -14361,7 +14360,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Double Brace"
-msgstr "ድርብ ድጋፍ"
+msgstr "ድርብ ብሬስ"
#: GenericCommands.xcu
msgctxt ""
@@ -14370,7 +14369,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Left Brace"
-msgstr "የ ግራ ድጋፍ"
+msgstr "የ ግራ ብሬስ"
#: GenericCommands.xcu
msgctxt ""
@@ -14379,7 +14378,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Right Brace"
-msgstr "የ ቀኝ ድጋፍ"
+msgstr "የ ቀኝ ብሬስ"
#: GenericCommands.xcu
msgctxt ""
@@ -14433,7 +14432,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Up Arrow"
-msgstr "የላይ ቀስት"
+msgstr "የ ላይ ቀስት"
#: GenericCommands.xcu
msgctxt ""
@@ -14442,7 +14441,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Down Arrow"
-msgstr "የታች ቀስት"
+msgstr "የ ታች ቀስት"
#: GenericCommands.xcu
msgctxt ""
@@ -14460,7 +14459,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Up and Down Arrow"
-msgstr "የላይ እና የታች ቀስት"
+msgstr "የ ላይ እና የ ታች ቀስት"
#: GenericCommands.xcu
msgctxt ""
@@ -14523,7 +14522,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notched Right Arrow"
-msgstr "Notched Right Arrow"
+msgstr "ቪ ቅርጽ ያለው የ ቀኝ ቀስት"
#: GenericCommands.xcu
msgctxt ""
@@ -14568,7 +14567,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Up Arrow Callout"
-msgstr "የላይ ቀስት መጥሪያ"
+msgstr "የ ላይ ቀስት መጥሪያ"
#: GenericCommands.xcu
msgctxt ""
@@ -14577,7 +14576,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Down Arrow Callout"
-msgstr "የታች ቀስት መጥሪያ"
+msgstr "የ ታች ቀስት መጥሪያ"
#: GenericCommands.xcu
msgctxt ""
@@ -14595,7 +14594,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Up and Down Arrow Callout"
-msgstr "የላይ እና የታች ቀስት መጥሪያ"
+msgstr "የ ላይ እና የ ታች ቀስት መጥሪያ"
#: GenericCommands.xcu
msgctxt ""
@@ -18818,7 +18817,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Arrow Style"
-msgstr "የቀስት ዘዴ"
+msgstr "የ ቀስት ዘዴ"
#: GenericCommands.xcu
msgctxt ""
@@ -22211,7 +22210,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Media"
-msgstr "መገናኛ"
+msgstr "ብዙሀን መገናኛ"
#: GenericCommands.xcu
msgctxt ""
@@ -26819,7 +26818,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Rows Below"
-msgstr "ረድፎች ከ ስር ማስገቢያ"
+msgstr "ረድፎች ከ ታች ማስገቢያ"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/am/readlicense_oo/docs.po b/source/am/readlicense_oo/docs.po
index 0410e42c486..bc093448f96 100644
--- a/source/am/readlicense_oo/docs.po
+++ b/source/am/readlicense_oo/docs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-03-09 20:48+0100\n"
-"PO-Revision-Date: 2016-12-04 17:40+0000\n"
+"PO-Revision-Date: 2016-12-15 01:29+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480873215.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481765340.000000\n"
#: readme.xrm
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"sdfsdfgf42t2\n"
"readmeitem.text"
msgid "Notes Concerning Desktop Integration for Linux Distributions Not Covered in the Above Installation Instructions"
-msgstr ""
+msgstr "ማስታወሻዎች የ ዴስክቶፕ ማዋሀጃ ለ ሊነክስ ስርጭቶች በ ላይኛው መግጠሚያ መመሪያዎች አይሸፈንም"
#: readme.xrm
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"support\n"
"readmeitem.text"
msgid "User Support"
-msgstr "የተጠቃሚ ድጋፍ"
+msgstr "የ ተጠቃሚ ድጋፍ"
#: readme.xrm
msgctxt ""
diff --git a/source/am/sc/source/ui/StatisticsDialogs.po b/source/am/sc/source/ui/StatisticsDialogs.po
index 0a81c4d6b22..563871dacf2 100644
--- a/source/am/sc/source/ui/StatisticsDialogs.po
+++ b/source/am/sc/source/ui/StatisticsDialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2016-12-09 17:36+0000\n"
+"PO-Revision-Date: 2016-12-10 19:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481304988.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481398608.000000\n"
#: StatisticsDialogs.src
msgctxt ""
@@ -266,7 +266,7 @@ msgctxt ""
"STRID_CALC_KURTOSIS\n"
"string.text"
msgid "Kurtosis"
-msgstr ""
+msgstr "ኩርቶሲስ"
#: StatisticsDialogs.src
msgctxt ""
@@ -833,7 +833,7 @@ msgctxt ""
"STR_TTEST_PEARSON_CORRELATION\n"
"string.text"
msgid "Pearson Correlation"
-msgstr ""
+msgstr "ፒርሰን ኮኦሪሌሽን"
#: StatisticsDialogs.src
msgctxt ""
diff --git a/source/am/sc/source/ui/src.po b/source/am/sc/source/ui/src.po
index a10dd409b64..4c5ac8ac6be 100644
--- a/source/am/sc/source/ui/src.po
+++ b/source/am/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-10 03:28+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-15 01:30+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481340524.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481765412.000000\n"
#: filter.src
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"STR_CLOSE_ERROR_LINK\n"
"string.text"
msgid "The document can not be closed while a link is being updated."
-msgstr "ሰነዱን መዝጋት አይችሉም አገናኙ በመሻሻል ላይ እያለ"
+msgstr "ሰነዱን መዝጋት አይችሉም አገናኙ በ መሻሻል ላይ እያለ"
#: globstr.src
msgctxt ""
@@ -3643,7 +3643,7 @@ msgid ""
"\n"
"Do you want to continue?"
msgstr ""
-"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
+"ቀደም ብሎ የ ተፈታው የ ማዋሀጃ ችግር ይጠፋል እና የ እርስዎ ለውጦች ለሚካፈሉት ሰንጠረዥ አይቀመጥም\n"
"\n"
"መቀጠል ይፈልጋሉ?"
@@ -3999,7 +3999,7 @@ msgctxt ""
"STR_ERR_NAME_INVALID\n"
"string.text"
msgid "Invalid name. Only use letters, numbers and underscore."
-msgstr "ዋጋ የሌለው ስም የሚጠቀመው ፊደሎችን: ቁጥሮችን እና underscore ብቻ ነው"
+msgstr "ዋጋ የሌለው ስም የሚጠቀመው ፊደሎችን: ቁጥሮችን እና ከ ስሩ ማስመሪያ ብቻ ነው"
#: globstr.src
msgctxt ""
@@ -4194,7 +4194,7 @@ msgctxt ""
"STR_COND_ABOVE_EQUAL_AVERAGE\n"
"string.text"
msgid "Above or equal Average"
-msgstr "በላይ ወይንም ከ መካከለኛ እኩል"
+msgstr "ከ ላይ ወይንም ከ መካከለኛ ጋር እኩል ነው"
#: globstr.src
msgctxt ""
@@ -5661,7 +5661,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the standard deviation with regards to the population of all cells of a data range matching the search criteria."
-msgstr "የ standard deviation with regards to the population ከሁሉም ክፍሎች የ ዳታ መጠን ለ መፈለጊያ መመዘኛ የሚስማማውን ይመልሳል"
+msgstr "የ መደበኛ ልዩነት ሕዝብን መሰረት ባደረገ ከ ሁሉም ክፍሎች የ ዳታ መጠን ለ መፈለጊያ መመዘኛ የሚስማማውን ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -9508,7 +9508,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns a^b, base a raised to the power of exponent b."
-msgstr "Returns a^b, base a raised to the power of exponent b."
+msgstr "ይመልሳል a^b, ቤዝ a ሲነሳ በ ሀይል ኤክስፖነንት b."
#: scfuncs.src
msgctxt ""
@@ -9526,7 +9526,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The base a of the power a^b."
-msgstr "The base a of the power a^b."
+msgstr "ቤዝ a በ ሀይል a^b."
#: scfuncs.src
msgctxt ""
@@ -9544,7 +9544,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The exponent b of the power a^b."
-msgstr "The exponent b of the power a^b."
+msgstr "ኤክስፖነንት b በ ሀይል a^b."
#: scfuncs.src
msgctxt ""
@@ -9669,8 +9669,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Counts the arguments which meet the set conditions."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
@@ -10012,7 +10012,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the square root of a number."
-msgstr "Returns the square root of a number."
+msgstr "የ ቁጥር ስኴር ሩት ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10030,7 +10030,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A positive value for which the square root is to be calculated."
-msgstr "A positive value for which the square root is to be calculated."
+msgstr "አዎንታዊ ዋጋ የ ስኴር ሩት የሚሰላለት"
#: scfuncs.src
msgctxt ""
@@ -10192,7 +10192,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the arccosine of a number."
-msgstr "የ አርክ ኮሳይን ለ ቁጥር ይመልሳል"
+msgstr "የ አርክኮሳይን ለ ቁጥር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10210,7 +10210,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A value between -1 and 1 for which the arccosine is to be returned."
-msgstr "ዋጋ በ -1 እና በ 1 መካከል ለ አርክ ኮሳይን ይመልሳል"
+msgstr "ዋጋ በ -1 እና በ 1 መካከል ለ አርክኮሳይን ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10219,7 +10219,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the arcsine of a number."
-msgstr "የ አርክ ሳይን ለ ቁጥር ይመልሳል"
+msgstr "የ አርክሳይን ለ ቁጥር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10237,7 +10237,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A value between -1 and 1 for which the arcsine is to be returned."
-msgstr "ዋጋ በ -1 እና በ 1 መካከል ለ አርክ ሳይን ይመልሳል"
+msgstr "ዋጋ በ -1 እና በ 1 መካከል ለ አርክሳይን ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10264,7 +10264,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A value greater than or equal to 1 for which the inverse hyperbolic cosine is to be returned."
-msgstr "A value greater than or equal to 1 for which the inverse hyperbolic cosine is to be returned."
+msgstr "ዋጋ ው የሚበልጥ ወይንም እኩል የሚሆን ከ 1 ጋር የ ሀይፐርቦሊክ ኮሳይን የሚመለስለት"
#: scfuncs.src
msgctxt ""
@@ -10273,7 +10273,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the inverse hyperbolic sine of a number."
-msgstr "Returns the inverse hyperbolic sine of a number."
+msgstr "የ ሀይፐርቦሊክ ሳይን ግልባጭ ለ ቁጥር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10291,7 +10291,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the inverse hyperbolic sine is to be returned."
-msgstr "The value for which the inverse hyperbolic sine is to be returned."
+msgstr "ዋጋው የ ሀይፐርቦሊክ ሳይን ግልባጭ የሚመለስለት"
#: scfuncs.src
msgctxt ""
@@ -10300,7 +10300,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the inverse cotangent of a number."
-msgstr "Returns the inverse cotangent of a number."
+msgstr "የ ኮታንጀንት ግልባጭ ለ ቁጥር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10318,7 +10318,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the inverse cotangent is to be returned."
-msgstr "The value for which the inverse cotangent is to be returned."
+msgstr "ዋጋ የ ኮታንጀንት ግልባጭ የሚመለስለት"
#: scfuncs.src
msgctxt ""
@@ -10327,7 +10327,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the arctangent of a number."
-msgstr "የ አርክ ታንጀንት ለ ቁጥር ይመልሳል"
+msgstr "የ አርክታንጀንት ለ ቁጥር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10345,7 +10345,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the arctangent is to be returned."
-msgstr "የ አርክ ታንጀንት የሚመለስለት ዋጋ"
+msgstr "ዋጋ የ አርክታንጀንት የሚመለስለት"
#: scfuncs.src
msgctxt ""
@@ -10354,7 +10354,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the inverse hyperbolic cotangent of a number."
-msgstr "Returns the inverse hyperbolic cotangent of a number."
+msgstr "የ ሀይፐርቦሊክ ኮታንጀንት ለ ቁጥር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10372,7 +10372,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A value smaller than -1 or greater than 1 for which the inverse hyperbolic cotangent is to be returned."
-msgstr "A value smaller than -1 or greater than 1 for which the inverse hyperbolic cotangent is to be returned."
+msgstr "ዋጋው የሚያንስ ከ -1 ወይንም የሚበልጥ ከ 1 ጋር የ ሀይፐርቦሊክ ኮሳይን ግልባጭ የሚመለስለት"
#: scfuncs.src
msgctxt ""
@@ -10381,7 +10381,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the inverse hyperbolic tangent of a number."
-msgstr "Returns the inverse hyperbolic tangent of a number."
+msgstr "የ ሀይፐርቦሊክ ታንጀንት ግልባጭ ለ ቁጥር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10399,7 +10399,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A value between -1 and 1 for which the inverse hyperbolic tangent is to be returned."
-msgstr "A value between -1 and 1 for which the inverse hyperbolic tangent is to be returned."
+msgstr "ዋጋው በ -1 እና በ 1 መካከል የሆነ የ ሀይፐርቦሊክ ታንጀንት ግልባጭ የሚመለስለት"
#: scfuncs.src
msgctxt ""
@@ -10426,7 +10426,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The angle in the radians for which the cosine is to be returned."
-msgstr "The angle in the radians for which the cosine is to be returned."
+msgstr "አንግል በ ራዲያንስ ኮሳይን የሚመለስለት"
#: scfuncs.src
msgctxt ""
@@ -10435,7 +10435,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the sine of a number."
-msgstr "Returns the sine of a number."
+msgstr "ለ ቁጥር ሳይን ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10462,7 +10462,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the cotangent of a number."
-msgstr "Returns the cotangent of a number."
+msgstr "ኮታንጀንት ለ ቁጥር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10480,7 +10480,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The angle in radians whose cotangent value is to be returned."
-msgstr "The angle in radians whose cotangent value is to be returned."
+msgstr "አንግል በ ራዲያንስ የ ኮታንጀንት ዋጋ የሚመለስለት"
#: scfuncs.src
msgctxt ""
@@ -10489,7 +10489,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the tangent of a number."
-msgstr "Returns the tangent of a number."
+msgstr "ታንጀንት ለ ቁጥር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10507,7 +10507,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The angle in radians for which the tangent is to be calculated."
-msgstr "The angle in radians for which the tangent is to be calculated."
+msgstr "አንግል በ ራዲያንስ ታንጀንት ዋጋ የሚመለስለት"
#: scfuncs.src
msgctxt ""
@@ -10534,7 +10534,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the hyperbolic cosine is to be returned."
-msgstr "The value for which the hyperbolic cosine is to be returned."
+msgstr "ዋጋ የ ሀይፐርቦሊክ ኮሳይን የሚመለስለት"
#: scfuncs.src
msgctxt ""
@@ -10543,7 +10543,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the hyperbolic sine of a number."
-msgstr "Returns the hyperbolic sine of a number."
+msgstr "የ ሀይፐርቦሊክ ሳይን ለ ቁጥር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10561,7 +10561,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the hyperbolic sine is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "ዋጋው የ ሀይፐርቦሊክ ሳይን የሚሰላለት"
#: scfuncs.src
msgctxt ""
@@ -10570,7 +10570,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the hyperbolic cotangent of a number."
-msgstr "Returns the hyperbolic cotangent of a number."
+msgstr "የ ሀይፐርቦሊክ ኮታንጀንት ለ ቁጥር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10588,7 +10588,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A value not equal to 0 for which the hyperbolic cotangent is to be returned."
-msgstr "A value not equal to 0 for which the hyperbolic cotangent is to be returned."
+msgstr "ዋጋው እኩል ያልሆነ ከ 0 ጋር የ ሀይፐርቦሊክ ኮታንጀንት የሚመለስለት"
#: scfuncs.src
msgctxt ""
@@ -10597,7 +10597,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the hyperbolic tangent of a number."
-msgstr "Returns the hyperbolic tangent of a number."
+msgstr "የ ሀይፐርቦሊክ ታንጀንት ለ ቁጥር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -10615,7 +10615,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the hyperbolic tangent is to be calculated."
-msgstr "The value for which the hyperbolic tangent is to be calculated."
+msgstr "ዋጋ የ ሀይፐርቦሊክ ታንጀንት የሚሰላለት"
#: scfuncs.src
msgctxt ""
@@ -10903,7 +10903,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Calculates the natural logarithm of a number."
-msgstr "Calculates the natural logarithm of a number."
+msgstr "የ ተፈጥሯዊ ሎጋሪዝም ለ ቁጥር ማስሊያ"
#: scfuncs.src
msgctxt ""
@@ -10921,7 +10921,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A value greater than 0 for which the natural logarithm is to be calculated."
-msgstr "A value greater than 0 for which the natural logarithm is to be calculated."
+msgstr "ዋጋው የሚበልጥ ከ 0 የ ተፈጥሯዊ ሎጋሪዝም የሚሰላለት"
#: scfuncs.src
msgctxt ""
@@ -12585,7 +12585,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Calculates points on the exponential regression function."
-msgstr "Calculates points on the exponential regression function."
+msgstr "ነጥቦችን በ ኤክስፖኔንሺያል ዝቅ ማድረጊያ ተግባር ያሰላል"
#: scfuncs.src
msgctxt ""
@@ -14466,7 +14466,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the standard normal distribution is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "ዋጋው የ መደበኛ ስርጭት የሚሰላለት"
#: scfuncs.src
msgctxt ""
@@ -14475,7 +14475,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the integral values of the standard normal cumulative distribution."
-msgstr "የ ኢንትግራል ዋጋዎች ይመልሳል ለ መደበኛ የ ተጠራቀሙ ስርጭት"
+msgstr "የ ኢንትግራል ዋጋዎች ይመልሳል ለ መደበኛ የ ተጠራቀመ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -14493,7 +14493,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the integral value of the standard normal distribution is to be calculated."
-msgstr "The value for which the integral value of the standard normal distribution is to be calculated."
+msgstr "ዋጋው የ ኢንትግራል ዋጋ ይመልሳል ለ መደበኛ የ ተጠራቀመ ስርጭት ለሚሰላለት"
#: scfuncs.src
msgctxt ""
@@ -15132,7 +15132,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the normal distribution is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "ዋጋው የ መደበኛ ስርጭት የሚሰላለት"
#: scfuncs.src
msgctxt ""
@@ -15213,7 +15213,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the normal distribution is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "ዋጋው የ መደበኛ ስርጭት የሚሰላለት"
#: scfuncs.src
msgctxt ""
@@ -15420,7 +15420,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the standard normal distribution is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "ዋጋው የ መደበኛ ስርጭት የሚሰላለት"
#: scfuncs.src
msgctxt ""
@@ -15546,7 +15546,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the log normal distribution is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "ዋጋው የ መደበኛ ሎግ ስርጭት የሚሰላለት"
#: scfuncs.src
msgctxt ""
@@ -15627,7 +15627,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the log normal distribution is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "ዋጋው የ መደበኛ ሎግ ስርጭት የሚሰላለት"
#: scfuncs.src
msgctxt ""
@@ -15960,7 +15960,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the gamma distribution is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "ዋጋው የ ጋማ ስርጭት የሚሰላለት"
#: scfuncs.src
msgctxt ""
@@ -16041,7 +16041,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the gamma distribution is to be calculated."
-msgstr "The value for which the hyperbolic sine is to be calculated."
+msgstr "ዋጋው የ ጋማ ስርጭት የሚሰላለት"
#: scfuncs.src
msgctxt ""
@@ -16230,7 +16230,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the natural logarithm of the gamma function."
-msgstr "Returns the natural logarithm of the gamma function."
+msgstr "የ ተፈጥሯዊ ሎጋሪዝም ለ ጋማ ተግባር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -16248,7 +16248,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the natural logarithm of the gamma function is to be calculated."
-msgstr "The value for which the natural logarithm of the gamma function is to be calculated."
+msgstr "ዋጋ ነው የ ተፈጥሯዊ ሎጋሪዝም ለ ጋማ ተግባር የሚሰላለት"
#: scfuncs.src
msgctxt ""
@@ -16257,7 +16257,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the natural logarithm of the gamma function."
-msgstr "Returns the natural logarithm of the gamma function."
+msgstr "የ ተፈጥሯዊ ሎጋሪዝም ለ ጋማ ተግባር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -22316,7 +22316,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Capitalizes the first letter in all words."
-msgstr "Capitalizes the first letter in all words."
+msgstr "የ ሁሉንም ቃላቶች በ አቢይ ፊደሎች ማስጀመሪያ"
#: scfuncs.src
msgctxt ""
diff --git a/source/am/sc/uiconfig/scalc/ui.po b/source/am/sc/uiconfig/scalc/ui.po
index 983a4c0b5ea..bf1ff6ba44f 100644
--- a/source/am/sc/uiconfig/scalc/ui.po
+++ b/source/am/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-10 03:30+0000\n"
+"PO-Revision-Date: 2016-12-15 01:57+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: none\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481340649.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481767062.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -1949,14 +1949,13 @@ msgid "Grouped by"
msgstr "የተቀመጡት በቡድን"
#: covariancedialog.ui
-#, fuzzy
msgctxt ""
"covariancedialog.ui\n"
"CovarianceDialog\n"
"title\n"
"string.text"
msgid "Covariance"
-msgstr "Covariance"
+msgstr "ኮቫሪያንስ"
#: covariancedialog.ui
msgctxt ""
@@ -4296,7 +4295,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Logical"
-msgstr ""
+msgstr "ሎጂካል"
#: functionpanel.ui
msgctxt ""
@@ -5223,7 +5222,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select cells in the document to update the range."
-msgstr "ከሰነዱ ውስጥ ክፍሎች ይምረጡ መጠኑን ለማሻሻል"
+msgstr "ከ ሰነዱ ውስጥ ክፍሎች ይምረጡ መጠኑን ለማሻሻል"
#: managenamesdialog.ui
msgctxt ""
@@ -6186,7 +6185,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows Below"
-msgstr "ረድፎች ከ ስር ማስገቢያ"
+msgstr "ረድፎች ከ ታች ማስገቢያ"
#: notebookbar_groups.ui
msgctxt ""
@@ -12154,7 +12153,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Merge _delimiters"
-msgstr "Merge _delimiters"
+msgstr "_ምልክቶች ማዋሀጃ"
#: textimportcsv.ui
msgctxt ""
@@ -12505,7 +12504,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Page breaks"
-msgstr "_የ ገጽ መጨረሻ"
+msgstr "የ _ገጽ መጨረሻ"
#: tpviewpage.ui
msgctxt ""
diff --git a/source/am/scaddins/source/analysis.po b/source/am/scaddins/source/analysis.po
index a559b0a9202..31d199dab26 100644
--- a/source/am/scaddins/source/analysis.po
+++ b/source/am/scaddins/source/analysis.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-10-28 23:04+0000\n"
+"PO-Revision-Date: 2016-12-22 23:43+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.7\n"
-"X-POOTLE-MTIME: 1477695849.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482450206.000000\n"
#: analysis.src
msgctxt ""
@@ -436,7 +436,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the sum of a power series"
-msgstr "Returns the sum of a power series"
+msgstr "ይመልሳል ድምር ለ ሀይል ተከታታይ"
#: analysis.src
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The independent variable of the power series"
-msgstr "The independent variable of the power series"
+msgstr "ነፃ ተለዋዋጭ ለ ሀይል ተከታታይ"
#: analysis.src
msgctxt ""
@@ -472,7 +472,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The initial power to which x is to be raised"
-msgstr "The initial power to which x is to be raised"
+msgstr "መነሻው ሀይል x የሚነሳበት"
#: analysis.src
msgctxt ""
@@ -508,7 +508,7 @@ msgctxt ""
"9\n"
"string.text"
msgid "Set of coefficients by which each successive power of the variable x is multiplied"
-msgstr "Set of coefficients by which each successive power of the variable x is multiplied"
+msgstr "ኮኦፊሺየንት ማሰናጃ እያንዳንዱ ተከታታይ ሀይል ተለዋዋጭ x የሚባዛበት"
#: analysis.src
msgctxt ""
@@ -607,7 +607,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the square root of a number which has been multiplied by pi"
-msgstr "Returns the square root of a number which has been multiplied by pi"
+msgstr "የ ቁጥር ስኴር ሩት ይመልሳል በ ፓይ የ ተባዛ"
#: analysis.src
msgctxt ""
@@ -1650,7 +1650,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns a complex number raised to a real power"
-msgstr "Returns a complex number raised to a real power"
+msgstr "ይመልሳል የ ውስብስብ ቁጥር ሲነሳ በ ሪይል ሀይል"
#: analysis.src
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "Power to which the complex number is raised"
-msgstr "Power to which the complex number is raised"
+msgstr "ሀይል የ ውስብስብ ቁጥር የሚነሳበት"
#: analysis.src
msgctxt ""
@@ -1722,7 +1722,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the cosine of a complex number"
-msgstr "Returns the cosine of a complex number"
+msgstr "ለ ውስብስብ ቁጥር ኮሳይን ይመልሳል"
#: analysis.src
msgctxt ""
@@ -1848,7 +1848,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the natural logarithm of a complex number"
-msgstr "Returns the natural logarithm of a complex number"
+msgstr "የ ተፈጥሯዊ ሎጋሪዝም ለ ውስብስብ ቁጥር ይመልሳል"
#: analysis.src
msgctxt ""
@@ -2001,7 +2001,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the sine of a complex number"
-msgstr "Returns the sine of a complex number"
+msgstr "ለ ውስብስብ ቁጥር ሳይን ይመልሳል"
#: analysis.src
msgctxt ""
@@ -2073,7 +2073,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the square root of a complex number"
-msgstr "Returns the square root of a complex number"
+msgstr "የ ውስብስብ ቁጥር ስኴር ሩት ይመልሳል"
#: analysis.src
msgctxt ""
@@ -2127,7 +2127,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the tangent of a complex number"
-msgstr "Returns the tangent of a complex number"
+msgstr "ታንጀንት ለ ውስብስብ ቁጥር ይመልሳል"
#: analysis.src
msgctxt ""
@@ -2208,7 +2208,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the cotangent of a complex number"
-msgstr "Returns the cotangent of a complex number"
+msgstr "ኮታንጀንት ለ ውስብስብ ቁጥር ይመልሳል"
#: analysis.src
msgctxt ""
@@ -2235,7 +2235,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the hyperbolic sine of a complex number"
-msgstr "Returns the hyperbolic sine of a complex number"
+msgstr "የ ሀይፐርቦሊክ ሳይን ለ ውስብስብ ቁጥር ይመልሳል"
#: analysis.src
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the hyperbolic cosine of a complex number"
-msgstr "Returns the hyperbolic cosine of a complex number"
+msgstr "የ ሀይፐርቦሊክ ኮሳይን ለ ውስብስብ ቁጥር ይመልሳል"
#: analysis.src
msgctxt ""
@@ -6762,7 +6762,7 @@ msgctxt ""
"ANALYSIS_FUNCNAME_Impower\n"
"string.text"
msgid "IMPOWER"
-msgstr "IMPOWER"
+msgstr "ውስብስብ ቁጥር ሲነሳ በ ሀይል"
#: analysis_funcnames.src
msgctxt ""
diff --git a/source/am/scp2/source/writer.po b/source/am/scp2/source/writer.po
index 7501d4ba55a..e5bf05ee3c2 100644
--- a/source/am/scp2/source/writer.po
+++ b/source/am/scp2/source/writer.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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: 2015-06-22 00:08+0000\n"
+"PO-Revision-Date: 2016-12-14 01:31+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1434931689.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481679104.000000\n"
#: folderitem_writer.ulf
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_FI_TOOLTIP_WRITER\n"
"LngText.text"
msgid "Create and edit text and images in letters, reports, documents and Web pages by using Writer."
-msgstr "የቃላት መጻፊያን በመጠቀም ጽሁፎች እና ንድፎች ይፍጠሩ እና ያርሙ: መግለጫዎች: ሰነዶች: እና ድህረ ገጾችን"
+msgstr "የ ቃላት መጻፊያ በ መጠቀም ጽሁፎች እና ንድፎች ይፍጠሩ እና ያርሙ: መግለጫዎች: ሰነዶች: እና ድህረ ገጾችን"
#: module_writer.ulf
msgctxt ""
diff --git a/source/am/sd/source/ui/app.po b/source/am/sd/source/ui/app.po
index 714a174b160..cb95f8d5714 100644
--- a/source/am/sd/source/ui/app.po
+++ b/source/am/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-10 03:11+0000\n"
+"PO-Revision-Date: 2016-12-15 00:17+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481339514.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481761026.000000\n"
#: popup.src
msgctxt ""
@@ -1942,7 +1942,7 @@ msgctxt ""
"STR_HTMLEXP_HOMEPAGE\n"
"string.text"
msgid "Homepage"
-msgstr "የገጽ ቤት"
+msgstr "የ ገጽ ቤት"
#: strings.src
msgctxt ""
diff --git a/source/am/starmath/source.po b/source/am/starmath/source.po
index ceddaf5fc98..f1f68eff082 100644
--- a/source/am/starmath/source.po
+++ b/source/am/starmath/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-10 03:37+0000\n"
+"PO-Revision-Date: 2016-12-14 16:10+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481341031.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481731856.000000\n"
#: commands.src
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"RID_SQRTX_HELP\n"
"string.text"
msgid "Square Root"
-msgstr "Square Root"
+msgstr "ስኴር ሩት"
#: commands.src
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"RID_NROOTXY_HELP\n"
"string.text"
msgid "N-th Root"
-msgstr "N-th Root"
+msgstr "N-ኛ ሩት"
#: commands.src
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"RID_EX_HELP\n"
"string.text"
msgid "Exponential Function"
-msgstr "Exponential Function"
+msgstr "ኤክስፖኔንሺያል ተግባር"
#: commands.src
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"RID_EXPX_HELP\n"
"string.text"
msgid "Exponential Function"
-msgstr "Exponential Function"
+msgstr "ኤክስፖኔንሺያል ተግባር"
#: commands.src
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"RID_LNX_HELP\n"
"string.text"
msgid "Natural Logarithm"
-msgstr "Natural Logarithm"
+msgstr "የ ተፈጥሯዊ ሎጋሪዝም"
#: commands.src
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"RID_LOGX_HELP\n"
"string.text"
msgid "Logarithm"
-msgstr "Logarithm"
+msgstr "ሎጋሪዝም"
#: commands.src
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"RID_SINX_HELP\n"
"string.text"
msgid "Sine"
-msgstr "Sine"
+msgstr "ሳይን"
#: commands.src
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"RID_TANX_HELP\n"
"string.text"
msgid "Tangent"
-msgstr "Tangent"
+msgstr "ታንጀንት"
#: commands.src
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"RID_COTX_HELP\n"
"string.text"
msgid "Cotangent"
-msgstr "Cotangent"
+msgstr "ኮታንጀንት"
#: commands.src
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"RID_ARCSINX_HELP\n"
"string.text"
msgid "Arcsine"
-msgstr "አርክ ሳይን"
+msgstr "አርክሳይን"
#: commands.src
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"RID_ARCCOSX_HELP\n"
"string.text"
msgid "Arccosine"
-msgstr "አርክ ኮሳይን"
+msgstr "አርክኮሳይን"
#: commands.src
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"RID_ARCTANX_HELP\n"
"string.text"
msgid "Arctangent"
-msgstr "አርክ ታንጀንት"
+msgstr "አርክታንጀንት"
#: commands.src
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"RID_ARCCOTX_HELP\n"
"string.text"
msgid "Arccotangent"
-msgstr "አርኮ ታንጀንት"
+msgstr "አርክኮታንጀንት"
#: commands.src
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"RID_SINHX_HELP\n"
"string.text"
msgid "Hyperbolic Sine"
-msgstr "Hyperbolic Sine"
+msgstr "ሀይፐርቦሊክ ሳይን"
#: commands.src
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"RID_TANHX_HELP\n"
"string.text"
msgid "Hyperbolic Tangent"
-msgstr "Hyperbolic Tangent"
+msgstr "ሀይፐርቦሊክ ታንጀንት"
#: commands.src
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"RID_COTHX_HELP\n"
"string.text"
msgid "Hyperbolic Cotangent"
-msgstr "Hyperbolic Cotangent"
+msgstr "ሀይፐርቦሊክ ኮታንጀንት"
#: commands.src
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"RID_ARSINHX_HELP\n"
"string.text"
msgid "Area Hyperbolic Sine"
-msgstr "Area Hyperbolic Sine"
+msgstr "የ ሀይፐርቦሊክ ሳይን ቦታ"
#: commands.src
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"RID_ARTANHX_HELP\n"
"string.text"
msgid "Area Hyperbolic Tangent"
-msgstr "Area Hyperbolic Tangent"
+msgstr "የ ሀይፐርቦሊክ ታንጀንት ቦታ"
#: commands.src
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"RID_ARCOTHX_HELP\n"
"string.text"
msgid "Area Hyperbolic Cotangent"
-msgstr "Area Hyperbolic Cotangent"
+msgstr "የ ሀይፐርቦሊክ ኮታንጀንት ቦታ"
#: commands.src
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"RID_EXISTS_HELP\n"
"string.text"
msgid "There Exists"
-msgstr "There Exists"
+msgstr "እዛ ነበር"
#: commands.src
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"RID_NOTEXISTS_HELP\n"
"string.text"
msgid "There Not Exists"
-msgstr "There Not Exists"
+msgstr "እዛ አልነበረም"
#: commands.src
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"RID_LINT_FROMX_HELP\n"
"string.text"
msgid "Curve Integral Subscript Bottom"
-msgstr "Curve Integral Subscript Bottom"
+msgstr "ክብ ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#: commands.src
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"RID_LINT_TOX_HELP\n"
"string.text"
msgid "Curve Integral Superscript Top"
-msgstr "Double Integral Superscript Top"
+msgstr "ክብ ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#: commands.src
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"RID_LINT_FROMTOX_HELP\n"
"string.text"
msgid "Curve Integral Sup/Sub script"
-msgstr "Double Integral Sup/Sub script"
+msgstr "ክብ ኢንትግራል ከፍ/ዝቅ ብሎ በትንንሽ ፊደል መጻፊያ"
#: commands.src
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"RID_LLINTX_HELP\n"
"string.text"
msgid "Double Curve Integral"
-msgstr "Double Curve Integral"
+msgstr "ድርብ ክብ ኢንትግራል"
#: commands.src
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"RID_LLINT_FROMX_HELP\n"
"string.text"
msgid "Double Curve Integral Subscript Bottom"
-msgstr "Double Curve Integral Subscript Bottom"
+msgstr "ድርብ ክብ ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#: commands.src
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"RID_LLINT_TOX_HELP\n"
"string.text"
msgid "Double Curve Integral Superscript Top"
-msgstr "Double Curve Integral Superscript Top"
+msgstr "ድርብ ክብ ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#: commands.src
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"RID_LLINT_FROMTOX_HELP\n"
"string.text"
msgid "Double Curve Integral Sup/Sub script"
-msgstr "Double Curve Integral Sup/Sub script"
+msgstr "ድርብ ክብ ኢንትግራል ከፍ/ዝቅ ብሎ በትንንሽ ፊደል መጻፊያ"
#: commands.src
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"RID_LLLINTX_HELP\n"
"string.text"
msgid "Triple Curve Integral"
-msgstr "Triple Curve Integral"
+msgstr "ትሪፕል ክብ ኢንትግራል"
#: commands.src
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"RID_LLLINT_FROMX_HELP\n"
"string.text"
msgid "Triple Curve Integral Subscript Bottom"
-msgstr "Triple Curve Integral Subscript Bottom"
+msgstr "ትሪፕል ክብ ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#: commands.src
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"RID_LLLINT_TOX_HELP\n"
"string.text"
msgid "Triple Curve Integral Superscript Top"
-msgstr "Triple Curve Integral Superscript Top"
+msgstr "ትሪፕል ክብ ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#: commands.src
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"RID_LLLINT_FROMTOX_HELP\n"
"string.text"
msgid "Triple Curve Integral Sup/Sub script"
-msgstr "Triple Curve Integral Sup/Sub script"
+msgstr "ትሪፕል ክብ ኢንትግራል ከፍ/ዝቅ ብሎ በትንንሽ ፊደል መጻፊያ"
#: commands.src
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"RID_ACUTEX_HELP\n"
"string.text"
msgid "Acute Accent"
-msgstr "Acute Accent"
+msgstr "አኪዩት አክሰንት"
#: commands.src
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"RID_BREVEX_HELP\n"
"string.text"
msgid "Breve"
-msgstr "Breve"
+msgstr "ብሬቬ"
#: commands.src
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"RID_CHECKX_HELP\n"
"string.text"
msgid "Reverse Circumflex"
-msgstr "Reverse Circumflex"
+msgstr "የ ተገለበጠ ስርከምፍሌክስ"
#: commands.src
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"RID_HATX_HELP\n"
"string.text"
msgid "Circumflex"
-msgstr "Circumflex"
+msgstr "ስርከምፍሌክስ"
#: commands.src
msgctxt ""
@@ -1030,7 +1030,7 @@ msgctxt ""
"RID_TILDEX_HELP\n"
"string.text"
msgid "Tilde"
-msgstr "Tilde"
+msgstr "ቲልዴ"
#: commands.src
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"RID_LRBRACEX_HELP\n"
"string.text"
msgid "Braces"
-msgstr "ድጋፎች"
+msgstr "ብሬስስ"
#: commands.src
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"RID_LRANGLEX_HELP\n"
"string.text"
msgid "Angle Brackets"
-msgstr "Angle Brackets"
+msgstr "አንግል ቅንፎች"
#: commands.src
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"RID_SLRBRACEX_HELP\n"
"string.text"
msgid "Braces (Scalable)"
-msgstr "ድጋፎች (ሊመጠን የሚችል)"
+msgstr "ብሬስስ (ሊመጠን የሚችል)"
#: commands.src
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"RID_SLRANGLEX_HELP\n"
"string.text"
msgid "Angle Brackets (Scalable)"
-msgstr "Angle Brackets (Scalable)"
+msgstr "አንግል ቅንፎች (ሊመጠን የሚችል)"
#: commands.src
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"RID_XOVERBRACEY_HELP\n"
"string.text"
msgid "Braces Top (Scalable)"
-msgstr "ድጋፎች ከ ላይ (ሊመጠን የሚችል)"
+msgstr "ብሬስስ ከ ላይ (ሊመጠን የሚችል)"
#: commands.src
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"RID_XUNDERBRACEY_HELP\n"
"string.text"
msgid "Braces Bottom (Scalable)"
-msgstr "ድጋፎች ከ ታች (ሊመጠን የሚችል)"
+msgstr "ብሬስስ ከ ታች (ሊመጠን የሚችል)"
#: commands.src
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"RID_RSUPX_HELP\n"
"string.text"
msgid "Power"
-msgstr "Power"
+msgstr "ሀይል"
#: commands.src
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"RID_RE_HELP\n"
"string.text"
msgid "Real Part"
-msgstr "Real Part"
+msgstr "ሪይል አካል"
#: commands.src
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"RID_IM_HELP\n"
"string.text"
msgid "Imaginary Part"
-msgstr "Imaginary Part"
+msgstr "ኢማጂነሪ አካል"
#: commands.src
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"RID_INFINITY_HELP\n"
"string.text"
msgid "Infinity"
-msgstr "Infinity"
+msgstr "ኢንፊኒቲ"
#: commands.src
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"RID_NABLA_HELP\n"
"string.text"
msgid "Nabla"
-msgstr "Nabla"
+msgstr "ናብላ"
#: commands.src
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"RID_WP_HELP\n"
"string.text"
msgid "Weierstrass p"
-msgstr "Weierstrass p"
+msgstr "ዌይርስታራስ p"
#: commands.src
msgctxt ""
@@ -1734,7 +1734,7 @@ msgctxt ""
"RID_SETZ_HELP\n"
"string.text"
msgid "Integers Set"
-msgstr "Integers Set"
+msgstr "የ ኢንቲጀር ስብስብ"
#: commands.src
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"RID_SETQ_HELP\n"
"string.text"
msgid "Set of Rational Numbers"
-msgstr "Set of Rational Numbers"
+msgstr "የ ራሺናል ቁጥሮች ስብስብ"
#: commands.src
msgctxt ""
@@ -1750,7 +1750,7 @@ msgctxt ""
"RID_SETR_HELP\n"
"string.text"
msgid "Real Numbers Set"
-msgstr "Real Numbers Set"
+msgstr "የ ሪያል ቁጥሮች ስብስብ"
#: commands.src
msgctxt ""
@@ -1758,7 +1758,7 @@ msgctxt ""
"RID_SETC_HELP\n"
"string.text"
msgid "Complex Numbers Set"
-msgstr "Complex Numbers Set"
+msgstr "የ ውስብስብ ቁጥሮች ስብስብ"
#: commands.src
msgctxt ""
@@ -1766,7 +1766,7 @@ msgctxt ""
"RID_WIDEHATX_HELP\n"
"string.text"
msgid "Large Circumflex"
-msgstr "Large Circumflex"
+msgstr "ትልቅ ስርከምፍሌክስ"
#: commands.src
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"RID_WIDETILDEX_HELP\n"
"string.text"
msgid "Large Tilde"
-msgstr "Large Tilde"
+msgstr "ትልቅ ቲልዴ"
#: commands.src
msgctxt ""
@@ -1790,7 +1790,7 @@ msgctxt ""
"RID_HBAR_HELP\n"
"string.text"
msgid "h Bar"
-msgstr "h Bar"
+msgstr "h ባር"
#: commands.src
msgctxt ""
@@ -1798,7 +1798,7 @@ msgctxt ""
"RID_LAMBDABAR_HELP\n"
"string.text"
msgid "Lambda Bar"
-msgstr "Lambda Bar"
+msgstr "ላምብዳ ባር"
#: commands.src
msgctxt ""
diff --git a/source/am/svtools/source/dialogs.po b/source/am/svtools/source/dialogs.po
index eac1bfd3f36..78d0b24adba 100644
--- a/source/am/svtools/source/dialogs.po
+++ b/source/am/svtools/source/dialogs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-10-25 20:46+0000\n"
+"PO-Revision-Date: 2016-12-15 00:18+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1477428382.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481761086.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"STR_FIELD_HOMETEL\n"
"string.text"
msgid "Tel: Home"
-msgstr "የቤት: ስልክ"
+msgstr "የ ቤት: ስልክ"
#: addresstemplate.src
msgctxt ""
diff --git a/source/am/svtools/source/misc.po b/source/am/svtools/source/misc.po
index 62b5664bf87..a721de7449b 100644
--- a/source/am/svtools/source/misc.po
+++ b/source/am/svtools/source/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-10-25 19:03+0000\n"
+"PO-Revision-Date: 2016-12-14 15:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1477422223.000000\n"
+"X-POOTLE-MTIME: 1481730375.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3840,7 +3840,7 @@ msgctxt ""
"LANGUAGE_USER_INTERLINGUE\n"
"pairedlist.text"
msgid "Interlingue Occidental"
-msgstr ""
+msgstr "Interlingue Occidental"
#: langtab.src
msgctxt ""
@@ -3849,7 +3849,7 @@ msgctxt ""
"LANGUAGE_USER_APATANI\n"
"pairedlist.text"
msgid "Apatani"
-msgstr ""
+msgstr "Apatani"
#: langtab.src
msgctxt ""
@@ -3858,7 +3858,7 @@ msgctxt ""
"LANGUAGE_USER_ENGLISH_MAURITIUS\n"
"pairedlist.text"
msgid "English (Mauritius)"
-msgstr ""
+msgstr "ኢንግልዝኛ (ሞሪሸስ)"
#: langtab.src
msgctxt ""
@@ -3867,7 +3867,7 @@ msgctxt ""
"LANGUAGE_USER_FRENCH_MAURITIUS\n"
"pairedlist.text"
msgid "French (Mauritius)"
-msgstr ""
+msgstr "ፈረንሳይኛ (ሞሪሸስ)"
#: langtab.src
msgctxt ""
@@ -3876,7 +3876,7 @@ msgctxt ""
"LANGUAGE_USER_SILESIAN\n"
"pairedlist.text"
msgid "Silesian"
-msgstr ""
+msgstr "Silesian"
#: langtab.src
msgctxt ""
@@ -3885,7 +3885,7 @@ msgctxt ""
"LANGUAGE_USER_HUNGARIAN_ROVAS\n"
"pairedlist.text"
msgid "Hungarian (Szekely-Hungarian Rovas)"
-msgstr ""
+msgstr "Hungarian (Szekely-Hungarian Rovas)"
#: svtools.src
msgctxt ""
@@ -4165,7 +4165,7 @@ msgctxt ""
"STR_SVT_PRNDLG_POWER_SAVE\n"
"string.text"
msgid "Power save mode"
-msgstr "ሀይል በማዳኛ ዘዴ"
+msgstr "ሀይል ማዳኛ ዘዴ"
#: svtools.src
msgctxt ""
diff --git a/source/am/svx/source/dialog.po b/source/am/svx/source/dialog.po
index f4019419a41..0b65a9a77c1 100644
--- a/source/am/svx/source/dialog.po
+++ b/source/am/svx/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-10 03:38+0000\n"
+"PO-Revision-Date: 2016-12-15 01:58+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481341086.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481767114.000000\n"
#: SafeMode.src
msgctxt ""
@@ -3085,7 +3085,7 @@ msgctxt ""
"RID_SVXSTR_LEND0\n"
"string.text"
msgid "Arrow concave"
-msgstr "concave ቀስት"
+msgstr "ኮንኬቭ ቀስት"
#: sdstring.src
msgctxt ""
@@ -4169,7 +4169,7 @@ msgctxt ""
"STR_BELOW\n"
"string.text"
msgid "Below"
-msgstr "ከስር"
+msgstr "ከ ታች"
#: swframeposstrings.src
msgctxt ""
@@ -5078,7 +5078,7 @@ msgctxt ""
"RID_SUBSETSTR_SPACING_MODIFIERS\n"
"string.text"
msgid "Spacing Modifier Letters"
-msgstr "የደብዳቤ ክፍተት ማሻሻያ"
+msgstr "የ ደብዳቤ ክፍተት ማሻሻያ"
#: ucsubset.src
msgctxt ""
@@ -5105,7 +5105,7 @@ msgctxt ""
"RID_SUBSETSTR_GREEK_SYMS_COPTIC\n"
"string.text"
msgid "Greek Symbols And Coptic"
-msgstr "Greek Symbols And Coptic"
+msgstr "የ ግሪክ እና ኮፕቲክ ምልክቶች"
#: ucsubset.src
msgctxt ""
@@ -5348,7 +5348,7 @@ msgctxt ""
"RID_SUBSETSTR_LETTERLIKE_SYMBOLS\n"
"string.text"
msgid "Letterlike Symbols"
-msgstr "የደብዳቤ አይነት ምልክቶች"
+msgstr "የ ደብዳቤ አይነት ምልክቶች"
#: ucsubset.src
msgctxt ""
@@ -5699,7 +5699,7 @@ msgctxt ""
"RID_SUBSETSTR_BYZANTINE_MUSICAL_SYMBOLS\n"
"string.text"
msgid "Byzantine Musical Symbols"
-msgstr "Byzantine Musical Symbols"
+msgstr "የ ቤይዛንቲን የ ሙዚቃ ምልክቶች"
#: ucsubset.src
msgctxt ""
@@ -5708,7 +5708,7 @@ msgctxt ""
"RID_SUBSETSTR_MUSICAL_SYMBOLS\n"
"string.text"
msgid "Musical Symbols"
-msgstr "የሙዚቃ ምልክቶች"
+msgstr "የ ሙዚቃ ምልክቶች"
#: ucsubset.src
msgctxt ""
@@ -5717,7 +5717,7 @@ msgctxt ""
"RID_SUBSETSTR_MATHEMATICAL_ALPHANUMERIC_SYMBOLS\n"
"string.text"
msgid "Mathematical Alphanumeric Symbols"
-msgstr "Mathematical Alphanumeric Symbols"
+msgstr "የ ሂሳብ እና የ ፊደል እና ቁጥር ምልክቶች"
#: ucsubset.src
msgctxt ""
@@ -5825,7 +5825,7 @@ msgctxt ""
"RID_SUBSETSTR_KHMER_SYMBOLS\n"
"string.text"
msgid "Khmer Symbols"
-msgstr "Khmer Symbols"
+msgstr "የ ከህመር ምልክቶች"
#: ucsubset.src
msgctxt ""
@@ -5852,7 +5852,7 @@ msgctxt ""
"RID_SUBSETSTR_YIJING_HEXAGRAM_SYMBOLS\n"
"string.text"
msgid "Yijing Hexagram Symbols"
-msgstr "Yijing Hexagram Ssymbols"
+msgstr "የ ዪጂንግ ሄክሳግራም ምልክቶች"
#: ucsubset.src
msgctxt ""
@@ -6024,7 +6024,7 @@ msgctxt ""
"RID_SUBSETSTR_MISC_MATH_SYMS_A\n"
"string.text"
msgid "Miscellaneous Mathematical Symbols-A"
-msgstr "የተለያዩ የሂሳብ ምልክቶች-A"
+msgstr "የተለያዩ የ ሂሳብ ምልክቶች-A"
#: ucsubset.src
msgctxt ""
@@ -6060,7 +6060,7 @@ msgctxt ""
"RID_SUBSETSTR_MISC_MATH_SYMS_B\n"
"string.text"
msgid "Miscellaneous Mathematical Symbols-B"
-msgstr "የተለያዩ የሂሳብ ምልክቶች-B"
+msgstr "የተለያዩ የ ሂሳብ ምልክቶች-B"
#: ucsubset.src
msgctxt ""
@@ -6177,7 +6177,7 @@ msgctxt ""
"RID_SUBSETSTR_TAI_XUAN_JING_SYMBOLS\n"
"string.text"
msgid "Tai Xuan Jing Symbols"
-msgstr "Tai Xuan Jing Symbols"
+msgstr "የ ታዪ ሹዋን ጂንግ ምልክቶች"
#: ucsubset.src
msgctxt ""
@@ -6537,7 +6537,7 @@ msgctxt ""
"RID_SUBSETSTR_ANCIENT_SYMBOLS\n"
"string.text"
msgid "Ancient Symbols"
-msgstr "የጥንት ምልክቶች"
+msgstr "የ ጥንት ምልክቶች"
#: ucsubset.src
msgctxt ""
@@ -6780,7 +6780,7 @@ msgctxt ""
"RID_SUBSETSTR_RUMI_NUMERAL_SYMBOLS\n"
"string.text"
msgid "Rumi Numeral Symbols"
-msgstr "Rumi Numeral Symbols"
+msgstr "የ ሩሚ የ ሂሳብ ምልክቶች"
#: ucsubset.src
msgctxt ""
@@ -6915,7 +6915,7 @@ msgctxt ""
"RID_SUBSETSTR_ALCHEMICAL_SYMBOLS\n"
"string.text"
msgid "Alchemical Symbols"
-msgstr "Alchemical Symbols"
+msgstr "አልኬሚካል ምልክቶች"
#: ucsubset.src
msgctxt ""
@@ -6933,7 +6933,7 @@ msgctxt ""
"RID_SUBSETSTR_ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS\n"
"string.text"
msgid "Arabic Mathematical Alphabetic Symbols"
-msgstr "Arabic Mathematical Alphabetic Symbols"
+msgstr "የ አረብኛ የ ሂሳብ ምልክቶች"
#: ucsubset.src
msgctxt ""
diff --git a/source/am/svx/source/gallery2.po b/source/am/svx/source/gallery2.po
index 8e1bcb1c108..dc8f365dcd3 100644
--- a/source/am/svx/source/gallery2.po
+++ b/source/am/svx/source/gallery2.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-14 00:43+0000\n"
+"PO-Revision-Date: 2016-12-15 00:19+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479084191.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481761173.000000\n"
#: gallery.src
msgctxt ""
@@ -378,7 +378,7 @@ msgctxt ""
"RID_GALLERYSTR_THEME_HOMEPAGE\n"
"string.text"
msgid "Homepage"
-msgstr "የቤት ገጽ"
+msgstr "የ ገጽ ቤት"
#: galtheme.src
msgctxt ""
diff --git a/source/am/svx/source/items.po b/source/am/svx/source/items.po
index 6a383a4e524..a5719c9d1f7 100644
--- a/source/am/svx/source/items.po
+++ b/source/am/svx/source/items.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-29 02:02+0000\n"
+"PO-Revision-Date: 2016-12-15 00:57+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480384937.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481763439.000000\n"
#: svxerr.src
msgctxt ""
@@ -496,7 +496,7 @@ msgctxt ""
"Page Break\n"
"itemlist.text"
msgid "Page Break"
-msgstr "የገጽ መጨረሻ"
+msgstr "የ ገጽ መጨረሻ"
#: svxitems.src
msgctxt ""
diff --git a/source/am/svx/source/tbxctrls.po b/source/am/svx/source/tbxctrls.po
index f8cb9fc6cf3..c0412b26742 100644
--- a/source/am/svx/source/tbxctrls.po
+++ b/source/am/svx/source/tbxctrls.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-06 16:49+0000\n"
+"PO-Revision-Date: 2016-12-14 15:59+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481042973.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481731165.000000\n"
#: colrctrl.src
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"RID_SVXSTR_INFINITY\n"
"string.text"
msgid "~Infinity"
-msgstr "~መጨረሻ የሌለው"
+msgstr "~ኢንፊኒቲ"
#: fontworkgallery.src
msgctxt ""
diff --git a/source/am/svx/uiconfig/ui.po b/source/am/svx/uiconfig/ui.po
index 79be0a0133d..69e36ee8a42 100644
--- a/source/am/svx/uiconfig/ui.po
+++ b/source/am/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-09 18:03+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-15 02:00+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481306598.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481767232.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3058,7 +3058,7 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
+msgid "Ignore diac_ritics"
msgstr ""
#: findreplacedialog.ui
@@ -3067,7 +3067,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -4487,7 +4487,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Below Paragraph Spacing"
-msgstr "ከ አንቀጽ በታች ክፍተት"
+msgstr "ከ አንቀጽ ክፍተት በ ታች"
#: passwd.ui
msgctxt ""
@@ -5163,11 +5163,11 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
-msgstr "ተጨማሪዎች ማጥፊያ"
+msgid "Extensions"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
@@ -5181,11 +5181,20 @@ msgstr "ሁሉንም የ ተጠቃሚ ተጨማሪዎች ማጥፊያ"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
-msgstr "ሁሉንም ተጨማሪዎች ማጥፊያ (የሚካፈሉትን እና ጥቅሎችን ያካትታል)"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of bundled extensions"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
@@ -6094,7 +6103,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Below Paragraph Spacing"
-msgstr "ከ አንቀጽ ክፍተት በታች"
+msgstr "ከ አንቀጽ ክፍተት በ ታች"
#: sidebarparagraph.ui
msgctxt ""
@@ -6103,7 +6112,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Below Paragraph Spacing"
-msgstr "ከ አንቀጽ በታች ክፍተት"
+msgstr "ከ አንቀጽ ክፍተት በ ታች"
#: sidebarparagraph.ui
msgctxt ""
diff --git a/source/am/sw/source/core/undo.po b/source/am/sw/source/core/undo.po
index b37669acdf6..f79e821c17b 100644
--- a/source/am/sw/source/core/undo.po
+++ b/source/am/sw/source/core/undo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-02 15:15+0000\n"
+"PO-Revision-Date: 2016-12-14 02:17+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480691740.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481681863.000000\n"
#: undo.src
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"STR_TABLE_MERGE\n"
"string.text"
msgid "Merge Cells"
-msgstr "ክፍሎች ማጋጠሚያ"
+msgstr "ክፍሎች ማዋሀጃ"
#: undo.src
msgctxt ""
diff --git a/source/am/sw/source/ui/app.po b/source/am/sw/source/ui/app.po
index 48100787f76..dd12d017190 100644
--- a/source/am/sw/source/ui/app.po
+++ b/source/am/sw/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-02 15:29+0000\n"
+"PO-Revision-Date: 2016-12-15 02:01+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480692577.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481767275.000000\n"
#: app.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_PRINT_MERGE_MACRO\n"
"string.text"
msgid "Print form letters"
-msgstr "የፎርም ደብዳቤዎች ማተሚያ"
+msgstr "የ ፎርም ደብዳቤዎች ማተሚያ"
#: app.src
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"STR_CAPTION_ABOVE\n"
"string.text"
msgid "Above"
-msgstr "ላይ"
+msgstr "ከ ላይ"
#: app.src
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"STR_CAPTION_BELOW\n"
"string.text"
msgid "Below"
-msgstr "ታች"
+msgstr "ከ ታች"
#: app.src
msgctxt ""
@@ -1132,7 +1132,7 @@ msgctxt ""
"STR_ERR_TABLE_MERGE\n"
"string.text"
msgid "Selected table cells are too complex to merge."
-msgstr "የተመረጠውን የሰንጠርዥ ክፍል ለማዋሀድ በጣም ውስብስብ ነው"
+msgstr "የ ተመረጠውን የ ሰንጠርዥ ክፍል ለማዋሀድ በጣም ውስብስብ ነው"
#: app.src
msgctxt ""
diff --git a/source/am/sw/source/ui/dbui.po b/source/am/sw/source/ui/dbui.po
index b84698eceb2..b3234fe74b1 100644
--- a/source/am/sw/source/ui/dbui.po
+++ b/source/am/sw/source/ui/dbui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2016-10-22 23:22+0000\n"
+"PO-Revision-Date: 2016-12-15 02:02+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.7\n"
-"X-POOTLE-MTIME: 1477178533.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481767320.000000\n"
#: dbui.src
msgctxt ""
@@ -418,7 +418,7 @@ msgctxt ""
"ST_DRAGSALUTATION\n"
"string.text"
msgid "1. ~Drag salutation elements into the box below"
-msgstr "1. ~ይጎትቱ የሰላምታ አካላትን እታች ወዳለው ሳጥን"
+msgstr "1. ~ይጎትቱ የ ሰላምታ አካሎችን እታች ወዳለው ሳጥን ውስጥ"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/am/sw/source/ui/fldui.po b/source/am/sw/source/ui/fldui.po
index 0997d9cd9df..3fffb0c951b 100644
--- a/source/am/sw/source/ui/fldui.po
+++ b/source/am/sw/source/ui/fldui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-12-10 03:14+0000\n"
+"PO-Revision-Date: 2016-12-15 01:31+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481339644.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481765496.000000\n"
#: fldui.src
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"FLD_EU_TELPRIV\n"
"string.text"
msgid "Tel. (Home)"
-msgstr "ስልክ (የቤት)"
+msgstr "ስልክ (የ ቤት)"
#: fldui.src
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"FMT_REF_UPDOWN\n"
"string.text"
msgid "Above/Below"
-msgstr "ላይ / ታች"
+msgstr "ከ ላይ/ከ ታች"
#: fldui.src
msgctxt ""
diff --git a/source/am/sw/source/ui/utlui.po b/source/am/sw/source/ui/utlui.po
index 5d2763199c5..869552d39c3 100644
--- a/source/am/sw/source/ui/utlui.po
+++ b/source/am/sw/source/ui/utlui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 20:04+0100\n"
+"POT-Creation-Date: 2016-12-23 20:24+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"
@@ -1624,7 +1624,7 @@ msgctxt ""
"STR_AUTOFMTREDL_CPTL_STT_SENT+1\n"
"string.text"
msgid "Capitalize first letter of sentences"
-msgstr "Capitalize first letter of sentences"
+msgstr "ሁሉንም አረፍተ ነገር በ አቢይ ፊደል መጀመሪያውን መጻፊያ"
#: utlui.src
msgctxt ""
diff --git a/source/am/sw/source/uibase/ribbar.po b/source/am/sw/source/uibase/ribbar.po
index c04bf42b87d..eba60c00d8c 100644
--- a/source/am/sw/source/uibase/ribbar.po
+++ b/source/am/sw/source/uibase/ribbar.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-02 15:43+0000\n"
+"PO-Revision-Date: 2016-12-14 15:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480693384.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481730407.000000\n"
#: inputwin.src
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"MN_CALC_SQRT\n"
"menuitem.text"
msgid "Square Root"
-msgstr "Square Root"
+msgstr "ስኴር ሩት"
#: inputwin.src
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"MN_CALC_POW\n"
"menuitem.text"
msgid "Power"
-msgstr "Power"
+msgstr "ሀይል"
#: inputwin.src
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"MN_CALC_SIN\n"
"menuitem.text"
msgid "Sine"
-msgstr "Sine"
+msgstr "ሳይን"
#: inputwin.src
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"MN_CALC_TAN\n"
"menuitem.text"
msgid "Tangent"
-msgstr "Tangent"
+msgstr "ታንጀንት"
#: inputwin.src
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"MN_CALC_ASIN\n"
"menuitem.text"
msgid "Arcsine"
-msgstr "አርክ ሳይን"
+msgstr "አርክሳይን"
#: inputwin.src
msgctxt ""
@@ -248,7 +248,7 @@ msgctxt ""
"MN_CALC_ACOS\n"
"menuitem.text"
msgid "Arccosine"
-msgstr "አርክ ኮሳይን"
+msgstr "አርክኮሳይን"
#: inputwin.src
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"MN_CALC_ATAN\n"
"menuitem.text"
msgid "Arctangent"
-msgstr "አርክ ታንጀንት"
+msgstr "አርክታንጀንት"
#: inputwin.src
msgctxt ""
diff --git a/source/am/sw/uiconfig/swriter/ui.po b/source/am/sw/uiconfig/swriter/ui.po
index cd79b60cdb3..325c42aeb5c 100644
--- a/source/am/sw/uiconfig/swriter/ui.po
+++ b/source/am/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-12-10 03:42+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-15 02:03+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: none\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481341322.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481767427.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -1040,7 +1040,7 @@ msgctxt ""
"AtkObject::accessible-description\n"
"string.text"
msgid "Home telephone number"
-msgstr "የቤት ስልክ ቁጥር"
+msgstr "የ ቤት ስልክ ቁጥር"
#: businessdatapage.ui
msgctxt ""
@@ -5004,7 +5004,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Above"
-msgstr "_ላይ"
+msgstr "ከ _ላይ"
#: formattablepage.ui
msgctxt ""
@@ -5013,7 +5013,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Below"
-msgstr "_ታች"
+msgstr "ከ _ታች"
#: formattablepage.ui
msgctxt ""
@@ -7641,7 +7641,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fields are used to personalize form letters. The fields are placeholders for data from a data source, such as a database. The fields in the form letter must be connected to the data source."
-msgstr "ሜዳዎች የሚጠቅሙት የደብዳቤ ፎርሞችን ለማሻሻል ነው ፡ ሜዳዎቹ ቦታ ያዢ ናቸው ለዳታው ከዳታ ምንጭ ውስጥ ፡ እንደ ዳታቤዝ ሜዳዎቹ በደብዳቤው ፎርም ውስጥ ከዳታ ምንጭ ጋር መገናኘት አለባቸው"
+msgstr "ሜዳዎች የሚጠቅሙት የ ደብዳቤ ፎርሞችን ለማሻሻል ነው: ሜዳዎቹ ቦታ ያዢ ናቸው ለ ዳታው ከ ዳታ ምንጭ ውስጥ: እንደ ዳታቤዝ ሜዳዎቹ በ ደብዳቤው ፎርም ውስጥ ከ ዳታ ምንጭ ጋር መገናኘት አለባቸው"
#: mergeconnectdialog.ui
msgctxt ""
@@ -9824,24 +9824,6 @@ msgstr "ዘዴ"
#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
"label\n"
"string.text"
@@ -13544,7 +13526,7 @@ msgctxt ""
"AtkObject::accessible-description\n"
"string.text"
msgid "Home telephone number"
-msgstr "የቤት ስልክ ቁጥር"
+msgstr "የ ቤት ስልክ ቁጥር"
#: privateuserpage.ui
msgctxt ""
@@ -13607,7 +13589,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Home telephone number"
-msgstr "የቤት ስልክ ቁጥር"
+msgstr "የ ቤት ስልክ ቁጥር"
#: privateuserpage.ui
msgctxt ""
@@ -15362,7 +15344,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Allow row to break a_cross pages and columns"
-msgstr "ረድፍ በገጾች እና አምዶች _ባሻገር እንዲከፈሉ መፍቀጃ"
+msgstr "ረድፍ በገጾች እና አምዶች ባ_ሻገር እንዲከፈሉ መፍቀጃ"
#: tabletextflowpage.ui
msgctxt ""
@@ -16199,7 +16181,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ruby text below/left from base text"
-msgstr "Ruby text below/left from base text"
+msgstr "የ Ruby ጽሁፍ ከ ታች/በ ግራ በኩል ከ መሰረታዊ ጽሁፍ አጠገብ"
#: textgridpage.ui
msgctxt ""
diff --git a/source/am/swext/mediawiki/help.po b/source/am/swext/mediawiki/help.po
index c0fd4c1649f..94f30666c6e 100644
--- a/source/am/swext/mediawiki/help.po
+++ b/source/am/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: 2016-12-07 15:50+0000\n"
+"PO-Revision-Date: 2016-12-15 01:22+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481125835.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481764953.000000\n"
#: help.tree
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"bm_id3154408\n"
"help.text"
msgid "<bookmark_value>Wiki;Wiki Publisher</bookmark_value><bookmark_value>Wiki Publisher</bookmark_value><bookmark_value>extensions;MediaWiki</bookmark_value>"
-msgstr "<bookmark_value>ዊኪ ;ዊኪ አታሚ</bookmark_value><bookmark_value>ዊኪ አታሚ</bookmark_value><bookmark_value>ተጨማሪዎች ;MediaWiki </bookmark_value>"
+msgstr "<bookmark_value>ዊኪ: ዊኪ አታሚ</bookmark_value><bookmark_value>ዊኪ አታሚ</bookmark_value><bookmark_value>ተጨማሪዎች: MediaWiki </bookmark_value>"
#: wiki.xhp
msgctxt ""
diff --git a/source/am/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po b/source/am/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
index 521582569c7..75895373827 100644
--- a/source/am/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
+++ b/source/am/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: 2016-01-30 01:24+0000\n"
+"PO-Revision-Date: 2016-12-15 01:24+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1454117054.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481765076.000000\n"
#: WikiExtension.xcu
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"Dlg_MediaWiki_Title\n"
"value.text"
msgid "MediaWiki"
-msgstr "ሜዲያ ዊኪ"
+msgstr "MediaWiki"
#: WikiExtension.xcu
msgctxt ""
@@ -275,7 +275,7 @@ msgctxt ""
"Dlg_EditSetting_WikiLine\n"
"value.text"
msgid "MediaWiki Server"
-msgstr "MediaWiki Server"
+msgstr "የ Media~Wiki ሰርቨር"
#: WikiExtension.xcu
msgctxt ""
diff --git a/source/am/wizards/source/formwizard.po b/source/am/wizards/source/formwizard.po
index e4d485bce15..c70bfce9311 100644
--- a/source/am/wizards/source/formwizard.po
+++ b/source/am/wizards/source/formwizard.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2016-12-10 03:16+0000\n"
+"PO-Revision-Date: 2016-12-22 23:48+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481339782.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482450522.000000\n"
#: dbwizres.src
msgctxt ""
@@ -664,7 +664,7 @@ msgctxt ""
"RID_DB_FORM_WIZARD_START + 39\n"
"string.text"
msgid "In Blocks - Labels Above"
-msgstr "በመደቦች - ምልክቶች በቀኝ"
+msgstr "በ መደብ - ምልክቶች ከ ላይ"
#: dbwizres.src
msgctxt ""
@@ -1500,7 +1500,7 @@ msgctxt ""
"RID_DB_QUERY_WIZARD_START + 89\n"
"string.text"
msgid "The condition '<FIELDNAME> <LOGICOPERATOR> <VALUE>' was chosen twice. Each condition can only be chosen once"
-msgstr "ሁኔታው '<FIELDNAME> <LOGICOPERATOR> <VALUE>' ሁለት ጊዜ ተመርጧል ፡ እያንዳንዱ ሁኔታ መምረጥ የሚቻለው አንድ ጊዜ ብቻ ነው"
+msgstr "ሁኔታው '<FIELDNAME> <LOGICOPERATOR> <VALUE>' ሁለት ጊዜ ተመርጧል: እያንዳንዱ ሁኔታ መምረጥ የሚቻለው አንድ ጊዜ ብቻ ነው"
#: dbwizres.src
msgctxt ""
@@ -2092,7 +2092,7 @@ msgctxt ""
"RID_DB_REPORT_WIZARD_START + 85\n"
"string.text"
msgid "In blocks, labels above"
-msgstr "በመደብ ፡ ምልክቶች ከላይ"
+msgstr "በመደብ: ምልክቶች ከ ላይ"
#: dbwizres.src
msgctxt ""
@@ -2777,7 +2777,7 @@ msgctxt ""
"RID_LETTERWIZARDDIALOG_START + 1\n"
"string.text"
msgid "Letter Wizard"
-msgstr "የደብዳቤ አዋቂ"
+msgstr "የ ደብዳቤ አዋቂ"
#: dbwizres.src
msgctxt ""
@@ -2817,7 +2817,7 @@ msgctxt ""
"RID_LETTERWIZARDDIALOG_START + 6\n"
"string.text"
msgid "~Use letterhead paper with pre-printed elements"
-msgstr "በቅድሚያ-የታተሙ አርእስት ያለው የደብዳቤ ወረቀት አካላቶችን ~ይጠቀሙ"
+msgstr "በቅድሚያ-የታተመ አርእስት ያለው የ ደብዳቤ ወረቀት አካላቶችን ~ይጠቀሙ"
#: dbwizres.src
msgctxt ""
@@ -2873,7 +2873,7 @@ msgctxt ""
"RID_LETTERWIZARDDIALOG_START + 13\n"
"string.text"
msgid "Letter Signs"
-msgstr "የፊደል ምልክቶች"
+msgstr "የ ፊደል ምልክቶች"
#: dbwizres.src
msgctxt ""
@@ -2969,7 +2969,7 @@ msgctxt ""
"RID_LETTERWIZARDDIALOG_START + 25\n"
"string.text"
msgid "Letter Template"
-msgstr "የደብዳቤ ቴምፕሌት"
+msgstr "የ ደብዳቤ ቴምፕሌት"
#: dbwizres.src
msgctxt ""
@@ -2985,7 +2985,7 @@ msgctxt ""
"RID_LETTERWIZARDDIALOG_START + 27\n"
"string.text"
msgid "Make ~manual changes to this letter template"
-msgstr "የዚህን ደብዳቤ ቴምፕሌት ~በእጅ መቀየሪያ"
+msgstr "የዚህን ደብዳቤ ቴምፕሌት በ ~እጅ መቀየሪያ"
#: dbwizres.src
msgctxt ""
@@ -3201,7 +3201,7 @@ msgctxt ""
"RID_LETTERWIZARDDIALOG_START + 55\n"
"string.text"
msgid "Specify items already on your letterhead paper"
-msgstr "በደብዳቤ አርእስት ወረቀት ላይ ያሉትን እቃዎች ይወስኑ"
+msgstr "በ ደብዳቤ አርእስት ወረቀት ላይ ያሉትን እቃዎች ይወስኑ"
#: dbwizres.src
msgctxt ""
@@ -4699,7 +4699,7 @@ msgctxt ""
"RID_WEBWIZARDDIALOG_START +113\n"
"string.text"
msgid "An error occurred while copying media files to the temporary directory."
-msgstr "ስህተት ተፈጥሯል የብዙሀን መገናኛ ፋይሎችን ወደ ጊዚያዊ ዳይሬክቶሪ ኮፒ በማድረግ ላይ እንዳለ"
+msgstr "ስህተት ተፈጥሯል የ ብዙሀን መገናኛ ፋይሎችን ወደ ጊዚያዊ ዳይሬክቶሪ ኮፒ በማድረግ ላይ እንዳለ"
#: dbwizres.src
msgctxt ""
diff --git a/source/am/wizards/source/template.po b/source/am/wizards/source/template.po
index 96afe991a63..4fc5c6a78ec 100644
--- a/source/am/wizards/source/template.po
+++ b/source/am/wizards/source/template.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-11-29 02:15+0000\n"
+"PO-Revision-Date: 2016-12-15 00:21+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480385745.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481761314.000000\n"
#: template.src
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"CorrespondenceNoTextmark+1\n"
"string.text"
msgid "Form letter fields can not be included."
-msgstr "ከ ደብዳቤ ሜዳዎች መጨመር አይቻልም"
+msgstr "የ ፎርም ደብዳቤ ሜዳዎች መጨመር አይቻልም"
#: template.src
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"CorrespondenceFields+14\n"
"string.text"
msgid "Home Phone"
-msgstr "የቤት ስልክ"
+msgstr "የ ቤት ስልክ"
#: template.src
msgctxt ""
diff --git a/source/am/xmlsecurity/uiconfig/ui.po b/source/am/xmlsecurity/uiconfig/ui.po
index bd0aecf1f37..30e5900756c 100644
--- a/source/am/xmlsecurity/uiconfig/ui.po
+++ b/source/am/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-09 18:21+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-12 17:02+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481307712.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481562166.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr "መግለጫ"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
@@ -266,7 +275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use AdES-compliant signature when there is a choice"
-msgstr "ይጠቀሙ የ AdES-compliant የ ረቀቀ የ ኤልክትሮኒክ ፊርማ-ደንብ ምርጫ በሚኖር ጊዜ "
+msgstr "ይጠቀሙ የ AdES-compliant የ ረቀቀ የ ኤልክትሮኒክ ፊርማ-ደንብ ምርጫ በሚኖር ጊዜ"
#: macrosecuritydialog.ui
msgctxt ""
diff --git a/source/ar/cui/uiconfig/ui.po b/source/ar/cui/uiconfig/ui.po
index 180fab7c102..45a5a01e378 100644
--- a/source/ar/cui/uiconfig/ui.po
+++ b/source/ar/cui/uiconfig/ui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 12:48+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-12-23 08:29+0000\n"
+"Last-Translator: صفا الفليج <safaalfulaij@hotmail.com>\n"
"Language-Team: Arabic <doc@arabeyes.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476794903.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482481775.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -1895,7 +1895,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Merge adjacent line styles"
-msgstr "_Merge adjacent line styles"
+msgstr ""
#: borderpage.ui
msgctxt ""
@@ -12945,7 +12945,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Notebookbar icon size:"
-msgstr ""
+msgstr "حجم أيقونات _شريط المفكّرة:"
#: optviewpage.ui
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/scalc/00.po b/source/ar/helpcontent2/source/text/scalc/00.po
index a3eebd206b5..ffda6abadaf 100644
--- a/source/ar/helpcontent2/source/text/scalc/00.po
+++ b/source/ar/helpcontent2/source/text/scalc/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-05-24 01:15+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-22 16:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1464052532.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479833548.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
msgstr ""
#: 00000404.xhp
@@ -572,7 +572,7 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
msgstr ""
#: 00000404.xhp
@@ -590,7 +590,7 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
msgstr ""
#: 00000404.xhp
@@ -599,7 +599,7 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
msgstr ""
#: 00000404.xhp
@@ -608,7 +608,7 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
msgstr ""
#: 00000405.xhp
diff --git a/source/ar/helpcontent2/source/text/scalc/01.po b/source/ar/helpcontent2/source/text/scalc/01.po
index fea62c1cd12..d0f81bdcec5 100644
--- a/source/ar/helpcontent2/source/text/scalc/01.po
+++ b/source/ar/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 18:52+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-25 02:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476816749.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480041112.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -20823,7 +20823,7 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
msgstr ""
#: 04060109.xhp
@@ -20848,7 +20848,7 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
msgstr ""
#: 04060109.xhp
@@ -50293,23 +50293,21 @@ msgid "Reference concatenation using a tilde character was implemented lately. W
msgstr ""
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "اسم"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
-#, fuzzy
msgctxt ""
"04070000.xhp\n"
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">إعادة تسمية</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50703,7 +50701,7 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
msgstr ""
#: 04070300.xhp
@@ -52609,7 +52607,7 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
msgstr ""
#: 05080300.xhp
diff --git a/source/ar/helpcontent2/source/text/scalc/guide.po b/source/ar/helpcontent2/source/text/scalc/guide.po
index b9997cd2d4f..18101fe696b 100644
--- a/source/ar/helpcontent2/source/text/scalc/guide.po
+++ b/source/ar/helpcontent2/source/text/scalc/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 15:27+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-25 02:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467732467.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480042789.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -2131,7 +2131,7 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
msgstr ""
#: cellreference_dragdrop.xhp
@@ -11831,7 +11831,7 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
msgstr ""
#: value_with_name.xhp
@@ -11884,7 +11884,7 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
msgstr ""
#: webquery.xhp
diff --git a/source/ar/helpcontent2/source/text/shared/00.po b/source/ar/helpcontent2/source/text/shared/00.po
index c06af684d9e..fb102e57274 100644
--- a/source/ar/helpcontent2/source/text/shared/00.po
+++ b/source/ar/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 15:28+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-11-25 03:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467732484.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480044220.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -12089,15 +12089,6 @@ msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr ""
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index 4653979d35a..8c8bb38af96 100644
--- a/source/ar/helpcontent2/source/text/shared/01.po
+++ b/source/ar/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-05-24 01:59+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-12-22 13:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1464055182.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482413451.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -8342,7 +8342,7 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
msgstr ""
#: 02100100.xhp
@@ -15510,12 +15510,13 @@ msgid "Explanation"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
@@ -15526,12 +15527,13 @@ msgid "Does not display extra zeros."
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152802\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 05020301.xhp
msgctxt ""
@@ -15590,12 +15592,13 @@ msgid "3456.78 as 3456.8"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3150355\n"
"help.text"
msgid "####.#"
-msgstr ""
+msgstr "####.#"
#: 05020301.xhp
msgctxt ""
@@ -15638,12 +15641,13 @@ msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3145315\n"
"help.text"
msgid "# ???/???"
-msgstr ""
+msgstr "# ???/???"
#: 05020301.xhp
msgctxt ""
@@ -15718,12 +15722,13 @@ msgid "15000 as 15,000"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3151223\n"
"help.text"
msgid "#,###"
-msgstr ""
+msgstr "#,###"
#: 05020301.xhp
msgctxt ""
@@ -15734,12 +15739,13 @@ msgid "16000 as 16"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3153961\n"
"help.text"
msgid "#,"
-msgstr ""
+msgstr "#,"
#: 05020301.xhp
msgctxt ""
@@ -16054,12 +16060,13 @@ msgid "Denominator is calculated to get the nearest value of the fraction with r
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3146926\n"
"help.text"
msgid "# ?/???"
-msgstr ""
+msgstr "# ?/???"
#: 05020301.xhp
msgctxt ""
@@ -25779,34 +25786,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr ""
-#: 05210200.xhp
-#, fuzzy
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "لون"
-
-#: 05210200.xhp
-#, fuzzy
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">طبقة</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr ""
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43512,6 +43491,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr ""
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/ar/helpcontent2/source/text/shared/guide.po b/source/ar/helpcontent2/source/text/shared/guide.po
index a954b2263a8..31b11c4c4c3 100644
--- a/source/ar/helpcontent2/source/text/shared/guide.po
+++ b/source/ar/helpcontent2/source/text/shared/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 15:44+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-12-23 13:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467733447.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482500886.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2190,16 +2190,17 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816034969\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2242,35 +2243,38 @@ msgid "<variable id=\"rememberpw\"><emph>Remember password</emph>: Check to stor
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816045167\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816045015\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rootpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rootpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816045804\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#okbutton\"/>."
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#okbutton\"/>."
#: cmis-remote-files-setup.xhp
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2282,12 +2286,13 @@ msgid "<bookmark_value>remote file service;Windows share</bookmark_value> <book
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816046729\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2314,36 +2319,40 @@ msgid "<emph>Share</emph>: The Windows share."
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816049\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rememberpw\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rememberpw\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816048365\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816048181\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rootpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rootpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816047868\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#okbutton\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#okbutton\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2362,12 +2371,13 @@ msgid "<bookmark_value>remote file service;Google Drive</bookmark_value> <bookm
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id160820161759169124\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2386,28 +2396,31 @@ msgid "<emph>User, Password</emph>: the username and password of the Google acco
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id160820161759162239\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rememberpw\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rememberpw\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id160820161759166391\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id160820161759163527\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#okbutton\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#okbutton\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2426,12 +2439,13 @@ msgid "<bookmark_value>remote file service setup;other file services</bookmark_v
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816048323\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2458,12 +2472,13 @@ msgid "<emph>User, Password</emph>: the username and password of the CMIS servic
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816054077\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rememberpw\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rememberpw\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2482,20 +2497,22 @@ msgid "<emph>Refresh button</emph>: click to refresh the contents of the reposit
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816054039\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816052286\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rootpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rootpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -9920,7 +9937,7 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
msgstr ""
#: hyperlink_insert.xhp
@@ -12429,19 +12446,19 @@ msgstr ""
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
msgstr ""
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
msgstr ""
#: labels.xhp
@@ -18313,7 +18330,7 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
+msgid "Starting $[officename] Software With Parameters"
msgstr ""
#: start_parameters.xhp
@@ -18321,50 +18338,45 @@ msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
+msgid "Starting $[officename] Software With Parameters"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
+msgid "Starting $[officename] Software From the Command Line"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
msgstr ""
@@ -18373,7 +18385,6 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
msgstr ""
@@ -18382,7 +18393,6 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
msgstr ""
@@ -18391,249 +18401,246 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
+msgid "Valid Command Line Parameters"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
+msgid "Using without special arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
+msgid "Using without any arguments opens the start center."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "معنى"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
+msgid "Opens the file and applies specified macros from the file."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
+msgid "Getting help and information"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
+msgid "<variable id=\"meaning\">Meaning</variable>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
+msgid "Lists the available command line parameters to the console."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
+msgid "Opens $[officename] built-in or online Help on Writer."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
+msgid "Opens $[officename] built-in or online Help on Draw."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
+msgid "Opens $[officename] built-in or online Help on Base."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
+msgid "Opens $[officename] built-in or online Help on Math."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
+msgid "Shows $[officename] version and quits."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
+msgid "General arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
+msgid "Disables check for remote instances using the installation."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
"help.text"
-msgid "--minimized"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
+"help.text"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
msgstr ""
@@ -18641,17 +18648,15 @@ msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
+msgid "Starts without displaying anything except the splash screen."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
msgstr ""
@@ -18660,52 +18665,54 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
"help.text"
-msgid "--norestore"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
+"help.text"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
msgstr ""
@@ -18713,357 +18720,330 @@ msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
+msgid "Developer arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
+msgid "Exit after initialization complete (no documents loaded)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
+msgid "Exit after loading documents."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
+msgid "New document creation arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgid "Starts with an empty Writer document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
+msgid "Starts with an empty Calc document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgid "Starts with an empty Draw document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgid "Starts with an empty Impress document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
+msgid "Starts with an empty Math document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
+msgid "Starts with an empty Writer master document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
+msgid "Starts with an empty HTML document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
+msgid "File open arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
+msgid "Treats following files as templates for creation of new documents."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3150828\n"
"help.text"
-msgid "--nofirststartwizard"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3145268\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
+msgid "Opens following files in viewer mode (read-only)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id3153838\n"
"help.text"
-msgid "--display {display}"
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id315053p\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "--headless"
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id315053q\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "--infilter={filter}"
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
+msgid "Ignored switches"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (MacOS X only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
+msgid "Ignored (COM+ related; Windows only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id20161204014529900\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id2016120401463584\n"
+"help.text"
+msgid "Used only in unit tests and should have two arguments."
msgstr ""
#: startcenter.xhp
@@ -20788,3 +20768,823 @@ msgctxt ""
"help.text"
msgid "<link href=\"text/shared/guide/xsltfilter.xhp\">About XML Filters</link>"
msgstr ""
+
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3149167\n"
+"12\n"
+"help.text"
+msgid "Meaning"
+msgstr "معنى"
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156152\n"
+"5\n"
+"help.text"
+msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3152472\n"
+"6\n"
+"help.text"
+msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3149669\n"
+"53\n"
+"help.text"
+msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3147561\n"
+"7\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3153360\n"
+"8\n"
+"help.text"
+msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3158407\n"
+"9\n"
+"help.text"
+msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id3145171\n"
+"10\n"
+"help.text"
+msgid "Valid Command Line Parameters"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3148451\n"
+"11\n"
+"help.text"
+msgid "Parameter"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3149983\n"
+"73\n"
+"help.text"
+msgid "--help / -h / -?"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3147349\n"
+"74\n"
+"help.text"
+msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id31499et\n"
+"73\n"
+"help.text"
+msgid "--version"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id31473et\n"
+"74\n"
+"help.text"
+msgid "Displays the version information."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150010\n"
+"59\n"
+"help.text"
+msgid "--writer"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3147213\n"
+"60\n"
+"help.text"
+msgid "Starts with an empty Writer document."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3148616\n"
+"61\n"
+"help.text"
+msgid "--calc"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3145261\n"
+"62\n"
+"help.text"
+msgid "Starts with an empty Calc document."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156443\n"
+"63\n"
+"help.text"
+msgid "--draw"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3154011\n"
+"64\n"
+"help.text"
+msgid "Starts with an empty Draw document."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3153142\n"
+"65\n"
+"help.text"
+msgid "--impress"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3153222\n"
+"66\n"
+"help.text"
+msgid "Starts with an empty Impress document."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3155853\n"
+"67\n"
+"help.text"
+msgid "--math"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146928\n"
+"68\n"
+"help.text"
+msgid "Starts with an empty Math document."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3149960\n"
+"69\n"
+"help.text"
+msgid "--global"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151075\n"
+"70\n"
+"help.text"
+msgid "Starts with an empty Writer master document."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3154510\n"
+"71\n"
+"help.text"
+msgid "--web"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3148836\n"
+"72\n"
+"help.text"
+msgid "Starts with an empty HTML document."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3149403\n"
+"help.text"
+msgid "--show {filename.odp}"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3153838\n"
+"80\n"
+"help.text"
+msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156276\n"
+"13\n"
+"help.text"
+msgid "--minimized"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146080\n"
+"14\n"
+"help.text"
+msgid "Starts minimized. The splash screen is not displayed."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3145641\n"
+"15\n"
+"help.text"
+msgid "--invisible"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3154756\n"
+"16\n"
+"help.text"
+msgid "Starts in invisible mode."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3148914\n"
+"17\n"
+"help.text"
+msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3147341\n"
+"18\n"
+"help.text"
+msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150388\n"
+"48\n"
+"help.text"
+msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3145147\n"
+"19\n"
+"help.text"
+msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3155903\n"
+"20\n"
+"help.text"
+msgid "--norestore"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156374\n"
+"21\n"
+"help.text"
+msgid "Disables restart and file recovery after a system crash."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id5215918\n"
+"help.text"
+msgid "--nofirststartwizard"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id5665761\n"
+"help.text"
+msgid "Disables the Welcome Wizard."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3148477\n"
+"25\n"
+"help.text"
+msgid "--quickstart"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3153919\n"
+"26\n"
+"help.text"
+msgid "Activates the Quickstarter."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3152479\n"
+"30\n"
+"help.text"
+msgid "--accept={UNO string}"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3147130\n"
+"31\n"
+"help.text"
+msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3148874\n"
+"32\n"
+"help.text"
+msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id315247a\n"
+"30\n"
+"help.text"
+msgid "--unaccept={UNO string}"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id314713a\n"
+"31\n"
+"help.text"
+msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3159238\n"
+"36\n"
+"help.text"
+msgid "-p {filename1} {filename2} ..."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3163666\n"
+"37\n"
+"help.text"
+msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150828\n"
+"49\n"
+"help.text"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150883\n"
+"38\n"
+"help.text"
+msgid "--pt {Printername} {filename1} {filename2} ..."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3155081\n"
+"50\n"
+"help.text"
+msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3154372\n"
+"39\n"
+"help.text"
+msgid "-o {filename}"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150309\n"
+"40\n"
+"help.text"
+msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151182\n"
+"54\n"
+"help.text"
+msgid "--view {filename}"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3145268\n"
+"55\n"
+"help.text"
+msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3166421\n"
+"41\n"
+"help.text"
+msgid "-n {filename}"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3154259\n"
+"42\n"
+"help.text"
+msgid "Creates a new document using <emph>{filename}</emph> as a template."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3155126\n"
+"43\n"
+"help.text"
+msgid "--nologo"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"44\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3159171\n"
+"75\n"
+"help.text"
+msgid "--nodefault"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3153306\n"
+"76\n"
+"help.text"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id315917t\n"
+"75\n"
+"help.text"
+msgid "--nolockcheck"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id315330t\n"
+"76\n"
+"help.text"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id2211676\n"
+"help.text"
+msgid "--nofirststartwizard"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id1641895\n"
+"help.text"
+msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3153915\n"
+"45\n"
+"help.text"
+msgid "--display {display}"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"46\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3149595\n"
+"56\n"
+"help.text"
+msgid "--headless"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150530\n"
+"57\n"
+"help.text"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
+"58\n"
+"help.text"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id314959o\n"
+"56\n"
+"help.text"
+msgid "--infilter={filter}"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id315053o\n"
+"57\n"
+"help.text"
+msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id314959p\n"
+"56\n"
+"help.text"
+msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id315053p\n"
+"57\n"
+"help.text"
+msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id314959q\n"
+"56\n"
+"help.text"
+msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id315053q\n"
+"57\n"
+"help.text"
+msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgstr ""
+
+#: find_attributes.xhp
+msgctxt ""
+"find_attributes.xhp\n"
+"par_idN1069D\n"
+"help.text"
+msgid "After you select the attributes that you want to search for, the <emph>Search for Styles</emph> box in the <emph>Options </emph>area of the %PRODUCTNAME Writer <emph>Find & Replace </emph>dialog changes to <emph>Including Styles</emph>."
+msgstr ""
+
+#: find_attributes.xhp
+msgctxt ""
+"find_attributes.xhp\n"
+"par_idN106B7\n"
+"help.text"
+msgid "The search criteria for attributes are listed below the <emph>Search for</emph> box."
+msgstr ""
+
+#: find_attributes.xhp
+msgctxt ""
+"find_attributes.xhp\n"
+"par_idN106CD\n"
+"help.text"
+msgid "Clear the <emph>Search for</emph> text box if necessary."
+msgstr ""
+
+#: find_attributes.xhp
+msgctxt ""
+"find_attributes.xhp\n"
+"par_idN106E8\n"
+"help.text"
+msgid "In the <emph>Find & Replace</emph> dialog, you now can read \"Font\" below the <emph>Search for</emph> text box."
+msgstr ""
+
+#: hyperlink_insert.xhp
+msgctxt ""
+"hyperlink_insert.xhp\n"
+"par_idN1076D\n"
+"help.text"
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
+msgstr ""
+
+#: doc_open.xhp
+msgctxt ""
+"doc_open.xhp\n"
+"par_idN107A9\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Open</item>"
+msgstr ""
+
+#: doc_open.xhp
+msgctxt ""
+"doc_open.xhp\n"
+"par_idN107AF\n"
+"help.text"
+msgid "Click the <emph>Open</emph> icon on the Standard toolbar"
+msgstr ""
+
+#: doc_open.xhp
+msgctxt ""
+"doc_open.xhp\n"
+"par_idN107B2\n"
+"help.text"
+msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
+msgstr ""
+
+#: digital_signatures.xhp
+msgctxt ""
+"digital_signatures.xhp\n"
+"par_id0821200910191774\n"
+"help.text"
+msgid "When you sign a document with OpenOffice.org 3.2 or StarOffice 9.2 or a later version, and you open that document in an older version of the software, the signature will be displayed as \"invalid\". Signatures created with older versions of the software will be marked with \"only parts of the documents are signed\" when loaded in the newer software."
+msgstr ""
+
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3145748\n"
+"8\n"
+"help.text"
+msgid "Save the document by choosing<emph> File</emph> -<emph> Save As Template</emph>and saving the document in the <emph>My Templates</emph> category."
+msgstr ""
+
+#: insert_bitmap.xhp
+msgctxt ""
+"insert_bitmap.xhp\n"
+"par_id1033051\n"
+"help.text"
+msgid "<link href=\"text/shared/02/24010000.xhp\">Graphic Filter Bar from the Image Bar</link>"
+msgstr ""
+
+#: insert_bitmap.xhp
+msgctxt ""
+"insert_bitmap.xhp\n"
+"par_id3154124\n"
+"13\n"
+"help.text"
+msgid "A number of filters are located on the <link href=\"text/shared/02/24010000.xhp\" name=\"Graphic Filter\">Graphic <emph>Filter</emph></link> toolbar, which you can open with the icon on the <emph>Image</emph> Bar."
+msgstr ""
+
+#: doc_open.xhp
+msgctxt ""
+"doc_open.xhp\n"
+"par_id3150275\n"
+"help.text"
+msgid "The <link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link> dialog appears."
+msgstr ""
+
+#: hyperlink_rel_abs.xhp
+msgctxt ""
+"hyperlink_rel_abs.xhp\n"
+"par_id3145382\n"
+"48\n"
+"help.text"
+msgid "You should create the same directory structure on your hard disk as that which exists in the web space hosted by your Internet provider. Call the root directory for the homepage on your hard disk \"homepage\", for example. The start file is then \"index.html\", the full path being \"C:\\homepage\\index.html\" (assuming Windows operating system). The URL on your Internet provider's server might then be as follows: \"http://www.myprovider.com/mypage/index.html\". With relative addressing, you indicate the link relative to the location of the output document. For example, if you placed all the graphics for your homepage in a subfolder called \"C:\\homepage\\images\", you would need to give the following path to access the graphic \"picture.gif\": \"images\\picture.gif\". This is the relative path, starting from the location of the file \"index.html\". On the provider's server, you would place the picture in the folder \"mypage/images\". When you transfer the document \"index.html\" to the provider's server through the <emph>File - Save As</emph> dialog, and if you have marked the option <emph>Copy local graphics to Internet</emph> under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph>, $[officename] will automatically copy the graphic to the correct directory on the server."
+msgstr ""
+
+#: standard_template.xhp
+msgctxt ""
+"standard_template.xhp\n"
+"par_id3146918\n"
+"16\n"
+"help.text"
+msgid "You can save a new template with <emph>File - Save As Template</emph> or by selecting \"Template\" file type in any Save dialog. Save the template in the user directory specified under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph> to be able to access the template from within the <emph>File - New - Templates</emph> dialog."
+msgstr ""
diff --git a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
index 20d020f6f9b..4a0a7b0f263 100644
--- a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 16:13+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-12-23 08:29+0000\n"
+"Last-Translator: صفا الفليج <safaalfulaij@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467648826.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482481780.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -17447,7 +17447,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Styles and Formatting Sidebar"
-msgstr ""
+msgstr "اعرض شريط أدوات الأنماط والتّنسيق"
#: GenericCommands.xcu
msgctxt ""
@@ -19316,7 +19316,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notebookbar"
-msgstr ""
+msgstr "شريط المفكّرة"
#: GenericCommands.xcu
msgctxt ""
diff --git a/source/ar/sc/source/ui/src.po b/source/ar/sc/source/ui/src.po
index 82351017ba3..d77b7a441c3 100644
--- a/source/ar/sc/source/ui/src.po
+++ b/source/ar/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 16:25+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 18:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467649523.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480617311.000000\n"
#: filter.src
msgctxt ""
@@ -9679,8 +9679,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "جمع الوسائط التي تفي بالشروط."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/ar/svx/uiconfig/ui.po b/source/ar/svx/uiconfig/ui.po
index 776b5fd8a1f..dd030495ad9 100644
--- a/source/ar/svx/uiconfig/ui.po
+++ b/source/ar/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 16:48+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 20:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467650887.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480625256.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3053,8 +3053,8 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "تجاهل الحر_كات للغات المعقدة"
+msgid "Ignore diac_ritics"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -3062,7 +3062,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5159,10 +5159,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5177,10 +5177,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/ar/sw/uiconfig/swriter/ui.po b/source/ar/sw/uiconfig/swriter/ui.po
index bd4fc98f7fe..a7de2890075 100644
--- a/source/ar/sw/uiconfig/swriter/ui.po
+++ b/source/ar/sw/uiconfig/swriter/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-08 11:55+0000\n"
-"Last-Translator: linuxor <linuxor7@gmail.com>\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 21:49+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467978953.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480628944.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -9897,26 +9897,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/ar/xmlsecurity/uiconfig/ui.po b/source/ar/xmlsecurity/uiconfig/ui.po
index 45e898822c1..28d835e1429 100644
--- a/source/ar/xmlsecurity/uiconfig/ui.po
+++ b/source/ar/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 16:57+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 21:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467651454.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480629120.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/as/sc/source/ui/src.po b/source/as/sc/source/ui/src.po
index 4f4ff31bb75..46aff1d0a1b 100644
--- a/source/as/sc/source/ui/src.po
+++ b/source/as/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 16:33+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
"Language: as\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467650017.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595122.000000\n"
#: filter.src
msgctxt ""
@@ -9678,8 +9678,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "চৰ্তবোৰ পূৰণ কৰা কোণাঙ্কবোৰৰ মুঠ সংখ্যাটো উলিয়ায়।"
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/as/svx/uiconfig/ui.po b/source/as/svx/uiconfig/ui.po
index 596c101d3dd..8064b02c0b8 100644
--- a/source/as/svx/uiconfig/ui.po
+++ b/source/as/svx/uiconfig/ui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 16:55+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: as\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467651326.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595687.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3064,7 +3064,7 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
+msgid "Ignore diac_ritics"
msgstr ""
#: findreplacedialog.ui
@@ -3073,7 +3073,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5172,10 +5172,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5190,10 +5190,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/as/sw/uiconfig/swriter/ui.po b/source/as/sw/uiconfig/swriter/ui.po
index 3d2a1fe593f..d298dbfd996 100644
--- a/source/as/sw/uiconfig/swriter/ui.po
+++ b/source/as/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 17:01+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-11 20:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
"Language: as\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467651676.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1478896634.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -9958,26 +9958,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/as/xmlsecurity/uiconfig/ui.po b/source/as/xmlsecurity/uiconfig/ui.po
index fd070026b51..00deda101f8 100644
--- a/source/as/xmlsecurity/uiconfig/ui.po
+++ b/source/as/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:03+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 12:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
"Language: as\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467651786.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595687.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -210,6 +210,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/ast/helpcontent2/source/text/scalc/00.po b/source/ast/helpcontent2/source/text/scalc/00.po
index 1e4c624737f..dcdacca429d 100644
--- a/source/ast/helpcontent2/source/text/scalc/00.po
+++ b/source/ast/helpcontent2/source/text/scalc/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 13:30+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-22 16:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
"Language: ast\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467725411.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479833922.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -574,8 +574,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">Menú <emph>Inxertar - Nomes</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -592,8 +592,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "Menú <emph>Inxertar - Nomes - Definir...</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -610,8 +610,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">Menú <emph>Inxertar - Nomes - Pegar</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -619,8 +619,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">Menú <emph>Inxertar - Nomes - Aplicar</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -628,8 +628,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">Menú<emph> Inxertar - Nomes - Etiquetes</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index 0b7cac4453f..3785a18fabb 100644
--- a/source/ast/helpcontent2/source/text/scalc/01.po
+++ b/source/ast/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-05-24 02:24+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-22 18:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
"Language: ast\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
"X-Poedit-SourceCharset: utf-8\n"
-"X-POOTLE-MTIME: 1464056697.000000\n"
+"X-POOTLE-MTIME: 1482432698.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5721,20 +5721,22 @@ msgid "Functions"
msgstr "Funciones"
#: 04060102.xhp
+#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr ""
+msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
#: 04060102.xhp
+#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr ""
+msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
#: 04060103.xhp
msgctxt ""
@@ -20801,8 +20803,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=ÍNDIZ(SumaX;4;1)</item> devuelve'l valor del área <emph>SumaX</emph> na filera 4 y columna 1 como se define en <emph>Inxertar - Nomes - Definir</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20826,8 +20828,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=ÍNDIZ((multi);4;1)</item> indica'l valor conteníu na cuarta filera y primer columna del intervalu (múltiple), al cual asignóse-y el nome <emph>multi</emph> al traviés de <emph>Inxertar - Nomes - Definir</emph>. L'intervalu múltiple pue consistir en delles árees rectangulares, caúna de les cualos tien una filera 4 y columna 1. Dempués, si deseyar aportar al segundu bloque d'esti intervalu múltiple, ingrésase'l númberu <item type=\"input\">2</item> como parámetru <emph>intervalu</emph>."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -50398,8 +50400,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "Nomes"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50407,8 +50409,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Nomes\">Nomes</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50798,8 +50800,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Escueya una zona que contenga toles árees a les que deseye asignar un nome. De siguío escueya <emph>Inxertar - Nomes - Definir</emph>. Ábrese'l diálogu <emph>Definir nomes</emph> que dexa escoyer les opciones de nome deseyaes."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52695,8 +52697,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Escueya <emph>-nengunu-</emph> pa desaniciar un intervalu d'impresión de la fueya de cálculu actual. Escueya <emph>-fueya completa-</emph> pa configurar la fueya actual como intervalu d'impresión. Escueya <emph>-seleición-</emph> pa definir l'área escoyida de la fueya de cálculu como intervalu d'impresión. Si escueye <emph>-definíu pol usuariu-</emph>, pue definir un intervalu d'impresión yá definíu por aciu el comandu <emph>Formatu - Intervalo d'impresión - Definir</emph>. Si asignó un nome a un intervalu utilizando'l comandu <emph>Inxertar - Nomes - Definir</emph>, dichu nome va amosase y podrá escoyese nel cuadru de llista."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
@@ -70847,3 +70849,837 @@ msgctxt ""
"help.text"
msgid "In the example, you select the comma as a delimiter character. Cells A1 and A2 will be expanded to four columns each. A1 contains 1, B1 contains 2, and so on."
msgstr "Nel exemplu, escueye la coma como caráuter allindiador. Les caxelles A1 y A2 van ampliar a cuatro columnes. A1 contién 1, B1 contién 2, etc."
+
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150691\n"
+"57\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
+msgstr "<item type=\"input\">=ÍNDIZ(SumaX;4;1)</item> devuelve'l valor del área <emph>SumaX</emph> na filera 4 y columna 1 como se define en <emph>Inxertar - Nomes - Definir</emph>."
+
+msgctxt ""
+"04060109.xhp\n"
+"par_id3158419\n"
+"58\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr "<item type=\"input\">=ÍNDIZ((multi);4;1)</item> indica'l valor conteníu na cuarta filera y primer columna del intervalu (múltiple), al cual asignóse-y el nome <emph>multi</emph> al traviés de <emph>Inxertar - Nomes - Definir</emph>. L'intervalu múltiple pue consistir en delles árees rectangulares, caúna de les cualos tien una filera 4 y columna 1. Dempués, si deseyar aportar al segundu bloque d'esti intervalu múltiple, ingrésase'l númberu <item type=\"input\">2</item> como parámetru <emph>intervalu</emph>."
+
+msgctxt ""
+"04070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Names"
+msgstr "Nomes"
+
+msgctxt ""
+"04070000.xhp\n"
+"hd_id3153951\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
+msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Nomes\">Nomes</link>"
+
+msgctxt ""
+"04070300.xhp\n"
+"par_id3156280\n"
+"13\n"
+"help.text"
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr "Escueya una zona que contenga toles árees a les que deseye asignar un nome. De siguío escueya <emph>Inxertar - Nomes - Definir</emph>. Ábrese'l diálogu <emph>Definir nomes</emph> que dexa escoyer les opciones de nome deseyaes."
+
+msgctxt ""
+"05080300.xhp\n"
+"par_id3145174\n"
+"5\n"
+"help.text"
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr "Escueya <emph>-nengunu-</emph> pa desaniciar un intervalu d'impresión de la fueya de cálculu actual. Escueya <emph>-fueya completa-</emph> pa configurar la fueya actual como intervalu d'impresión. Escueya <emph>-seleición-</emph> pa definir l'área escoyida de la fueya de cálculu como intervalu d'impresión. Si escueye <emph>-definíu pol usuariu-</emph>, pue definir un intervalu d'impresión yá definíu por aciu el comandu <emph>Formatu - Intervalo d'impresión - Definir</emph>. Si asignó un nome a un intervalu utilizando'l comandu <emph>Inxertar - Nomes - Definir</emph>, dichu nome va amosase y podrá escoyese nel cuadru de llista."
+
+msgctxt ""
+"04060118.xhp\n"
+"par_idN10E62\n"
+"help.text"
+msgid "If the payments take place at regular intervals, use the IRR function."
+msgstr "Si los pagos efeutuar a intervalos regulares, utilice la función TIR."
+
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153904\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calculates the capital value (net present value)for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calcula'l valor efeutivu netu (valor del capital) d'una serie de pagos non periódicos.</ahelp> El cálculu basar nun esquema de 365 díes al añu, y omite los años bisiestos."
+
+msgctxt ""
+"04060118.xhp\n"
+"par_idN11138\n"
+"help.text"
+msgid "If the payments take place at regular intervals, use the NPV function."
+msgstr "Si los pagos efeutuar a intervalos regulares, utilice la función VNA."
+
+msgctxt ""
+"04060119.xhp\n"
+"par_id3145308\n"
+"302\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_NBW\">Returns the present value of an investment based on a series of periodic cash flows and a discount rate. To get the net present value, subtract the cost of the project (the initial cash flow at time zero) from the returned value.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NBW\">Calcula'l valor del capital d'una inversión; pa ello, tien en cuenta'l factor de descuentu con pagos periódicos (valor netu efeutivu). Pa llograr el valor netu presente, reste'l costo del proyectu (l'efeutivu inicial al empiezu) del valor de torna.</ahelp>"
+
+msgctxt ""
+"02110000.xhp\n"
+"par_id3146984\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_COL\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_COL\">Inxerte la lletra de la columna. Calque INTRO p'asitiar el cursor de caxelles na columna especificada na mesma filera. </ahelp>"
+
+msgctxt ""
+"02110000.xhp\n"
+"par_id3149958\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Entra un númberu de filera. Prima INTRO pa reposicionar el cursor de la caxella a la filera especificáu na mesma columna.</ahelp>"
+
+msgctxt ""
+"02110000.xhp\n"
+"par_id3150752\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Especifica l'área de datos actual designada pola posición del cursor de caxella.</ahelp>"
+
+msgctxt ""
+"02110000.xhp\n"
+"par_id3150086\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_UP\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_UP\">Mover a la caxella asitiada de primeres del área de datos actual, que pue resaltase por aciu el botón <emph>Área de datos</emph>.</ahelp>"
+
+msgctxt ""
+"02110000.xhp\n"
+"par_id3152985\n"
+"19\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Mover a la caxella asitiada a la fin del área de datos actual, que pue resaltase por aciu el botón <emph>Área de datos</emph>.</ahelp>"
+
+msgctxt ""
+"02110000.xhp\n"
+"par_id3159098\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Camuda la vista actual. Namái s'amuesen l'elementu escoyíu del Navegador y los sos subelementos.</ahelp> Vuelva faer clic nel símbolu pa restablecer la visualización de tolos elementos."
+
+msgctxt ""
+"02110000.xhp\n"
+"par_id3150051\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Allows you to hide/show the contents.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Permite anubrir o amosar el conteníu.</ahelp>"
+
+msgctxt ""
+"02110000.xhp\n"
+"par_id3153955\n"
+"25\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Amuesa tolos escenarios disponibles. Calque dos vegaes sobre un nome p'aplicar l'escenariu correspondiente.</ahelp> La resultancia amosar na fueya. Si deseya llograr más información, escueya <link href=\"text/scalc/01/06050000.xhp\" name=\"Ferramientes - Escenarios\"><emph>Ferramientes - Escenariu</emph></link>."
+
+msgctxt ""
+"02110000.xhp\n"
+"par_id3157876\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Abre un submenú pa escoyer el mou d'arrastre. Pue decidir l'aición que se deseye llevar a cabu al abasnar y soltar un oxetu del Navegador nun documentu. En función del mou escoyíu, l'iconu indica si créase un hiperenllaz, un enllaz o una copia.</ahelp>"
+
+msgctxt ""
+"02110000.xhp\n"
+"par_id3150700\n"
+"39\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Displays all objects in your document.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Amuesa tolos oxetos del documentu.</ahelp>"
+
+msgctxt ""
+"02110000.xhp\n"
+"par_id3153929\n"
+"36\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Displays the names of all open documents.</ahelp> To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the <emph>Window</emph> menu."
+msgstr "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Amuesa los nomes de tolos documentos abiertos.</ahelp> Pa camudar a otru documentu abiertu nel Navegador, calque nel so nome. Tres el nome del documentu amuésase'l so estáu (activu, inactivu) ente paréntesis. Pue camudase el documentu activu por aciu el menú <emph>Ventana</emph>."
+
+msgctxt ""
+"02190000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Delete Manual Breaks"
+msgstr "Desaniciar saltos manuales"
+
+#, fuzzy
+msgctxt ""
+"02190000.xhp\n"
+"hd_id3150541\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Delete Page Break</link>"
+msgstr "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Desaniciar saltu manual</link>"
+
+msgctxt ""
+"02190100.xhp\n"
+"par_id3151041\n"
+"3\n"
+"help.text"
+msgid "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose <emph>Edit - Delete Manual Break - Row Break</emph>. The manual row break is removed."
+msgstr "Ponga'l cursor nuna caxella asitiada xusto debaxo del saltu de filera indicáu por aciu d'una llinia horizontal y escueya <emph>Editar - Desaniciar saltu manual - Saltu de fileres</emph>. Bórrase'l saltu de filera manual."
+
+msgctxt ""
+"02190200.xhp\n"
+"par_id3145173\n"
+"3\n"
+"help.text"
+msgid "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose <emph>Edit - Delete Manual Break - Column Break</emph>. The manual column break is removed."
+msgstr "Asitie'l cursor na caxella de la derecha del saltu de columna indicáu por aciu d'una llinia vertical y escueya <emph>Editar - Desaniciar saltu manual - Saltu de columna</emph>. Esaníciase'l saltu de columna manual."
+
+#, fuzzy
+msgctxt ""
+"03100000.xhp\n"
+"hd_id3154731\n"
+"help.text"
+msgid "Delete All Manual Breaks"
+msgstr "Desaniciar tolos saltos manuales"
+
+msgctxt ""
+"04010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Manual Break"
+msgstr "Saltu manual"
+
+msgctxt ""
+"04010000.xhp\n"
+"hd_id3153192\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
+msgstr "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Saltu manual</link>"
+
+msgctxt ""
+"04010000.xhp\n"
+"par_id3155133\n"
+"3\n"
+"help.text"
+msgid "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Edit - Delete Manual Break</link> to remove breaks created manually."
+msgstr "Escueya <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Editar - Desaniciar saltu manual</link> pa suprimir los saltos creaos manualmente."
+
+msgctxt ""
+"04060100.xhp\n"
+"hd_id3154944\n"
+"16\n"
+"help.text"
+msgid "Functions by Category"
+msgstr "Funciones per categoría"
+
+msgctxt ""
+"04060100.xhp\n"
+"par_id0120200910234570\n"
+"help.text"
+msgid "You can find detailed explanations, illustrations, and examples of Calc functions <link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">in the LibreOffice WikiHelp</link>."
+msgstr "Pue alcontrar esplicaciones detallaes, ilustraciones y exemplos de funciones de Calc <link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">na WikiAyuda de LibreOffice</link>."
+
+msgctxt ""
+"04060100.xhp\n"
+"par_id3150715\n"
+"14\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link> are also available."
+msgstr "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operadores</link> tamién tán disponibles."
+
+msgctxt ""
+"04060100.xhp\n"
+"par_id0902200809540918\n"
+"help.text"
+msgid "<variable id=\"drking\"><link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">Calc Functions By Category</link> in the LibreOffice WikiHelp</variable>"
+msgstr "<variable id=\"drking\"><link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">Funciones de Calc por categoría</link> na WikiAyuda de LibreOffice</variable>"
+
+msgctxt ""
+"04060102.xhp\n"
+"bm_id3154536\n"
+"help.text"
+msgid "<bookmark_value>date and time functions</bookmark_value><bookmark_value>functions; date & time</bookmark_value><bookmark_value>Function Wizard; date & time</bookmark_value>"
+msgstr "<bookmark_value>fecha y hora;funciones</bookmark_value><bookmark_value>funciones;fecha y hora</bookmark_value><bookmark_value>Asistente pa funciones;fecha y hora</bookmark_value>"
+
+msgctxt ""
+"04060102.xhp\n"
+"hd_id3154536\n"
+"1\n"
+"help.text"
+msgid "Date & Time Functions"
+msgstr "Funciones de fecha y hora"
+
+msgctxt ""
+"04060102.xhp\n"
+"par_id3153973\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"datumzeittext\">These spreadsheet functions are used for inserting and editing dates and times. </variable>"
+msgstr "<variable id=\"datumzeittext\">Estes funciones de fueya de cálculu utilizar pa inxertar y editar feches y hores.</variable>"
+
+msgctxt ""
+"04060102.xhp\n"
+"par_id3150437\n"
+"170\n"
+"help.text"
+msgid "$[officename] internally handles a date/time value as a numerical value. If you assign the numbering format \"Number\" to a date or time value, it is converted to a number. For example, 01/01/2000 12:00 PM, converts to 36526.5. The value preceding the decimal point corresponds to the date; the value following the decimal point corresponds to the time. If you do not want to see this type of numerical date or time representation, change the number format (date or time) accordingly. To do this, select the cell containing the date or time value, call its context menu and select <emph>Format Cells</emph>. The <emph>Numbers</emph> tab page contains the functions for defining the number format."
+msgstr "$[officename] remana internamente los valores de fecha/hora como si fueren valores numbéricos. Si asigna'l formatu \"Númberu\" a un valor de fecha o hora, dichu valor convertir nun númberu. Por exemplu, 01/01/2000 12:00 PM convertir en 36526,5. El valor anterior a la coma decimal correspuende a la fecha; el valor asitiáu de siguío de dicha coma correspuende a la hora. Si nun deseya ver les feches o hores con esti tipu de representación numbérica, camude'l formatu según correspuenda (fecha o hora). Pa ello, escueya la caxella que contién el valor de fecha o hora, abra'l so menú contestual y escueya <emph>Formatear caxelles</emph>. La llingüeta <emph>Númberos</emph> contién funciones pa definir el formatu numbéricu."
+
+#, fuzzy
+msgctxt ""
+"04060102.xhp\n"
+"par_id3149720\n"
+"183\n"
+"help.text"
+msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - General</emph> you find the area <emph>Year (two digits)</emph>. This sets the period for which two-digit information applies. Note that changes made here have an effect on some of the following functions."
+msgstr "En <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferencies </caseinline><defaultinline>Ferramientes - Opciones</defaultinline></switchinline> - $[officename] - Xeneral</emph> atópase la seición <emph>Añu (con dos díxitos)</emph>. Esto establez el períodu que toma la información de dos díxitos. Hai que tener en cuenta que los cambeos realizaos equí tienen efeutos sobre dalgunes de les siguientes funciones."
+
+msgctxt ""
+"04060104.xhp\n"
+"par_id3150245\n"
+"help.text"
+msgid "<item type=\"input\">=CELL(\"ADDRESS\";'X:\\dr\\test.sxc'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.sxc'#$Sheet1.$D$2."
+msgstr "<item type=\"input\">=CELDA(\"ADDRESS\";'X:\\dr\\prueba.sxc'#$Fueya1.D2)</item> devuelve 'file:///X:/dr/prueba.sxc'#$Fueya1.$D$2."
+
+msgctxt ""
+"04060104.xhp\n"
+"par_id3148896\n"
+"help.text"
+msgid "<item type=\"input\">=CELL(\"FILENAME\";D2)</item> returns 'file:///X:/dr/own.sxc'#$Sheet1, if the formula in the current document X:\\dr\\own.sxc is located in Sheet1."
+msgstr "<item type=\"input\">=CELDA(\"FILENAME\";D2)</item> devuelve 'file:///X:/dr/own.sxc'#$Fueya1, si la fórmula del documentu actual X:\\dr\\own.sxc alcuentrase na Fueya1."
+
+msgctxt ""
+"04060104.xhp\n"
+"par_id3155144\n"
+"help.text"
+msgid "<item type=\"input\">=CELL(\"FILENAME\";'X:\\dr\\test.sxc'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.sxc'#$Sheet1."
+msgstr "<item type=\"input\">=CELDA(\"NOMEFICHERU\";'X:\\dr\\prueba.sxc'#$Fueya1.D2)</item> devuelve 'file:///X:/dr/prueba.sxc'#$Fueya1."
+
+msgctxt ""
+"04060104.xhp\n"
+"par_id3151004\n"
+"help.text"
+msgid "Returns the complete cell address in Lotus(TM) notation."
+msgstr "Devuelve la direición completa de caxella en notación Lotus(TM)."
+
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3151221\n"
+"help.text"
+msgid "<bookmark_value>GCD_ADD function</bookmark_value>"
+msgstr "<bookmark_value>M.C.D_ADD</bookmark_value>"
+
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3151221\n"
+"help.text"
+msgid "GCD_ADD"
+msgstr "M.C.D_ADD"
+
+msgctxt ""
+"04060106.xhp\n"
+"par_id3156205\n"
+"help.text"
+msgid "GCD_ADD(Number(s))"
+msgstr "GGT_ADD(Númberu(s))"
+
+msgctxt ""
+"04060106.xhp\n"
+"par_id3159192\n"
+"help.text"
+msgid "<item type=\"input\">=GCD_ADD(5;15;25)</item> returns 5."
+msgstr "<item type=\"input\">=MCD_ADD(5;15;25)</item> devuelve 5."
+
+msgctxt ""
+"04060106.xhp\n"
+"bm_id3154230\n"
+"help.text"
+msgid "<bookmark_value>LCM_ADD function</bookmark_value>"
+msgstr "<bookmark_value>M.C.M_ADD</bookmark_value>"
+
+msgctxt ""
+"04060106.xhp\n"
+"hd_id3154230\n"
+"help.text"
+msgid "LCM_ADD"
+msgstr "MCM_ADD"
+
+msgctxt ""
+"04060106.xhp\n"
+"par_id3154395\n"
+"help.text"
+msgid "LCM_ADD(Number(s))"
+msgstr "MCM_ADD(Númberu(s))"
+
+msgctxt ""
+"04060106.xhp\n"
+"par_id3145135\n"
+"help.text"
+msgid "<item type=\"input\">=LCM_ADD(5;15;25)</item> returns 75."
+msgstr "<item type=\"input\">=MCM_ADD(5;15;25)</item> devuelve 75."
+
+msgctxt ""
+"04060106.xhp\n"
+"par_id3155020\n"
+"help.text"
+msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
+msgstr "<emph>Mou</emph> ye un valor opcional. Si apúrrese'l valor Mou y nun ye igual a cero, y el so Númberu y cifra significativa son negativos, l'arredondio efeutuar según el valor absolutu del númberu. Esti parámetru omitir al esportase a MS Excel, yá que dichu programa nun conoz nengún tercer parámetru."
+
+msgctxt ""
+"04060106.xhp\n"
+"par_id3163792\n"
+"help.text"
+msgid "If both parameters Number and Significance are negative and the Mode value is equal to zero or is not given, the results in $[officename] and Excel will differ after the import has been completed. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+msgstr "Si ambos parámetro Númberu y Cifra significativa son negativos y el valor Mou ye igual a cero o nun ye dáu, la resultancia en $[officename] y Excel va ser distinta entós que la importación completárase. Si esporta la fueya de cálculu pa Excel, use Mou=1 pa ver la mesma resultancia en Excel como en Calc."
+
+msgctxt ""
+"04060106.xhp\n"
+"par_id3157517\n"
+"help.text"
+msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of the number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
+msgstr "<emph>Mou</emph> ye un valor opcional. Si apúrrese'l valor Mou y nun ye igual a cero, y si el so Númberu y cifra significativa son negativos, l'arredondio efeutuar según el valor absolutu del númberu. Esti parámetru omitir al esportase a MS Excel, yá que dichu programa nun conoz nengún tercer parámetru."
+
+msgctxt ""
+"04060106.xhp\n"
+"par_id3163894\n"
+"help.text"
+msgid "If both parameters Number and Significance are negative, and if the Mode value is equal to zero or is not specified, then the results in $[officename] Calc and Excel will differ after exporting. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+msgstr "Si ambos parámetro Númberu y Cifra significatica son negativos, y si el valor Mou ye igual a cero o nun ta especificáu, les resultancies en $[officename] Calc y Excel van ser distintes depués d'esportar. Si esporta la fueya de cálculu a Excel, use Mou=1 pa ver les mesmes resultancies en Excel como en Calc."
+
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154448\n"
+"help.text"
+msgid "if<emph>linearType</emph> is FALSE the straight line found is forced to pass through the origin (the constant a is zero; y = bx). If omitted, <emph>linearType</emph> defaults to TRUE (the line is not forced through the origin)."
+msgstr "si<emph>tipu_llinial</emph> ye FALSU la recta atopada ye forzada a pasar pol orixe (la constante a ye cero; y = bx). Si omítese, <emph>tipu_llinial</emph> se predetermina a VERDADERU (la recta nun ye forzada a pasar pol orixe)."
+
+msgctxt ""
+"04060107.xhp\n"
+"par_id3154142\n"
+"help.text"
+msgid "if<emph>stats</emph> is omitted or FALSE only the top line of the statistics table is returned. If TRUE the entire table is returned."
+msgstr "si <emph>estadística</emph> ye omitida o ye FALSU solamente retornárase la llinia cimera de la tabla d'estadístiques. Si ye VERDADERU la tabla entera sera retornada."
+
+msgctxt ""
+"04060108.xhp\n"
+"hd_id3153018\n"
+"1\n"
+"help.text"
+msgid "Statistics Functions"
+msgstr "Funciones estadístiques"
+
+msgctxt ""
+"04060108.xhp\n"
+"par_id3150271\n"
+"37\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Statistical Functions in the Analysis-AddIn.\">Statistical Functions in the Analysis-AddIn</link>"
+msgstr "<link href=\"text/scalc/01/04060116.xhp\" name=\"Statistical Functions in the Analysis-AddIn.\">Funciones estadístiques en Add-in d'analises</link>"
+
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148734\n"
+"36\n"
+"help.text"
+msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.sxc."
+msgstr "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"fueya1.A1\")</item> llee'l conteníu de la caxella A1 na fueya1 de la fueya de cálculu <item type=\"productname\">%PRODUCTNAME</item> Calc data1.sxc."
+
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153081\n"
+"37\n"
+"help.text"
+msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.sxw document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
+msgstr "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Máxima del día\")</item> devuelve una máxima na caxella que contién la fórmula. Primero, tien d'introducir una llinia nel documentu motto.sxw que contién el testu de la máxima y definilo como la primer llinia d'una seición que se llame <item type=\"literal\">Máxima del día</item> (en <item type=\"productname\">%PRODUCTNAME</item> Writer en <emph>Inxertar - Seición</emph>). Si modifícase la máxima (y guardar) nel documentu de <item type=\"productname\">%PRODUCTNAME</item> Writer, la máxima anovar en toles caxelles de <item type=\"productname\">%PRODUCTNAME</item> Calc nes que se defina esti enllaz DDE."
+
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149984\n"
+"88\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">SortOrder</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">SortOrder</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
+msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">Busca vertical con referencia a les caxelles axacentes a la derecha</ahelp> Esta función comprueba si un valor específicu esta conteníu na primer columna d'una matriz. La función devuelve'l valor na mesma filera de la columna llamada pol <item type=\"literal\">Índiz</item>. Si'l parámetru <item type=\"literal\">Ordenar</item> omítese o ye establecíu como VERDADERU o unu, asumir que los datos tán ordenaos de mou ascendente. Nesti casu, si el <item type=\"literal\">Criteriu de busca</item> nun ye atopáu, l'últimu valor que ye más pequeñu que'l criteriu va ser devueltu. Si <item type=\"literal\">Ordenar</item> ye establecíu como FALSU o cero, una concordanza esacta ten de ser atopada, d'otra miente el <emph>Fallu: Valor non disponible</emph> va ser la resultancia. Asina, col valor cero de los datos nun tien que ser ordenaos de mou ascendente."
+
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150156\n"
+"90\n"
+"help.text"
+msgid "=VLOOKUP(SearchCriterion; Array; Index; SortOrder)"
+msgstr "=BUSCARV(CriteriodeBúsqueda; Matriz; Índiz; Ordenar)"
+
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151208\n"
+"94\n"
+"help.text"
+msgid "<emph>SortOrder</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
+msgstr "<emph>Ordenar</emph> ye un parámetru opcional qu'indica si la primer columna de la matriz ordenar n'orde ascendente. Especifique'l valor booleano FALSU o cero si la primer columna nun ta ordenada n'orde ascendente. Les columnes ordenaes puen buscase más apriesa y la función siempres devuelve un valor, inclusive si'l valor de busca nun coincide esactamente, si atopar ente'l valor más altu y más baxu de la llista ordenada. Nes llistes ensin ordenar, el valor de busca tien de coincidir esactamente. De lo contrario, la función devuelve esti mensaxe: <emph>Fallu: Valor non disponible</emph>."
+
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154129\n"
+"96\n"
+"help.text"
+msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type=\"input\">100</item>, E1 contains the name <item type=\"input\">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type=\"literal\">SortOrder</item> parameter is not necessary."
+msgstr "Deseya introducir el númberu d'un platu nel menú na caxella A1, y el nome del platu pa apaeza como testu nes caxelles vecines (B1). El Númberu pal Nome asignáu esta conteníu na matriz D1:Y100. D1 contién <item type=\"input\">100</item>, Y1 contién el nome <item type=\"input\">Sopa de vexetales</item>, y asina sucesivamente, pa 100 elementos del menú. Los númberos na columna D son ordenaos de mou ascendente; polo tando, el parámetru opcional <item type=\"literal\">Ordenar</item> nun ye necesariu."
+
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153389\n"
+"124\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
+msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">Devuelve'l conteníu d'una caxella o bien dende un rangu d'una solo filera o una sola columna.</ahelp> Opcionalmente, el valor asignáu (del mesmu índiz) devueltu nuna columna y filera distinta. Como A diferencia de<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">BUSCARV</link> y <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">BUSCARH</link>, la busca y la resultancia del vector puen tar en distintes posiciones; nun tienen que ser axacentes. Amás, el vector de la busca BUSCAR tienen de ser ordenaos de mou ascendente, de lo contrario, la busca nun va amosar resultancies aplicables."
+
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146070\n"
+"154\n"
+"help.text"
+msgid "HLOOKUP(SearchCriteria; Array; Index; Sorted)"
+msgstr "BUSCARH(CriteriodeBúsqueda; Matriz; Índiz; Ordenar)"
+
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148672\n"
+"155\n"
+"help.text"
+msgid "See also:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
+msgstr "Consulte tamién:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">BUSCARV</link> (intercámbiense files y columnes)"
+
+msgctxt ""
+"04060110.xhp\n"
+"hd_id3145389\n"
+"1\n"
+"help.text"
+msgid "Text Functions"
+msgstr "Funciones de testu"
+
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3150870\n"
+"1\n"
+"help.text"
+msgid "Add-in Functions"
+msgstr "Funciones Add-in"
+
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3152871\n"
+"1\n"
+"help.text"
+msgid "Add-in Functions, List of Analysis Functions Part One"
+msgstr "Funciones add-in, llista de funciones d'analises, primer parte"
+
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149873\n"
+"102\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"General conversion function BASIS\">General conversion function BASIS</link>"
+msgstr "<link href=\"text/scalc/01/04060110.xhp\" name=\"General conversion function BASIS\">Función xeneral de conversión BASIS</link>"
+
+msgctxt ""
+"04060115.xhp\n"
+"par_id3145324\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Analysis functions Part Two\">Analysis functions Part Two</link>"
+msgstr "<link href=\"text/scalc/01/04060116.xhp\" name=\"Analysis functions Part Two\">Funciones d'analises, parte 2</link>"
+
+msgctxt ""
+"04060115.xhp\n"
+"par_id3155751\n"
+"156\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
+msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Tornar a la páxina xeneral</link>"
+
+#, fuzzy
+msgctxt ""
+"04060115.xhp\n"
+"par_id2950381\n"
+"136\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ERF_MS\">Returns values of the Gaussian error integral.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_ERF\">Devuelve los valores del fallu de la integral de Gauss.</ahelp>"
+
+#, fuzzy
+msgctxt ""
+"04060115.xhp\n"
+"par_id2963824\n"
+"138\n"
+"help.text"
+msgid "ERF.PRECISE(LowerLimit; UpperLimit)"
+msgstr "FUN.ERRU(LímiteInferior; LímiteSuperior)"
+
+msgctxt ""
+"04060115.xhp\n"
+"par_id2949715\n"
+"139\n"
+"help.text"
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral."
+msgstr "<emph>LímiteInferior</emph> ye la llende inferior de la integral."
+
+#, fuzzy
+msgctxt ""
+"04060115.xhp\n"
+"par_id2956294\n"
+"140\n"
+"help.text"
+msgid "<emph>UpperLimit</emph> is optional. It is the upper limit of the integral. If this value is missing, the calculation takes places between 0 and the lower limit."
+msgstr "<emph>LímiteSuperior</emph> ye opcional. Este ye la llende cimera de la integral. Si esti valor piérdese, el cálculu toma cifres ente 0 y la llende inferior."
+
+#, fuzzy
+msgctxt ""
+"04060115.xhp\n"
+"par_id2952974\n"
+"142\n"
+"help.text"
+msgid "<item type=\"input\">=ERF.PRECISE(0;1)</item> returns 0.842701."
+msgstr "<item type=\"input\">=FUN.ERRU(0;1)</item> devuelve 0.842701."
+
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3154659\n"
+"1\n"
+"help.text"
+msgid "Add-in Functions, List of Analysis Functions Part Two"
+msgstr "Funciones add-in, llista de funciones d'analises, segunda parte"
+
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151242\n"
+"174\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Category Statistics</link>"
+msgstr "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Categoría Estadística</link>"
+
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148869\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Analysis Functions Part One</link>"
+msgstr "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Funciones d'analises, parte 1</link>"
+
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147072\n"
+"240\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
+msgstr "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Tornar a la páxina xeneral</link>"
+
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155586\n"
+"help.text"
+msgid "<item type=\"input\">=RATE(3;10;900)</item> = -121% The interest rate is therefore 121%."
+msgstr "<item type=\"input\">=TASA(3;10;900)</item> = -121% El tipu d'interés ye 121%."
+
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150741\n"
+"39\n"
+"help.text"
+msgid "<emph>Number1; Number2;...Number 0</emph> are numerical values or ranges."
+msgstr "<emph>Númberu1; Númberu2;... Númberu0</emph> son los valores o rangos numbéricos."
+
+#, fuzzy
+msgctxt ""
+"04060185.xhp\n"
+"par_id3147405\n"
+"23\n"
+"help.text"
+msgid "FORECAST(Value; DataY; DataX)"
+msgstr "PRONÓSTICU(Valor; DatosY; DatosX)"
+
+#, fuzzy
+msgctxt ""
+"04080000.xhp\n"
+"par_id3149412\n"
+"help.text"
+msgid "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon."
+msgstr "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Amuesa les funciones disponibles.</ahelp> Al escoyer una función amuésase una curtia descripción nel área asitiada debaxo del llistáu. Pa inxertar la función escoyida, faiga doble clic nella o escueya'l símbolu <emph>Inxertar la función na fueya de cálculu</emph>."
+
+#, fuzzy
+msgctxt ""
+"04080000.xhp\n"
+"par_id3147345\n"
+"help.text"
+msgid "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Inserts the selected function into the document.</ahelp>"
+msgstr "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Inxerta la función escoyida nel documentu.</ahelp>"
+
+msgctxt ""
+"05020600.xhp\n"
+"par_id3156283\n"
+"15\n"
+"help.text"
+msgid "This cell protection only takes effect if you also protect the sheet (<emph>Tools - Protect Document - Sheet</emph>)."
+msgstr "Esta protección de caxella solo tien efeutu si protexóse tamién la fueya (<emph>Ferramientes - Protexer documentu - Fueya</emph>)."
+
+msgctxt ""
+"06060000.xhp\n"
+"par_id3153362\n"
+"2\n"
+"help.text"
+msgid "The<emph> Protect Document </emph>command prevents changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
+msgstr "El comandu <emph>Protexer documentu</emph> torga realizar cambeos nes caxelles de les fueyes o les fueyes d'un documentu. De forma opcional, pue definir una contraseña. Si define una contraseña, namái ye posible desaniciar la protección introduciendo la contraseña correcta."
+
+msgctxt ""
+"06060100.xhp\n"
+"par_id3148664\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable> Choose <emph>Tools - Protect Document - Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password."
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protexe les caxelles de la fueya actual contra posibles cambeos.</ahelp></variable> <emph>Ferramientes - Protexer documentu - Fueya de cálculu</emph> p'abrir el diálogu <emph>Protexer fueya</emph>, que dexa especificar la protección de la fueya con o ensin contraseña."
+
+msgctxt ""
+"06060100.xhp\n"
+"par_id3154490\n"
+"8\n"
+"help.text"
+msgid "Unprotected cells or cell ranges can be set up on a protected sheet by using the <emph>Tools - Protect Document - Sheet</emph> and <emph>Format - Cells - Cell Protection</emph> menus:"
+msgstr "Puen definise caxelles o árees de caxelles ensin protexer nuna fueya protexida por aciu los menúes <emph>Ferramientes - Protexer documentu - Fueya</emph> y <emph>Formatu - Caxelles - Protección de caxella</emph>:"
+
+msgctxt ""
+"06060100.xhp\n"
+"par_id3156384\n"
+"18\n"
+"help.text"
+msgid "On the <emph>Tools - Protect Document - Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
+msgstr "Active la protección de la fueya nel menú <emph>Ferramientes - Protexer documentu - Fueya de cálculu</emph>. De forma inmediata, namái va poder editar l'área escoyida nel pasu 1."
+
+msgctxt ""
+"06060100.xhp\n"
+"par_id3149566\n"
+"9\n"
+"help.text"
+msgid "To later change an unprotected area to a protected area, select the range. Next, on the <emph>Format - Cells - Cell Protection</emph> tab page, check the <emph>Protected</emph> box. Finally, choose the <emph>Tools - Protect Document - Sheet </emph>menu. The previously editable range is now protected."
+msgstr "Pa convertir una área de caxelles ensin protexer nuna área protexida, escuéyala. De siguío escueya'l caxellu de verificación <emph>Protexíu</emph> de la llingüeta <emph>Formatu - Caxella - Protección de caxella</emph>. Pa terminar, abra'l menú <emph>Ferramientes - Protexer documentu - Fueya de cálculu</emph>. La área qu'enantes podía editase ta agora protexía."
+
+msgctxt ""
+"06060100.xhp\n"
+"par_id3154656\n"
+"3\n"
+"help.text"
+msgid "A protected sheet or cell range can no longer be modified until this protection is disabled. To disable the protection, choose the <emph>Tools - Protect Document - Sheet</emph> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
+msgstr "Una fueya o una área protexíes nun puen modificar mientres nun se desactive la protección. Pa desactivar la protección, escueya la orde <emph>Ferramientes - Protexer documentu - Fueya de cálculu</emph>. Si nun se definió una contraseña, la protección de la fueya de cálculu desactivar de forma inmediata. Si la fueya ta protexida con una contraseña abre'l diálogu <emph>Desproteger fueya</emph>, nel que se debe escribir la contraseña."
+
+msgctxt ""
+"06060100.xhp\n"
+"par_id3148700\n"
+"12\n"
+"help.text"
+msgid "Complete protection of your work can be achieved by combining both options on the <emph>Tools - Protect Document</emph> menu, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialog mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
+msgstr "Pue protexese totalmente el trabayu por aciu la combinación de dambes opciones nel menú <emph>Ferramientes - Protexer documentu</emph>, incluyida la protección por aciu contraseña. Pa torgar totalmente que s'abrir el documentu, escueya'l caxellu de verificación <emph>Guardar con contraseña</emph> nel diálogu <emph>Guardar como</emph> enantes de calcar el botón <emph>Guardar</emph>."
+
+msgctxt ""
+"06060200.xhp\n"
+"par_id3145172\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect document</emph> dialog with <emph>Tools - Protect Document - Document</emph>. Optionally enter a password and click OK."
+msgstr "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protexe la estructura de la fueya del documentu contra posibles cambeos. Torga inxertar, desaniciar, mover, copiar o camudar el nome de fueyes.</ahelp></variable> diálogu <emph>Protexer documentu</emph> en <emph>Ferramientes - Protexer documentu - Documentu</emph>. De forma opcional, pue escribir una contraseña y faer clic n'Aceutar."
+
+msgctxt ""
+"06060200.xhp\n"
+"par_id3153188\n"
+"6\n"
+"help.text"
+msgid "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Document - Document</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
+msgstr "La estructura de los documentos de fueya de cálculu protexíos namái pue modificar si inhabilítase la opción <emph>Protexer</emph>. Nos menúes contestuales de les llingüetes de fueya asitiaes nel borde inferior namái pue activase la opción <emph>Escoyer toes</emph>. El restu d'elementos del menú tán desactivaos. Pa desaniciar la protección vuelva executar la orde <emph>Ferramientes - Protexer documentu - Documentu</emph>. Si nun s'asignó una contraseña, la protección queda darréu desactivada. Si asignóse una contraseña amosaráse'l diálogu <emph>Desproteger fueya</emph>, nel que tendrá d'escribir dicha contraseña. De siguío va poder desaniciar la marca qu'indica que la protección ta activada."
+
+msgctxt ""
+"06060200.xhp\n"
+"par_id3150717\n"
+"9\n"
+"help.text"
+msgid "You can completely protect your work by combining both options from <emph>Tools - Protect Document</emph>, including password entry. If you want to prevent the document from being opened by other users, select <emph>Save With Password </emph>and click the <emph>Save</emph> button. The <emph>Enter Password</emph> dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document."
+msgstr "Pue protexese totalmente el trabayu por aciu la combinación de dambes opciones en <emph>Ferramientes - Protexer documentu</emph>, especificando l'usu d'una contraseña. Pa torgar qu'otros usuarios abran el documentu, escueya <emph>Guardar con contraseña </emph>y calque el botón <emph>Guardar</emph>. Apaez el cuadru de diálogu <emph>Introduza la contraseña</emph>. Escueya curioso la so contraseña; si escaecer dempués de zarrar el documentu nun va poder aportar a él."
+
+msgctxt ""
+"func_networkdays.xhp\n"
+"hd_id3151254\n"
+"240\n"
+"help.text"
+msgid "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
+msgstr "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">DIAS.LAB</link></variable>"
+
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id3153788\n"
+"241\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Returns the number of workdays between a <emph>start date and an end date</emph>. Holidays can be deducted.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Devuelve'l númberu de díes llaborales ente una <emph>fecha d'entamu y un final de fecha</emph>. Les vacaciones puen ser deducíes.</ahelp>"
+
+msgctxt ""
+"func_networkdays.xhp\n"
+"hd_id3148677\n"
+"242\n"
+"help.text"
+msgid "Syntax"
+msgstr "Sintaxis"
+
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id3145775\n"
+"243\n"
+"help.text"
+msgid "NETWORKDAYS(StartDate; EndDate; Holidays)"
+msgstr "DIAS.LAB(FechaInicio; FechaFin; Vacaciones)"
+
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id3151110\n"
+"245\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
+msgstr "<emph>FinFecha</emph> ye la fecha hasta cuando'l cálculu llevar a cabu. Si la fecha final ye un trabayu, el día incluyir nel cálculu."
+
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id3154115\n"
+"246\n"
+"help.text"
+msgid "<emph>Holidays</emph> is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
+msgstr "<emph>Vacaciones</emph> ye una llista opcional de vacaciones. Estos díes nun son llaborales. Introduza un rangu de fecha nel que les vacaciones son llistaes individualmente."
+
+msgctxt ""
+"func_networkdays.xhp\n"
+"hd_id3146902\n"
+"247\n"
+"help.text"
+msgid "Example"
+msgstr "Exemplu"
+
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id3154661\n"
+"248\n"
+"help.text"
+msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
+msgstr "¿Cuántos díes non llaborales hai ente 2001-12-15 y 2002-01-15? La fecha d'entamu esta allugada en C3 y la fecha final en D3. Les caxelles F3 a J3 contienen los siguientes díes festivos Navidaes y Añu Nuevu: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
+
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id3147328\n"
+"249\n"
+"help.text"
+msgid "=NETWORKDAYS(C3;D3;F3:J3) returns 17 workdays."
+msgstr "=DIAS.LAB(C3;D3;F3:J3) devuelve 17 díes llaborales."
diff --git a/source/ast/helpcontent2/source/text/scalc/guide.po b/source/ast/helpcontent2/source/text/scalc/guide.po
index a0f3ac072e4..19cf389c2dc 100644
--- a/source/ast/helpcontent2/source/text/scalc/guide.po
+++ b/source/ast/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-07-05 16:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Poedit-SourceCharset: utf-8\n"
-"X-POOTLE-MTIME: 1467737395.000000\n"
+"X-POOTLE-MTIME: 1467737379.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -2145,8 +2145,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "Pa establecer el rangu fonte como l'área escueya les caxelles y escueya <emph>Inxertar - Nomes - Definir</emph>. Guarde'l documentu fonte y nun lu zarre."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11883,8 +11883,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "Escueya una caxella o área de caxelles y escueya <emph>Inxertar - Nomes - Definir</emph>. Ábrese'l diálogu <emph>Definir nomes</emph>."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11936,8 +11936,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Inxertar - Nomes - Definir\">Inxertar - Nomes - Definir</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/shared/00.po b/source/ast/helpcontent2/source/text/shared/00.po
index f2829248956..d1c08b2747e 100644
--- a/source/ast/helpcontent2/source/text/shared/00.po
+++ b/source/ast/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 16:50+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-05-24 02:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
"Language: ast\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467737456.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1464056709.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -12290,15 +12290,6 @@ msgstr "Menú <emph>Formatu - Páxina... </emph>- Ficha <emph>Fondu</emph> (en $
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "Escueya <emph>Formatu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oxetu - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráficu - </emph></caseinline></switchinline><emph>Área, ficha Colores</emph>"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index 2003e64afc9..c7eb4656158 100644
--- a/source/ast/helpcontent2/source/text/shared/01.po
+++ b/source/ast/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-10-18 20:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476821963.000000\n"
#: 01010000.xhp
@@ -8291,7 +8291,7 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
msgstr ""
#: 02100100.xhp
@@ -25620,32 +25620,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr ""
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr ""
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr ""
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr ""
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43243,6 +43217,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr ""
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/ast/helpcontent2/source/text/shared/guide.po b/source/ast/helpcontent2/source/text/shared/guide.po
index a8d00e96bbd..741c9cda429 100644
--- a/source/ast/helpcontent2/source/text/shared/guide.po
+++ b/source/ast/helpcontent2/source/text/shared/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 17:14+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-07-05 17:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
"Language: ast\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467738860.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467738806.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2278,7 +2278,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9947,8 +9947,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "Pa saltar a una caxella nuna fueya de cálculu, primero escriba'l nome de la caxella (<emph>Inxertar - Nomes - Definir</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12469,20 +12469,20 @@ msgstr "Na llingüeta <emph>Opciones</emph>, verifique si escoyóse <emph>Sincro
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "Desque calcara sobre <emph>Nuevu documentu</emph>, verá una pequeña ventana col botón <emph>Sincronizar etiquetes</emph>. Escriba la primera etiqueta. Desque calque nel botón <emph>Sincronizar etiquetes</emph>, la etiqueta en cuestión va copiar en toles otres etiquetes de la fueya."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "Calque en <emph>Nuevu documentu</emph> pa crear un documentu nuevu cola configuración introducida."
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "Calque en <emph>Nuevu documentu</emph> pa crear un documentu nuevu cola configuración introducida."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "Desque calcara sobre <emph>Nuevu documentu</emph>, verá una pequeña ventana col botón <emph>Sincronizar etiquetes</emph>. Escriba la primera etiqueta. Desque calque nel botón <emph>Sincronizar etiquetes</emph>, la etiqueta en cuestión va copiar en toles otres etiquetes de la fueya."
#: labels.xhp
msgctxt ""
@@ -18393,58 +18393,53 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Entamu del software $[officename] con parámetros"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>parámetros d'entamu</bookmark_value><bookmark_value>parámetros de llinia de comandos</bookmark_value><bookmark_value>parámetros;llinia de comandos</bookmark_value><bookmark_value>argumentos en llinia de comandos</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Entamu del software $[officename] con parámetros"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "Si empecipia'l software de $[officename] dende la llinia d'ordes, va poder asignar dellos parámetros colos que pue influyise nel rendimientu. L'usu de los parámetros de la llinia d'ordes namái s'encamienta a los usuarios esperimentaos."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "Pa un manexu normal, nun ye necesariu l'usu de los parámetros de la llinia d'ordes. Dalgunos de los parámetros riquen una mayor conocencia téunica de la tecnoloxía del software de $[officename]."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "Entamu del software de $[officename] dende la llinia d'ordes"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
msgstr ""
@@ -18453,16 +18448,14 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "En Windows, escriba'l testu siguiente nel campu de testu <emph>Abrir</emph> y calque <emph>Aceutar</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
msgstr ""
@@ -18471,679 +18464,649 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "Sustituya <emph>{instal}</emph> cola ruta a la instalación de $[officename] (por exemplu, <emph>C:\\Ficheros de programa\\Office</emph> o <emph>/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "Cuando se solicite, sustituya <emph>{parámetru}</emph> por unu o más de los parámetros de la llinia d'ordes siguientes."
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "Parámetros válidos de la llinia d'ordes"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "Parámetru"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "Significáu"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "--help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "Numbera los parámetros de la llinia de comandos disponibles <switchinline select=\"sys\"><caseinline select=\"WIN\">nun cuadru de diálogu</caseinline><defaultinline>na consola</defaultinline></switchinline>. -help amuesa un testu d'ayuda estensu; -h amuesa un testu d'ayuda curtia."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
-msgstr "--version"
+msgid "Opens the file and applies specified macros from the file."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
-msgstr "Amuesa información tocante a la versión."
+msgid "Getting help and information"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "--writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "Empecipiar con un documentu baleru de Writer."
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "--calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "Empecipiar con un documentu baleru de Calc."
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "--draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "Empecipiar con un documentu baleru de Draw."
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "--impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "Empecipiar con un documentu baleru de Impress."
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "--math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "Empecipiar con un documentu baleru de Math."
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "--global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "Empecipiar con un documentu maestru de Writer baleru."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "--web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "Empecipiar con un documentu baleru d'HTML."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "--show {nomeficheru.odp}"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "Empecípiase'l col ficheru de Impress <emph>{nomeficheru.odp}</emph> y empieza la presentación. Entra nel mou d'edición dempués de la presentación."
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
"help.text"
-msgid "--minimized"
-msgstr "--minimized"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
+"help.text"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "Empecípiase embrivíu. Nun s'amuesa la pantalla inicial."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "--invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "Empecipiar en mou invisible."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Nun van ser visibles nin el logotipu d'entamu nin la ventana inicial del programa. Sicasí, pue controlase'l software de $[officename] y puen abrise los cuadros de diálogu y los documentos por aciu de la <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "Nun pue usase en conxunción con <emph>-quickstart</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Pue atopar más información en $[officename] <emph>Developer's Guide</emph>."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
"help.text"
-msgid "--norestore"
-msgstr "--norestore"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
+"help.text"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "Desactiva'l reaniciu y la recuperación de ficheros dempués d'una caída del sistema."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "Disables the Welcome Wizard."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "--quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Activa l'Entamu rápidu."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "--accept={cadena UNO}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "Echa voz d'un $[officename] que tres la creación de \"UNU Acceptor Threads\" va usase \"UNU Accept String\"."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Pue atopar más información en $[officename] <emph>Developer's Guide</emph>."
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "--unaccept={cadena UNO}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
+msgid "Exit after loading documents."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {nome de ficheru 1} {nome de ficheru 2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "Imprime los ficheros <emph>{nomeficheru1} {nomeficheru2} ...</emph> na imprentadora predeterminada y remata. Nun s'amuesa la pantalla inicial."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Si'l nome de ficheru contién espacios, tien d'acutase con comines."
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "--pt {nome d'imprentadora} {nome de ficheru 1} {nome de ficheru 2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "Imprime los ficheros <emph>{nomeficheru1} {nomeficheru2} ...</emph> na imprentadora <emph>{nomeimprentadora}</emph> y remata. Nun s'amuesa la pantalla inicial."
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Si'l nome de ficheru contién espacios, tien d'acutase con comines."
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {nome de ficheru}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "Abre <emph>{nome de ficheru}</emph> pal so cambéu, inclusive anque seya una plantía."
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "--view {nome de ficheru}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "Crea una copia temporal de <emph>{nome de ficheru}</emph> y abrir nel mou de namái llectura."
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {nome de ficheru}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "Crea un nuevu documentu por aciu <emph>{nome de ficheru}</emph> como una plantía."
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "--nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "Desactiva la pantalla d'entamu al arrincar el programa."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "--nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "Si'l nome de ficheru contién espacios, tien d'acutase con comines."
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "Empecipiar ensin amosar nada sacante la pantalla inicial."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
-msgstr "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3150828\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3145268\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "Amestar esti parámetru pal comandu d'entamu del programa pa evitar la bienvenida del Asistente."
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id3153838\n"
"help.text"
-msgid "--display {display}"
-msgstr "--display {display}"
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id315053p\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "--headless"
-msgstr "--headless"
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id315053q\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "Empecipiar en \"mou ensin representación gráfica\" que dexa usar l'aplicación ensin la interfaz del usuariu."
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Pue usase esti mou especial cuando veceros esternos controlen l'aplicación por aciu de la <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "--infilter={filter}"
-msgstr "--infilter={filter}"
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
+msgid "Ignored switches"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (MacOS X only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
+msgid "Ignored (COM+ related; Windows only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id20161204014529900\n"
+"help.text"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
msgstr ""
#: startcenter.xhp
diff --git a/source/ast/sc/source/ui/src.po b/source/ast/sc/source/ui/src.po
index 80bdb9897aa..fc48b567e0d 100644
--- a/source/ast/sc/source/ui/src.po
+++ b/source/ast/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 16:30+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467649817.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595152.000000\n"
#: filter.src
msgctxt ""
@@ -9682,8 +9682,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Totaliza los argumentos que cumplen les condiciones."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/ast/svx/uiconfig/ui.po b/source/ast/svx/uiconfig/ui.po
index 54862f8e483..264915c9d6c 100644
--- a/source/ast/svx/uiconfig/ui.po
+++ b/source/ast/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 16:53+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467651217.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595753.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3067,14 +3067,13 @@ msgid "Search for st_yles"
msgstr "Guetar est_ilos"
#: findreplacedialog.ui
-#, fuzzy
msgctxt ""
"findreplacedialog.ui\n"
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "Inorar diacríticos CTL"
+msgid "Ignore diac_ritics"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -3082,7 +3081,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5192,10 +5191,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5210,10 +5209,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/ast/sw/uiconfig/swriter/ui.po b/source/ast/sw/uiconfig/swriter/ui.po
index 998e45f59f7..6b2f57260ac 100644
--- a/source/ast/sw/uiconfig/swriter/ui.po
+++ b/source/ast/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 17:00+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-11 21:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ast\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467651647.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1478898474.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -9951,26 +9951,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/ast/xmlsecurity/uiconfig/ui.po b/source/ast/xmlsecurity/uiconfig/ui.po
index 8a822e994ad..bb5f9983dc6 100644
--- a/source/ast/xmlsecurity/uiconfig/ui.po
+++ b/source/ast/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:02+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 12:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467651738.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595753.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -211,6 +211,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/be/sc/source/ui/src.po b/source/be/sc/source/ui/src.po
index fc78bd5af79..8ee0b619417 100644
--- a/source/be/sc/source/ui/src.po
+++ b/source/be/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: src\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:07+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467652071.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594962.000000\n"
#: filter.src
msgctxt ""
@@ -9911,8 +9911,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Падсумоўвае аргументы, якія адпавядаюць умовам."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
#, fuzzy
diff --git a/source/be/svx/uiconfig/ui.po b/source/be/svx/uiconfig/ui.po
index 930247f9484..472f6b15d04 100644
--- a/source/be/svx/uiconfig/ui.po
+++ b/source/be/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:27+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467653265.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595422.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3095,7 +3095,7 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
+msgid "Ignore diac_ritics"
msgstr ""
#: findreplacedialog.ui
@@ -3104,7 +3104,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5240,10 +5240,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5258,10 +5258,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/be/sw/uiconfig/swriter/ui.po b/source/be/sw/uiconfig/swriter/ui.po
index a4c5a888230..58c734b77f5 100644
--- a/source/be/sw/uiconfig/swriter/ui.po
+++ b/source/be/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 17:32+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-11 20:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467653530.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1478895851.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -9956,26 +9956,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/be/xmlsecurity/uiconfig/ui.po b/source/be/xmlsecurity/uiconfig/ui.po
index 1cf570df398..d5443bae3a3 100644
--- a/source/be/xmlsecurity/uiconfig/ui.po
+++ b/source/be/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:33+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 12:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467653602.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595422.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -211,6 +211,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/bg/helpcontent2/source/text/scalc/00.po b/source/bg/helpcontent2/source/text/scalc/00.po
index 17a9e1e7501..f0fe446cbe7 100644
--- a/source/bg/helpcontent2/source/text/scalc/00.po
+++ b/source/bg/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-11-26 00:38+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1480120717.000000\n"
@@ -554,8 +554,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">Изберете <emph>Вмъкване - Имена</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -572,8 +572,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "Изберете <emph>Вмъкване - Имена - Дефиниране</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -590,8 +590,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">Изберете <emph>Вмъкване - Имена - Вмъкване</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -599,8 +599,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">Изберете <emph>Вмъкване - Имена - Създаване</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -608,8 +608,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">Изберете <emph>Вмъкване - Имена - Етикети</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index dae16fb95e3..94c05e6a365 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-10-13 08:59+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LibreOffice на български\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1476349170.000000\n"
@@ -20652,8 +20652,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=INDEX(СумаX;4;1)</item> връща стойността от ред 4 и колона 1 на областта <emph>СумаX</emph>, зададена в <emph>Вмъкване - Имена - Дефиниране</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20677,8 +20677,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=INDEX((multi);4;1)</item> връща стойността от ред 4 и колона 1 от (несвързана) област, наименувана във <emph>Вмъкване - Имена - Дефиниране</emph> като <emph>multi</emph>. Несвързаната област може да се състои от няколко правоъгълни области, всяка от които съдържа ред 4 и колона 1. Ако желаете да посочите втория блок от несвързаната област, въведете числото <item type=\"input\">2</item> като стойност на параметъра <emph>Област</emph>."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -49848,8 +49848,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "Имена"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -49857,8 +49857,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Имена\">Имена</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50248,8 +50248,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Изберете областта, съдържаща всички диапазони, които желаете да наименувате. След това изберете <emph>Вмъкване - Имена - Създаване</emph>. Така ще отворите диалоговия прозорец <emph>Създаване на имена</emph>, от който можете да изберете желаните настройки за наименуване."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52135,8 +52135,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Изберете <emph>-няма-</emph>, за да премахнете дефиницията на област за печат от текущия лист. Изберете <emph>-целият лист-</emph>, за да зададете целия лист като област за печат. Посочете <emph>-избрано-</emph>, за да зададете избраната област от лист като област за печат. Избирайки <emph>-дефинирана от потребителя-</emph>, можете да зададете област за печат, която вече е дефинирана с командата <emph>Форматиране - Области за печат - Дефиниране</emph>. Ако сте дали име на област с командата <emph>Вмъкване - Имена - Дефиниране</emph>, това име ще бъде показано и ще можете да го изберете от списъка."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/scalc/guide.po b/source/bg/helpcontent2/source/text/scalc/guide.po
index 477c5eb5e39..bf69a76ac5e 100644
--- a/source/bg/helpcontent2/source/text/scalc/guide.po
+++ b/source/bg/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-11-26 00:32+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1480120357.000000\n"
@@ -2132,8 +2132,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "За да посочите областта източник, изберете клетките и изберете <emph>Вмъкване - Имена - Дефиниране</emph>. Запишете документа източник и го оставете отворен."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11832,8 +11832,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "Изберете клетка или област от клетки, след което изберете <emph>Вмъкване - Имена - Дефиниране</emph>. Появава се диалога <emph>Дефиниране на имена</emph>."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11885,8 +11885,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Вмъкване - Имена - Дефиниране\">Вмъкване - Имена - Дефиниране</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/00.po b/source/bg/helpcontent2/source/text/shared/00.po
index a33e70a2463..ed17fa4f2d9 100644
--- a/source/bg/helpcontent2/source/text/shared/00.po
+++ b/source/bg/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-10-14 08:32+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476433950.000000\n"
#: 00000001.xhp
@@ -12070,15 +12070,6 @@ msgstr "Изберете <emph>Форматиране - Страница</emph>
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "Изберете <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област -</emph> раздел <emph>Цветове</emph>"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/bg/helpcontent2/source/text/shared/01.po b/source/bg/helpcontent2/source/text/shared/01.po
index 517d6031a3d..9aa6d2c611b 100644
--- a/source/bg/helpcontent2/source/text/shared/01.po
+++ b/source/bg/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 19:01+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-10-13 12:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1476817280.000000\n"
+"X-POOTLE-MTIME: 1476362238.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -8292,8 +8292,8 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
-msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Въведете броя знаци в търсения текст, които може да са заменени.</ahelp> Например, ако зададете 2 знака, \"хотел\" и \"петел\" ще се считат за подобни."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
+msgstr ""
#: 02100100.xhp
msgctxt ""
@@ -25621,32 +25621,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Щракнете върху запълването, което желаете да приложите върху избрания обект.</ahelp>"
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "Цветове"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Цветове\">Цветове</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr "Тук можете да изберете цвят, който да бъде приложен, да запишете текущия списък с цветове или да заредите друг."
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43244,6 +43218,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Въведете повторно главната парола.</ahelp>"
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/bg/helpcontent2/source/text/shared/guide.po b/source/bg/helpcontent2/source/text/shared/guide.po
index d4d19df9e36..93b8cc54820 100644
--- a/source/bg/helpcontent2/source/text/shared/guide.po
+++ b/source/bg/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-10-13 14:01+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1476367305.000000\n"
@@ -2191,7 +2191,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2271,7 +2271,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9920,8 +9920,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "За скок към клетка в електронна таблица първо въведете име за клетката (<emph>Вмъкване - Имена - Дефиниране</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12429,20 +12429,20 @@ msgstr "Уверете се, че в раздела <emph>Настройки</em
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "След като щракнете върху <emph>Нов документ</emph>, ще видите малък прозорец с бутон <emph>Синхронизиране на етикетите</emph>. Въведете първия етикет. Когато щракнете върху бутона <emph>Синхронизиране на етикетите</emph>, текущият отделен етикет ще бъде копиран върху всички останали етикети в листа."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "Щракнете върху <emph>Нов документ</emph>, за да създадете нов документ с въведените настройки."
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "Щракнете върху <emph>Нов документ</emph>, за да създадете нов документ с въведените настройки."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "След като щракнете върху <emph>Нов документ</emph>, ще видите малък прозорец с бутон <emph>Синхронизиране на етикетите</emph>. Въведете първия етикет. Когато щракнете върху бутона <emph>Синхронизиране на етикетите</emph>, текущият отделен етикет ще бъде копиран върху всички останали етикети в листа."
#: labels.xhp
msgctxt ""
@@ -18305,758 +18305,721 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Стартиране на $[officename] с параметри"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>стартиране с параметри</bookmark_value><bookmark_value>команден ред, параметри за</bookmark_value><bookmark_value>параметри;команден ред</bookmark_value><bookmark_value>аргументи в командния ред</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Стартиране на $[officename] с параметри"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "Стартирайки $[officename] от командния ред можете да задавате различни параметри, с които да влияете върху работата на софтуера. Употребата на тези параметри се препоръчва само за опитни потребители."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "За нормална работа параметрите на командния ред не са необходими. Някои от тях изискват по-дълбоко познаване на техническите страни на реализацията на $[officename]."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "Стартиране на $[officename] от командния ред"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
-msgstr "В Windows изберете <emph>Run</emph> (Изпълни) от менюто Start (Старт), а в Linux, *BSD или Mac OS X отворете команден прозорец."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "В Windows въведете следния текст в текстовото поле <emph>Open</emph> (Отвори) и натиснете бутона <emph>OK</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
-msgstr "В съвместима с UNIX система въведете следния текст, после натиснете <emph>Return</emph>:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{инсталация}\\program\\soffice.exe {параметър} </caseinline><caseinline select=\"UNIX\">{инсталация}/program/soffice {параметър} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "Заменете <emph>{инсталация}</emph> с пътя до вашата инсталация на $[officename] (например <emph>C:\\Program Files\\Office</emph> или <emph>~/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "Ако е необходимо, на мястото на <emph>{параметър}</emph> въведете един или повече от следните параметри за командния ред."
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "Валидни параметри за командния ред"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "Параметър"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "Значение"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "--help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "Изброява параметрите за командния ред в <switchinline select=\"sys\"><caseinline select=\"WIN\">диалогов прозорец</caseinline><defaultinline>конзолата</defaultinline></switchinline>."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
-msgstr "--version"
+msgid "Opens the file and applies specified macros from the file."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
-msgstr "Показва информация за версията."
+msgid "Getting help and information"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "--writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "Стартира с празен документ на Writer."
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "--calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "Стартира с празен документ на Calc."
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "--draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "Стартира с празен документ на Draw."
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "--impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "Стартира с празен документ на Impress."
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "--math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "Стартира с празен документ на Math."
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "--global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "Стартира с празен главен документ на Writer."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "--web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "Стартира с празен документ на HTML."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "--show {файл.odp}"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "Стартира с файла на Impress <emph>{файл.odp}</emph> и започва презентация. След края на презентацията се включва режимът на редактиране."
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
+"help.text"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
"help.text"
-msgid "--minimized"
-msgstr "--minimized"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "Стартира с минимизиран прозорец. Приветственият екран не се показва."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "--invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "Стартира в невидим режим."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Няма да се вижда нито логото при стартиране, нито началният прозорец на програмата. Независимо от това, $[officename] ще може да бъде управляван – включително да бъдат отваряни документи и диалогови прозорци – чрез <link href=\"http://api.libreoffice.org\" name=\"API\">интерфейса за приложни програми (API)</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
-msgstr "Когато $[officename] е стартиран с този параметър, може да бъде спрян само с диспечера на задачите (Task Manager) (в Windows) или командата <emph>kill</emph> (в съвместимите с UNIX системи)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "Той не може да бъде използван заедно с <emph>-quickstart</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Повече информация можете да намерите в <emph>ръководството за разработчици на $[officename]</emph>."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
+"help.text"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
"help.text"
-msgid "--norestore"
-msgstr "--norestore"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "Забранява рестартирането и възстановяването на файлове след срив на системата."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "Забранява началния помощник при стартиране."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "--quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Включва Quickstarter."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "--accept={низ на UNO}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "Уведомява $[officename], че при създаването на „UNO Acceptor Threads“ ще се използва „UNO Accept String“."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Повече информация можете да намерите в <emph>ръководството за разработчици на $[officename]</emph>."
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "--unaccept={низ на UNO}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
-msgstr "Затваря обект acceptor, отворен с --accept={UNO string}. Използвайте --unaccept=all, за да затворите всички отворени обекти acceptor."
+msgid "Exit after loading documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {файл1} {файл2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "Отпечатва файловете <emph>{файл1} {файл2} ...</emph> с принтера по подразбиране и приключва работа. Приветственият екран не се появява."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Ако името на файла съдържа интервали, трябва да бъде заградено с кавички."
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "--pt {принтер} {файл1} {файл2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "Отпечатва файловете <emph>{файл1} {файл2} ...</emph> с принера <emph>{принтер}</emph> и приключва работа. Приветственият екран не се появява."
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Ако името на файла съдържа интервали, трябва да бъде заградено с кавички."
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {файл}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "Отваря <emph>{файл}</emph> за редактиране, дори ако е шаблон."
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "--view {файл}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "Създава временно копие на <emph>{файл}</emph> и го отваря само за четене."
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {файл}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "Създава нов документ от шаблона <emph>{файл}</emph>."
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "--nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "Забранява показването на приветствения екран при стартиране."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "--nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "Ако името на файла съдържа интервали, трябва да бъде заградено с кавички."
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "Стартира без да показва каквото и да е освен приветствения екран."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
-msgstr "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
-msgstr "Забранява проверката за отдалечено използване на инсталацията."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150828\n"
+"help.text"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3145268\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3153838\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "Добавете този параметър към командата за стартиране на програмата, за да забраните началния помощник."
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id315053p\n"
"help.text"
-msgid "--display {display}"
-msgstr "--display {дисплей}"
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
-msgstr "Задава на променливата от обкръжението <emph>DISPLAY</emph> в съвместими с UNIX платформи стойност <emph>{дисплей}</emph>. Този параметър се поддържа само от стартовия скрипт за $[officename] в съвместими с UNIX платформи."
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id315053q\n"
"help.text"
-msgid "--headless"
-msgstr "--headless"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "Стартира в режим без дисплей, който позволява на приложението да работи без потребителски интерфейс."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Този специален режим може да се използва, когато приложението се управлява от външни клиенти чрез <link href=\"http://api.libreoffice.org\" name=\"API\">интерфейса за приложни програми (API)</link>."
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "--infilter={filter}"
-msgstr "--infilter={филтър}"
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
-msgstr "Налага тип на входния филтър, например --infilter=\"Calc Office Open XML\"."
+msgid "Ignored switches"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
-msgstr "--convert-to разширение_на_резултата[:име_на_изходен_филтър] [--outdir директория_за_резултата] файлове"
+msgid "Ignored (MacOS X only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
-msgstr "Пакетно преобразуване на файлове. Ако не е зададен --outdir, за output_dir се използва текущата директория.<br/>Например --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (COM+ related; Windows only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014529900\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
-msgstr "--print-to-file [--printer-name име_на_принтер] [--outdir директория_за_резултата] файлове"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
-msgstr "Пакетно отпечатване на файлове във файл. Ако не е зададен --outdir, за output_dir се използва текущата директория.<br/>Например --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
+msgstr ""
#: startcenter.xhp
msgctxt ""
diff --git a/source/bg/sc/source/ui/src.po b/source/bg/sc/source/ui/src.po
index acd897e9f92..5f9f96d7a44 100644
--- a/source/bg/sc/source/ui/src.po
+++ b/source/bg/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-14 11:07+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:30+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476443221.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595432.000000\n"
#: filter.src
msgctxt ""
@@ -9669,8 +9669,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Сумира аргументите, отговарящи на условията."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/bg/svx/uiconfig/ui.po b/source/bg/svx/uiconfig/ui.po
index 1b508d123b6..a34077f5908 100644
--- a/source/bg/svx/uiconfig/ui.po
+++ b/source/bg/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-11 13:34+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 13:11+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476192881.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480597889.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3061,8 +3061,8 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "Игнориране диакритиките в сложна писменост"
+msgid "Ignore diac_ritics"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5161,10 +5161,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5179,10 +5179,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/bg/sw/uiconfig/swriter/ui.po b/source/bg/sw/uiconfig/swriter/ui.po
index d685e363469..7730e892723 100644
--- a/source/bg/sw/uiconfig/swriter/ui.po
+++ b/source/bg/sw/uiconfig/swriter/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-12-02 13:08+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: none\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480684117.000000\n"
#: abstractdialog.ui
@@ -9822,26 +9822,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/bg/xmlsecurity/uiconfig/ui.po b/source/bg/xmlsecurity/uiconfig/ui.po
index f5efcfa5a7a..b1d53610742 100644
--- a/source/bg/xmlsecurity/uiconfig/ui.po
+++ b/source/bg/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-11-26 13:44+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 13:23+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480167864.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480598629.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr "Описание"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/00.po b/source/bn-IN/helpcontent2/source/text/scalc/00.po
index c722c123637..4217d56970a 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/00.po
+++ b/source/bn-IN/helpcontent2/source/text/scalc/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 13:29+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-22 16:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn_IN\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467725345.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479833988.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -573,8 +573,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\"><emph>সন্নিবেশ - নাম</emph> নির্বাচন করুন</variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -591,8 +591,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "<emph>সন্নিবেশ - নাম - নির্ধারণ</emph> নির্বাচন করুন"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -609,8 +609,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\"><emph>সন্নিবেশ - নাম - সন্নিবেশ</emph> নির্বাচন করুন</variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -618,8 +618,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\"><emph>সন্নিবেশ - নাম - তৈরি</emph> নির্বাচন করুন</variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -627,8 +627,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\"><emph>সন্নিবেশ - নাম - লেবেল</emph> নির্বাচন করুন</variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/01.po b/source/bn-IN/helpcontent2/source/text/scalc/01.po
index 0df6f6f4213..64a04abafc9 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/01.po
+++ b/source/bn-IN/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 18:54+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-25 08:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn_IN\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476816849.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480060949.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -20795,8 +20795,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "যেভাবে <emph>অন্তর্ভুক্ত করুন - নাম - সংজ্ঞায়িত করুন </emph> তে বর্ণনা করা হয়েছে <emph>সমষ্টিX</emph> সীমানা সারি ৪ এবং কলাম ১ হতে <item type=\"input\">=INDEX(SumX;4;1)</item> মান ফলাফল প্রদান করে।"
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20820,8 +20820,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=INDEX((multi);4;1)</item> দ্বারা বিবিধ সীমার মধ্যে, সারি ৪ এবং কালম ১ এর মানগুলোকে বুঝায় যা <emph>সন্নিবেশ - নাম - সংজ্ঞা</emph> এর আওতায় <emph>বিবিধ</emph> হিসাবে নামকরণ করা হয়। বিবিধ সীমায়, প্রত্যেক সারি ৪ এবং কালম ১ দ্বারা তৈরি চতুস্কোনীয় সীমা থাকে। আপনি যদি এখন বিবিধ সীমার দ্বিতীয় ব্লকে কল করতে চান তবে <emph>সীমা</emph> পরিধি হিসাবে <item type=\"input\">২</item> নম্বর দিন।"
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -50384,8 +50384,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "নাম"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50393,8 +50393,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">নাম</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50784,8 +50784,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "সকল পরিসর রয়েছে এমন একটি এলাকা নির্বাচন করুন, যা আপনি নামকরণ করতে চান। তারপর <emph>সন্নিবেশ - নাম - তৈরি</emph> নির্বাচন করুন। এটি <emph>নাম তৈরিকরণ</emph> ডায়ালগ খোলে, যেখান হতে আপনি আপনার পছন্দসই নামকরণ অপশন নির্বাচন করতে পারেন।"
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52680,8 +52680,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "বর্তমান স্প্রেডশীটের জন্য একটি মুদ্রণ পরিসর বর্ণনা সরাতে <emph>-কোনটাই নয়-</emph> নির্বাচন করা হয়। একটি মুদ্রণ পরিসর হিসেবে বর্তমান পাতাটি স্থির করার জন্য <emph>-সম্পূর্ণ পাতা-</emph>নির্বাচন করা হয়। মুদ্রণ পরিসর হিসেবে স্প্রেডশীটের নির্বাচিত এলাকা সংজ্ঞায়িত করতে <emph>-নির্বাচন-</emph> নির্বাচন করুন। <emph>-ব্যবহারকারী- সংজ্ঞায়িত-</emph> নির্বাচন করার মাধ্যমে, আপনি একটি মুদ্রণ পরিসর সংজ্ঞায়িত করতে পারেন যা ইতিমধ্যেই <emph>বিন্যাস - মুদ্রণ পরিসর - নির্ধারণ করা</emph> কমান্ড দ্বারা সংজ্ঞায়িত করেছেন। যদি আপনি <emph>অন্তর্ভুক্ত করা - নাম - নির্ধারণ করা</emph> কমান্ড ব্যবহার করে একটি নাম প্রদান করেন, তাহলে এই নামটি প্রদর্শিত হবে এবং তালিকা বাক্স হতে নির্বাচন করা যাবে।"
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/guide.po b/source/bn-IN/helpcontent2/source/text/scalc/guide.po
index 5308b03306b..d6a33b999e4 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-05-07 23:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462664824.000000\n"
#: address_auto.xhp
@@ -2140,8 +2140,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "উৎস পরিসরকে পরিসর হিসেবে নির্ধারণ করতে, ঘর নির্বাচন করুন এবং <emph>সন্নিবেশ করান - নাম - সংজ্ঞায়িত করুন</emph>পছন্দ করুন।বর্তমান নথি সংরক্ষণ করুন, এবং এটি বন্ধ করবেন না।"
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11866,8 +11866,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "একটি ঘর অথবা ঘর পরিসর নির্বাচন করুন, এরপর <emph>সন্নিবেশ করান - নাম - সংজ্ঞা</emph>পছন্দ করুন। <emph>নাম সংজ্ঞায়িত করুন</emph> ডায়ালগ আবির্ভূত হবে।"
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11919,8 +11919,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">সন্নিবেশ করান - নাম - সংজ্ঞায়িত করুন</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/00.po b/source/bn-IN/helpcontent2/source/text/shared/00.po
index a81141d687a..a349c314b19 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/00.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 16:33+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-05-24 02:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn_IN\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467736382.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1464056622.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -12201,15 +12201,6 @@ msgstr "<emph>বিন্যাস - পৃষ্ঠা - পটভূমি</e
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "<emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>এলাকা - রং</emph> ট্যাবটি নির্বাচন করুন"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/bn-IN/helpcontent2/source/text/shared/01.po b/source/bn-IN/helpcontent2/source/text/shared/01.po
index c2198ac5399..cb9563f3355 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/01.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-10-18 20:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476821644.000000\n"
#: 01010000.xhp
@@ -8291,7 +8291,7 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
msgstr ""
#: 02100100.xhp
@@ -25620,32 +25620,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr ""
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr ""
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr ""
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr ""
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43243,6 +43217,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr ""
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/bn-IN/helpcontent2/source/text/shared/guide.po b/source/bn-IN/helpcontent2/source/text/shared/guide.po
index b65cf9a1a47..6044517c6f4 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 16:54+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-07-05 16:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn_IN\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467737651.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467737571.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2194,7 +2194,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2274,7 +2274,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9936,8 +9936,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "স্প্রেডশীটের ঘরে সরাসরি যাওয়ার জন্য সর্বপ্রথম ঘরের জন্য নাম সন্নিবেশ করান (<emph>সন্নিবেশ - নাম - বর্ণনা করা</emph>)।"
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12455,20 +12455,20 @@ msgstr "<emph>পছন্দ</emph> ট্যাব পৃষ্ঠায়,
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "যত শীঘ্রই আপনি <emph>নতুন নথি</emph> তে ক্লিক করবেন, আপনি <emph>যুগপদ মোড়ক</emph> বোতামে একটি ছোট উইন্ডো দেখতে পাবেন। প্রথম মোড়ক সন্নিবেশ করান। যখন আপনি <emph>যুগপদ মোড়ক</emph> বোতামে ক্লিক করবেন, বর্তমান স্বতন্ত্র মোড়ক পাতার অন্য সব মোড়কে অনুলিপি করা হবে।"
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "আপনার সন্নিবেশকৃত বৈশিষ্ট্য সহকারে নতুন নথি তৈরি করার জন্য <emph>নতুন নথি</emph> তে ক্লিক করুন।"
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "আপনার সন্নিবেশকৃত বৈশিষ্ট্য সহকারে নতুন নথি তৈরি করার জন্য <emph>নতুন নথি</emph> তে ক্লিক করুন।"
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "যত শীঘ্রই আপনি <emph>নতুন নথি</emph> তে ক্লিক করবেন, আপনি <emph>যুগপদ মোড়ক</emph> বোতামে একটি ছোট উইন্ডো দেখতে পাবেন। প্রথম মোড়ক সন্নিবেশ করান। যখন আপনি <emph>যুগপদ মোড়ক</emph> বোতামে ক্লিক করবেন, বর্তমান স্বতন্ত্র মোড়ক পাতার অন্য সব মোড়কে অনুলিপি করা হবে।"
#: labels.xhp
msgctxt ""
@@ -18367,58 +18367,53 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "$[officename] মানসমূহের সঙ্গে সফটওয়্যার শুরু করছে"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "$[officename] মানসমূহের সঙ্গে সফটওয়্যার শুরু করছে"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "কমান্ড লাইন থেকে $[officename] সফটওয়্যার শুরু করার মাধ্যমে আপনি বিভিন্ন প্যারামিটার বরাদ্দ করতে পারেন,যার মাধ্যমে আপনি কার্যসম্পাদনা প্রভাবিত করতে পারেন। কমান্ড লাইন প্যারামিটারের ব্যবহার কেবল অভিজ্ঞ ব্যবহারকারীর জন্য সুপারিশ করা হয়।"
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "স্বাভাবিক পরিচালনার জন্য কমান্ড সারি মানসমূহের ব্যবহার প্রয়োজনীয় নয়। অতি অল্প মানসমূহ $[officename] সফটওয়্যার প্রযুক্তির প্রযুক্তিগত পটভূমির একটি গভীরতর জ্ঞান প্রয়োজন হয়।"
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "কমান্ড সারি হতে $[officename] সফটওয়্যার শুরু করছে"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
msgstr ""
@@ -18427,16 +18422,14 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "উইন্ডোজে, <emph> খোলা</emph> লেখা ক্ষেত্রে নিম্নলিখিত টেক্সট মুদ্রণ করুন এবং <emph>ঠিক আছে</emph> ক্লিক করুন।"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
msgstr ""
@@ -18445,679 +18438,649 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\\\program\\\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "<emph> {install}</emph> $[officename] সফটওয়্যার এর স্থাপনা পথের সঙ্গে (উদাহরণস্বরূপ <emph>C:\\\\Program Files\\\\Office</emph> অথবা <emph>~/office</emph>)প্রতিস্থাপন করুন"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "যেখানে প্রয়োজন সেখানে <emph> {বৈশিষ্ট্য}</emph> নিম্নলিখিত কমান্ড সারির বৈশিষ্ট্যের এক অথবা আরও অধিক দ্বারা প্রতিস্থাপন করুন।"
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "সঠিক কমান্ড সারির মানসমূহ"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "মানসমূহ"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "অর্থ"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "-help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "প্রাপ্তিসাধ্য কমান্ড সারির মানসমূহের তালিকা <switchinline select=\"sys\"><caseinline select=\"WIN\">ডায়ালগ বাক্সে</caseinline><defaultinline>কনসোলে</defaultinline></switchinline>।"
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
+msgid "Opens the file and applies specified macros from the file."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
+msgid "Getting help and information"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "-writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "একটি শূন্য রাইটার নথির সাহায্যে শুরু করে।"
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "-calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "একটি শূন্য calc নথির সাহায্যে শুরু করে।"
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "-draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "একটি শূন্য আঁকার নথির সাহায্যে শুরু করে।"
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "-impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "একটি শূন্য ইমপ্রেস নথির সাহায্যে শুরু করে।"
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "-math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "একটি শূন্য অংক নথির সাহায্যে শুরু করে।"
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "-global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "একটি শূন্য লেখনী প্রধান নথির সাহায্যে শুরু করে।"
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "-web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "একটি শূন্য HTML নথির সাহায্যে শুরু করে।"
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id315330t\n"
+"help.text"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315053o\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "-show {filename.odp}"
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id20161204101917197\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "ইমপ্রেস ফাইলের সঙ্গে শুরু করে<emph> {filename odp}</emph> এবং উপস্থাপনা শুরু করে। উপস্থাপনার পরে সম্পাদনা মোড সন্নিবেশ করে।"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id3146786\n"
"help.text"
-msgid "--minimized"
-msgstr "-minimized"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
+"help.text"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "হ্রাস করতে শুরু করে। স্প্ল্যাশ পর্দা প্রদর্শন করা হয় না।"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "-invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "অদৃশ্য মোড শুরু করে।"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "start-up লোগো নয়তো প্রাথমিক প্রোগ্রাম উইন্ডো দৃশ্যমান নয়। উপরন্তু, $[officename] সফটওয়্যার নিয়ন্ত্রণ করা যাবে এবং নথি এবং ডায়ালগ <link href=\"http://api.openoffice.org\" name=\"API\">API</link> হয়ে খোলেছিল ।"
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "এইটি <emph> -quickstart</emph>এর সঙ্গে যুক্তাক্ষরে ব্যবহার করা যাবে না।"
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "আরও বেশি তথ্য <emph> $ [officename] উন্নয়নকারী সহায়িকা</emph>তে খুঁজে পাওয়া যায়।"
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
"help.text"
-msgid "--norestore"
-msgstr "-norestore"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
+"help.text"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "পদ্ধতি ভেঙ্গে পড়ার পর পুনরায় আরম্ভ করা নিষ্ক্রিয় করে এবং ফাইল পুনরুদ্ধার করে।"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "-nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "স্বাগতম উইজার্ড নিষ্ক্রিয় করে।"
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "-quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Quickstarter টি সক্রিয় করে।"
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "-accept={UNO string}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "$[officename] সফটওয়্যার ঘোষনা করে যা \" UNO গ্রাহক থ্রেড \" সৃষ্টির ওপর, একটি \" UNO স্ট্রিং গ্রহণ করে \" ব্যবহার করা হবে।"
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "আরও বেশি তথ্য <emph> $ [officename] উন্নয়নকারী সহায়িকা</emph>তে খুঁজে পাওয়া যায়।"
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "-accept={UNO string}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
+msgid "Exit after loading documents."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {filename1} {filename2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "পূর্বনির্ধারিত মুদ্রণযন্ত্রে ফাইল মুদ্রণ করে<emph> {filename১} {filename২}...</emph> এবং শেষ হয়। স্প্ল্যাশ পর্দা আবির্ভূত হয় না।"
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "যদি ফাইলের নাম ফাঁকা স্থান ধারণ করে তাহলে এটি অবশ্যই উদ্ধৃতকরণ চিহ্নে সংযুক্ত হওয়া উচিত।"
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "-pt {Printername} {filename1} {filename2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "ফাইল মুদ্রণ করে<emph> {filename১} {filename২}...</emph> মুদ্রণযন্ত্রে<emph> {Printername}</emph> এবং শেষ হয়। স্প্ল্যাশ পর্দা আবির্ভূত হয় না।"
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "যদি ফাইলের নাম ফাঁকা স্থান ধারণ করে তাহলে এটি অবশ্যই উদ্ধৃতকরণ চিহ্নে সংযুক্ত হওয়া উচিত।"
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {filename}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "সম্পাদনা করার জন্য <emph>{filename}</emph> এমনকি এটি যদি একটি ট্যামপ্লেট হয়।"
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "-view {filename}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "<emph> {filename}</emph> এর একটি অস্থায়ী অনুলিপি তৈরি করে এবং শুধুমাত্র পড়ার জন্য খোলে।"
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {filename}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "ট্যামপ্লেট হিসেবে <emph> {filename}</emph> ব্যবহার করে একটি নতুন নথি তৈরি করে।"
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "-nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "অনুষ্ঠান শুরুতে স্প্ল্যাশ পর্দা নিষ্ক্রিয় করে।"
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "-nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "যদি ফাইলের নাম ফাঁকা স্থান ধারণ করে তাহলে এটি অবশ্যই উদ্ধৃতকরণ চিহ্নে সংযুক্ত হওয়া উচিত।"
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "স্প্ল্যাশ পর্দা ব্যতীত অন্যকিছু প্রদর্শন না করে শুরু করে।"
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3150828\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "-nofirststartwizard"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3145268\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "স্বাগতম উইজার্ড দমন করতে অনুষ্ঠান শুরু আদেশে এই মানটি সংযুক্ত করুন।"
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id3153838\n"
"help.text"
-msgid "--display {display}"
-msgstr "-display {display}"
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id315053p\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "--headless"
-msgstr "-headless"
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id315053q\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "\" headless মোড \" এ শুরু হয় যা ব্যবহারকারী ইন্টারফেস ব্যতীত প্রয়োগ ব্যবহার অনুমোদন করে।"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "এই বিশেষ মোডটি ব্যবহার করা যাবে যখন প্রয়োগ কোন বাহ্যিক গ্রাহক দ্বারা <link href=\"http://api.openoffice.org\" name=\"API\">API</link>এর মধ্য দিয়ে নিয়ন্ত্রিত হয়।।"
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "--infilter={filter}"
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
+msgid "Ignored switches"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (MacOS X only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
+msgid "Ignored (COM+ related; Windows only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id20161204014529900\n"
+"help.text"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
msgstr ""
#: startcenter.xhp
diff --git a/source/bn-IN/sc/source/ui/src.po b/source/bn-IN/sc/source/ui/src.po
index 31a787ac101..36036a2f526 100644
--- a/source/bn-IN/sc/source/ui/src.po
+++ b/source/bn-IN/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:41+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
"Language: bn_IN\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467654096.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595362.000000\n"
#: filter.src
msgctxt ""
@@ -9676,8 +9676,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "যে আর্গুমেন্টগুলো শর্তের সাথে মিলে সেগুলো যোগ করে।"
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/bn-IN/svx/uiconfig/ui.po b/source/bn-IN/svx/uiconfig/ui.po
index 26dc71e3d3b..e19c0d68a53 100644
--- a/source/bn-IN/svx/uiconfig/ui.po
+++ b/source/bn-IN/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:55+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn_IN\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467654958.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595791.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3064,14 +3064,13 @@ msgid "Search for st_yles"
msgstr "শৈলী অনুসন্ধান (_y)"
#: findreplacedialog.ui
-#, fuzzy
msgctxt ""
"findreplacedialog.ui\n"
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "ডায়াক্রিটিক CTL উপেক্ষা"
+msgid "Ignore diac_ritics"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -3079,7 +3078,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5180,10 +5179,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5198,10 +5197,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/bn-IN/sw/uiconfig/swriter/ui.po b/source/bn-IN/sw/uiconfig/swriter/ui.po
index 99528731af3..1fec73fa5a0 100644
--- a/source/bn-IN/sw/uiconfig/swriter/ui.po
+++ b/source/bn-IN/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 18:01+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-12 14:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bn_IN\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467655300.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1478959822.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -9958,26 +9958,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/bn-IN/xmlsecurity/uiconfig/ui.po b/source/bn-IN/xmlsecurity/uiconfig/ui.po
index 49a182840ed..e53e3100203 100644
--- a/source/bn-IN/xmlsecurity/uiconfig/ui.po
+++ b/source/bn-IN/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:03+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn_IN\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467655385.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595791.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/bn/helpcontent2/source/text/scalc/00.po b/source/bn/helpcontent2/source/text/scalc/00.po
index dff90454309..dff88b1e21b 100644
--- a/source/bn/helpcontent2/source/text/scalc/00.po
+++ b/source/bn/helpcontent2/source/text/scalc/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 13:33+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-22 16:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467725591.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479833904.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -573,8 +573,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\"><emph>সন্নিবেশ - নাম</emph> নির্বাচন করুন</variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -591,8 +591,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "<emph>সন্নিবেশ - নাম - নির্ধারণ</emph> নির্বাচন করুন"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -609,8 +609,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\"><emph>সন্নিবেশ - নাম - সন্নিবেশ</emph> নির্বাচন করুন</variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -618,8 +618,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\"><emph>সন্নিবেশ - নাম - তৈরি</emph> নির্বাচন করুন</variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -627,8 +627,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\"><emph>সন্নিবেশ - নাম - লেবেল</emph> নির্বাচন করুন</variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/scalc/01.po b/source/bn/helpcontent2/source/text/scalc/01.po
index 7e46b72b0ff..350ddccabb3 100644
--- a/source/bn/helpcontent2/source/text/scalc/01.po
+++ b/source/bn/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-05-24 02:24+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-22 16:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1464056671.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482423147.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5715,20 +5715,22 @@ msgid "Functions"
msgstr "ফাংশন"
#: 04060102.xhp
+#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr ""
+msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
#: 04060102.xhp
+#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr ""
+msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
#: 04060103.xhp
msgctxt ""
@@ -20793,8 +20795,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "যেভাবে <emph>অন্তর্ভুক্ত করুন - নাম - সংজ্ঞায়িত করুন </emph> তে বর্ণনা করা হয়েছে <emph>সমষ্টিX</emph> সীমানা সারি ৪ এবং কলাম ১ হতে <item type=\"input\">=INDEX(SumX;4;1)</item> মান ফলাফল প্রদান করে।"
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20818,8 +20820,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=INDEX((multi);4;1)</item> দ্বারা বিবিধ সীমার মধ্যে, সারি ৪ এবং কালম ১ এর মানগুলোকে বুঝায় যা <emph>সন্নিবেশ - নাম - সংজ্ঞা</emph> এর আওতায় <emph>বিবিধ</emph> হিসাবে নামকরণ করা হয়। বিবিধ সীমায়, প্রত্যেক সারি ৪ এবং কালম ১ দ্বারা তৈরি চতুস্কোনীয় সীমা থাকে। আপনি যদি এখন বিবিধ সীমার দ্বিতীয় ব্লকে কল করতে চান তবে <emph>সীমা</emph> পরিধি হিসাবে <item type=\"input\">২</item> নম্বর দিন।"
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -50382,8 +50384,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "নাম"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50391,8 +50393,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">নাম</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50782,8 +50784,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "সকল পরিসর রয়েছে এমন একটি এলাকা নির্বাচন করুন, যা আপনি নামকরণ করতে চান। তারপর <emph>সন্নিবেশ - নাম - তৈরি</emph> নির্বাচন করুন। এটি <emph>নাম তৈরিকরণ</emph> ডায়ালগ খোলে, যেখান হতে আপনি আপনার পছন্দসই নামকরণ অপশন নির্বাচন করতে পারেন।"
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52678,8 +52680,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "বর্তমান স্প্রেডশীটের জন্য একটি মুদ্রণ পরিসর বর্ণনা সরাতে <emph>-কোনটাই নয়-</emph> নির্বাচন করা হয়। একটি মুদ্রণ পরিসর হিসেবে বর্তমান পাতাটি স্থির করার জন্য <emph>-সম্পূর্ণ পাতা-</emph>নির্বাচন করা হয়। মুদ্রণ পরিসর হিসেবে স্প্রেডশীটের নির্বাচিত এলাকা সংজ্ঞায়িত করতে <emph>-নির্বাচন-</emph> নির্বাচন করুন। <emph>-ব্যবহারকারী- সংজ্ঞায়িত-</emph> নির্বাচন করার মাধ্যমে, আপনি একটি মুদ্রণ পরিসর সংজ্ঞায়িত করতে পারেন যা ইতিমধ্যেই <emph>বিন্যাস - মুদ্রণ পরিসর - নির্ধারণ করা</emph> কমান্ড দ্বারা সংজ্ঞায়িত করেছেন। যদি আপনি <emph>অন্তর্ভুক্ত করা - নাম - নির্ধারণ করা</emph> কমান্ড ব্যবহার করে একটি নাম প্রদান করেন, তাহলে এই নামটি প্রদর্শিত হবে এবং তালিকা বাক্স হতে নির্বাচন করা যাবে।"
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/scalc/guide.po b/source/bn/helpcontent2/source/text/scalc/guide.po
index c7e50299673..a408728b301 100644
--- a/source/bn/helpcontent2/source/text/scalc/guide.po
+++ b/source/bn/helpcontent2/source/text/scalc/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 16:43+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-23 14:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467737036.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482503230.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -2140,8 +2140,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "উৎস পরিসরকে পরিসর হিসেবে নির্ধারণ করতে, ঘর নির্বাচন করুন এবং <emph>সন্নিবেশ করান - নাম - সংজ্ঞায়িত করুন</emph>পছন্দ করুন।বর্তমান নথি সংরক্ষণ করুন, এবং এটি বন্ধ করবেন না।"
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11866,8 +11866,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "একটি ঘর অথবা ঘর পরিসর নির্বাচন করুন, এরপর <emph>সন্নিবেশ করান - নাম - সংজ্ঞা</emph>পছন্দ করুন। <emph>নাম সংজ্ঞায়িত করুন</emph> ডায়ালগ আবির্ভূত হবে।"
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11919,8 +11919,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">সন্নিবেশ করান - নাম - সংজ্ঞায়িত করুন</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
@@ -12196,3 +12196,124 @@ msgctxt ""
"help.text"
msgid "This means that if you enter a date of 1/1/30 or higher, it will be treated internally as 1/1/1930 or higher. All lower two-digit years apply to the 20xx century. So, for example, 1/1/20 is converted into 1/1/2020."
msgstr "এর মানে যদি আপনি ১/১/৩০ অথবা উচ্চতর তারিখ সন্নিবেশ করান, এটি আভ্যন্তরীনভাবে ১/১/৩০ অথবা উচ্চতর হিসেবে বিবেচিত হবে। সব নিম্ন দুই-বর্ণ বৎসর ২০xx শতাব্দীতে প্রয়োগ করা হবে। তাই, উদাহরণস্বরূপ, ১/১/২০ ১/১/২০২০ তে রুপান্তরিত হবে।"
+
+msgctxt ""
+"cellreference_dragdrop.xhp\n"
+"par_id3154011\n"
+"26\n"
+"help.text"
+msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
+msgstr "উৎস পরিসরকে পরিসর হিসেবে নির্ধারণ করতে, ঘর নির্বাচন করুন এবং <emph>সন্নিবেশ করান - নাম - সংজ্ঞায়িত করুন</emph>পছন্দ করুন।বর্তমান নথি সংরক্ষণ করুন, এবং এটি বন্ধ করবেন না।"
+
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3153954\n"
+"3\n"
+"help.text"
+msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr "একটি ঘর অথবা ঘর পরিসর নির্বাচন করুন, এরপর <emph>সন্নিবেশ করান - নাম - সংজ্ঞা</emph>পছন্দ করুন। <emph>নাম সংজ্ঞায়িত করুন</emph> ডায়ালগ আবির্ভূত হবে।"
+
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3153711\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
+msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">সন্নিবেশ করান - নাম - সংজ্ঞায়িত করুন</link>"
+
+msgctxt ""
+"cellreferences_url.xhp\n"
+"par_id3145384\n"
+"40\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Insert - Link to External Data</item>. The <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">External Data</item></link> dialog appears."
+msgstr "<item type=\"menuitem\">সন্নিবেশ - বহিঃস্থ ডাটায় সংযোগ</item> নির্বাচন করুন। <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">বহিঃস্থ ডাটা</item></link> ডায়ালগ উপস্থিত হয়।"
+
+msgctxt ""
+"webquery.xhp\n"
+"par_id3145750\n"
+"8\n"
+"help.text"
+msgid "Choose <emph>Insert - Link to External Data</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
+msgstr "<emph>সন্নিবেশ করান - বহি:স্থ উপাত্তে সংযোগ</emph>পছন্দ করুন। এটি <link href=\"text/scalc/01/04090000.xhp\">বহি:স্থ ডাটা</link> ডায়ালগ খুলবে।"
+
+#, fuzzy
+msgctxt ""
+"calc_date.xhp\n"
+"par_id3149207\n"
+"help.text"
+msgid "The time since your date of birth will be calculated and displayed in the various units. The values are calculated as of the exact moment when you entered the last formula and pressed the Enter key. This value is not automatically updated, although \"Now\" continuously changes. In the <emph>Tools</emph> menu, the menu item <emph>Cell Contents - AutoCalculate</emph> is normally active; however, automatic calculation does not apply to the function NOW. This ensures that your computer is not solely occupied with updating the sheet."
+msgstr "আপনার জন্মের তারিখ থেকে সময় বিভিন্ন এককে গণনা এবং প্রদর্শিত করা হবে। যখন আপনি শেষ সূত্রটি সন্নিবেশ করাবেন এবং <item type=\"keycode\">Enter</item> কী চাপবেন ঠিক সেই সময়ে মানটি গণনা করা হবে। মান স্বয়ংক্রিয়ভাবে হালনাগাদ করা হবে, যদিও \"এখন\" অবিরামভাবে পরিবর্তন হয়। <emph>টুল</emph> মেনুতে, মেনু প্রকরণে <emph>ঘর বিষয়বস্তু - AutoCalculate</emph>সাধারণভাবে সক্রিয়; যদিও, স্বয়ংক্রিয় গণনা কার্যক্রম \"এখন\" এ প্রয়োগ করা হয়না। এটি নিশ্চিত করে যে আপনার কম্পিউটার হালনাগাদকৃত পাতার সাথে পরিপূর্ণভাবে সংশ্লিষ্ট নয়।"
+
+msgctxt ""
+"cell_protect.xhp\n"
+"par_idN106C0\n"
+"help.text"
+msgid "To protect the cells from being changed / viewed / printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <item type=\"menuitem\">Tools - Protect Document - Sheet</item>."
+msgstr "<emph>বিন্যাস - ঘর</emph> সংলাপে আপনার বিন্যাস অনুসারে ঘর পরিবর্তন/ দর্শন / মুদ্রিত হওযা থেকে আপনার ঘর সুরক্ষিত করতে, <item type=\"menuitem\">টুল - নথি সুরক্ষা করুন - পাতা</item> পছন্দ করুন।"
+
+msgctxt ""
+"cell_protect.xhp\n"
+"par_idN106C7\n"
+"help.text"
+msgid "To protect the structure of the document, for example the count, <link href=\"text/scalc/guide/rename_table.xhp\">names</link>, and order of the sheets, from being changed, choose <item type=\"menuitem\">Tools - Protect Document - Document</item>."
+msgstr "নথির সংস্থান সুরক্ষা করতে, উদাহরণস্বরূপ গণনা, <link href=\"text/scalc/guide/rename_table.xhp\">নাম</link>, এবং পাতার ক্রম,পরিবর্তিত হওয়া থেকে রক্ষা করতে, <item type=\"menuitem\">টুল - নথি সুরক্ষা - নথি</item>।"
+
+msgctxt ""
+"cell_unprotect.xhp\n"
+"par_id3149656\n"
+"16\n"
+"help.text"
+msgid "Select <emph>Tools - Protect Document</emph>, then choose <emph>Sheet</emph> or <emph>Document</emph> to remove the check mark indicating the protected status."
+msgstr "<emph>টুল - নথি সুরক্ষা করুন</emph>নির্বাচন করুন, এরপর সংরক্ষিত অবস্থা নির্দেশ করা পরীক্ষন চিহ্ন অপসারণ করতে <emph>পাতা</emph> অথবা <emph>নথি</emph> পছন্দ করুন।"
+
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "For the <item type=\"menuitem\">Search for</item> term, enter: .<item type=\"literal\">*</item>"
+msgstr "<item type=\"menuitem\">যা অনুসন্ধান করা হবে</item> শর্তের জন্য, দিন: .<item type=\"literal\">*</item>"
+
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"par_id3153143\n"
+"help.text"
+msgid "Enter the following formula in the <item type=\"menuitem\">Replace with</item> field: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
+msgstr "<item type=\"menuitem\">যা দিয়ে প্রতিস্থাপন করা হবে</item> ক্ষেত্রে নিম্নোক্ত সূত্রটি দিন: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
+
+msgctxt ""
+"cellstyle_by_formula.xhp\n"
+"par_id3146975\n"
+"help.text"
+msgid "The \"&\" symbol designates the current contents of the <emph>Search for</emph> field. The line must begin with an equal sign, since it is a formula. It is assumed that the cell styles \"Red\" and \"Green\" already exist."
+msgstr "\"&\" প্রতীক <emph>সন্ধান করুন</emph> ক্ষেত্রের বর্তমান বিষয়বস্তু নির্ধেশ করে। রেকাটি অবশ্যি সমা চিহ্ন দ্বারা আরম্ভ হতে হবে, যেহুতু এটি একটি সূত্র। এটি মনে করা হয় যে ঘর শৈলী \"লাল\" এবং \"সবুজ\" ইতমধ্যে বিদ্যমান।"
+
+msgctxt ""
+"finding.xhp\n"
+"par_id6529740\n"
+"help.text"
+msgid "Enter the text to find in the <emph>Search for</emph> text box."
+msgstr "<emph>সন্ধান করুন</emph> পাঠ্য বাক্সে খুঁজে পাওয়া পাঠ্য সন্নিবেশ করান।"
+
+msgctxt ""
+"finding.xhp\n"
+"par_id631733\n"
+"help.text"
+msgid "By default, Calc searches the current sheet. Click <emph>More Options</emph>, then enable <emph>Search in all sheets</emph> to search through all sheets of the document."
+msgstr "পূর্ব নির্ধারণক্রমে, Calc বর্তমান পাতা সন্ধান করে। <emph>আরো পছন্দ</emph> তে ক্লিক করুন, এরপর নথির সব পাতায় সন্ধান করতে <emph>সব পাতায় সন্ধান করুন</emph> সক্রিয় করুন।"
+
+msgctxt ""
+"note_insert.xhp\n"
+"par_id3145750\n"
+"34\n"
+"help.text"
+msgid "The comment is visible whenever the mouse pointer is over the cell, provided you have activated <emph>Help - Tips</emph> or - <emph>Extended Tips</emph>."
+msgstr "মন্তব্য তখনই দৃশ্যমান হবে যখন মাউস পয়েন্টার ঘরের উপর থাকবে, <emph>সহায়তা - আভাস</emph> বা - <emph>বর্ধিত আভাস</emph> সক্রিয় করলে আপনি এই সুবিধাটি পাবেন।"
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3155068\n"
+"help.text"
+msgid "In the <emph>Replace with</emph> box, enter <item type=\"input\">&</item>"
+msgstr ""
diff --git a/source/bn/helpcontent2/source/text/shared/00.po b/source/bn/helpcontent2/source/text/shared/00.po
index 5ff1f490eb6..fb8a8c942ba 100644
--- a/source/bn/helpcontent2/source/text/shared/00.po
+++ b/source/bn/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 16:44+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-05-24 02:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467737098.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1464056677.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -12201,15 +12201,6 @@ msgstr "<emph>বিন্যাস - পৃষ্ঠা - পটভূমি</e
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "<emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>এলাকা - রং</emph> ট্যাবটি নির্বাচন করুন"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/bn/helpcontent2/source/text/shared/01.po b/source/bn/helpcontent2/source/text/shared/01.po
index b22f3543463..75f876bcb38 100644
--- a/source/bn/helpcontent2/source/text/shared/01.po
+++ b/source/bn/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-10-18 20:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1476821652.000000\n"
#: 01010000.xhp
@@ -8291,7 +8291,7 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
msgstr ""
#: 02100100.xhp
@@ -25620,32 +25620,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr ""
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr ""
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr ""
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr ""
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43243,6 +43217,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr ""
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/bn/helpcontent2/source/text/shared/guide.po b/source/bn/helpcontent2/source/text/shared/guide.po
index 8542e9ecb2e..0f86bf58ebb 100644
--- a/source/bn/helpcontent2/source/text/shared/guide.po
+++ b/source/bn/helpcontent2/source/text/shared/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 17:03+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-07-05 17:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467738232.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467738179.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2194,7 +2194,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2274,7 +2274,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9936,8 +9936,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "স্প্রেডশীটের ঘরে সরাসরি যাওয়ার জন্য সর্বপ্রথম ঘরের জন্য নাম সন্নিবেশ করান (<emph>সন্নিবেশ - নাম - বর্ণনা করা</emph>)।"
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12455,20 +12455,20 @@ msgstr "<emph>পছন্দ</emph> ট্যাব পৃষ্ঠায়,
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "যত শীঘ্রই আপনি <emph>নতুন নথি</emph> তে ক্লিক করবেন, আপনি <emph>যুগপদ মোড়ক</emph> বোতামে একটি ছোট উইন্ডো দেখতে পাবেন। প্রথম মোড়ক সন্নিবেশ করান। যখন আপনি <emph>যুগপদ মোড়ক</emph> বোতামে ক্লিক করবেন, বর্তমান স্বতন্ত্র মোড়ক পাতার অন্য সব মোড়কে অনুলিপি করা হবে।"
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "আপনার সন্নিবেশকৃত বৈশিষ্ট্য সহকারে নতুন নথি তৈরি করার জন্য <emph>নতুন নথি</emph> তে ক্লিক করুন।"
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "আপনার সন্নিবেশকৃত বৈশিষ্ট্য সহকারে নতুন নথি তৈরি করার জন্য <emph>নতুন নথি</emph> তে ক্লিক করুন।"
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "যত শীঘ্রই আপনি <emph>নতুন নথি</emph> তে ক্লিক করবেন, আপনি <emph>যুগপদ মোড়ক</emph> বোতামে একটি ছোট উইন্ডো দেখতে পাবেন। প্রথম মোড়ক সন্নিবেশ করান। যখন আপনি <emph>যুগপদ মোড়ক</emph> বোতামে ক্লিক করবেন, বর্তমান স্বতন্ত্র মোড়ক পাতার অন্য সব মোড়কে অনুলিপি করা হবে।"
#: labels.xhp
msgctxt ""
@@ -18367,58 +18367,53 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "$[officename] মানসমূহের সঙ্গে সফটওয়্যার শুরু করছে"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "$[officename] মানসমূহের সঙ্গে সফটওয়্যার শুরু করছে"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "কমান্ড লাইন থেকে $[officename] সফটওয়্যার শুরু করার মাধ্যমে আপনি বিভিন্ন প্যারামিটার বরাদ্দ করতে পারেন,যার মাধ্যমে আপনি কার্যসম্পাদনা প্রভাবিত করতে পারেন। কমান্ড লাইন প্যারামিটারের ব্যবহার কেবল অভিজ্ঞ ব্যবহারকারীর জন্য সুপারিশ করা হয়।"
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "স্বাভাবিক পরিচালনার জন্য কমান্ড সারি মানসমূহের ব্যবহার প্রয়োজনীয় নয়। অতি অল্প মানসমূহ $[officename] সফটওয়্যার প্রযুক্তির প্রযুক্তিগত পটভূমির একটি গভীরতর জ্ঞান প্রয়োজন হয়।"
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "কমান্ড সারি হতে $[officename] সফটওয়্যার শুরু করছে"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
msgstr ""
@@ -18427,16 +18422,14 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "উইন্ডোজে, <emph> খোলা</emph> লেখা ক্ষেত্রে নিম্নলিখিত টেক্সট মুদ্রণ করুন এবং <emph>ঠিক আছে</emph> ক্লিক করুন।"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
msgstr ""
@@ -18445,679 +18438,649 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\\\program\\\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "<emph> {install}</emph> $[officename] সফটওয়্যার এর স্থাপনা পথের সঙ্গে (উদাহরণস্বরূপ <emph>C:\\\\Program Files\\\\Office</emph> অথবা <emph>~/office</emph>)প্রতিস্থাপন করুন"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "যেখানে প্রয়োজন সেখানে <emph> {বৈশিষ্ট্য}</emph> নিম্নলিখিত কমান্ড সারির বৈশিষ্ট্যের এক অথবা আরও অধিক দ্বারা প্রতিস্থাপন করুন।"
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "সঠিক কমান্ড সারির মানসমূহ"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "মানসমূহ"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "অর্থ"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "-help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "প্রাপ্তিসাধ্য কমান্ড সারির মানসমূহের তালিকা <switchinline select=\"sys\"><caseinline select=\"WIN\">ডায়ালগ বাক্সে</caseinline><defaultinline>কনসোলে</defaultinline></switchinline>।"
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
+msgid "Opens the file and applies specified macros from the file."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
+msgid "Getting help and information"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "-writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "একটি শূন্য রাইটার নথির সাহায্যে শুরু করে।"
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "-calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "একটি শূন্য calc নথির সাহায্যে শুরু করে।"
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "-draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "একটি শূন্য আঁকার নথির সাহায্যে শুরু করে।"
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "-impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "একটি শূন্য ইমপ্রেস নথির সাহায্যে শুরু করে।"
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "-math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "একটি শূন্য অংক নথির সাহায্যে শুরু করে।"
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "-global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "একটি শূন্য লেখনী প্রধান নথির সাহায্যে শুরু করে।"
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "-web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "একটি শূন্য HTML নথির সাহায্যে শুরু করে।"
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id315330t\n"
+"help.text"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315053o\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "-show {filename.odp}"
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id20161204101917197\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "ইমপ্রেস ফাইলের সঙ্গে শুরু করে<emph> {filename odp}</emph> এবং উপস্থাপনা শুরু করে। উপস্থাপনার পরে সম্পাদনা মোড সন্নিবেশ করে।"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id3146786\n"
"help.text"
-msgid "--minimized"
-msgstr "-minimized"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
+"help.text"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "হ্রাস করতে শুরু করে। স্প্ল্যাশ পর্দা প্রদর্শন করা হয় না।"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "-invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "অদৃশ্য মোড শুরু করে।"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "start-up লোগো নয়তো প্রাথমিক প্রোগ্রাম উইন্ডো দৃশ্যমান নয়। উপরন্তু, $[officename] সফটওয়্যার নিয়ন্ত্রণ করা যাবে এবং নথি এবং ডায়ালগ <link href=\"http://api.openoffice.org\" name=\"API\">API</link> হয়ে খোলেছিল ।"
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "এইটি <emph> -quickstart</emph>এর সঙ্গে যুক্তাক্ষরে ব্যবহার করা যাবে না।"
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "আরও বেশি তথ্য <emph> $ [officename] উন্নয়নকারী সহায়িকা</emph>তে খুঁজে পাওয়া যায়।"
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
"help.text"
-msgid "--norestore"
-msgstr "-norestore"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
+"help.text"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "পদ্ধতি ভেঙ্গে পড়ার পর পুনরায় আরম্ভ করা নিষ্ক্রিয় করে এবং ফাইল পুনরুদ্ধার করে।"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "-nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "স্বাগতম উইজার্ড নিষ্ক্রিয় করে।"
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "-quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Quickstarter টি সক্রিয় করে।"
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "-accept={UNO string}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "$[officename] সফটওয়্যার ঘোষনা করে যা \" UNO গ্রাহক থ্রেড \" সৃষ্টির ওপর, একটি \" UNO স্ট্রিং গ্রহণ করে \" ব্যবহার করা হবে।"
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "আরও বেশি তথ্য <emph> $ [officename] উন্নয়নকারী সহায়িকা</emph>তে খুঁজে পাওয়া যায়।"
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "-accept={UNO string}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
+msgid "Exit after loading documents."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {filename1} {filename2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "পূর্বনির্ধারিত মুদ্রণযন্ত্রে ফাইল মুদ্রণ করে<emph> {filename১} {filename২}...</emph> এবং শেষ হয়। স্প্ল্যাশ পর্দা আবির্ভূত হয় না।"
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "যদি ফাইলের নাম ফাঁকা স্থান ধারণ করে তাহলে এটি অবশ্যই উদ্ধৃতকরণ চিহ্নে সংযুক্ত হওয়া উচিত।"
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "-pt {Printername} {filename1} {filename2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "ফাইল মুদ্রণ করে<emph> {filename১} {filename২}...</emph> মুদ্রণযন্ত্রে<emph> {Printername}</emph> এবং শেষ হয়। স্প্ল্যাশ পর্দা আবির্ভূত হয় না।"
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "যদি ফাইলের নাম ফাঁকা স্থান ধারণ করে তাহলে এটি অবশ্যই উদ্ধৃতকরণ চিহ্নে সংযুক্ত হওয়া উচিত।"
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {filename}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "সম্পাদনা করার জন্য <emph>{filename}</emph> এমনকি এটি যদি একটি ট্যামপ্লেট হয়।"
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "-view {filename}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "<emph> {filename}</emph> এর একটি অস্থায়ী অনুলিপি তৈরি করে এবং শুধুমাত্র পড়ার জন্য খোলে।"
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {filename}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "ট্যামপ্লেট হিসেবে <emph> {filename}</emph> ব্যবহার করে একটি নতুন নথি তৈরি করে।"
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "-nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "অনুষ্ঠান শুরুতে স্প্ল্যাশ পর্দা নিষ্ক্রিয় করে।"
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "-nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "যদি ফাইলের নাম ফাঁকা স্থান ধারণ করে তাহলে এটি অবশ্যই উদ্ধৃতকরণ চিহ্নে সংযুক্ত হওয়া উচিত।"
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "স্প্ল্যাশ পর্দা ব্যতীত অন্যকিছু প্রদর্শন না করে শুরু করে।"
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3150828\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "-nofirststartwizard"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3145268\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "স্বাগতম উইজার্ড দমন করতে অনুষ্ঠান শুরু আদেশে এই মানটি সংযুক্ত করুন।"
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id3153838\n"
"help.text"
-msgid "--display {display}"
-msgstr "-display {display}"
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id315053p\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "--headless"
-msgstr "-headless"
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id315053q\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "\" headless মোড \" এ শুরু হয় যা ব্যবহারকারী ইন্টারফেস ব্যতীত প্রয়োগ ব্যবহার অনুমোদন করে।"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "এই বিশেষ মোডটি ব্যবহার করা যাবে যখন প্রয়োগ কোন বাহ্যিক গ্রাহক দ্বারা <link href=\"http://api.openoffice.org\" name=\"API\">API</link>এর মধ্য দিয়ে নিয়ন্ত্রিত হয়।।"
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "--infilter={filter}"
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
+msgid "Ignored switches"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (MacOS X only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
+msgid "Ignored (COM+ related; Windows only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id20161204014529900\n"
+"help.text"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
msgstr ""
#: startcenter.xhp
diff --git a/source/bn/sc/source/ui/src.po b/source/bn/sc/source/ui/src.po
index 777e151f7fa..17077ea59ba 100644
--- a/source/bn/sc/source/ui/src.po
+++ b/source/bn/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:12+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467652379.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594485.000000\n"
#: filter.src
#, fuzzy
@@ -9797,8 +9797,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "যে আর্গুমেন্টগুলো শর্তের সাথে মিলে সেগুলো যোগ করে।"
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/bn/svx/uiconfig/ui.po b/source/bn/svx/uiconfig/ui.po
index 6e1f890cd7e..2be094d561c 100644
--- a/source/bn/svx/uiconfig/ui.po
+++ b/source/bn/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 17:33+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467653634.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594677.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3049,7 +3049,7 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
+msgid "Ignore diac_ritics"
msgstr ""
#: findreplacedialog.ui
@@ -3058,7 +3058,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5144,10 +5144,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5162,10 +5162,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/bn/sw/uiconfig/swriter/ui.po b/source/bn/sw/uiconfig/swriter/ui.po
index a044dd098d9..d1668fc7d15 100644
--- a/source/bn/sw/uiconfig/swriter/ui.po
+++ b/source/bn/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 17:37+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-12 10:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bn\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467653879.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1478948395.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -10042,26 +10042,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/bn/xmlsecurity/uiconfig/ui.po b/source/bn/xmlsecurity/uiconfig/ui.po
index e3525d32530..252316e39c6 100644
--- a/source/bn/xmlsecurity/uiconfig/ui.po
+++ b/source/bn/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-05-25 12:11+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 12:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bn\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1464178298.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594677.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/bo/helpcontent2/source/text/scalc/00.po b/source/bo/helpcontent2/source/text/scalc/00.po
index a8acfee4055..96cf0764031 100644
--- a/source/bo/helpcontent2/source/text/scalc/00.po
+++ b/source/bo/helpcontent2/source/text/scalc/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 13:31+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-22 16:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467725482.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479833802.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -573,8 +573,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">ཚལ་ཐོ་ <emph>[བསྒར་འཛུད།] - [མིང་།]</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -591,8 +591,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "ཚལ་ཐོ་ <emph>[བསྒར་འཛུད།] - [མིང་།] - [མཚན་ཉིད།...]</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -609,8 +609,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">ཚལ་ཐོ་ <emph>[བསྒར་འཛུད།] - [མིང་།] - [སྦྱར།...]</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -618,8 +618,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">ཚལ་ཐོ་ <emph>[བསྒར་འཛུད།] - [མིང་།] - [གཏན་འཁེལ།...]</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -627,8 +627,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">ཚལ་ཐོ་ <emph>[བསྒར་འཛུད།] - [མིང་།] - [གཞི་གྲངས་མཚོན་རྟགས།...]</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/scalc/01.po b/source/bo/helpcontent2/source/text/scalc/01.po
index 437d989ae83..84a88b25dc9 100644
--- a/source/bo/helpcontent2/source/text/scalc/01.po
+++ b/source/bo/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-05-24 02:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1464056716.000000\n"
#: 01120000.xhp
@@ -20793,8 +20793,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "=INDEX(SumX;4;1) ཚལ་ཐོའི་བཀའ་ཚིག་ལ་བརྟེན་ནས་<emph>བསྒར་འཛུད་ - མིང་ - མཚན་འཇོག་</emph>ས་ཁོངས་ནང་ཡིག་ཕྲེང་ <emph>SumX</emph> བཞི་པའི་ 4 སྟར་པ་ 1 གྲངས་ཐང་དུ་ཕྱིར་ལོག་པ།"
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20818,8 +20818,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "=INDEX((multi);4;1) འབྲས་བུ་ནི་ཚལ་ཐོའི་བཀའ་ཚིག་<emph>བསྒར་འཛུད་ - མིང་ - བཀོད་སྒྲིག་</emph>གིས་གཏན་འཁེལ་བཟོ་བའི་ <emph>multi</emph> སྣ་མང་ས་ཚིགས་ཀྱི་ཡིག་ཕྲེང་ 4 སྟར་པ་ 1 གྲངས་ཐང་ཡིན། སྣ་མང་ས་ཚིགས་ནི་གྲུ་བཞི་དབྱིབས་དྲ་མིག་ས་ཁོངས་མང་པོ་ལས་གྲུབ་པ་ཞིག་ཡིན་ ས་ཁོངས་རེ་རེའི་ཡིག་ཕྲེང་4སྟར་པ་ 1 དྲ་མིག་ཚུད་ཡོད། གལ་སྲིད་སྣ་མང་ས་ཁོངས་འདིའི་ས་ཁོངས་གཉིས་པ་བཀོལ་སྤྱོད་བྱ་དགོས་ཚེ་ 2 བླུགས་ནས་ཞུགས་གྲངས་བརྩིས་རོགས་གནང་ <emph>range</emph>"
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -50371,8 +50371,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "མིང།"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50380,8 +50380,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"མིང་\">མིང་</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50771,8 +50771,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "མིང་འདོགས་རྒྱུའི་དྲ་མིག་ས་ཁོངས་ཡོངས་རྫོགས་བདམས་རྗེས་ <emph>[བསྒར་འཛུད་] - [མིང་] - [གཏན་འཁེལ་...]</emph>འདེམས་དགོས། <emph>\"གཏན་འཁེལ་མིང་\"</emph>གླེང་སྒྲོམ་ཁ་འབྱེད་པར་འགྱུར་ དེའི་ནང་མཁོ་བའི་མིང་འདོགས་འདེམས་གཞི་འདེམས་ཆོག་"
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52667,8 +52667,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "འདེམས་པ་ <emph>\"- མེད་ -\"</emph>མིག་སྔའི་ལས་དེབ་ཀྱི་གཏག་པར་ཁྱབ་ཁོངས་མཚན་ཉིད་སུབ་ཆོག། <emph>\"- ལས་ཁྲ་ཧྲིལ་པོ་ -\"</emph>འདེམས་ན་མིག་སྔའི་ལས་ཁྲ་གཏག་པར་ཁྱབ་ཁོངས་ལ་བཀོད་སྒྲིག། <emph>\"- འདེམས་པ་ -\"</emph>འདེམས་ན་ལས་དེབ་ནང་གི་བདམས་པའི་ས་ཁོངས་གཏག་པར་ཁྱབ་ཁོངས་ལ་མཚན་འཇོག་བྱེད་ཐུབ། <emph>\"- སྤྱོད་པོ་མཚན་འཇོག་ -\"</emph>འདེམས་ནས་བེད་སྤྱོད་ཟིན་པའི་<emph>[ཡིག་ཆ་] - [གཏག་པར་ས་ཁོངས་] - [བཀོད་སྒྲིག་]</emph>བཀའ་ཚིག་གིས་མཚན་འཇོག་བྱས་པའི་གཏག་པར་ཁྱབ་ཁོངས་ཤིག་མཚན་འཇོག་བྱས་ཆོག། གལ་ཏེ་<emph>[བསྒར་འཛུད་] - [མིང་] - [མཚན་འཇོག་..]</emph>བེད་སྤྱོད་ཟིན་ཏེ་ཁྱབ་ཁོངས་གང་རུང་ལ་མིང་བཏགས་ན་མིང་དེ་རེའུ་འགོད་སྒྲོམ་ནང་མངོན་ནས་ཁྱེད་ལ་འདེམས་རྒྱུར་མཁོ་སྤྲོད་བྱེད།"
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/scalc/guide.po b/source/bo/helpcontent2/source/text/scalc/guide.po
index 35cb743a1a5..367d38e079e 100644
--- a/source/bo/helpcontent2/source/text/scalc/guide.po
+++ b/source/bo/helpcontent2/source/text/scalc/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 16:29+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-07-05 16:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467736140.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467736118.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -2142,8 +2142,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "ཁུངས་ས་ཁོངས་དེ་ས་ཁོངས་ལ་གཏན་འཁེལ་བྱ་དགོས་ན་དྲ་མིག་འདེམས་རོགས་དེ་རྗེས་<emph>བསྒར་འཛུད་ - མིང་ - མཚན་འཇོག་</emph>འདེམས་པར་བྱ། ཉར་ཚགས་དགོས་ འོན་ཏེ་ཁུངས་ཡིག་ཚགས་ཁ་རྒྱག་མི་རུང་།"
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11872,8 +11872,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "དྲ་མིག་གམ་དྲ་མིག་ཁོངས་ཞིག་བདམས་རྗེས་ <emph>བསྒར་འཛུད་ - མིང་ - མཚན་འཇོག་</emph>བདམས་ན་ <emph>མིང་མཚན་འཇོག་</emph>གླེང་སྒྲོམ་མངོན།"
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11925,8 +11925,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"བསྒར་འཛུད་ - མིང་ - མཚན་འཇོག་\">བསྒར་འཛུད་ - མིང་ - མཚན་འཇོག་</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/shared/00.po b/source/bo/helpcontent2/source/text/shared/00.po
index 8eb70a9eb7f..bd3bcc3dd71 100644
--- a/source/bo/helpcontent2/source/text/shared/00.po
+++ b/source/bo/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 16:30+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-05-24 02:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467736206.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1464056736.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -12203,15 +12203,6 @@ msgstr "ཚལ་ཐོ་:<emph>[རྣམ་གཞག་] - [རྒྱབ་
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr ""
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/bo/helpcontent2/source/text/shared/01.po b/source/bo/helpcontent2/source/text/shared/01.po
index aa8783b2a30..ee15e84b18a 100644
--- a/source/bo/helpcontent2/source/text/shared/01.po
+++ b/source/bo/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 20:22+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-12-22 14:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476822154.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482417172.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -8291,7 +8291,7 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
msgstr ""
#: 02100100.xhp
@@ -15415,12 +15415,13 @@ msgid "Explanation"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
@@ -15431,12 +15432,13 @@ msgid "Does not display extra zeros."
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152802\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 05020301.xhp
msgctxt ""
@@ -15495,12 +15497,13 @@ msgid "3456.78 as 3456.8"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3150355\n"
"help.text"
msgid "####.#"
-msgstr ""
+msgstr "####.#"
#: 05020301.xhp
msgctxt ""
@@ -15543,12 +15546,13 @@ msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3145315\n"
"help.text"
msgid "# ???/???"
-msgstr ""
+msgstr "# ???/???"
#: 05020301.xhp
msgctxt ""
@@ -15623,12 +15627,13 @@ msgid "15000 as 15,000"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3151223\n"
"help.text"
msgid "#,###"
-msgstr ""
+msgstr "#,###"
#: 05020301.xhp
msgctxt ""
@@ -15639,12 +15644,13 @@ msgid "16000 as 16"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3153961\n"
"help.text"
msgid "#,"
-msgstr ""
+msgstr "#,"
#: 05020301.xhp
msgctxt ""
@@ -15959,12 +15965,13 @@ msgid "Denominator is calculated to get the nearest value of the fraction with r
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3146926\n"
"help.text"
msgid "# ?/???"
-msgstr ""
+msgstr "# ?/???"
#: 05020301.xhp
msgctxt ""
@@ -25620,32 +25627,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr ""
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr ""
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr ""
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr ""
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43243,6 +43224,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr ""
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
@@ -46168,3 +46357,2493 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".\">Specifies the maximum number of characters for a string.</ahelp>"
msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150930\n"
+"192\n"
+"help.text"
+msgid "Korean: formal lower case text"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155909\n"
+"195\n"
+"help.text"
+msgid "Japanese: traditional long Kanji text [DBNum3]"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3148673\n"
+"41\n"
+"help.text"
+msgid "Position (Bitmaps)"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3153524\n"
+"37\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Transparency</caseinline></switchinline>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3153381\n"
+"31\n"
+"help.text"
+msgid "Size (Bitmaps)"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154213\n"
+"212\n"
+"help.text"
+msgid "Korean: informal Hangul text"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145602\n"
+"206\n"
+"help.text"
+msgid "Korean: informal upper case text"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152976\n"
+"185\n"
+"help.text"
+msgid "[NatNum3] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150214\n"
+"198\n"
+"help.text"
+msgid "Chinese: fullwidth text [DBNum3]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154669\n"
+"187\n"
+"help.text"
+msgid "Japanese: fullwidth Arabic digits; CAL: 3/3/3 [DBNum3]"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3154347\n"
+"27\n"
+"help.text"
+msgid "Save Hatches List"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3154388\n"
+"24\n"
+"help.text"
+msgid "Increment"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3147304\n"
+"25\n"
+"help.text"
+msgid "Load Hatches List"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_idN112A3\n"
+"help.text"
+msgid "Hebrew: Hebrew letters"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3150684\n"
+"53\n"
+"help.text"
+msgid "Percent"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149384\n"
+"211\n"
+"help.text"
+msgid "[NatNum11] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150472\n"
+"188\n"
+"help.text"
+msgid "Korean: fullwidth Arabic digits [DBNum3]; CAL: 3/3/3 [DBNum3]"
+msgstr ""
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"hd_id3155830\n"
+"15\n"
+"help.text"
+msgid "Gradients"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3150275\n"
+"9\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3152887\n"
+"59\n"
+"help.text"
+msgid "Background Color (Hatching)"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3152460\n"
+"63\n"
+"help.text"
+msgid "List of colors"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3145072\n"
+"17\n"
+"help.text"
+msgid "Foreground color"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154114\n"
+"199\n"
+"help.text"
+msgid "Japanese: fullwidth text"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3150670\n"
+"13\n"
+"help.text"
+msgid "Hatches list"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156122\n"
+"205\n"
+"help.text"
+msgid "Japanese: traditional short Kanji text [DBNum4]"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3144442\n"
+"51\n"
+"help.text"
+msgid "Column"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155612\n"
+"194\n"
+"help.text"
+msgid "Chinese: Chinese upper case text [DBNum2]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149424\n"
+"203\n"
+"help.text"
+msgid "Korean: informal lower case text"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3163806\n"
+"122\n"
+"help.text"
+msgid "Era, abbreviation"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3149398\n"
+"19\n"
+"help.text"
+msgid "Background color"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149506\n"
+"75\n"
+"help.text"
+msgid "Seconds as 00-59"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154353\n"
+"186\n"
+"help.text"
+msgid "Chinese: fullwidth Arabic digits; CAL: 3/3/3 [DBNum3]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3161665\n"
+"54\n"
+"help.text"
+msgid "NN or DDD"
+msgstr ""
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"hd_id3155341\n"
+"31\n"
+"help.text"
+msgid "Load Gradients List"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152419\n"
+"140\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">If you perform a calculation that involves one or more cells using a date format, the result is formatted according to the following mappings: </caseinline></switchinline>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147520\n"
+"181\n"
+"help.text"
+msgid "[NatNum2] Transliteration in"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3149202\n"
+"35\n"
+"help.text"
+msgid "Original"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148495\n"
+"53\n"
+"help.text"
+msgid "Day as Sun-Sat"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156173\n"
+"74\n"
+"help.text"
+msgid "s"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146070\n"
+"132\n"
+"help.text"
+msgid "Gregorian Calendar"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155962\n"
+"123\n"
+"help.text"
+msgid "GG"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3147264\n"
+"22\n"
+"help.text"
+msgid "Automatic"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153355\n"
+"96\n"
+"help.text"
+msgid "Calendar week"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152861\n"
+"138\n"
+"help.text"
+msgid "Era, full name and year"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151249\n"
+"121\n"
+"help.text"
+msgid "G"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3154346\n"
+"20\n"
+"help.text"
+msgid "Increments (Gradients)"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148397\n"
+"228\n"
+"help.text"
+msgid "To enter a date in a cell, use the Gregorian calendar format. For example, in an English locale, enter 1/2/2002 for Jan 2, 2002."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145164\n"
+"119\n"
+"help.text"
+msgid "NNN or DDDD"
+msgstr ""
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"hd_id3148943\n"
+"33\n"
+"help.text"
+msgid "Save Gradients List"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3156113\n"
+"9\n"
+"help.text"
+msgid "Angle grid"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154592\n"
+"190\n"
+"help.text"
+msgid "Chinese: lower case text [DBNum1]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3143236\n"
+"58\n"
+"help.text"
+msgid "YY"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3144423\n"
+"21\n"
+"help.text"
+msgid "Set the number of steps for blending the two end colors of a gradient."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148973\n"
+"180\n"
+"help.text"
+msgid "Indic: Indic characters"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3153364\n"
+"61\n"
+"help.text"
+msgid "Background color"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153688\n"
+"204\n"
+"help.text"
+msgid "[NatNum8] Transliteration in"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3151246\n"
+"23\n"
+"help.text"
+msgid "Save Bitmap List"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156181\n"
+"50\n"
+"help.text"
+msgid "D"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3148798\n"
+"32\n"
+"help.text"
+msgid "Specify the dimensions of the bitmap."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150878\n"
+"210\n"
+"help.text"
+msgid "Korean: formal Hangul text [DBNum4]; CAL: 9/11/11 [DBNum4]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155344\n"
+"200\n"
+"help.text"
+msgid "Korean: fullwidth text"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149945\n"
+"178\n"
+"help.text"
+msgid "Thai: Thai characters"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154557\n"
+"65\n"
+"help.text"
+msgid "Hours as 0-23"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149167\n"
+"32\n"
+"help.text"
+msgid "BLUE"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149182\n"
+"9\n"
+"help.text"
+msgid "Number Format"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148487\n"
+"128\n"
+"help.text"
+msgid "Number of the year within an era, with a leading zero for single-digit years"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151218\n"
+"116\n"
+"help.text"
+msgid "First letter of Name of Month"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3151115\n"
+"49\n"
+"help.text"
+msgid "Row"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149514\n"
+"111\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">To delete a file, right-click the file, and then choose <emph>Delete</emph>.</ahelp>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156294\n"
+"81\n"
+"help.text"
+msgid "To use a character to define the width of a space in a number format, type an underscore ( _ ) followed by the character. The width of the space varies according to the width of the character that you choose. For example, <emph>_M</emph> creates a wider space than <emph>_i</emph>."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155318\n"
+"48\n"
+"help.text"
+msgid "MMMM"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155075\n"
+"197\n"
+"help.text"
+msgid "[NatNum6] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149762\n"
+"20\n"
+"help.text"
+msgid "0.##"
+msgstr ""
+
+#: 02230402.xhp
+msgctxt ""
+"02230402.xhp\n"
+"par_id3151210\n"
+"help.text"
+msgid "<image id=\"img_id3154138\" src=\"starmath/res/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Icon</alt></image>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147289\n"
+"114\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILESAVE_DOPLAY\">Plays the selected sound file. Click again to stop playing the sound file.</ahelp>"
+msgstr ""
+
+#: 02190000.xhp
+msgctxt ""
+"02190000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Plug-in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155383\n"
+"182\n"
+"help.text"
+msgid "Chinese: Chinese upper case characters; CAL: 2/8/8 [DBNum2]"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150105\n"
+"73\n"
+"help.text"
+msgid "When you open a document that was created from a \"sticky template\" (as defined above), <item type=\"productname\">%PRODUCTNAME</item> checks to see if the template has been modified since the document was last opened. If the template was changed a dialog is shown where you can select which styles to apply to the document."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149158\n"
+"63\n"
+"help.text"
+msgid "Format"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149568\n"
+"125\n"
+"help.text"
+msgid "GGG"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3159166\n"
+"21\n"
+"help.text"
+msgid "Load Bitmap List"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154341\n"
+"64\n"
+"help.text"
+msgid "Format Code"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152967\n"
+"218\n"
+"help.text"
+msgid "Calendar"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3149985\n"
+"45\n"
+"help.text"
+msgid "Y Offset"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154142\n"
+"13\n"
+"help.text"
+msgid "9.9 as 9.900"
+msgstr ""
+
+#: 04150200.xhp
+msgctxt ""
+"04150200.xhp\n"
+"hd_id3148585\n"
+"3\n"
+"help.text"
+msgid "File/URL"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156275\n"
+"57\n"
+"help.text"
+msgid "Year as 00-99"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3154514\n"
+"110\n"
+"help.text"
+msgid "Click a column header to sort the files. Click again to reverse the sort order."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150139\n"
+"69\n"
+"help.text"
+msgid "Minutes as 0-59"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155097\n"
+"184\n"
+"help.text"
+msgid "Korean: Korean upper case characters [DBNum2]; CAL: 2/8/8 [DBNum2]"
+msgstr ""
+
+#: 02100001.xhp
+msgctxt ""
+"02100001.xhp\n"
+"par_id3153961\n"
+"44\n"
+"help.text"
+msgid "Adds the string that was found by the search criteria in the <emph>Search for</emph> box to the term in the <emph>Replace with</emph> box when you make a replacement."
+msgstr ""
+
+#: 05210200.xhp
+msgctxt ""
+"05210200.xhp\n"
+"par_id3149119\n"
+"2\n"
+"help.text"
+msgid "Select a color to apply, save the current color list, or load a different color list."
+msgstr ""
+
+#: 04150500.xhp
+msgctxt ""
+"04150500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert video"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152993\n"
+"143\n"
+"help.text"
+msgid "Date + Date"
+msgstr ""
+
+#: 04150200.xhp
+msgctxt ""
+"04150200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Plug-In"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149207\n"
+"136\n"
+"help.text"
+msgid "Korean Calendar"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3150767\n"
+"25\n"
+"help.text"
+msgid "File type"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153931\n"
+"183\n"
+"help.text"
+msgid "Japanese: traditional Kanji characters; CAL: 2/5/5 [DBNum2]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147269\n"
+"173\n"
+"help.text"
+msgid "In the following list, the Microsoft Excel [DBNumX] modifier that corresponds to <item type=\"productname\">%PRODUCTNAME</item> [NatNum] modifier is shown. If you want, you can use a [DBNumX] modifier instead of [NatNum] modifier for your locale. Whenever possible, <item type=\"productname\">%PRODUCTNAME</item> internally maps [DBNumX] modifiers to [NatNumN] modifiers."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154935\n"
+"26\n"
+"help.text"
+msgid "16000 as 16"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145764\n"
+"217\n"
+"help.text"
+msgid "Modifier"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3157969\n"
+"133\n"
+"help.text"
+msgid "[~gengou]"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149291\n"
+"82\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILEOPEN_VERSION\">If there are multiple versions of the selected file, select the version that you want to open.</ahelp> You can save and organize multiple versions of a document by choosing <emph>File - Versions</emph>. The versions of a document are opened in read-only mode."
+msgstr ""
+
+#: 02190000.xhp
+msgctxt ""
+"02190000.xhp\n"
+"hd_id3146946\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02190000.xhp\" name=\"Plug-in\">Plug-in</link>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154527\n"
+"151\n"
+"help.text"
+msgid "Time + Time"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3143218\n"
+"67\n"
+"help.text"
+msgid "Hours as 00-23"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3150334\n"
+"29\n"
+"help.text"
+msgid "AutoFit"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150292\n"
+"144\n"
+"help.text"
+msgid "Number (Days)"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3154188\n"
+"135\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">No Format</caseinline></switchinline>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145728\n"
+"45\n"
+"help.text"
+msgid "Month as Jan-Dec"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153111\n"
+"174\n"
+"help.text"
+msgid "[NatNum1] Transliterations"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146770\n"
+"154\n"
+"help.text"
+msgid "Time"
+msgstr ""
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"hd_id3150449\n"
+"11\n"
+"help.text"
+msgid "Styles and Formatting"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155500\n"
+"155\n"
+"help.text"
+msgid "Time + Date&Time"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3158432\n"
+"11\n"
+"help.text"
+msgid "Modify"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154371\n"
+"146\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156358\n"
+"52\n"
+"help.text"
+msgid "DD"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156290\n"
+"148\n"
+"help.text"
+msgid "Date&Time"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3158407\n"
+"33\n"
+"help.text"
+msgid "MAGENTA"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3152960\n"
+"196\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search in all sheets</caseinline></switchinline>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3149929\n"
+"227\n"
+"help.text"
+msgid "Entering Dates"
+msgstr ""
+
+#: 02100001.xhp
+msgctxt ""
+"02100001.xhp\n"
+"par_id3153700\n"
+"167\n"
+"help.text"
+msgid "Represents a line break that was inserted with the Shift+Enter key combination. To change a line break into a paragraph break, enter <emph>\\n</emph> in the <emph>Search for</emph> and <emph>Replace with</emph> boxes, and then perform a search and replace."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155538\n"
+"201\n"
+"help.text"
+msgid "[NatNum7] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147295\n"
+"91\n"
+"help.text"
+msgid "To define a number format that adds a different text to a number depending on if the number is positive, negative, or equal to zero, use the following format:"
+msgstr ""
+
+#: 05020300.xhp
+msgctxt ""
+"05020300.xhp\n"
+"par_id3153095\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">Custom format codes</link>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3147275\n"
+"7\n"
+"help.text"
+msgid "Bitmap Pattern"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3155994\n"
+"37\n"
+"help.text"
+msgid "Width"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154224\n"
+"80\n"
+"help.text"
+msgid "To include text in a number format that is applied to a cell containing numbers, place a double quotation mark (\") in front of and behind the text, or a backslash (\\) before a single character. For example, enter <emph>#.# \"meters\"</emph> to display \"3.5 meters\" or <emph>#.# \\m</emph> to display \"3.5 m\"."
+msgstr ""
+
+#: 04150200.xhp
+msgctxt ""
+"04150200.xhp\n"
+"par_id3143267\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/insertplugin/urlbtn\">Locate the plug-in that you want to insert, and then click <emph>Open</emph>.</ahelp>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150108\n"
+"62\n"
+"help.text"
+msgid "To display hours, minutes and seconds use the following number format codes."
+msgstr ""
+
+#: 02230100.xhp
+msgctxt ""
+"02230100.xhp\n"
+"hd_id3150758\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02230100.xhp\" name=\"Record\">Record</link>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145367\n"
+"40\n"
+"help.text"
+msgid "<item type=\"productname\">%PRODUCTNAME</item> recognizes templates that are located in any folder from the following list:"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145211\n"
+"13\n"
+"help.text"
+msgid "Create New Folder"
+msgstr ""
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"par_id3157909\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/gradientpage/gradientslb\">Select the type of gradient that you want to apply or create.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3149579\n"
+"11\n"
+"help.text"
+msgid "<variable id=\"ganze\"><ahelp hid=\"svx/ui/findreplacedialog/wholewords\">Searches for whole words or cells that are identical to the search text.</ahelp></variable>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3155103\n"
+"50\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/layout\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the <emph>Search for </emph>list. To specify a replacement style, select a style from the <emph>Replace with</emph> list.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3155805\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchlist\">Enter the text that you want to search for, or select a previous search from the list.</ahelp>"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3150358\n"
+"38\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/backgroundpage/transparencymf\">Set the transparency for the background color or graphic of a frame, where 100% is completely transparent and 0% is opaque. When you increase the transparency of the background, the underlying text or objects become visible through the background of the frame.</ahelp></caseinline></switchinline>"
+msgstr ""
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"par_id3161459\n"
+"34\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/gradientpage/save\">Saves the current list of gradients, so that you can load it later.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3147436\n"
+"69\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/search\">Finds and selects the next occurrence of the text or format that you searching for in the document.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"bm_id3145211\n"
+"help.text"
+msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; 'changed' message</bookmark_value>"
+msgstr ""
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3154946\n"
+"66\n"
+"help.text"
+msgid "Creates a new presentation document ($[officename] Impress). If activated, the <link href=\"text/shared/autopi/01050000.xhp\" name=\"Presentation Wizard\">Presentation Wizard</link> dialog appears."
+msgstr ""
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3149202\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles and Formatting window</link></caseinline><defaultinline>Styles and Formatting window</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3153525\n"
+"help.text"
+msgid "Background gradient"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3152364\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/gradientslb\">Click the gradient that you want to use as a background. To remove a background gradient, set <emph>As</emph> to <emph>Color</emph>, then click <emph>No Fill</emph>.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3151292\n"
+"120\n"
+"help.text"
+msgid "the shared template folder"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3150506\n"
+"190\n"
+"help.text"
+msgid "Replacement options are listed in the <emph>Options </emph>area of the dialog."
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3156113\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILEDLG_STANDARD\">Displays the files and folders in the folder that you are in.</ahelp> To open a file, select the file, and then click <emph>Open</emph>."
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3144442\n"
+"121\n"
+"help.text"
+msgid "the user template folder <switchinline select=\"sys\"><caseinline select=\"UNIX\">in the home directory</caseinline><defaultinline>in the Documents and Settings folder</defaultinline></switchinline>"
+msgstr ""
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_idN10A15\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new presentation document ($[officename] Impress). If activated, the Presentation Wizard dialog appears.</ahelp>"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3153526\n"
+"help.text"
+msgid "Preview field"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3152362\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/previewctl\">Displays a preview of the currently selected gradient.</ahelp>"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3151246\n"
+"help.text"
+msgid "Using a Gradient as a Background"
+msgstr ""
+
+#: 05020300.xhp
+msgctxt ""
+"05020300.xhp\n"
+"par_id3159156\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/numberingformatpage/formated\">Displays the number format code for the selected format. You can also enter a custom format.</ahelp> The following options are only available for user-defined number formats."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3146974\n"
+"52\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/RBT_COLUMN\">Vertically offsets the original bitmap relative to the bitmap tiles by the amount that you enter.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3157309\n"
+"64\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/LB_HATCHBCKGRDCOLOR\">Click the color that you want to use as a background for the selected hatching pattern.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3148538\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/LB_BACKGROUND_COLOR\">Select a background color for your bitmap pattern.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3147299\n"
+"44\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_X_OFFSET\">Enter the horizontal offset for tiling the bitmap.</ahelp>"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3156343\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/hatchpage/load\">Loads a different list of hatching patterns.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3149810\n"
+"38\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_X_SIZE\">Enter a width for the bitmap.</ahelp>"
+msgstr ""
+
+#: 02100100.xhp
+msgctxt ""
+"02100100.xhp\n"
+"par_id3152551\n"
+"59\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3152576\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_TILE\">Tiles the bitmap to fill the selected object.</ahelp>"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3147242\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/hatchpage/anglectl\">Click a position in the grid to define the rotation angle for the hatch lines.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3149481\n"
+"30\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_STRETCH\">Stretches the bitmap to fill the selected object. To use this feature, clear the <emph>Tile </emph>box.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3155369\n"
+"50\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/RBT_ROW\">Horizontally offsets the original bitmap relative to the bitmap tiles by the amount that you enter.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3149457\n"
+"23\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_STEPCOUNT\">Automatically determines the number of steps for blending the two end colors of the gradient.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3125865\n"
+"34\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_SCALE\">Rescales the bitmap relative to the size of the selected object by the percentage values that you enter in the <emph>Width</emph> and <emph>Height</emph> boxes . Clear this checkbox to resize the selected object with the measurements that you enter in the <emph>Width</emph> and <emph>Height</emph> boxes.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3148559\n"
+"46\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_Y_OFFSET\">Enter the vertical offset for tiling the bitmap.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3150868\n"
+"40\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_Y_SIZE\">Enter a height for the bitmap.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3153970\n"
+"36\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_ORIGINAL\">Retains the original size of the bitmap when filling the selected object. To resize the bitmap, clear this checkbox, and then click <emph>Relative</emph>.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3146847\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/LB_BITMAPS\">Select a bitmap in the list, and then click <emph>OK</emph> to apply the pattern to the selected object.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3152940\n"
+"62\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/CB_HATCHBCKGRD\">Applies a background color to the hatching pattern. Select this checkbox, and then click a color in the list.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3155341\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_LOAD\">Loads a different list of bitmaps.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3154306\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_ADD\">Adds a bitmap that you created in the <emph>Pattern Editor </emph>to the current list.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3155314\n"
+"54\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_OFFSET\">Enter the percentage to offset the rows or columns.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3161458\n"
+"125\n"
+"help.text"
+msgid "<ahelp hid=\"svt/ui/querydeletedialog/no\" visibility=\"hidden\">Click to cancel deletion of the file with the name shown in this dialog.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153331\n"
+"124\n"
+"help.text"
+msgid "<ahelp hid=\"svt/ui/querydeletedialog/yes\" visibility=\"hidden\">Click to delete the file with the name shown in this dialog.</ahelp>"
+msgstr ""
+
+#: 04150400.xhp
+msgctxt ""
+"04150400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Audio"
+msgstr ""
+
+#: 04150400.xhp
+msgctxt ""
+"04150400.xhp\n"
+"hd_id3152414\n"
+"1\n"
+"help.text"
+msgid "Insert Audio"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147226\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"SVT_HID_FILEOPEN_LEVELUP\">Move up one folder in the folder hierarchy. Long-click to see the higher level folders.</ahelp>"
+msgstr ""
+
+#: 04150400.xhp
+msgctxt ""
+"04150400.xhp\n"
+"par_id3154840\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"klang\"><ahelp hid=\".uno:InsertSound\">Inserts an audio file into the current document.</ahelp></variable>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3151191\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"oeffnentext\"><ahelp hid=\"fpicker/ui/explorerfiledialog/ExplorerFileDialog\">Opens or imports a file.</ahelp></variable>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153969\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">Select the file type that you want to open, or select <emph>All Files (*)</emph> to display a list of all of the files in the folder.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153681\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/new_folder\">Creates a new folder.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3161656\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> that starts with the protocol name ftp, http, or https.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3152933\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/open\">Opens the selected document(s).</ahelp>"
+msgstr ""
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3145785\n"
+"32\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/docking3deffects/inverthormals\">Inverts the light source.</ahelp>"
+msgstr ""
+
+#: 01100400.xhp
+msgctxt ""
+"01100400.xhp\n"
+"hd_id3156027\n"
+"5\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tables: </caseinline><caseinline select=\"CALC\">Number of Sheets: </caseinline></switchinline>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3163821\n"
+"68\n"
+"help.text"
+msgid "Find Next"
+msgstr ""
+
+#: 05280000.xhp
+msgctxt ""
+"05280000.xhp\n"
+"par_id3149202\n"
+"68\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/dockingfontwork/slantx\">Horizontally slants the characters in the text object.</ahelp>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154380\n"
+"21\n"
+"help.text"
+msgid "Depending on your language setting, you can use a comma, a period or a blank as a thousands separator. You can also use the separator to reduce the size of the number that is displayed by a multiple of 1000."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146923\n"
+"85\n"
+"help.text"
+msgid "Scientific notation lets you write very large numbers or very small fractions in a compact form. For example, in scientific notation, 650000 is written as 6.5 x 10^5, and 0.000065 as 6.5 x 10^-5. In <item type=\"productname\">%PRODUCTNAME</item>, these numbers are written as 6.5E+5 and 6.5E-5, respectively. To create a number format that displays numbers using scientific notation, enter a # or 0, and then one of the following codes E-, E+, e- or e+. If sign is omitted after E or e, it won't appear for positive value of exponent. To get engineering notation, enter 3 digits (0 or #) in the integer part.For instance: ###.##E+00"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152802\n"
+"239\n"
+"help.text"
+msgid "?"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156153\n"
+"241\n"
+"help.text"
+msgid ".5 as 0.5   (with two extra spaces at the end)"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149763\n"
+"242\n"
+"help.text"
+msgid "0.???"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149877\n"
+"109\n"
+"help.text"
+msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> dialog box. To activate the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3146905\n"
+"122\n"
+"help.text"
+msgid "all template folders as defined in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\"><emph>%PRODUCTNAME - Paths</emph></link>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153096\n"
+"74\n"
+"help.text"
+msgid "To apply the new styles from the template to the document, click <emph>Update Styles</emph>."
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147581\n"
+"75\n"
+"help.text"
+msgid "To retain the styles that are currently used in the document, click <emph>Keep Old Styles</emph>."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153274\n"
+"137\n"
+"help.text"
+msgid "All date formats are dependent on the locale that is set in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language settings - Languages</emph>. For example, if your locale is set to 'Japanese', then the Gengou calendar is used. The default date format in <item type=\"productname\">%PRODUCTNAME</item> uses the Gregorian Calendar."
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_idN107A4\n"
+"help.text"
+msgid "Background transparency can be set only for frames."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153264\n"
+"179\n"
+"help.text"
+msgid "Arabic: Indic characters"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3157811\n"
+"189\n"
+"help.text"
+msgid "[NatNum4] Transliteration in"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3154821\n"
+"42\n"
+"help.text"
+msgid "Click in the position grid to specify the offset for tiling the bitmap."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3159228\n"
+"207\n"
+"help.text"
+msgid "[NatNum9] Transliteration in"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3156060\n"
+"27\n"
+"help.text"
+msgid "Tile"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3149955\n"
+"12\n"
+"help.text"
+msgid "Lists the available hatching patterns. You can also modify or create your own hatching pattern. To save the list, click the <emph>Save Hatches List</emph> button. To display a different list, click the <emph>Load Hatches List</emph> button."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149926\n"
+"139\n"
+"help.text"
+msgid "RR or GGGEE"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146125\n"
+"177\n"
+"help.text"
+msgid "Korean: Korean lower case characters [DBNum1]; CAL: 1/7/7 [DBNum1]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152456\n"
+"149\n"
+"help.text"
+msgid "Date + Date&Time"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150350\n"
+"191\n"
+"help.text"
+msgid "Japanese: modern long Kanji text [DBNum2]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150298\n"
+"129\n"
+"help.text"
+msgid "EE or R"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3153056\n"
+"43\n"
+"help.text"
+msgid "X Offset"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149787\n"
+"142\n"
+"help.text"
+msgid "Result Format"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153546\n"
+"193\n"
+"help.text"
+msgid "[NatNum5] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148390\n"
+"219\n"
+"help.text"
+msgid "[~buddhist]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155396\n"
+"209\n"
+"help.text"
+msgid "[NatNum10] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149998\n"
+"170\n"
+"help.text"
+msgid "To display numbers using native number characters, use a [NatNum1], [NatNum2], ... [NatNum11] modifier at the beginning of a number format codes."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151187\n"
+"124\n"
+"help.text"
+msgid "Era, full name"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145123\n"
+"202\n"
+"help.text"
+msgid "Japanese: modern short Kanji text"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149588\n"
+"70\n"
+"help.text"
+msgid "m"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151358\n"
+"60\n"
+"help.text"
+msgid "YYYY"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3148555\n"
+"47\n"
+"help.text"
+msgid "Offset"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150531\n"
+"71\n"
+"help.text"
+msgid "Minutes as 00-59"
+msgstr ""
+
+#: 05210200.xhp
+msgctxt ""
+"05210200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Colors"
+msgstr ""
+
+#: 04150200.xhp
+msgctxt ""
+"04150200.xhp\n"
+"par_id3155599\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"plugin\"><ahelp hid=\".uno:InsertPlugin\">Inserts a plug-in into the current document.</ahelp> </variable> A <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-in\">plug-in</link> is a software component that extends the capabilities of a web browser."
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145117\n"
+"81\n"
+"help.text"
+msgid "Version"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154302\n"
+"103\n"
+"help.text"
+msgid "Quarterly as Q1 to Q4"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148408\n"
+"59\n"
+"help.text"
+msgid "Year as 1900-2078"
+msgstr ""
+
+#: 02230100.xhp
+msgctxt ""
+"02230100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Record"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154272\n"
+"118\n"
+"help.text"
+msgid "Day as Sunday to Saturday"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3155412\n"
+"48\n"
+"help.text"
+msgid "Specify the offset for tiling the bitmap in terms of rows and columns."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146802\n"
+"153\n"
+"help.text"
+msgid "Time + Number"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154644\n"
+"208\n"
+"help.text"
+msgid "Korean: Hangul characters"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151269\n"
+"161\n"
+"help.text"
+msgid "Number + Number"
+msgstr ""
+
+#: 05210200.xhp
+msgctxt ""
+"05210200.xhp\n"
+"hd_id3152895\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151304\n"
+"196\n"
+"help.text"
+msgid "Korean: formal upper case text"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151223\n"
+"25\n"
+"help.text"
+msgid "#,###"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147344\n"
+"126\n"
+"help.text"
+msgid "Number of the year within an era, without a leading zero for single-digit years"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149260\n"
+"53\n"
+"help.text"
+msgid "Opening Documents With Templates"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3157981\n"
+"76\n"
+"help.text"
+msgid "ss"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3154068\n"
+"33\n"
+"help.text"
+msgid "Relative"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152904\n"
+"157\n"
+"help.text"
+msgid "Date&Time + Date&Time"
+msgstr ""
+
+#: 05210200.xhp
+msgctxt ""
+"05210200.xhp\n"
+"par_id3154288\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010500.xhp\" name=\"$[officename] - Colors\">$[officename] - Colors</link>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_idN109CC\n"
+"help.text"
+msgid "After you select the attributes that you want to search for, the <emph>Search for Styles</emph> box in the <emph>Options </emph>area of the %PRODUCTNAME Writer <emph>Find & Replace </emph>dialog changes to <emph>Including Styles</emph>."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154600\n"
+"171\n"
+"help.text"
+msgid "The [NatNum1] modifier always uses a one to one character mapping to convert numbers to a string that matches the native number format code of the corresponding locale. The other modifiers produce different results if they are used with different locales. A locale can be the language and the territory for which the format code is defined, or a modifier such as [$-yyy] that follows the native number modifier. In this case, yyy is the hexadecimal MS-LCID that is also used in currency format codes. For example, to display a number using Japanese short Kanji characters in an English US locale, use the following number format code:"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152376\n"
+"39\n"
+"help.text"
+msgid "Format"
+msgstr ""
+
+#: 04150200.xhp
+msgctxt ""
+"04150200.xhp\n"
+"hd_id3149750\n"
+"7\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147502\n"
+"35\n"
+"help.text"
+msgid "WHITE"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147088\n"
+"7\n"
+"help.text"
+msgid "0 (Zero)"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156039\n"
+"77\n"
+"help.text"
+msgid "To display seconds as fractions, add the decimal delimiter to your number format code. For example, enter <emph>hh:mm:ss.00</emph> to display the time as \"01:02:03.45\"."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152791\n"
+"38\n"
+"help.text"
+msgid "To display days, months and years, use the following number format codes."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3156281\n"
+"39\n"
+"help.text"
+msgid "Height"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3145207\n"
+"153\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches from top to bottom through the columns.</caseinline></switchinline>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3156192\n"
+"14\n"
+"help.text"
+msgid "Backwards"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3150337\n"
+"137\n"
+"help.text"
+msgid "The search criteria for formatting attributes are displayed under the <emph>Search for </emph>or the <emph>Replace with </emph>box."
+msgstr ""
+
+#: 02100001.xhp
+msgctxt ""
+"02100001.xhp\n"
+"par_id2366100\n"
+"help.text"
+msgid "\\n in the <emph>Replace with</emph> text box stands for a paragraph break that can be entered with the Enter or Return key."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3153514\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"zahlenformatcodes\"><link href=\"text/shared/01/05020301.xhp\" name=\"Number Format Codes\">Number Format Codes</link></variable>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150304\n"
+"222\n"
+"help.text"
+msgid "[~hijri]"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3156293\n"
+"89\n"
+"help.text"
+msgid "If you opened the dialog by choosing <emph>Insert - File</emph>, the <emph>Open</emph> button is labeled <emph>Insert</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Inserts the selected file into the current document at the cursor position.</ahelp>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146895\n"
+"175\n"
+"help.text"
+msgid "Chinese: Chinese lower case characters; CAL: 1/7/7 [DBNum1]"
+msgstr ""
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"par_id3145085\n"
+"32\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/gradientpage/load\">Load a different list of gradients.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3150771\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/backwards\">Search starts at the current cursor position and goes backwards to the beginning of the file.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3154760\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\">Distinguishes between uppercase and lowercase characters.</ahelp></variable>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153779\n"
+"24\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>For example, to list all of the text files in a folder, enter the asterisk wildcard with the text file extension (*.txt), and then click<emph> Open</emph>. Use the question mark (?) wildcard to represent any character, as in (??3*.txt), which only displays text files with a '3' as the third character in the file name.</defaultinline></switchinline>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3153683\n"
+"189\n"
+"help.text"
+msgid "Search options are listed in the <emph>Options </emph>area of the dialog"
+msgstr ""
+
+#: 01070000.xhp
+msgctxt ""
+"01070000.xhp\n"
+"par_id3147654\n"
+"59\n"
+"help.text"
+msgid "To save a document as a template, use the command <emph>File - Save As Template</emph>."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3150360\n"
+"25\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/NUM_FLD_STEPCOUNT\">Enter the number of steps for blending the two end colors of the gradient.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3151385\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_SAVE\">Saves the current list of bitmaps, so that you can load it later.</ahelp>"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3152811\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/hatchpage/save\">Saves the current list of hatching patterns, so that you can load it later.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3155535\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/LB_COLOR\">Select a foreground color, and then click in the grid to add a pixel to the pattern.</ahelp>"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3144438\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/hatchpage/hatchingslb\">Lists the available hatching patterns. Click the hatching pattern that you want to apply, and then click <emph>OK</emph>.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3153827\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_MODIFY\">Replaces a bitmap that you created in the <emph>Pattern Editor</emph> with the current bitmap pattern. If you want, you can save the pattern under a different name.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147531\n"
+"126\n"
+"help.text"
+msgid "<ahelp hid=\"svt/ui/querydeletedialog/all\" visibility=\"hidden\">Click to delete all selected files.</ahelp>"
+msgstr ""
+
+#: 05280000.xhp
+msgctxt ""
+"05280000.xhp\n"
+"par_id3154297\n"
+"70\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/dockingfontwork/slanty\">Vertically slants the characters in the text object.</ahelp>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145091\n"
+"240\n"
+"help.text"
+msgid "Displays space characters instead of extra zeros."
+msgstr ""
+
+#: 02100100.xhp
+msgctxt ""
+"02100100.xhp\n"
+"par_id3146856\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/similarity\">Find terms that are similar to the <emph>Search for</emph> text. Select this checkbox, and then click the <emph>Similarities</emph> button to define the similarity options.</ahelp>"
+msgstr ""
+
+#: 02230100.xhp
+msgctxt ""
+"02230100.xhp\n"
+"par_id3155934\n"
+"26\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you choose <emph>Record - Show</emph>, the lines containing changed text passages are indicated by a vertical line in the left page margin. You can set the properties of the vertical line and the other markup elements by choosing <link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153624\n"
+"3\n"
+"help.text"
+msgid "Use zero (0), the number sign (#) or the question mark (?) as placeholders in your number format code to represent numbers. The (#) only displays significant digits, while the (0) displays zeroes if there are fewer digits in the number than in the number format. The (?) works as the (#) but adds a space character to keep decimal alignment if there is a hidden non-significant zero."
+msgstr ""
diff --git a/source/bo/helpcontent2/source/text/shared/guide.po b/source/bo/helpcontent2/source/text/shared/guide.po
index ba31099cf96..812066c96e5 100644
--- a/source/bo/helpcontent2/source/text/shared/guide.po
+++ b/source/bo/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-07-05 16:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467737397.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467737380.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2194,7 +2194,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2274,7 +2274,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9932,8 +9932,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "གལ་ཏེ་ལས་ཁྲའི་ནང་དྲ་མིག་མཚོན་པའི་རེ་བ་ཡོད་ན་ དྲ་མིག་དེ་མིང་(<emph>[བསྒར་འཛུད་] - [མིང་] - [མཚན་འཇོག་...]</emph>)བཅུག"
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12451,20 +12451,20 @@ msgstr "<emph>འདེམས་གཞི་</emph>འདེམས་གཞི
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "<emph>ཡིག་ཚགས་གསར་བཟོ་གནོན་རྡེབ་བྱེད་ན་</emph> ཁྱེད་ཀྱིས་གནོན་མཐེབ་ཞིག་ཁྱེར་ཡོད་པ་<emph>མཉམ་བགྲོད་ཤོག་བྱང་</emph>གི་སྒེའུ་ཁུང་ཡོད་པ་མཐོང་ཐུབ། ཤོང་བྱང་ཨང་དང་པོའི་ནང་དོན་ནང་བཅུག་བྱེད། གོང་བརྗོད་གནོན་མཐེབ་གནོན་རྡེབ་བྱེད་ན་ཤོག་བུའི་ཐོག་མིག་སྔའི་ཤོག་བྱང་རྐྱང་པ་ཤོག་བྱང་གཞན་ཚང་མ་འདྲ་ཕབ་བྱེད།"
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "གནོན་པ་<emph>ཡིག་ཚགས་གསར་བཟོ་</emph>དེ་དང་མཚམས་པའི་ནང་དོན་གྱི་གསར་འཛུགས་ཡིག་ཚགས་བཟོ་ཐུབ།"
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "གནོན་པ་<emph>ཡིག་ཚགས་གསར་བཟོ་</emph>དེ་དང་མཚམས་པའི་ནང་དོན་གྱི་གསར་འཛུགས་ཡིག་ཚགས་བཟོ་ཐུབ།"
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "<emph>ཡིག་ཚགས་གསར་བཟོ་གནོན་རྡེབ་བྱེད་ན་</emph> ཁྱེད་ཀྱིས་གནོན་མཐེབ་ཞིག་ཁྱེར་ཡོད་པ་<emph>མཉམ་བགྲོད་ཤོག་བྱང་</emph>གི་སྒེའུ་ཁུང་ཡོད་པ་མཐོང་ཐུབ། ཤོང་བྱང་ཨང་དང་པོའི་ནང་དོན་ནང་བཅུག་བྱེད། གོང་བརྗོད་གནོན་མཐེབ་གནོན་རྡེབ་བྱེད་ན་ཤོག་བུའི་ཐོག་མིག་སྔའི་ཤོག་བྱང་རྐྱང་པ་ཤོག་བྱང་གཞན་ཚང་མ་འདྲ་ཕབ་བྱེད།"
#: labels.xhp
msgctxt ""
@@ -18361,58 +18361,53 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "ཞུགས་གྲངས་སྒུལ་སློང་ $[officename] མཉེན་ཆས་སྤྱོད།"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>ཞུགས་གྲངས་</bookmark_value><bookmark_value>བཀའ་ཚིག་ཕྲེང་ཞུགས་གྲངས་</bookmark_value><bookmark_value>ཞུགས་གྲངས་; བཀའ་ཚིག་ཕྲེང་</bookmark_value><bookmark_value>བཀའ་ཚིག་ཕྲེང་ནང་གི་ཞུགས་གྲངས་</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "ཞུགས་གྲངས་སྒུལ་སློང་ $[officename] མཉེན་ཆས་སྤྱོད།"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "བཀའ་ཚིག་ཕྲེང་གི་སྒུལ་སློང་ $[officename] མཉེན་ཆས་བརྒྱུད་ ཞུགས་གྲངས་ཁག་གཏན་འཁེལ་བྱེད། ཞུགས་གྲངས་འདི་དག་སྤྱད་དེ་མཉེན་ཆས་ཀྱི་རང་ནུས་ཤུགས་རྐྱེན་ཐེབ། ཉམས་མྱོང་ཡོད་པའི་སྤྱོད་པོ་བཀའ་ཚིག་ཕྲེང་ཞུགས་གྲངས་བེད་སྤྱོད་རྒྱུ་དགོངས་འཆར་འདོན།"
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "སྤྱིར་བཏང་བཀོལ་སྤྱོད་ ཕྲེང་ཞུགས་གྲངས་བེད་སྤྱོད་དགོསངེས་མེད། ཞུགས་གྲངས་འགའ་ཤས་ནི་ཅུང་མང་བའི་ $[officename] མཉེན་ཆས་སྒྱུ་རྩལ་ཀྱི་རྒྱབ་ལྗོངས་ཤེས་བྱ་ལྡན་པ་རེ་བ་བྱེད།"
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "བཀའ་ཚིག་ཕྲེང་ $[officename] མཉེན་ཆས་སྒུལ་སློང་བྱེད།"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
msgstr ""
@@ -18421,16 +18416,14 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "Windows འོག་<emph>ཁ་ཕྱེ་</emph>ཡི་གེའི་ཡིག་དུམ་ནང་གཤམ་གྱི་ཡི་གེ་མཐེབ་འཇུག་བྱེད་པ་མ་ཟད་<emph>\"གཏན་འཁེལ་\"</emph>རྐྱང་རྡེབ་བྱེད།"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
msgstr ""
@@ -18439,679 +18432,649 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "<emph>{install}</emph> $[officename] མཉེན་ཆས་ཀྱི་སྒྲིག་སྦྱོར་བརྒྱུད་ལམ་ (དཔེར་ན་ <emph>C:\\Program Files\\Office</emph> ཡང་ན་ <emph>~/office</emph>)ལ་ཚབ་བརྗེ་བྱེད།"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "དགོས་མཁོ་ལྟར་ གཤམ་གྱི་བཀའ་ཚིག་ཕྲེང་ཞུགས་གྲངས་གཅིག་གམ་ཡང་དག་ཚབ་བརྗེ་བྱེད་པ་སྤྱོད་ <emph>{parameter}</emph>"
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "ནུས་ལྡན་གྱི་བཀའ་ཚིག་ཕྲེང་ཞུགས་གྲངས།"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "ཞུགས་གྲངས་"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "གོ་དོན།"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "-help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">གླེང་སྒྲོམ་ནང་</caseinline><defaultinline>ཚོད་འཛིན་སྟེགས་བུའི་ནང་</defaultinline></switchinline>སྤྱོད་རུང་བའི་བཀའ་ཚིག་ཕྲེང་ཞུགས་གྲངས་སྒྲིག།-help ཅུང་རིང་བའི་རོགས་ཐམ་ཡི་གེ་མངོན་ -h ཅུང་ཐུང་བའི་རོགས་རམ་ཡི་གེ་མངོན།"
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
+msgid "Opens the file and applies specified macros from the file."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
+msgid "Getting help and information"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "-writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "སྟོང་ཆའི་ཡི་གེ་ལས་སྣོན་ཡིག་ཚགས་སྒུལ་སློང་བྱེད།"
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "-calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "སྟོང་པའི་ལས་དེབ་སྒུལ་སློང་།"
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "-draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "སྟོང་ཆའི་རིས་འགོད་ཡིག་ཚགས་སྒུལ་སློང་བྱེད།"
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "-impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "སྟོང་ཆའི་སྒྲོན་བཪྙན་སྤྱིན་ཤོག་སྒུལ་སློང་།"
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "-math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "སྟོང་ཆའི་སྤྱི་འགྲོས་ཡིག་ཚགས་སྒུལ་སློང་བྱེད།"
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "-global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "སྟོང་ཆའི་ཁྱོན་ཡོངས་ཀྱི་ཡིག་ཚགས་སྒུལ་སློང་བྱེད།"
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "-web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "སྟོང་བའི་ HTML ཡིག་ཚགས་སྒུལ་སློང་བྱེད།"
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "-show {filename.odp}"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "གསལ་སྟོན་ཡིག་ཟིན་ཡིག་ཆ་ནས་ <emph>{filename.odp}</emph> གསལ་སྟོན་ཡིག་ཟིན་བཪྙན་གཏོང་འགོ་འཛུགས། གསལ་སྟོན་ཡིག་ཟིན་བཪྙན་གཏོང་ཚར་བའི་རྗེས་མ་ཚུལ་རྩོམ་སྒྲིག་ནང་ཚུད་ཡོད།"
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
+"help.text"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
+"help.text"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
"help.text"
-msgid "--minimized"
-msgstr "-minimized"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "ཆུང་ཤོས་ཀྱི་ཐབས་ཚུལ་གྱིས་སྒུལ་སློང་བྱེད། སྒུལ་སློང་གསལ་ཡོལ་མངོན་མི་ཐུབ།"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "-invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "མ་ཚུལ་སྒུལ་སློང་གབ་པ།"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "དེ་ <emph>-quickstart</emph> དང་མཉམ་དུ་བེད་སྤྱོད་མི་བྱེད།"
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "གལ་སྲིད་དེ་བས་མང་བའི་ཆ་འཕྲིན་དགོས་ན་<emph>《$[officename] གསར་སྤེལ་མཁན་གྱི་ཕྱོགས་སྟོན་》</emph>ལ་དཔྱད་གཟིགས་གནང་།"
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
"help.text"
-msgid "--norestore"
-msgstr "-norestore"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
+"help.text"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "$[officename] མ་ལག་ཐོར་རྗེས་བསྐྱར་དུ་སྒུལ་སློང་དང་ཡིག་ཆ་སླར་གསོ་བཀག་སྤྱོད་བྱེད།"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "-quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Windows མ་ལག་ནང་ Quickstarterགསོན་སློང་བྱེད། གསལ་ཡོལ་སྒུལ་སློང་མི་མངོན་པ།"
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "-accept={UNO string}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "$[officename] མཉེན་ཆས་བརྡ་ཐོ་བྱེད་ \"UNO Acceptor Threads\" ཡི་བརྒྱུད་རིམ་ནང་ \"UNO Accept String\"བེད་སྤྱོད་པ་གསར་བཟོ་བྱེད།"
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "གལ་སྲིད་དེ་བས་མང་བའི་ཆ་འཕྲིན་དགོས་ན་<emph>《$[officename] གསར་སྤེལ་མཁན་གྱི་ཕྱོགས་སྟོན་》</emph>ལ་དཔྱད་གཟིགས་གནང་།"
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "-accept={UNO string}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
+msgid "Exit after loading documents."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {filename1} {filename2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "ཁས་ལེན་གཏག་པར་ཆས་སྤྱད་དེ་ཡིག་ཆ་གཏག་པར་བྱེད་ <emph>{filename1} {filename2} ...</emph> དེ་རྗེས་མཇུག་སྒྲིལ་གསལ་ཡོལ་སྒུལ་སློང་མི་མངོན།"
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "གལ་སྲིད་ཡིག་ཆའི་མིང་སྟོང་མིག་ལ་འདུས་ ངེས་པར་དུ་མིང་སྔོན་རྗེས་འདྲེན་རྟགས་གནོན།"
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "-pt {Printername} {filename1} {filename2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "གཏག་པར་ཆས་ <emph>{Printername}</emph> སྤྱད་དེ་ཡིག་ཆ་ <emph>{filename1} {filename2} ...</emph>གཏག་པར་བྱེད་ དེ་རྗེས་མཇུག་སྒྲིལ། གསལ་ཡོལ་སྒུལ་སློང་མི་མངོན།"
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "གལ་སྲིད་ཡིག་ཆའི་མིང་སྟོང་མིག་ལ་འདུས་ ངེས་པར་དུ་མིང་སྔོན་རྗེས་འདྲེན་རྟགས་གནོན།"
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {filename}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "<emph>{filename}</emph> རྩོམ་སྒྲིག་ཁ་ཕྱེས། ཡིག་ཆ་འདི་མ་པང་ཞིག་ཡིན་ བཀོལ་སྤྱོད་འདི་ལག་བསྟར་བྱེད།"
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "-view {filename}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "<emph>{filename}</emph> པའི་གནས་སྐབས་འདྲ་ཕབ་ཆས་གསར་བཟོ་བྱེད་པ་མ་ཟད་ཀློག་པ་ཁོ་ནའི་ཐབས་ཚུལ་གྱིས་ཁ་ཕྱེ།"
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {filename}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "<emph>{filename}</emph> མ་པང་ལ་བརྩིས་ཏེ་ཡིག་ཚགས་གསར་པ་ཞིག་གསར་བཟོ་བྱེད།"
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "-nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "བྱ་རིམ་སྒུལ་སློང་སྐབས་སྒུལ་སློང་གསལ་ཡོལ་སྒུལ་སློང་བྱེད།"
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "-nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "གལ་སྲིད་ཡིག་ཆའི་མིང་སྟོང་མིག་ལ་འདུས་ ངེས་པར་དུ་མིང་སྔོན་རྗེས་འདྲེན་རྟགས་གནོན།"
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3150828\n"
"help.text"
-msgid "--nofirststartwizard"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3145268\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
+msgid "Opens following files in viewer mode (read-only)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id3153838\n"
"help.text"
-msgid "--display {display}"
-msgstr "-display {display}"
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id315053p\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "--headless"
-msgstr "-headless"
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id315053q\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "\"འཆར་འགོད་མེད་པའི་མ་ཚུལ་\"སྒུལ་སློང་བྱེད་མ་ཚུལ་འདི་སྤྱོད་པོའི་འཆར་འགོད་བརྒྱུད་ཉེར་སྤྱོད་བྱ་རིམ་བེད་སྤྱོད་མི་བྱེད་ཆོག"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "--infilter={filter}"
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
+msgid "Ignored switches"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (MacOS X only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
+msgid "Ignored (COM+ related; Windows only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id20161204014529900\n"
+"help.text"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
msgstr ""
#: startcenter.xhp
diff --git a/source/bo/sc/source/ui/src.po b/source/bo/sc/source/ui/src.po
index ad2710c1c75..b51c0ae1dae 100644
--- a/source/bo/sc/source/ui/src.po
+++ b/source/bo/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:08+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467655739.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594512.000000\n"
#: filter.src
#, fuzzy
@@ -9841,8 +9841,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "གཏན་འཁེལ་བའི་ཆ་རྐྱེན་ལ་གཞིགས་པས་གཞི་རྒྱུ་ཆ་ཤས་ཀྱི་བསྡོམས་ཐོབ་འཚོལ་བ།"
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/bo/svx/uiconfig/ui.po b/source/bo/svx/uiconfig/ui.po
index 5e5be75578a..29898c09477 100644
--- a/source/bo/svx/uiconfig/ui.po
+++ b/source/bo/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:29+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467656992.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594689.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3049,7 +3049,7 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
+msgid "Ignore diac_ritics"
msgstr ""
#: findreplacedialog.ui
@@ -3058,7 +3058,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5144,10 +5144,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5162,10 +5162,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/bo/sw/uiconfig/swriter/ui.po b/source/bo/sw/uiconfig/swriter/ui.po
index f4c09dd377c..b0b0387dfb7 100644
--- a/source/bo/sw/uiconfig/swriter/ui.po
+++ b/source/bo/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 18:33+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-12 11:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467657239.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1478950155.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -10042,26 +10042,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/bo/xmlsecurity/uiconfig/ui.po b/source/bo/xmlsecurity/uiconfig/ui.po
index f176c5af767..2568e8a6933 100644
--- a/source/bo/xmlsecurity/uiconfig/ui.po
+++ b/source/bo/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-05-25 12:08+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 12:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1464178134.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594689.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/br/sc/source/ui/src.po b/source/br/sc/source/ui/src.po
index 3be2ee90f16..5f8a9393960 100644
--- a/source/br/sc/source/ui/src.po
+++ b/source/br/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-17 14:28+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1468765703.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480597133.000000\n"
#: filter.src
msgctxt ""
@@ -9669,8 +9669,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Sammañ a ra ar c'helligoù spisaet mar kenglotont gant an dezverkoù."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/br/svx/uiconfig/ui.po b/source/br/svx/uiconfig/ui.po
index c5c4d71f56f..e516145f8e1 100644
--- a/source/br/svx/uiconfig/ui.po
+++ b/source/br/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-17 14:09+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 13:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1468764581.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480599802.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3061,8 +3061,8 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "Leuskel a-gostez an arouezennoù diforc'hañ CTL"
+msgid "Ignore diac_ritics"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5161,10 +5161,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5179,10 +5179,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/br/sw/uiconfig/swriter/ui.po b/source/br/sw/uiconfig/swriter/ui.po
index 5ee9837c89f..a1146113c29 100644
--- a/source/br/sw/uiconfig/swriter/ui.po
+++ b/source/br/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 18:55+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-12 16:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: br\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467658540.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1478968864.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -9822,26 +9822,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/br/xmlsecurity/uiconfig/ui.po b/source/br/xmlsecurity/uiconfig/ui.po
index b35a59abe19..1443d0b8539 100644
--- a/source/br/xmlsecurity/uiconfig/ui.po
+++ b/source/br/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:57+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 13:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467658664.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480600390.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr "Deskrivadur"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/brx/sc/source/ui/src.po b/source/brx/sc/source/ui/src.po
index 198ebd4c344..00dde71c218 100644
--- a/source/brx/sc/source/ui/src.po
+++ b/source/brx/sc/source/ui/src.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:12+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467655961.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480596170.000000\n"
#: filter.src
#, fuzzy
@@ -9734,8 +9734,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "थासारिजों मोगामोगि जानाय गासै बाथ्राबान फोरखौ"
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/brx/svx/uiconfig/ui.po b/source/brx/svx/uiconfig/ui.po
index 5f7e3497b98..1c96249eadb 100644
--- a/source/brx/svx/uiconfig/ui.po
+++ b/source/brx/svx/uiconfig/ui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:32+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467657137.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480596308.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3048,7 +3048,7 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
+msgid "Ignore diac_ritics"
msgstr ""
#: findreplacedialog.ui
@@ -3057,7 +3057,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5143,10 +5143,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5161,10 +5161,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/brx/sw/uiconfig/swriter/ui.po b/source/brx/sw/uiconfig/swriter/ui.po
index fdda6d97660..110c8bfa874 100644
--- a/source/brx/sw/uiconfig/swriter/ui.po
+++ b/source/brx/sw/uiconfig/swriter/ui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 18:36+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-12 13:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: brx\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467657360.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1478955856.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -10040,26 +10040,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/brx/xmlsecurity/uiconfig/ui.po b/source/brx/xmlsecurity/uiconfig/ui.po
index 673281762d6..bab4417ad44 100644
--- a/source/brx/xmlsecurity/uiconfig/ui.po
+++ b/source/brx/xmlsecurity/uiconfig/ui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-05-25 12:16+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: brx\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1464178612.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480596308.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -207,6 +207,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/bs/helpcontent2/source/text/scalc/00.po b/source/bs/helpcontent2/source/text/scalc/00.po
index 73de1af4fff..22437c6c2a2 100644
--- a/source/bs/helpcontent2/source/text/scalc/00.po
+++ b/source/bs/helpcontent2/source/text/scalc/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 13:27+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-22 16:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467725220.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479833752.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -573,8 +573,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">Izaberi <emph>Ubaci - Imena</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -591,8 +591,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "Izaberi <emph>Ubaci - Imena - Define</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -609,8 +609,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">Izaberi <emph>Ubaci - Imena - Ubaci</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -618,8 +618,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">Izaberi <emph>Ubaci - Imena - Napravi</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -627,8 +627,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">Izaberi <emph>Ubaci - Imena - Oznake</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/scalc/01.po b/source/bs/helpcontent2/source/text/scalc/01.po
index 1194b07068b..fbc0128e344 100644
--- a/source/bs/helpcontent2/source/text/scalc/01.po
+++ b/source/bs/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 18:55+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-22 16:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476816958.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482422950.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -20772,7 +20772,7 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
msgstr ""
#: 04060109.xhp
@@ -20797,7 +20797,7 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
msgstr ""
#: 04060109.xhp
@@ -50179,8 +50179,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "Imena"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50188,8 +50188,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Stranice</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50579,7 +50579,7 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
msgstr ""
#: 04070300.xhp
@@ -52470,7 +52470,7 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
msgstr ""
#: 05080300.xhp
diff --git a/source/bs/helpcontent2/source/text/scalc/guide.po b/source/bs/helpcontent2/source/text/scalc/guide.po
index c13f934817a..d049f8a0e53 100644
--- a/source/bs/helpcontent2/source/text/scalc/guide.po
+++ b/source/bs/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-05-07 23:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1462664830.000000\n"
#: address_auto.xhp
@@ -2132,8 +2132,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "Da bi postavili izvorni raspon kao raspon, označite ćelije i izaberite <emph>Ubaci - Imena - Define</emph>. Sačuvajte izvorni dokument i nemojte ga zatvarati."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11854,7 +11854,7 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
msgstr ""
#: value_with_name.xhp
@@ -11907,7 +11907,7 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
msgstr ""
#: webquery.xhp
diff --git a/source/bs/helpcontent2/source/text/shared/00.po b/source/bs/helpcontent2/source/text/shared/00.po
index 59b81762fc4..851d227a962 100644
--- a/source/bs/helpcontent2/source/text/shared/00.po
+++ b/source/bs/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 16:30+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-05-24 02:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467736206.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1464056501.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -12219,15 +12219,6 @@ msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr ""
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/bs/helpcontent2/source/text/shared/01.po b/source/bs/helpcontent2/source/text/shared/01.po
index e8e47aa5f8d..617fbebd0f9 100644
--- a/source/bs/helpcontent2/source/text/shared/01.po
+++ b/source/bs/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 18:56+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-07-05 16:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476817004.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467736649.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -8313,8 +8313,8 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
-msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Unesite broj znakova u polje za pretragu koji će biti zamijenjeni.</ahelp> Na primjer, ako označite 2 znaka, \"black\" and \"crack\" su smatrani sličnima."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
+msgstr ""
#: 02100100.xhp
msgctxt ""
@@ -25782,32 +25782,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr ""
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "Boja"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/01050000.xhp\" name=\"Close\">Zatvori</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr ""
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43427,6 +43401,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr ""
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/bs/helpcontent2/source/text/shared/guide.po b/source/bs/helpcontent2/source/text/shared/guide.po
index cfffb25b818..9faf4358f31 100644
--- a/source/bs/helpcontent2/source/text/shared/guide.po
+++ b/source/bs/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-07-05 16:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467736955.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467736952.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2190,7 +2190,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2270,7 +2270,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9924,7 +9924,7 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
msgstr ""
#: hyperlink_insert.xhp
@@ -12434,19 +12434,19 @@ msgstr ""
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
msgstr ""
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
msgstr ""
#: labels.xhp
@@ -18327,7 +18327,7 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
+msgid "Starting $[officename] Software With Parameters"
msgstr ""
#: start_parameters.xhp
@@ -18335,50 +18335,45 @@ msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
+msgid "Starting $[officename] Software With Parameters"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
+msgid "Starting $[officename] Software From the Command Line"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
msgstr ""
@@ -18387,7 +18382,6 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
msgstr ""
@@ -18396,7 +18390,6 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
msgstr ""
@@ -18405,249 +18398,246 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
+msgid "Valid Command Line Parameters"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
+msgid "Using without special arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
+msgid "Using without any arguments opens the start center."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "Znacenje"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
+msgid "Opens the file and applies specified macros from the file."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
+msgid "Getting help and information"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
+msgid "<variable id=\"meaning\">Meaning</variable>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
+msgid "Lists the available command line parameters to the console."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
+msgid "Opens $[officename] built-in or online Help on Writer."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
+msgid "Opens $[officename] built-in or online Help on Draw."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
+msgid "Opens $[officename] built-in or online Help on Base."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
+msgid "Opens $[officename] built-in or online Help on Math."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
+msgid "Shows $[officename] version and quits."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
+msgid "General arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
+msgid "Disables check for remote instances using the installation."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
"help.text"
-msgid "--minimized"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
+"help.text"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
msgstr ""
@@ -18655,17 +18645,15 @@ msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
+msgid "Starts without displaying anything except the splash screen."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
msgstr ""
@@ -18674,52 +18662,54 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
+"help.text"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
"help.text"
-msgid "--norestore"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
msgstr ""
@@ -18727,357 +18717,330 @@ msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
+msgid "Developer arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
+msgid "Exit after initialization complete (no documents loaded)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
+msgid "Exit after loading documents."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
+msgid "New document creation arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgid "Starts with an empty Writer document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
+msgid "Starts with an empty Calc document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgid "Starts with an empty Draw document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgid "Starts with an empty Impress document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
+msgid "Starts with an empty Math document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
+msgid "Starts with an empty Writer master document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
+msgid "Starts with an empty HTML document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
+msgid "File open arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
+msgid "Treats following files as templates for creation of new documents."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3150828\n"
"help.text"
-msgid "--nofirststartwizard"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3145268\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
+msgid "Opens following files in viewer mode (read-only)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id3153838\n"
"help.text"
-msgid "--display {display}"
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id315053p\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "--headless"
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id315053q\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "--infilter={filter}"
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
+msgid "Ignored switches"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (MacOS X only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
+msgid "Ignored (COM+ related; Windows only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id20161204014529900\n"
+"help.text"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
msgstr ""
#: startcenter.xhp
diff --git a/source/bs/sc/source/ui/src.po b/source/bs/sc/source/ui/src.po
index 5c8184a5c2f..24fddc28e08 100644
--- a/source/bs/sc/source/ui/src.po
+++ b/source/bs/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:13+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 12:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467655992.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480596909.000000\n"
#: filter.src
msgctxt ""
@@ -9682,8 +9682,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Sumira argumente koji odgovaraju uslovima."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/bs/svx/uiconfig/ui.po b/source/bs/svx/uiconfig/ui.po
index f67abe163a7..a7c8beee4eb 100644
--- a/source/bs/svx/uiconfig/ui.po
+++ b/source/bs/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:38+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 13:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467657501.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480597431.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3067,14 +3067,13 @@ msgid "Search for st_yles"
msgstr "Traži S_tilove"
#: findreplacedialog.ui
-#, fuzzy
msgctxt ""
"findreplacedialog.ui\n"
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "Ignorirajte dijakritičke znakove CTL"
+msgid "Ignore diac_ritics"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -3082,7 +3081,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5192,10 +5191,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5210,10 +5209,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/bs/sw/uiconfig/swriter/ui.po b/source/bs/sw/uiconfig/swriter/ui.po
index 8802f213be8..13106641250 100644
--- a/source/bs/sw/uiconfig/swriter/ui.po
+++ b/source/bs/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 18:44+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-13 01:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467657884.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479000848.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -9951,26 +9951,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/bs/xmlsecurity/uiconfig/ui.po b/source/bs/xmlsecurity/uiconfig/ui.po
index d519abf219a..faf902e68bc 100644
--- a/source/bs/xmlsecurity/uiconfig/ui.po
+++ b/source/bs/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:46+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 13:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467657986.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480597431.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -211,6 +211,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc/00.po b/source/ca-valencia/helpcontent2/source/text/scalc/00.po
index c0d3dafde3f..aefc8553100 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc/00.po
+++ b/source/ca-valencia/helpcontent2/source/text/scalc/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 16:49+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-22 16:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca-XV\n"
-"X-POOTLE-MTIME: 1467737388.000000\n"
+"X-POOTLE-MTIME: 1479833803.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -575,8 +575,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">Trieu <emph>Insereix - Noms</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -593,8 +593,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "Trieu <emph>Insereix - Noms - Defineix</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -611,8 +611,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">Trieu <emph>Insereix - Noms - Insereix</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -620,8 +620,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">Trieu <emph>Insereix - Noms - Crea</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -629,8 +629,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">Trieu <emph>Insereix - Noms - Etiquetes</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc/01.po b/source/ca-valencia/helpcontent2/source/text/scalc/01.po
index 6431aa08b82..2f158496032 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc/01.po
+++ b/source/ca-valencia/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-05-24 05:21+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-22 16:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca-XV\n"
-"X-POOTLE-MTIME: 1464067309.000000\n"
+"X-POOTLE-MTIME: 1482422594.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5720,20 +5720,22 @@ msgid "Functions"
msgstr "Funcions"
#: 04060102.xhp
+#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr ""
+msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
#: 04060102.xhp
+#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr ""
+msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
#: 04060103.xhp
msgctxt ""
@@ -20795,8 +20797,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=INDEX(SumaX;4;1)</item> retorna el valor de l'interval <emph>SumaX</emph> de la fila 4 i la columna 1 tal com s'ha definit a <emph>Insereix - Noms - Defineix</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20820,8 +20822,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=ÍNDEX((multi);4;1)</item> indica el valor contingut a la fila 4 i a la columna 1 de l'interval (múltiple), que heu anomenat amb <emph>Insereix - Noms - Defineix</emph> com <emph>múltiple</emph>. L'interval múltiple pot consistir en diversos intervals rectangulars, cada un amb una fila 4 i columna 1. Si voleu cridar el segon bloc d'este interval múltiple introduïu el número <item type=\"input\">2</item> com el paràmetre <emph>interval</emph>."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -50391,8 +50393,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "Noms"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50400,8 +50402,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Noms\">Noms</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50791,8 +50793,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Seleccioneu l'àrea que conté els intervals que voleu designar. Tot seguit trieu <emph>Insereix - Noms - Crea</emph>. Esta acció obrirà el diàleg <emph>Crea els noms</emph>, on podreu seleccionar les opcions que vulgueu aplicar per a la creació de noms."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52688,8 +52690,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Seleccioneu <emph>-cap-</emph> per suprimir la definició d'una àrea d'impressió al full actual. Seleccioneu <emph>-tot el full-</emph> per establir el full actual com a àrea d'impressió. Seleccioneu <emph>-selecció-</emph> per definir l'àrea seleccionada del full com a àrea d'impressió. Si seleccioneu <emph>-definit per l'usuari-</emph>, podreu definir una àrea d'impressió que ja hàgeu definit mitjançant l'orde <emph>Format - Àrees d'impressió - Defineix</emph>. Si heu assignat un nom a una àrea mitjançant l'orde <emph>Insereix - Noms - Defineix</emph>, este nom es mostrarà i es podrà seleccionar al quadre de llista."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc/guide.po b/source/ca-valencia/helpcontent2/source/text/scalc/guide.po
index 2ef523e5a6c..3e2be4025df 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/scalc/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 20:12+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-07-05 20:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca-XV\n"
-"X-POOTLE-MTIME: 1467749524.000000\n"
+"X-POOTLE-MTIME: 1467749490.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -2145,8 +2145,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "Per definir l'interval d'origen com a interval, seleccioneu les cel·les i trieu <emph>Insereix - Noms - Defineix</emph>. Guardeu el document d'origen i no el tanqueu."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11882,8 +11882,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "Seleccioneu una cel·la o un interval de cel·les, després trieu <emph>Insereix - Noms - Defineix</emph>. Apareixerà el diàleg <emph>Defineix els noms</emph>."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11935,8 +11935,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insereix - Noms - Defineix\">Insereix - Noms - Defineix</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/00.po b/source/ca-valencia/helpcontent2/source/text/shared/00.po
index e1cf40f7015..01e34d931de 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/00.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 20:13+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-12-23 14:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca-XV\n"
-"X-POOTLE-MTIME: 1467749609.000000\n"
+"X-POOTLE-MTIME: 1482503825.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -12291,15 +12291,6 @@ msgstr "Trieu la pestanya <emph>Format - Pàgina - Fons</emph> (al $[officename]
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Àrea - Colors</emph>"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/01.po b/source/ca-valencia/helpcontent2/source/text/shared/01.po
index 5e9c857b851..e340b5c6c89 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/01.po
+++ b/source/ca-valencia/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 19:07+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-07-05 20:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca-XV\n"
-"X-POOTLE-MTIME: 1476817660.000000\n"
+"X-POOTLE-MTIME: 1467750590.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -8313,8 +8313,8 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
-msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Introduïu el nombre de caràcters que es poden substituir al terme de cerca.</ahelp> Per exemple, si indiqueu dos caràcters substituïbles, \"cella\" i \"malla\" es consideren termes semblants."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
+msgstr ""
#: 02100100.xhp
msgctxt ""
@@ -25794,32 +25794,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Feu clic a l'emplenament que voleu aplicar a l'objecte seleccionat.</ahelp>"
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "Colors"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr "Seleccioneu el color que voleu aplicar, guardeu la llista de colors actual o carregueu una altra llista de colors."
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43459,6 +43433,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Torneu a introduir la contrasenya mestra.</ahelp>"
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/guide.po b/source/ca-valencia/helpcontent2/source/text/shared/guide.po
index bc157bc4f6a..8c52dec05b6 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 20:46+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-07-05 20:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca-XV\n"
-"X-POOTLE-MTIME: 1467751563.000000\n"
+"X-POOTLE-MTIME: 1467751428.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2199,7 +2199,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2279,7 +2279,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9949,8 +9949,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "Per navegar a una cel·la d'un full de càlcul, primer introduïu un nom per a la cel·la (<emph>Insereix - Noms - Defineix</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12471,20 +12471,20 @@ msgstr "A la pestanya <emph>Opcions</emph>, assegureu-vos que la casella <emph>S
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "Quan feu clic a <emph>Document nou</emph> apareix una finestreta amb el botó <emph>Sincronitza les etiquetes</emph>. Introduïu la primera etiqueta. Quan feu clic al botó <emph>Sincronitza les etiquetes</emph>, es copia l'etiqueta a la resta d'etiquetes del full."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "Feu clic a <emph>Document nou</emph> per crear un document nou amb la configuració que heu definit."
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "Feu clic a <emph>Document nou</emph> per crear un document nou amb la configuració que heu definit."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "Quan feu clic a <emph>Document nou</emph> apareix una finestreta amb el botó <emph>Sincronitza les etiquetes</emph>. Introduïu la primera etiqueta. Quan feu clic al botó <emph>Sincronitza les etiquetes</emph>, es copia l'etiqueta a la resta d'etiquetes del full."
#: labels.xhp
msgctxt ""
@@ -18396,758 +18396,721 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Inici del programari del $[officename] amb paràmetres"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>paràmetres d'inici</bookmark_value><bookmark_value>paràmetres de la línia d'ordes</bookmark_value><bookmark_value>paràmetres;línia d'ordes</bookmark_value><bookmark_value>arguments a la línia d'ordes</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Inici del programari del $[officename] amb paràmetres"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "Si inicieu el $[officename] des de la línia d'ordes, podeu assignar diversos paràmetres mitjançant els quals podeu alterar el rendiment. L'ús de paràmetres de la línia d'ordes només es recomana als usuaris experimentats."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "En un ús normal, no cal utilitzar paràmetres de línia d'ordes. Per utilitzar alguns d'estos paràmetres cal tindre un ampli coneixement de la tecnologia del programari del $[officename]."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "Inici del $[officename] des de la línia d'ordes"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
-msgstr "A Windows, seleccioneu <emph>Executa</emph> des del menú Inicia del Windows, o obriu un terminal a les plaformes Linux, *BSD o Mac OS X."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "Al Windows, introduïu el text següent al camp de text <emph>Obri</emph> i feu clic a <emph>D'acord</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
-msgstr "Als sistemes tipus Unix, escriviu el text següent, després premeu <emph>Retorn</emph>:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{instal·lació}\\program\\soffice.exe {paràmetre} </caseinline><caseinline select=\"UNIX\">{instal·lació}/program/soffice {paràmetre} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "Reemplaceu <emph>{instal·lació}</emph> pel camí d'instal·lació del programari del $[officename] (per exemple, <emph>C:\\Program Files\\Office</emph> o bé <emph>~/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "On calga, reemplaceu <emph>{paràmetre}</emph> per un dels paràmetres de línia d'ordes següents o més d'un."
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "Paràmetres de línia d'ordes vàlids"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "Paràmetre"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "Significat"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "--help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "Enumera els paràmetres de línia d'ordes disponibles <switchinline select=\"sys\"><caseinline select=\"WIN\">a un quadre de diàleg</caseinline><defaultinline> a la consola</defaultinline></switchinline>."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
-msgstr "--version"
+msgid "Opens the file and applies specified macros from the file."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
-msgstr "Mostra la informació de la versió."
+msgid "Getting help and information"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "--writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "Inicia l'aplicació amb un document del Writer buit."
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "--calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "Inicia l'aplicació amb un document del Calc buit."
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "--draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "Inicia l'aplicació amb un document del Draw buit."
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "--impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "Inicia l'aplicació amb un document de l'Impress buit."
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "--math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "Inicia l'aplicació amb un document del Math buit."
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "--global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "Inicia l'aplicació amb un document mestre del Writer buit."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "--web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "Inicia l'aplicació amb un document HTML buit."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "--show {nomdefitxer.odp}"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "Comença amb el fitxer Impress <emph>{nomdefitxer.odp}</emph> i inicia la presentació. Entra al mode d'edició després de la presentació."
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
+"help.text"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
"help.text"
-msgid "--minimized"
-msgstr "--minimized"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "Inicia l'aplicació minimitzada. La pantalla de presentació no es mostra."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "--invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "Inicia l'aplicació en mode invisible."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "El logo d'inici i la finestra inicial del programa no seran visibles. Podeu controlar el programari del $[officename] i obrir documents i diàlegs mitjançant l'<link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
-msgstr "Una vegada el programari del $[officename] s'ha iniciat amb este paràmetre, només es pot tancar usant l'administrador de tasques (Windows) o l'orde <emph>kill</emph> (sistemes UNIX i similars)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "No es pot utilitzar juntament amb <emph>-quickstart</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "En trobareu més informació a la <emph>Guia del desenvolupador del $[officename]</emph> (en anglés)."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
+"help.text"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
"help.text"
-msgid "--norestore"
-msgstr "--norestore"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "Inhabilita el reinici i la restauració de fitxers després d'una fallada del sistema."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "Desactiva l'auxiliar de benvinguda."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "--quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Activa l'inici ràpid."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "--accept={cadena UNO}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "Notifica al programari del $[officename] que s'ha d'utilitzar una cadena \"UNO Accept String\" quan es cree una cadena \"UNO Acceptor Threads\"."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "En trobareu més informació a la <emph>Guia del desenvolupador del $[officename]</emph> (en anglés)."
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "--unaccept={cadena UNO}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
-msgstr "Tanca un acceptador que es va crear amb --accept={cadena UNO}. Utilitzeu --unaccept=all per tancar tots els acceptadors oberts."
+msgid "Exit after loading documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {nomdefitxer1} {nomdefitxer2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "Imprimeix els fitxers <emph>{nomdefitxer1} {nomdefitxer2}, etc.</emph> a la impressora per defecte i finalitza. La pantalla de presentació no apareix."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Si el nom de fitxer conté espais, l'haureu de posar entre cometes."
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "--pt {nomd'impressora} {nomdefitxer1} {nomdefitxer2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "Imprimeix els fitxers <emph>{nomdefitxer1} {nomdefitxer2}, etc.</emph> a la impressora <emph>{nomd'impressora}</emph> i acaba. La pantalla de presentació no apareix."
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Si el nom de fitxer conté espais, l'haureu de posar entre cometes."
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {nomdefitxer}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "Obri <emph>{nomdefitxer}</emph> per editar-lo, fins i tot si és una plantilla."
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "--view {nomdefitxer}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "Crea una còpia temporal de <emph>{nomdefitxer}</emph> i l'obri en mode només de lectura."
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {nomdefitxer}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "Crea un document nou i utilitza <emph>{nomdefitxer}</emph> com a plantilla."
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "--nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "Inhabilita la pantalla de presentació quan s'inicia el programa."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "--nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "Si el nom de fitxer conté espais, l'haureu de posar entre cometes."
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "Inicia l'aplicació i només mostra la pantalla de presentació."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
-msgstr "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
-msgstr "Desactiva la comprovació per a instàncies remotes que utilitzant la instal·lació"
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150828\n"
+"help.text"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3145268\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3153838\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "Afegiu este paràmetre a l'orde d'inici del programa per suprimir l'auxiliar de benvinguda."
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id315053p\n"
"help.text"
-msgid "--display {display}"
-msgstr "--display {visualització}"
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
-msgstr "Defineix la veriable d'entorn <emph>DISPLAY</emph> a les plataformes UNIX, i similars, al valor <emph>{display}</emph>. Este paràmetre només és suportat per a l'escript d'inici del programari $[officename] a les plataformes UNIX i similars."
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id315053q\n"
"help.text"
-msgid "--headless"
-msgstr "--headless"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "Inici en mode \"headless\", que permet utilitzar l'aplicació sense interfície d'usuari."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Este mode especial es pot utilitzar quan l'aplicació es controla per clients externs mitjançant l'<link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "--infilter={filter}"
-msgstr "--infilter={filtre}"
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
-msgstr "Força un tipus de filtre d'entrada, si és possible. Per exemple, --infilter=\"Calc Office Open XML\"."
+msgid "Ignored switches"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
-msgstr "--convert-to extensió_del_fitxer_de_sortida[:nom_de_filtre_de_sortida] [--outdir directori_de_sortida] fitxers"
+msgid "Ignored (MacOS X only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
-msgstr "Fitxers convertits per lots. Si --outdir no s'especifica, aleshores s'utilitiza el directori actiu actual com a output_dir.<br/>Per exemple, --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user*.doc"
+msgid "Ignored (COM+ related; Windows only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014529900\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
-msgstr "--print-to-file [--printer-name nom_d_impressora] [--outdir output_dir] fitxers"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
-msgstr "Impressió de fixtxers en lot a un fitxer. Si --outdir no s'especifica, aleshores s'utilitza el directori actiu com a output_dir.<br/>Per exemple, --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
+msgstr ""
#: startcenter.xhp
msgctxt ""
diff --git a/source/ca-valencia/sc/source/ui/src.po b/source/ca-valencia/sc/source/ui/src.po
index 8fbc3c86b22..0cf49a429b2 100644
--- a/source/ca-valencia/sc/source/ui/src.po
+++ b/source/ca-valencia/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:18+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 13:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467656282.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480599576.000000\n"
#: filter.src
msgctxt ""
@@ -9675,8 +9675,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Suma els arguments que compleixen les condicions."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/ca-valencia/svx/uiconfig/ui.po b/source/ca-valencia/svx/uiconfig/ui.po
index 824646be5f0..9cbbfb16c5c 100644
--- a/source/ca-valencia/svx/uiconfig/ui.po
+++ b/source/ca-valencia/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:46+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 14:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467657967.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480602155.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3050,14 +3050,13 @@ msgid "Search for st_yles"
msgstr "Cerca es_tils"
#: findreplacedialog.ui
-#, fuzzy
msgctxt ""
"findreplacedialog.ui\n"
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "Ignora els diacrítics CTL"
+msgid "Ignore diac_ritics"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -3065,7 +3064,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5160,10 +5159,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5178,10 +5177,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/ca-valencia/sw/uiconfig/swriter/ui.po b/source/ca-valencia/sw/uiconfig/swriter/ui.po
index cbc1144f0e1..240aefe111c 100644
--- a/source/ca-valencia/sw/uiconfig/swriter/ui.po
+++ b/source/ca-valencia/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 18:53+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-13 09:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ca-valencia\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467658390.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479027853.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -9860,26 +9860,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/ca-valencia/xmlsecurity/uiconfig/ui.po b/source/ca-valencia/xmlsecurity/uiconfig/ui.po
index 4826fb22471..56508e68d23 100644
--- a/source/ca-valencia/xmlsecurity/uiconfig/ui.po
+++ b/source/ca-valencia/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 18:55+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 14:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467658503.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480602527.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr "Descripció"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/ca/cui/source/tabpages.po b/source/ca/cui/source/tabpages.po
index 09d6a57d22c..5309a9b42b0 100644
--- a/source/ca/cui/source/tabpages.po
+++ b/source/ca/cui/source/tabpages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 17:10+0000\n"
+"PO-Revision-Date: 2016-12-23 07:43+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467652209.000000\n"
+"X-POOTLE-MTIME: 1482479018.000000\n"
#: border.src
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"RID_SVXSTR_FRAMEDIR_LTR\n"
"string.text"
msgid "Left-to-right (LTR)"
-msgstr ""
+msgstr "D'esquerra a dreta (LTR)"
#: frmdirlbox.src
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"RID_SVXSTR_FRAMEDIR_RTL\n"
"string.text"
msgid "Right-to-left (RTL)"
-msgstr ""
+msgstr "De dreta a esquerra (RTL)"
#: frmdirlbox.src
msgctxt ""
diff --git a/source/ca/cui/uiconfig/ui.po b/source/ca/cui/uiconfig/ui.po
index 35f47f8ef6e..6877e85b746 100644
--- a/source/ca/cui/uiconfig/ui.po
+++ b/source/ca/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-11-21 18:13+0000\n"
+"PO-Revision-Date: 2016-12-23 07:52+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: none\n"
"Language: ca\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479752003.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482479535.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -1373,7 +1373,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Top Left"
-msgstr ""
+msgstr "Dalt a l'esquerra"
#: bitmaptabpage.ui
msgctxt ""
@@ -1463,7 +1463,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X:"
-msgstr ""
+msgstr "X:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1472,7 +1472,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y:"
-msgstr ""
+msgstr "Y:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1481,7 +1481,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tiling Offset:"
-msgstr ""
+msgstr "Desplaçament del mosaic:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1490,7 +1490,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Row"
-msgstr ""
+msgstr "Fila"
#: bitmaptabpage.ui
msgctxt ""
@@ -1499,7 +1499,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Column"
-msgstr ""
+msgstr "Columna"
#: bitmaptabpage.ui
msgctxt ""
@@ -1508,7 +1508,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Options"
-msgstr ""
+msgstr "Opcions"
#: bitmaptabpage.ui
msgctxt ""
@@ -1517,7 +1517,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Example"
-msgstr ""
+msgstr "Exemple"
#: bitmaptabpage.ui
msgctxt ""
@@ -3173,7 +3173,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "RGB"
-msgstr ""
+msgstr "RGB"
#: colorpage.ui
msgctxt ""
@@ -3182,7 +3182,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "CMYK"
-msgstr ""
+msgstr "CMYK"
#: colorpage.ui
msgctxt ""
@@ -3191,7 +3191,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Suprimeix"
#: colorpage.ui
msgctxt ""
@@ -3200,7 +3200,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom Palette"
-msgstr ""
+msgstr "Paleta personalitzada"
#: colorpage.ui
msgctxt ""
@@ -3209,7 +3209,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colors"
-msgstr ""
+msgstr "Colors"
#: colorpage.ui
msgctxt ""
@@ -3227,7 +3227,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "B"
-msgstr ""
+msgstr "B"
#: colorpage.ui
msgctxt ""
@@ -3254,7 +3254,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hex"
-msgstr ""
+msgstr "Hexadecimal"
#: colorpage.ui
msgctxt ""
@@ -3263,7 +3263,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_C"
-msgstr ""
+msgstr "_C"
#: colorpage.ui
msgctxt ""
@@ -3272,7 +3272,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_K"
-msgstr ""
+msgstr "_K"
#: colorpage.ui
msgctxt ""
@@ -3281,7 +3281,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y"
-msgstr ""
+msgstr "_Y"
#: colorpage.ui
msgctxt ""
@@ -3290,7 +3290,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_M"
-msgstr ""
+msgstr "_M"
#: colorpage.ui
msgctxt ""
@@ -3299,7 +3299,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Active"
-msgstr ""
+msgstr "Actiu"
#: colorpage.ui
msgctxt ""
@@ -3317,7 +3317,7 @@ msgctxt ""
"primary_icon_tooltip_text\n"
"string.text"
msgid "Blue"
-msgstr ""
+msgstr "Blau"
#: colorpage.ui
msgctxt ""
@@ -3326,7 +3326,7 @@ msgctxt ""
"primary_icon_tooltip_text\n"
"string.text"
msgid "Red"
-msgstr ""
+msgstr "Vermell"
#: colorpage.ui
msgctxt ""
@@ -3362,7 +3362,7 @@ msgctxt ""
"primary_icon_tooltip_text\n"
"string.text"
msgid "Green"
-msgstr ""
+msgstr "Verd"
#: colorpage.ui
msgctxt ""
@@ -3371,7 +3371,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Hex"
-msgstr ""
+msgstr "_Hex"
#: colorpage.ui
msgctxt ""
diff --git a/source/ca/extensions/source/propctrlr.po b/source/ca/extensions/source/propctrlr.po
index adf6e8db5b7..16f56f56ae6 100644
--- a/source/ca/extensions/source/propctrlr.po
+++ b/source/ca/extensions/source/propctrlr.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-01 09:41+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"PO-Revision-Date: 2016-12-13 18:11+0000\n"
+"Last-Translator: AssumptaAn <assumptaanglada@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480585294.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481652694.000000\n"
#: formlinkdialog.src
msgctxt ""
@@ -964,7 +964,7 @@ msgctxt ""
"Sql [Native]\n"
"itemlist.text"
msgid "Sql [Native]"
-msgstr "SQL (natiu)"
+msgstr "SQL [Natiu]"
#: formres.src
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared.po b/source/ca/helpcontent2/source/text/sbasic/shared.po
index 0c2da81ea8a..2d11c5f4e72 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ca/helpcontent2/source/text/sbasic/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-15 13:34+0000\n"
+"PO-Revision-Date: 2016-12-14 10:03+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1479216852.000000\n"
+"X-POOTLE-MTIME: 1481709819.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -175,7 +175,7 @@ msgctxt ""
"110\n"
"help.text"
msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.odt</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.odt</emph> in URL notation."
-msgstr ""
+msgstr "La notació d'URL no admet l'ús de determinats caràcters especials. Aquest caràcters es reemplacen per altres caràcters o es codifiquen. S'utilitza una barra inclinada (<emph>/</emph>) com a separador de camins. Per exemple, un fitxer al qual es fa referència com a <emph>C:\\El meu fitxer.odt</emph> a l'amfitrió local en «notació del Windows» es converteix en <emph>file:///C|/El%20meu%20fitxer.odt</emph> en notació d'URL."
#: 00000003.xhp
msgctxt ""
@@ -10789,7 +10789,7 @@ msgctxt ""
"par_id3154012\n"
"help.text"
msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.ods\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments."
-msgstr ""
+msgstr "Per generar una llista de tots els fitxers existents en un directori específic, procediu tal com s'indica a continuació: la primera vegada que crideu la funció Dir, especifiqueu el camí de cerca complet per als fitxers, per exemple, «D:\\Fitxers\\*.ods». Si el camí és correcte i la cerca troba com a mínim un fitxer, la funció Dir torna el nom del primer fitxer que coincideix amb el camí de cerca. Per tornar noms de fitxers addicionals que coincideixin amb el camí, torneu a cridar Dir, però sense arguments."
#: 03020404.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/scalc/00.po b/source/ca/helpcontent2/source/text/scalc/00.po
index 2c48958752c..03451f598fc 100644
--- a/source/ca/helpcontent2/source/text/scalc/00.po
+++ b/source/ca/helpcontent2/source/text/scalc/00.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-11-16 13:31+0000\n"
-"Last-Translator: Júlia Liébana Ramos <julira95@gmail.com>\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-22 16:59+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1479303117.000000\n"
+"X-POOTLE-MTIME: 1479833957.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -554,8 +554,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">Trieu <emph>Insereix - Noms</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -572,8 +572,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "Trieu <emph>Insereix - Noms - Defineix</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -590,8 +590,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">Trieu <emph>Insereix - Noms - Insereix</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -599,8 +599,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">Trieu <emph>Insereix - Noms - Crea</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -608,8 +608,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">Trieu <emph>Insereix - Noms - Etiquetes</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/scalc/01.po b/source/ca/helpcontent2/source/text/scalc/01.po
index 4eb4b395eeb..2a660f88cb0 100644
--- a/source/ca/helpcontent2/source/text/scalc/01.po
+++ b/source/ca/helpcontent2/source/text/scalc/01.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-11-17 11:50+0000\n"
-"Last-Translator: EstefaniaGarcia <estefaniia1992@gmail.com>\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-22 22:27+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1479383410.000000\n"
+"X-POOTLE-MTIME: 1482445650.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5686,20 +5686,22 @@ msgid "Functions"
msgstr "Funcions"
#: 04060102.xhp
+#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr ""
+msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
#: 04060102.xhp
+#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr ""
+msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
#: 04060103.xhp
msgctxt ""
@@ -20742,8 +20744,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=INDEX(SumaX;4;1)</item> retorna el valor de l'interval <emph>SumaX</emph> de la fila 4 i la columna 1 tal com s'ha definit a <emph>Insereix - Noms - Defineix</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20767,8 +20769,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=ÍNDEX((multi);4;1)</item> indica el valor contingut a la fila 4 i a la columna 1 de l'interval (múltiple), que heu anomenat amb <emph>Insereix - Noms - Defineix</emph> com <emph>múltiple</emph>. L'interval múltiple pot consistir en diversos intervals rectangulars, cada un amb una fila 4 i columna 1. Si voleu cridar el segon bloc d'aquest interval múltiple introduïu el número <item type=\"input\">2</item> com el paràmetre <emph>interval</emph>."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -49981,8 +49983,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "Noms"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -49990,8 +49992,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Noms\">Noms</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50381,8 +50383,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Seleccioneu l'àrea que conté els intervals que voleu designar. Tot seguit trieu <emph>Insereix - Noms - Crea</emph>. Aquesta acció obrirà el diàleg <emph>Crea els noms</emph>, on podreu seleccionar les opcions que vulgueu aplicar per a la creació de noms."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52269,8 +52271,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Seleccioneu <emph>-cap-</emph> per suprimir la definició d'una àrea d'impressió al full actual. Seleccioneu <emph>-tot el full-</emph> per establir el full actual com a àrea d'impressió. Seleccioneu <emph>-selecció-</emph> per definir l'àrea seleccionada del full com a àrea d'impressió. Si seleccioneu <emph>-definit per l'usuari-</emph>, podreu definir una àrea d'impressió que ja hàgiu definit mitjançant l'ordre <emph>Format ▸ Àrees d'impressió ▸ Defineix</emph>. Si heu assignat un nom a una àrea mitjançant l'ordre <emph>Insereix ▸ Noms ▸ Defineix</emph>, aquest nom es mostrarà i es podrà seleccionar al quadre de llista."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/scalc/guide.po b/source/ca/helpcontent2/source/text/scalc/guide.po
index 181db988d01..4f2795f8a6e 100644
--- a/source/ca/helpcontent2/source/text/scalc/guide.po
+++ b/source/ca/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-11-17 12:14+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1479384863.000000\n"
@@ -2137,8 +2137,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "Per definir l'interval d'origen com a interval, seleccioneu les cel·les i trieu <emph>Insereix - Noms - Defineix</emph>. Deseu el document d'origen i no el tanqueu."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11855,8 +11855,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "Seleccioneu una cel·la o un interval de cel·les, després trieu <emph>Insereix - Noms - Defineix</emph>. Apareixerà el diàleg <emph>Defineix els noms</emph>."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11908,8 +11908,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insereix - Noms - Defineix\">Insereix - Noms - Defineix</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/00.po b/source/ca/helpcontent2/source/text/shared/00.po
index cb3fa099e22..f6efe41267c 100644
--- a/source/ca/helpcontent2/source/text/shared/00.po
+++ b/source/ca/helpcontent2/source/text/shared/00.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-11-18 14:05+0000\n"
-"Last-Translator: Júlia Liébana Ramos <julira95@gmail.com>\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1479477912.000000\n"
@@ -12156,15 +12156,6 @@ msgstr "Trieu la pestanya <emph>Format - Pàgina - Fons</emph> (al $[officename]
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Àrea - Colors</emph>"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/ca/helpcontent2/source/text/shared/01.po b/source/ca/helpcontent2/source/text/shared/01.po
index b563c9dbb62..ed2f047ea16 100644
--- a/source/ca/helpcontent2/source/text/shared/01.po
+++ b/source/ca/helpcontent2/source/text/shared/01.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-11-16 13:20+0000\n"
-"Last-Translator: Júlia Liébana Ramos <julira95@gmail.com>\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1479302410.000000\n"
@@ -8299,8 +8299,8 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
-msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Introduïu el nombre de caràcters que es poden substituir al terme de cerca.</ahelp> Per exemple, si indiqueu dos caràcters substituïbles, \"cella\" i \"malla\" es consideren termes semblants."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
+msgstr ""
#: 02100100.xhp
msgctxt ""
@@ -25653,32 +25653,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Feu clic a l'emplenament que voleu aplicar a l'objecte seleccionat.</ahelp>"
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "Colors"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr "Seleccioneu el color que voleu aplicar, deseu la llista de colors actual o carregueu una altra llista de colors."
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43288,6 +43262,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Torneu a introduir la contrasenya mestra.</ahelp>"
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/ca/helpcontent2/source/text/shared/guide.po b/source/ca/helpcontent2/source/text/shared/guide.po
index 72b1c82c86d..17439da467e 100644
--- a/source/ca/helpcontent2/source/text/shared/guide.po
+++ b/source/ca/helpcontent2/source/text/shared/guide.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-11-16 13:20+0000\n"
-"Last-Translator: Júlia Liébana Ramos <julira95@gmail.com>\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1479302427.000000\n"
@@ -2196,7 +2196,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2276,7 +2276,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9937,8 +9937,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "Per navegar a una cel·la d'un full de càlcul, primer introduïu un nom per a la cel·la (<emph>Insereix - Noms - Defineix</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12450,20 +12450,20 @@ msgstr "A la pestanya <emph>Opcions</emph>, assegureu-vos que la casella <emph>S
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "Quan feu clic a <emph>Document nou</emph> apareix una finestreta amb el botó <emph>Sincronitza les etiquetes</emph>. Introduïu la primera etiqueta. Quan feu clic al botó <emph>Sincronitza les etiquetes</emph>, es copia l'etiqueta a la resta d'etiquetes del full."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "Feu clic a <emph>Document nou</emph> per crear un document nou amb la configuració que heu definit."
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "Feu clic a <emph>Document nou</emph> per crear un document nou amb la configuració que heu definit."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "Quan feu clic a <emph>Document nou</emph> apareix una finestreta amb el botó <emph>Sincronitza les etiquetes</emph>. Introduïu la primera etiqueta. Quan feu clic al botó <emph>Sincronitza les etiquetes</emph>, es copia l'etiqueta a la resta d'etiquetes del full."
#: labels.xhp
msgctxt ""
@@ -18349,758 +18349,721 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Inici del programari del $[officename] amb paràmetres"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>paràmetres d'inici</bookmark_value><bookmark_value>paràmetres de la línia d'ordres</bookmark_value><bookmark_value>paràmetres;línia d'ordres</bookmark_value><bookmark_value>arguments a la línia d'ordres</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Inici del programari del $[officename] amb paràmetres"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "Si inicieu el $[officename] des de la línia d'ordres, podeu assignar diversos paràmetres mitjançant els quals podeu alterar el rendiment. L'ús de paràmetres de la línia d'ordres només es recomana als usuaris experimentats."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "En un ús normal, no cal utilitzar paràmetres de línia d'ordres. Per utilitzar alguns d'aquests paràmetres cal tenir un ampli coneixement de la tecnologia del programari del $[officename]."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "Inici del $[officename] des de la línia d'ordres"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
-msgstr "A Windows, seleccioneu <emph>Executa</emph> des del menú Inicia del Windows, o obriu un terminal a les plaformes Linux, *BSD o Mac OS X."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "Al Windows, introduïu el text següent al camp de text <emph>Obre</emph> i feu clic a <emph>D'acord</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
-msgstr "Als sistemes tipus Unix, escriviu el text següent, després premeu <emph>Retorn</emph>:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{instal·lació}\\program\\soffice.exe {paràmetre} </caseinline><caseinline select=\"UNIX\">{instal·lació}/program/soffice {paràmetre} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "Reemplaceu <emph>{instal·lació}</emph> pel camí d'instal·lació del programari del $[officename] (per exemple, <emph>C:\\Program Files\\Office</emph> o bé <emph>~/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "On calgui, reemplaceu <emph>{paràmetre}</emph> per un dels paràmetres de línia d'ordres següents o més d'un."
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "Paràmetres de línia d'ordres vàlids"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "Paràmetre"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "Significat"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "--help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "Enumera els paràmetres de línia d'ordres disponibles <switchinline select=\"sys\"><caseinline select=\"WIN\">a un quadre de diàleg</caseinline><defaultinline> a la consola</defaultinline></switchinline>."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
-msgstr "--version"
+msgid "Opens the file and applies specified macros from the file."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
-msgstr "Mostra la informació de la versió."
+msgid "Getting help and information"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "--writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "Inicia l'aplicació amb un document del Writer buit."
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "--calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "Inicia l'aplicació amb un document del Calc buit."
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "--draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "Inicia l'aplicació amb un document del Draw buit."
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "--impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "Inicia l'aplicació amb un document de l'Impress buit."
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "--math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "Inicia l'aplicació amb un document del Math buit."
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "--global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "Inicia l'aplicació amb un document mestre del Writer buit."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "--web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "Inicia l'aplicació amb un document HTML buit."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "--show {nomdefitxer.odp}"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "Comença amb el fitxer Impress <emph>{nomdefitxer.odp}</emph> i inicia la presentació. Entra al mode d'edició després de la presentació."
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
+"help.text"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
"help.text"
-msgid "--minimized"
-msgstr "--minimized"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "Inicia l'aplicació minimitzada. La pantalla de presentació no es mostra."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "--invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "Inicia l'aplicació en mode invisible."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "El logo d'inici i la finestra inicial del programa no seran visibles. Podeu controlar el programari del $[officename] i obrir documents i diàlegs mitjançant l'<link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
-msgstr "Una vegada el programari del $[officename] s'ha iniciat amb aquest paràmetre, només es pot tancar usant l'administrador de tasques (Windows) o l'ordre <emph>kill</emph> (sistemes UNIX i similars)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "No es pot utilitzar juntament amb <emph>-quickstart</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "En trobareu més informació a la <emph>Guia del desenvolupador del $[officename]</emph> (en anglès)."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
+"help.text"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
"help.text"
-msgid "--norestore"
-msgstr "--norestore"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "Inhabilita el reinici i la restauració de fitxers després d'una fallada del sistema."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "Desactiva l'auxiliar de benvinguda."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "--quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Activa l'inici ràpid."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "--accept={cadena UNO}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "Notifica al programari del $[officename] que s'ha d'utilitzar una cadena \"UNO Accept String\" quan es creï una cadena \"UNO Acceptor Threads\"."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "En trobareu més informació a la <emph>Guia del desenvolupador del $[officename]</emph> (en anglès)."
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "--unaccept={cadena UNO}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
-msgstr "Tanca un acceptador que es va crear amb --accept={cadena UNO}. Utilitzeu --unaccept=all per tancar tots els acceptadors oberts."
+msgid "Exit after loading documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {nomdefitxer1} {nomdefitxer2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "Imprimeix els fitxers <emph>{nomdefitxer1} {nomdefitxer2}, etc.</emph> a la impressora per defecte i finalitza. La pantalla de presentació no apareix."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Si el nom de fitxer conté espais, l'haureu de posar entre cometes."
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "--pt {nomd'impressora} {nomdefitxer1} {nomdefitxer2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "Imprimeix els fitxers <emph>{nomdefitxer1} {nomdefitxer2}, etc.</emph> a la impressora <emph>{nomd'impressora}</emph> i acaba. La pantalla de presentació no apareix."
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Si el nom de fitxer conté espais, l'haureu de posar entre cometes."
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {nomdefitxer}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "Obre <emph>{nomdefitxer}</emph> per editar-lo, fins i tot si és una plantilla."
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "--view {nomdefitxer}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "Crea una còpia temporal de <emph>{nomdefitxer}</emph> i l'obre en mode només de lectura."
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {nomdefitxer}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "Crea un document nou i utilitza <emph>{nomdefitxer}</emph> com a plantilla."
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "--nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "Inhabilita la pantalla de presentació quan s'inicia el programa."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "--nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "Si el nom de fitxer conté espais, l'haureu de posar entre cometes."
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "Inicia l'aplicació i només mostra la pantalla de presentació."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
-msgstr "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
-msgstr "Desactiva la comprovació per a instàncies remotes que utilitzant la instal·lació"
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150828\n"
+"help.text"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3145268\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3153838\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "Afegiu aquest paràmetre a l'ordre d'inici del programa per suprimir l'auxiliar de benvinguda."
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id315053p\n"
"help.text"
-msgid "--display {display}"
-msgstr "--display {visualització}"
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
-msgstr "Defineix la veriable d'entorn <emph>DISPLAY</emph> a les plataformes UNIX, i similars, al valor <emph>{display}</emph>. Aquest paràmetre només és suportat per a l'escript d'inici del programari $[officename] a les plataformes UNIX i similars."
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id315053q\n"
"help.text"
-msgid "--headless"
-msgstr "--headless"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "Inici en mode \"headless\", que permet utilitzar l'aplicació sense interfície d'usuari."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Aquest mode especial es pot utilitzar quan l'aplicació es controla per clients externs mitjançant l'<link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "--infilter={filter}"
-msgstr "--infilter={filtre}"
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
-msgstr "Força un tipus de filtre d'entrada, si és possible. Per exemple, --infilter=\"Calc Office Open XML\"."
+msgid "Ignored switches"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
-msgstr "--convert-to extensió_del_fitxer_de_sortida[:nom_de_filtre_de_sortida] [--outdir directori_de_sortida] fitxers"
+msgid "Ignored (MacOS X only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
-msgstr "Fitxers convertits per lots. Si --outdir no s'especifica, aleshores s'utilitiza el directori actiu actual com a output_dir.<br/>Per exemple, --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user*.doc"
+msgid "Ignored (COM+ related; Windows only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014529900\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
-msgstr "--print-to-file [--printer-name nom_d_impressora] [--outdir output_dir] fitxers"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
-msgstr "Impressió de fixtxers en lot a un fitxer. Si --outdir no s'especifica, aleshores s'utilitza el directori actiu com a output_dir.<br/>Per exemple, --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
+msgstr ""
#: startcenter.xhp
msgctxt ""
diff --git a/source/ca/sc/source/ui/src.po b/source/ca/sc/source/ui/src.po
index 20951049eb0..6a9941c6c0a 100644
--- a/source/ca/sc/source/ui/src.po
+++ b/source/ca/sc/source/ui/src.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-25 06:53+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 13:40+0000\n"
+"Last-Translator: AssumptaAn <assumptaanglada@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1477378382.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480599622.000000\n"
#: filter.src
msgctxt ""
@@ -9668,8 +9668,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Suma els arguments que compleixen les condicions."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/ca/svx/uiconfig/ui.po b/source/ca/svx/uiconfig/ui.po
index 32a07595c68..ab76ea6bc92 100644
--- a/source/ca/svx/uiconfig/ui.po
+++ b/source/ca/svx/uiconfig/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-06 09:51+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 14:26+0000\n"
+"Last-Translator: AssumptaAn <assumptaanglada@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467798719.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480602391.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3061,8 +3061,8 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "Ignora els _diacrítics CTL"
+msgid "Ignore diac_ritics"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5161,10 +5161,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5179,10 +5179,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/ca/sw/uiconfig/swriter/ui.po b/source/ca/sw/uiconfig/swriter/ui.po
index 4bf237b5d98..1b186f6295f 100644
--- a/source/ca/sw/uiconfig/swriter/ui.po
+++ b/source/ca/sw/uiconfig/swriter/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-25 06:51+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-13 08:20+0000\n"
+"Last-Translator: AssumptaAn <assumptaanglada@gmail.com>\n"
"Language-Team: none\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1477378312.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479025230.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -9822,26 +9822,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/ca/xmlsecurity/uiconfig/ui.po b/source/ca/xmlsecurity/uiconfig/ui.po
index 6f9eea53f9b..764ca96819f 100644
--- a/source/ca/xmlsecurity/uiconfig/ui.po
+++ b/source/ca/xmlsecurity/uiconfig/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-11-28 10:41+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 14:38+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480329671.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480603085.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr "Descripció"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/cs/cui/uiconfig/ui.po b/source/cs/cui/uiconfig/ui.po
index 828f9f94558..74ee33b0c74 100644
--- a/source/cs/cui/uiconfig/ui.po
+++ b/source/cs/cui/uiconfig/ui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-11-17 16:07+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-12-22 21:01+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: none\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479398849.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482440508.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -3155,7 +3155,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Palette:"
-msgstr ""
+msgstr "Paleta:"
#: colorpage.ui
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/scalc/00.po b/source/cs/helpcontent2/source/text/scalc/00.po
index 38dd1638d0c..4e783999a3d 100644
--- a/source/cs/helpcontent2/source/text/scalc/00.po
+++ b/source/cs/helpcontent2/source/text/scalc/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-22 16:23+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-22 16:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1469204625.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479833878.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -553,8 +553,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">Zvolte <emph>Vložit - Názvy</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -571,8 +571,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "Zvolte <emph>Vložit - Názvy - Definovat</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -589,8 +589,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">Zvolte <emph>Vložit - Názvy - Vložit</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -598,8 +598,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">Zvolte <emph>Vložit - Názvy - Vytvořit</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -607,8 +607,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">Zvolte <emph>Vložit - Názvy - Popisky</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/scalc/01.po b/source/cs/helpcontent2/source/text/scalc/01.po
index 46c58e7e35f..b2d50f41a8b 100644
--- a/source/cs/helpcontent2/source/text/scalc/01.po
+++ b/source/cs/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-09-16 17:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: NONE\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1474047454.000000\n"
@@ -20652,8 +20652,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=INDEX(SumX;4;1)</item> vrátí hodnotu z řádku 4 ve sloupci 1 z oblasti s názvem <emph>SumX</emph> definované pomocí <emph>Vložit - Názvy - Definovat</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20677,8 +20677,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=INDEX((multi);4;1)</item> znamená hodnotu, která se nachází na řádku 4 ve sloupci 1 (vícenásobné) oblasti, kterou jste ve <emph>Vložit - Názvy - Definovat</emph> pojmenovali <emph>multi</emph>. Vícenásobná oblast může sestávat z několika pravoúhlých oblastí, z nichž každá obsahuje řádek 4 a sloupec 1. Pokud chcete přistupovat k druhému bloku této vícenásobné oblasti, jako parametr <emph>oblast</emph> zadejte číslo <item type=\"input\">2</item>."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -49848,8 +49848,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "Názvy"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -49857,8 +49857,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Názvy\">Názvy</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50248,8 +50248,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Označte oblast, která obsahuje všechny rozsahy, které chcete pojmenovat. Poté zvolte <emph>Vložit - Názvy - Vytvořit</emph>. Zobrazí se dialog <emph>Vytvořit názvy</emph>, ve kterém určíte požadované nastavení."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52135,8 +52135,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Vyberte <emph>-žádná-</emph>, chcete-li odstranit nastavení oblasti tisku pro aktuální sešit. Vyberte <emph>-celý list-</emph>, chcete-li nastavit aktuální list jako oblast tisku. Vyberte <emph>-výběr-</emph>, chcete-li nastavit vybranou část sešitu jako oblast tisku. Vyberete-li <emph>-definovaná uživatelem-</emph>, můžete použít oblast tisku definovanou dříve pomocí příkazu <emph>Formát - Oblasti tisku - Definovat</emph>. Jestliže jste rozsah pojmenovali pomocí příkazu <emph>Vložit - Názvy - Definovat</emph>, bude tento název zobrazen a bude možné jej vybrat ze seznamu."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/scalc/guide.po b/source/cs/helpcontent2/source/text/scalc/guide.po
index e71fe94b5d1..243b4603a5f 100644
--- a/source/cs/helpcontent2/source/text/scalc/guide.po
+++ b/source/cs/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-07-22 17:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1469209526.000000\n"
#: address_auto.xhp
@@ -2131,8 +2131,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "Zdrojové buňky vyberte a přiřaďte jim název klepnutím na <emph>Vložit - Názvy - Definovat</emph>. Uložte sešit a nezavírejte ho."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11831,8 +11831,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "Vyberte buňku nebo oblast buněk a zvolte <emph>Vložit - Názvy - Definovat</emph>. Zobrazí se dialog <emph>Definovat název</emph>."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11884,8 +11884,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Vložit - Názvy - Definovat\">Vložit - Názvy - Definovat</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/shared/00.po b/source/cs/helpcontent2/source/text/shared/00.po
index f0f811e24df..8669025f813 100644
--- a/source/cs/helpcontent2/source/text/shared/00.po
+++ b/source/cs/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-07-17 09:02+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1468746153.000000\n"
#: 00000001.xhp
@@ -12070,15 +12070,6 @@ msgstr "Zvolte kartu <emph>Formát - Stránka - Pozadí</emph> (v $[officename]
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "Zvolte kartu <emph>Formát - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Obrázek - </emph></caseinline></switchinline><emph>Oblast - Barvy</emph>"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/cs/helpcontent2/source/text/shared/01.po b/source/cs/helpcontent2/source/text/shared/01.po
index c136c3055d5..a2b65ebe926 100644
--- a/source/cs/helpcontent2/source/text/shared/01.po
+++ b/source/cs/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 19:09+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-09-28 13:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476817775.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1475069510.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -8291,8 +8291,8 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
-msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Zadejte počet znaků v hledaném výrazu, které lze zaměnit.</ahelp> Např. pokud určíte 2 zaměnitelné znaky, budou slova \"Praha\" a \"Dlaha\" považována za podobná."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
+msgstr ""
#: 02100100.xhp
msgctxt ""
@@ -25620,32 +25620,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Klepněte na výplň, kterou chcete použít ve vybraném objektu.</ahelp>"
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "Barvy"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Barvy\">Barvy</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr "Vyberte barvu, kterou chcete použít, uložte seznam barev nebo načtěte jiný seznam barev."
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43243,6 +43217,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Znovu zadejte hlavní heslo pro kontrolu.</ahelp>"
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/cs/helpcontent2/source/text/shared/guide.po b/source/cs/helpcontent2/source/text/shared/guide.po
index 4030f20f370..886eed61295 100644
--- a/source/cs/helpcontent2/source/text/shared/guide.po
+++ b/source/cs/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-07-30 20:29+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1469910554.000000\n"
#: aaa_start.xhp
@@ -2190,7 +2190,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2270,7 +2270,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9919,8 +9919,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "Pro přesun na buňku v sešitu nejprve zadejte název buňky (<emph>Vložit - Názvy - Definovat</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12428,20 +12428,20 @@ msgstr "Na kartě <emph>Možnosti</emph> se ujistěte, že je zaškrtnuto pole
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "Jakmile klepnete na <emph>Nový dokument</emph>, zobrazí se malé okno s tlačítkem <emph>Synchronizovat štítky</emph>. Zadejte první štítek. Když klepnete na tlačítko <emph>Synchronizovat štítky</emph>, aktuální štítek se zkopíruje do ostatních štítků na listu."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "Klepnutím na <emph>Nový dokument</emph> vytvoříte nový dokument podle zadaného nastavení."
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "Klepnutím na <emph>Nový dokument</emph> vytvoříte nový dokument podle zadaného nastavení."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "Jakmile klepnete na <emph>Nový dokument</emph>, zobrazí se malé okno s tlačítkem <emph>Synchronizovat štítky</emph>. Zadejte první štítek. Když klepnete na tlačítko <emph>Synchronizovat štítky</emph>, aktuální štítek se zkopíruje do ostatních štítků na listu."
#: labels.xhp
msgctxt ""
@@ -18304,758 +18304,721 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Spuštění $[officename] s parametry"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>spouštění; parametry </bookmark_value><bookmark_value>příkazový řádek; parametry</bookmark_value><bookmark_value>parametry;příkazový řádek</bookmark_value><bookmark_value>argumenty v příkazovém řádku</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Spuštění $[officename] s parametry"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "Při spuštění $[officename] z příkazového řádku můžete určit různé parametry, které mohou ovlivnit výkon. Použití parametrů příkazové řádky doporučujeme pouze zkušeným uživatelům."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "Pro normální práci není třeba používat příkazovou řádku. Některé parametry vyžadují hlubší znalost technického pozadí technologie $[officename]."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "Spuštění $[officename] z příkazové řádky"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
-msgstr "Ve Windows vyberte v Nabídce Start <emph>Spustit</emph>, na platformách Linux, *BSD nebo Mac OS X otevřete shell."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "V systému Windows zadejte do pole <emph>Otevřít</emph> následující text a klepněte na <emph>OK</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
-msgstr "V unixových systémech napište následující řádek textu a stiskněte <emph>Return</emph>:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parametr} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parametr} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "Nahraďte <emph>{install}</emph> cestou k instalaci $[officename] (např. <emph>C:\\Program Files\\Office</emph> nebo <emph>~/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "Podle potřeby nahraďte <emph>{parametr}</emph> jedním či více parametry příkazové řádky z následujícího seznamu."
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "Platné parametry pro spuštění z příkazového řádku"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "Parametr"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "Význam"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "--help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">V dialogovém okně</caseinline><defaultinline>Do konzole</defaultinline></switchinline> vypíše seznam dostupných parametrů."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
-msgstr "--version"
+msgid "Opens the file and applies specified macros from the file."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
-msgstr "Zobrazí informaci o verzi."
+msgid "Getting help and information"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "--writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "Spustí se Writer s prázdným dokumentem."
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "--calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "Spustí se Calc s prázdným dokumentem."
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "--draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "Spustí se Draw s prázdným dokumentem."
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "--impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "Spustí se Impress s prázdným dokumentem."
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "--math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "Spustí se Math s prázdným dokumentem."
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "--global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "Spustí se Writer s prázdným dokumentem."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "--web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "Spustí se s prázdným HTML dokumentem."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "--show {soubor.odp}"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "Spustí Impress se souborem <emph>{soubor.odp}</emph> a spustí prezentaci. Po prezentaci přejde do režimu úprav."
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
+"help.text"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
"help.text"
-msgid "--minimized"
-msgstr "--minimized"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "Spustí se minimalizované. Nezobrazí se úvodní logo."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "--invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "Spustí se v neviditelném režimu."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Nezobrazí se ani úvodní logo, ani okno programu. Ovšem je možné ovládat $[officename] a otevírat dokumenty či dialogy pomocí <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
-msgstr "Pokud byl $[officename] spuštěn s tímto parametrem, je možné jej ukončit pouze pomocí správce úloh (Windows) nebo příkazem <emph>kill</emph> (systém UNIX a příbuzné)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "Nelze použít ve spojení s <emph>--quickstart</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Více informací se dočtete v <emph>$[officename] Developer's Guide</emph>."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
+"help.text"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
"help.text"
-msgid "--norestore"
-msgstr "--norestore"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "Vypne opětovné spuštění a obnovení souboru po pádu software."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "Vypne Uvítacího průvodce."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "--quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Aktivuje Rychlé spuštění."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "--accept={UNO řetězec}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "Upozorní $[officename], že po vytvoření \"UNO Acceptor Threads\" se použije \"UNO Accept String\"."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Více informací se dočtete v <emph>$[officename] Developer's Guide</emph>."
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "--unaccept={UNO řetězec}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
-msgstr "Zavře akceptor, který byl vytvořen pomocí --accept={UNO řetězec}. Pro zavření všech otevřený akceptorů použijte --unaccept=all."
+msgid "Exit after loading documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {soubor1} {soubor2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "Vytiskne soubory <emph>{soubor1} {soubor2} ...</emph> na výchozí tiskárně a skončí. Nezobrazí se úvodní logo."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Pokud název souboru obsahuje mezery, musí být uzavřen v uvozovkách."
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "--pt {tiskárna} {soubor1} {soubor2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "Vytiskne soubory <emph>{soubor1} {soubor2} ...</emph> na tiskárně <emph>{tiskárna}</emph> a skončí. Nezobrazí se úvodní logo."
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Pokud název souboru obsahuje mezery, musí být uzavřen v uvozovkách."
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {soubor}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "Otevře soubor <emph>{soubor}</emph> pro úpravy, i když je to šablona."
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "--view {soubor}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "Vytvoří dočasnou kopii souboru <emph>{soubor}</emph> a otevře ji pouze pro čtení."
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {soubor}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "Vytvoří nový dokument a použije soubor <emph>{soubor}</emph> jako šablonu."
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "--nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "Nezobrazí při startu programu úvodní logo."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "--nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "Pokud název souboru obsahuje mezery, musí být uzavřen v uvozovkách."
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "Spustí aplikaci a zobrazí pouze úvodní obrázek."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
-msgstr "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
-msgstr "Vypne kontrolu, zda je instalace využívána vzdáleným přístupem."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150828\n"
+"help.text"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3145268\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3153838\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "Přidáním tohoto parametru ke spouštěcímu příkazu vypnete Uvítacího průvodce."
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id315053p\n"
"help.text"
-msgid "--display {display}"
-msgstr "--display {displej}"
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
-msgstr "Na unixových platformách nastaví proměnnou prostředí <emph>DISPLAY</emph> na hodnotu <emph>{displej}</emph>. Tento parametr je podporován pouze na unixových platformách."
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id315053q\n"
"help.text"
-msgid "--headless"
-msgstr "--headless"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "Spustí aplikaci v \"neviditelném režimu\", který umožňuje použití aplikace bez uživatelského rozhraní."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Tento speciální režim je možné použít pro ovládání aplikace externími programy pomocí <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "--infilter={filter}"
-msgstr "--infilter={filtr}"
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
-msgstr "Je-li to možné, vynutí si typ vstupního filtru. Např. --infilter=\"Calc Office Open XML\"."
+msgid "Ignored switches"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
-msgstr "--convert-to pripona_vystupniho_souboru[:jmeno_vystupniho_filtru] [--outdir vystupni_adresar] soubory"
+msgid "Ignored (MacOS X only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
-msgstr "Hromadný převod souborů. Není-li uveden --outdir, jako výstupní adresář se použije aktuální pracovní adresář.<br/>Např. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (COM+ related; Windows only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014529900\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
-msgstr "--print-to-file [--printer-name jmeno_tiskarny] [--outdir vystupni_adresar] soubory"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
-msgstr "Hromadný tisk do souboru. Není-li uveden --outdir, jako výstupní adresář se použije aktuální pracovní adresář.<br/>Např. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
+msgstr ""
#: startcenter.xhp
msgctxt ""
diff --git a/source/cs/sc/source/ui/src.po b/source/cs/sc/source/ui/src.po
index b9711140665..16f3ba4f6fc 100644
--- a/source/cs/sc/source/ui/src.po
+++ b/source/cs/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-15 19:55+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 14:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1468612502.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480601141.000000\n"
#: filter.src
msgctxt ""
@@ -9669,8 +9669,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Sečte argumenty, které vyhovují podmínkám."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/cs/svx/uiconfig/ui.po b/source/cs/svx/uiconfig/ui.po
index ac5e1489344..bc3c82ecae9 100644
--- a/source/cs/svx/uiconfig/ui.po
+++ b/source/cs/svx/uiconfig/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-08-11 21:12+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 14:43+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1470949958.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480603438.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3061,8 +3061,8 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "_Ignorovat diakritiku CTL"
+msgid "Ignore diac_ritics"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5161,10 +5161,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5179,10 +5179,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/cs/sw/uiconfig/swriter/ui.po b/source/cs/sw/uiconfig/swriter/ui.po
index 4593e8bb1b7..1e7a32f556b 100644
--- a/source/cs/sw/uiconfig/swriter/ui.po
+++ b/source/cs/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 19:25+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-13 17:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: cs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467660338.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479059757.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -9822,26 +9822,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/cs/xmlsecurity/uiconfig/ui.po b/source/cs/xmlsecurity/uiconfig/ui.po
index 577dc86fa53..9538a2c0004 100644
--- a/source/cs/xmlsecurity/uiconfig/ui.po
+++ b/source/cs/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-11-17 10:07+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 14:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479377276.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480604196.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr "Popis"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/cy/sc/source/ui/src.po b/source/cy/sc/source/ui/src.po
index 426fd17837c..332596e6770 100644
--- a/source/cy/sc/source/ui/src.po
+++ b/source/cy/sc/source/ui/src.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-01 10:08+0000\n"
-"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-14 00:38+0000\n"
+"Last-Translator: Aled Powell <aled@aledpowell.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480586882.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481675936.000000\n"
#: filter.src
msgctxt ""
@@ -9669,8 +9669,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Cyfansymu'r ymresymiadau i gwrdd â'r gofynion."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/cy/svx/uiconfig/ui.po b/source/cy/svx/uiconfig/ui.po
index adef814a903..3a0387f8043 100644
--- a/source/cy/svx/uiconfig/ui.po
+++ b/source/cy/svx/uiconfig/ui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
"PO-Revision-Date: 2016-12-01 16:37+0000\n"
-"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
+"Last-Translator: Aled Powell <aled@aledpowell.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480610223.000000\n"
#: acceptrejectchangesdialog.ui
@@ -3061,8 +3061,8 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "Anwybyddu CTL _diacritig"
+msgid "Ignore diac_ritics"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -3070,8 +3070,8 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
-msgstr "Anwybyddu CTL _kashida"
+msgid "Ignore _kashida"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -5161,10 +5161,10 @@ msgstr "Analluogi cyflymu caledwedd (OpenGL, OpenCL)"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5179,10 +5179,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/cy/sw/uiconfig/swriter/ui.po b/source/cy/sw/uiconfig/swriter/ui.po
index 2333566f5a4..514244723d2 100644
--- a/source/cy/sw/uiconfig/swriter/ui.po
+++ b/source/cy/sw/uiconfig/swriter/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-10 13:03+0000\n"
-"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-13 23:20+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476104629.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479079259.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -9822,26 +9822,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/cy/xmlsecurity/uiconfig/ui.po b/source/cy/xmlsecurity/uiconfig/ui.po
index 9fa6aad8f09..fc0b303dce9 100644
--- a/source/cy/xmlsecurity/uiconfig/ui.po
+++ b/source/cy/xmlsecurity/uiconfig/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 20:01+0000\n"
-"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 15:06+0000\n"
+"Last-Translator: Aled Powell <aled@aledpowell.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467662480.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480604784.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr "Disgrifiad"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/da/basic/source/classes.po b/source/da/basic/source/classes.po
index 5dcfe62666c..8664d90d14f 100644
--- a/source/da/basic/source/classes.po
+++ b/source/da/basic/source/classes.po
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
"X-POOTLE-MTIME: 1455980247.000000\n"
#: sb.src
@@ -1231,3 +1231,1082 @@ msgctxt ""
"string.text"
msgid "The library could not be removed from memory."
msgstr "Det var ikke muligt at fjerne biblioteket fra hukommelsen."
+
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_NUMBER_OF_ARGS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid number of arguments."
+msgstr "Ugyldigt antal argumenter."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_SYNTAX & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Syntax error."
+msgstr "Syntaksfejl."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_GOSUB & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Return without Gosub."
+msgstr "Return uden Gosub."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_REDO_FROM_START & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect entry; please retry."
+msgstr "Forkert indtastning; prøv venligst igen."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_ARGUMENT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid procedure call."
+msgstr "Ugyldigt procedurekald."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_MATH_OVERFLOW & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Overflow."
+msgstr "Overløb."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_MEMORY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Not enough memory."
+msgstr "Ikke tilstrækkelig hukommelse."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ALREADY_DIM & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Array already dimensioned."
+msgstr "Array er allerede dimensioneret."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_OUT_OF_RANGE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Index out of defined range."
+msgstr "Indeks uden for angivet interval."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DUPLICATE_DEF & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Duplicate definition."
+msgstr "Dubblér definition."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ZERODIV & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Division by zero."
+msgstr "Division med nul."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_VAR_UNDEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Variable not defined."
+msgstr "Variablen er ikke defineret."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_CONVERSION & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Data type mismatch."
+msgstr "Datatyper er uforenelige."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_PARAMETER & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid parameter."
+msgstr "Ugyldig parameter."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_USER_ABORT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Process interrupted by user."
+msgstr "Processen blev afbrudt af brugeren."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_RESUME & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Resume without error."
+msgstr "Genoptag uden fejl."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_STACK_OVERFLOW & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Not enough stack memory."
+msgstr "Ikke tilstrækkelig stakhukommelse."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROC_UNDEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Sub-procedure or function procedure not defined."
+msgstr "Underprocedure eller funktionsprocedure ikke defineret."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_DLL_LOAD & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Error loading DLL file."
+msgstr "Fejl ved indlæsning af DLL-fil."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_DLL_CALL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Wrong DLL call convention."
+msgstr "Forkert DLL-kaldskonvention."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_INTERNAL_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Internal error $(ARG1)."
+msgstr "Intern fejl $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_CHANNEL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid file name or file number."
+msgstr "Forkert filnavn eller filnummer."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_FILE_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "File not found."
+msgstr "Filen blev ikke fundet."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_FILE_MODE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect file mode."
+msgstr "Forkert filtilstand."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_FILE_ALREADY_OPEN & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "File already open."
+msgstr "Filen er allerede åben."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_IO_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Device I/O error."
+msgstr "Enheds-I/O-fejl."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_FILE_EXISTS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "File already exists."
+msgstr "Filen findes allerede."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_RECORD_LENGTH & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect record length."
+msgstr "Forkert datapostlængde."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DISK_FULL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Disk or hard drive full."
+msgstr "Disken er fuld."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_READ_PAST_EOF & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Reading exceeds EOF."
+msgstr "Læsning ud over filens slutning (EOF)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_RECORD_NUMBER & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect record number."
+msgstr "Forkert datapostnummer."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_TOO_MANY_FILES & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Too many files."
+msgstr "For mange filer."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_DEVICE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Device not available."
+msgstr "Enheden er ikke tilgængelig."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ACCESS_DENIED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Access denied."
+msgstr "Adgang nægtet."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_READY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Disk not ready."
+msgstr "Drevet er ikke klar."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_IMPLEMENTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Not implemented."
+msgstr "Ikke implementeret."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DIFFERENT_DRIVE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Renaming on different drives impossible."
+msgstr "Omdøbning på forskellige drev er ikke mulig."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ACCESS_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Path/File access error."
+msgstr "Adgangsfejl for sti/fil."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PATH_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Path not found."
+msgstr "Sti ikke fundet."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object variable not set."
+msgstr "Objektvariabel ikke initialiseret."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_PATTERN & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid string pattern."
+msgstr "Ugyldigt strengmønster."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SBERR_IS_NULL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Use of zero not permitted."
+msgstr "Brug af nul er ikke tilladt."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE Error."
+msgstr "DDE-fejl."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_WAITINGACK & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Awaiting response to DDE connection."
+msgstr "Afventer svar på DDE-forbindelsen."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_OUTOFCHANNELS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "No DDE channels available."
+msgstr "Ingen tilgængelige DDE-kanaler."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_NO_RESPONSE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "No application responded to DDE connect initiation."
+msgstr "Ingen programmer svarede på forespørgslen om en DDE-forbindelse."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_MULT_RESPONSES & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Too many applications responded to DDE connect initiation."
+msgstr "For mange programmer svarer på DDE-forbindelsesinitialiseringen."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_CHANNEL_LOCKED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE channel locked."
+msgstr "DDE-kanalen er låst."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_NOTPROCESSED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "External application cannot execute DDE operation."
+msgstr "Eksternt program kan ikke udføre DDE-operation."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_TIMEOUT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Timeout while waiting for DDE response."
+msgstr "Tidsudløb mens der blev ventet på DDE-svar."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_USER_INTERRUPT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "User pressed ESCAPE during DDE operation."
+msgstr "Brugeren trykkede på ESCAPE under DDE-operationen"
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_BUSY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "External application busy."
+msgstr "Det eksterne program er optaget."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_NO_DATA & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE operation without data."
+msgstr "DDE-operation uden data."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_WRONG_DATA_FORMAT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Data are in wrong format."
+msgstr "Data er i forkert format."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_PARTNER_QUIT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "External application has been terminated."
+msgstr "Det eksterne program er blevet afsluttet."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_CONV_CLOSED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE connection interrupted or modified."
+msgstr "DDE-forbindelsen blev afbrudt eller ændret."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_NO_CHANNEL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE method invoked with no channel open."
+msgstr "DDE-metode blev kaldt uden åben DDE-kanal."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_INVALID_LINK & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid DDE link format."
+msgstr "Ugyldigt DDE-kædeformat."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_QUEUE_OVERFLOW & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE message has been lost."
+msgstr "DDE-meddelelse er gået tabt."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_LINK_ALREADY_EST & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Paste link already performed."
+msgstr "Link er allerede indsat."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_LINK_INV_TOPIC & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Link mode cannot be set due to invalid link topic."
+msgstr "Linktilstand kan ikke sættes på grund af ugyldigt linktopic."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_DLL_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE requires the DDEML.DLL file."
+msgstr "DDE kræver DDEML.DLL-filen."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_CANNOT_LOAD & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Module cannot be loaded; invalid format."
+msgstr "Det er ikke muligt at indlæse modulet; ugyldigt format."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_INDEX & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid object index."
+msgstr "Ugyldigt objektindeks."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_ACTIVE_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object is not available."
+msgstr "Objektet er ikke tilgængeligt."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_PROP_VALUE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect property value."
+msgstr "Forkert egenskabsværdi."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROP_READONLY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "This property is read-only."
+msgstr "Denne egenskab har kun læseadgang."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROP_WRITEONLY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "This property is write only."
+msgstr "Denne egenskab har kun skriveadgang."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_INVALID_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid object reference."
+msgstr "Ugyldig objektreference."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_METHOD & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Property or method not found: $(ARG1)."
+msgstr "Egenskab eller metode ikke fundet: $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NEEDS_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object required."
+msgstr "Objekt kræves."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_INVALID_USAGE_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid use of an object."
+msgstr "Ugyldig brug af et objekt."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_OLE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "OLE Automation is not supported by this object."
+msgstr "OLE-automatisering understøttes ikke af dette objekt."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_METHOD & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "This property or method is not supported by the object."
+msgstr "Objektet understøtter ikke denne egenskab eller metode."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_OLE_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "OLE Automation Error."
+msgstr "OLE-automatiseringsfejl."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_ACTION & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "This action is not supported by given object."
+msgstr "Denne handling understøttes ikke af det angivne objekt."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_NAMED_ARGS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Named arguments are not supported by given object."
+msgstr "Nævnte argumenter understøttes ikke af det angivne objekt."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_LOCALE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "The current locale setting is not supported by the given object."
+msgstr "Den aktuelle landestandard understøttes ikke af det angivne objekt."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NAMED_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Named argument not found."
+msgstr "Navngivet argument ikke fundet."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_OPTIONAL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Argument is not optional."
+msgstr "Argumentet er ikke valgfrit."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_WRONG_ARGS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid number of arguments."
+msgstr "Ugyldigt antal argumenter."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_A_COLL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object is not a list."
+msgstr "Objekt er ikke en liste."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_ORDINAL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid ordinal number."
+msgstr "Ugyldigt ordenstal."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DLLPROC_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Specified DLL function not found."
+msgstr "Den angivne DDL-funktion blev ikke fundet."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_CLIPBD_FORMAT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid clipboard format."
+msgstr "Ugyldigt udklipsholderformat."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROPERTY_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object does not have this property."
+msgstr "Objektet har ikke denne egenskab."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_METHOD_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object does not have this method."
+msgstr "Objekt har ikke denne metode."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ARG_MISSING & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Required argument lacking."
+msgstr "Påkrævet argument mangler."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_METHOD_FAILED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Error executing a method."
+msgstr "Fejl ved udførelsen af en metode."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_SETPROP_FAILED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unable to set property."
+msgstr "Kan ikke ændre egenskaben."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_GETPROP_FAILED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unable to determine property."
+msgstr "Det var ikke muligt at bestemme egenskaben."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNEXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unexpected symbol: $(ARG1)."
+msgstr "Uventet symbol: $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Expected: $(ARG1)."
+msgstr "Forventet: $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_SYMBOL_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Symbol expected."
+msgstr "Symbol forventet."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_VAR_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Variable expected."
+msgstr "Variabel forventet."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_LABEL_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Label expected."
+msgstr "Etiket forventet."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_LVALUE_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Value cannot be applied."
+msgstr "Værdien kan ikke tildeles."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_VAR_DEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Variable $(ARG1) already defined."
+msgstr "Variabel $(ARG1) er allerede defineret."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROC_DEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Sub procedure or function procedure $(ARG1) already defined."
+msgstr "Under- eller funktionsprocedure $(ARG1) er allerede defineret."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_LABEL_DEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Label $(ARG1) already defined."
+msgstr "Etiket $(ARG1) er allerede defineret."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_VAR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Variable $(ARG1) not found."
+msgstr "Variabel $(ARG1) blev ikke fundet."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_ARRAY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Array or procedure $(ARG1) not found."
+msgstr "Array eller procedure $(ARG1) blev ikke fundet."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_PROC & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Procedure $(ARG1) not found."
+msgstr "Procedure $(ARG1) blev ikke fundet."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_LABEL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Label $(ARG1) undefined."
+msgstr "Etiket $(ARG1) er udefineret."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_TYPE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unknown data type $(ARG1)."
+msgstr "Ukendt datatype $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_EXIT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Exit $(ARG1) expected."
+msgstr "Exit $(ARG1) forventet."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_BLOCK & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Statement block still open: $(ARG1) missing."
+msgstr "Instruktionsblok stadig åben: $(ARG1) mangler."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_BRACKETS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Parentheses do not match."
+msgstr "Fejl i parentesstrukturen."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_DECLARATION & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Symbol $(ARG1) already defined differently."
+msgstr "Symbolet $(ARG1) er allerede defineret anderledes."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_PARAMETERS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Parameters do not correspond to procedure."
+msgstr "Parametrene svarer ikke til proceduren."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_CHAR_IN_NUMBER & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid character in number."
+msgstr "Ugyldigt tegn i tallet."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_MUST_HAVE_DIMS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Array must be dimensioned."
+msgstr "Array skal dimensioneres."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_IF & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Else/Endif without If."
+msgstr "Else/Endif uden If."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_IN_SUBR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "$(ARG1) not allowed within a procedure."
+msgstr "$(ARG1) er ikke tilladt indenfor en procedure."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_IN_MAIN & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "$(ARG1) not allowed outside a procedure."
+msgstr "$(ARG1) er ikke tilladt udenfor en procedure."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_WRONG_DIMS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Dimension specifications do not match."
+msgstr "Dimensionsangivelserne svarer ikke til hinanden."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_OPTION & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unknown option: $(ARG1)."
+msgstr "Ukendt valgmulighed: $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_CONSTANT_REDECLARED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Constant $(ARG1) redefined."
+msgstr "Konstant $(ARG1) gendefineret."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROG_TOO_LARGE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Program too large."
+msgstr "Programmet er for stort."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_STRINGS_ARRAYS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Strings or arrays not permitted."
+msgstr "Strenge eller arrays er ikke tilladte."
diff --git a/source/da/dbaccess/source/ui/dlg.po b/source/da/dbaccess/source/ui/dlg.po
index 452017b0482..1bd3cde01af 100644
--- a/source/da/dbaccess/source/ui/dlg.po
+++ b/source/da/dbaccess/source/ui/dlg.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-08-25 12:34+0200\n"
-"PO-Revision-Date: 2016-07-04 18:20+0000\n"
+"PO-Revision-Date: 2015-12-22 08:51+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467656434.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1450774297.000000\n"
#: AutoControls.src
msgctxt ""
@@ -850,3 +850,10 @@ msgctxt ""
"string.text"
msgid "Details"
msgstr "Detaljer"
+
+msgctxt ""
+"AutoControls.src\n"
+"STR_COMMONURL\n"
+"string.text"
+msgid "Datasource URL"
+msgstr "Datakilde-URL"
diff --git a/source/da/helpcontent2/source/text/scalc/00.po b/source/da/helpcontent2/source/text/scalc/00.po
index 8a6621497d9..03845c029fe 100644
--- a/source/da/helpcontent2/source/text/scalc/00.po
+++ b/source/da/helpcontent2/source/text/scalc/00.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-12-04 18:35+0000\n"
-"Last-Translator: keld <keld@keldix.com>\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-12 21:20+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480876511.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481577610.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -553,8 +553,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">Vælg <emph>Indsæt - Navne</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -571,8 +571,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "Vælg <emph>Indsæt - Navne - Definer</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -589,8 +589,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">Vælg <emph>Indsæt - Navne - Indsæt</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -598,8 +598,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">Vælg <emph>Indsæt - Navne - Opret</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -607,8 +607,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">Vælg <emph>Indsæt - Navne - Etiketter</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
@@ -1746,7 +1746,7 @@ msgctxt ""
"par_id3153191\n"
"help.text"
msgid "<variable id=\"delete_page_break_row\">Choose <emph>Sheet - Delete Page Break - Row Break</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"delete_page_break_row\">Vælg <emph>Rediger - Slet sideskift - Rækkeskift</emph></variable>"
#: sheet_menu.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/scalc/01.po b/source/da/helpcontent2/source/text/scalc/01.po
index 6555ccac2a3..353ec289c30 100644
--- a/source/da/helpcontent2/source/text/scalc/01.po
+++ b/source/da/helpcontent2/source/text/scalc/01.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-09-22 08:09+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-23 17:04+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1474531759.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482512673.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -2562,7 +2562,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Delete Page Break"
-msgstr ""
+msgstr "Slet sideskift"
#: 02190000.xhp
msgctxt ""
@@ -20651,8 +20651,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=INDEKS(SumX; 4; 1)</item> returnerer værdien fra området <emph>SumX</emph> i række 4 og kolonne 1 som defineret i <emph>Indsæt - Navne - Definer</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20676,8 +20676,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=INDEKS((multi);4;1)</item> indikerer værdien i række 4 kolonne 1 i det definerede (multi-) område, som du navngav under <emph>Indsæt - Navne - Definer</emph> som <emph>multi</emph>. Multiområdet kan bestå af flere enkelte rektangulære områder, hver med en række 4 og kolonne 1. Hvis du senere ønsker at kalde den anden blok fra multiområdet kan du indtaste tallet <item type=\"input\">2</item> som <emph>område</emph>parameter."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -49847,8 +49847,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "Navne"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -49856,8 +49856,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Navne\">Navne</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50247,8 +50247,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Vælg området indeholdende alle de områder, som du vil navngive. Vælg derefter <emph>Indsæt - Navne - Opret</emph>. Dette åbner dialogen <emph>Opret navne</emph>, hvorfra du kan vælge navngivningsindstillingerne, som du ønsker."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52134,8 +52134,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Vælg <emph>-ingen-</emph> for at fjerne definitionen af et udskriftsområde for det aktuelle regneark. Vælg <emph>-hele arket-</emph> for at vælge hele arket som et udskriftsområde. Vælg <emph>-markering-</emph> for at definere det markerede område af et regneark som udskriftsområdet. Ved at vælge <emph>-brugerdefineret-</emph> kan du definere et udskriftsområde, som du allerede har defineret ved at vælge kommandoen <emph>Formater - Udskriftsområder - Definer</emph>. Hvis du har navngivet et område ved hjælp af kommandoen <emph>Indsæt - Navn - Definer</emph>, bliver dette navn vist og kan vælges i rullelisten."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/scalc/guide.po b/source/da/helpcontent2/source/text/scalc/guide.po
index 2580c8951b4..3aae9dbde36 100644
--- a/source/da/helpcontent2/source/text/scalc/guide.po
+++ b/source/da/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-07-13 12:43+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1468413836.000000\n"
#: address_auto.xhp
@@ -2131,8 +2131,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "For at navngive kildeområdet skal du markere cellerne og vælge <emph>Indsæt - Navne - Definer</emph>. Gem kildedokumentet, men lad det være åbent."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11831,8 +11831,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "Marker en celle eller et celleområde, vælg derefter <emph>Indsæt - Navne - Definer</emph>. Dialogen <emph>Definer navne</emph> vises."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11884,8 +11884,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Indsæt - Navne - Definer\">Indsæt - Navne - Definer</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/sdraw.po b/source/da/helpcontent2/source/text/sdraw.po
index 463fd436be2..2a375712ca0 100644
--- a/source/da/helpcontent2/source/text/sdraw.po
+++ b/source/da/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-17 18:57+0000\n"
+"PO-Revision-Date: 2016-12-23 16:09+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1463511475.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482509358.000000\n"
#: main0000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3155960\n"
"help.text"
msgid "Welcome to the $[officename] Draw Help"
-msgstr ""
+msgstr "Velkommen til $[officename] Draw Hjælp"
#: main0000.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared.po b/source/da/helpcontent2/source/text/shared.po
index df7f3da5e67..348eba7eafc 100644
--- a/source/da/helpcontent2/source/text/shared.po
+++ b/source/da/helpcontent2/source/text/shared.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-22 22:30+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-12-23 16:11+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1463956230.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482509493.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"hd_id3134447820\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Tabeldesign"
#: main0204.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3156429\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Tabeldesign"
#: main0204.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/00.po b/source/da/helpcontent2/source/text/shared/00.po
index e5607b8173f..a423764d54d 100644
--- a/source/da/helpcontent2/source/text/shared/00.po
+++ b/source/da/helpcontent2/source/text/shared/00.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 21:26+0000\n"
-"Last-Translator: keld <keld@keldix.com>\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-06-10 07:51+0000\n"
+"Last-Translator: Esben Aaberg <esben_aaberg@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467753967.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1465545075.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -12070,15 +12070,6 @@ msgstr "Vælg <emph>Formater - Side - Baggrund</emph>-fanebladet (i $[officename
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "Vælg fanebladet <emph>Formater - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Flade - Farver</emph>"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/da/helpcontent2/source/text/shared/01.po b/source/da/helpcontent2/source/text/shared/01.po
index 2d0f686453c..b58fa610d5d 100644
--- a/source/da/helpcontent2/source/text/shared/01.po
+++ b/source/da/helpcontent2/source/text/shared/01.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 19:14+0000\n"
-"Last-Translator: keld <keld@keldix.com>\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-12-22 23:52+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476818088.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482450741.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -8291,8 +8291,8 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
-msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Indtast antal tegn i søgeordet, som kan byttes ud.</ahelp> For eksempel, hvis du angiver, at 2 tegn kan udskiftes, betragtes \"måger\" og \"kager\" som lignende."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
+msgstr ""
#: 02100100.xhp
msgctxt ""
@@ -15415,12 +15415,13 @@ msgid "Explanation"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
@@ -15431,12 +15432,13 @@ msgid "Does not display extra zeros."
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152802\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 05020301.xhp
msgctxt ""
@@ -15495,12 +15497,13 @@ msgid "3456.78 as 3456.8"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3150355\n"
"help.text"
msgid "####.#"
-msgstr ""
+msgstr "####.#"
#: 05020301.xhp
msgctxt ""
@@ -15543,12 +15546,13 @@ msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3145315\n"
"help.text"
msgid "# ???/???"
-msgstr ""
+msgstr "# ???/???"
#: 05020301.xhp
msgctxt ""
@@ -15623,12 +15627,13 @@ msgid "15000 as 15,000"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3151223\n"
"help.text"
msgid "#,###"
-msgstr ""
+msgstr "#,###"
#: 05020301.xhp
msgctxt ""
@@ -15639,12 +15644,13 @@ msgid "16000 as 16"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3153961\n"
"help.text"
msgid "#,"
-msgstr ""
+msgstr "#,"
#: 05020301.xhp
msgctxt ""
@@ -15959,12 +15965,13 @@ msgid "Denominator is calculated to get the nearest value of the fraction with r
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3146926\n"
"help.text"
msgid "# ?/???"
-msgstr ""
+msgstr "# ?/???"
#: 05020301.xhp
msgctxt ""
@@ -25620,32 +25627,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Klik udfyldningen, som du vil anvende på det markerede objekt.</ahelp>"
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "Farver"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Farver\">Farver</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr "Marker en farve for at anvende, gemme den aktuelle farveliste eller indlæse en anden farveliste."
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43243,6 +43224,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Genindtast hovedadgangskoden.</ahelp>"
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
@@ -46168,3 +46357,3597 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".\">Specifies the maximum number of characters for a string.</ahelp>"
msgstr "<ahelp hid=\".\">Specificerer det maksimale antal tegn for en streng.</ahelp>"
+
+msgctxt ""
+"02100100.xhp\n"
+"par_id3152551\n"
+"59\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
+msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Indtast antal tegn i søgeordet, som kan byttes ud.</ahelp> For eksempel, hvis du angiver, at 2 tegn kan udskiftes, betragtes \"måger\" og \"kager\" som lignende."
+
+msgctxt ""
+"05210200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Colors"
+msgstr "Farver"
+
+msgctxt ""
+"05210200.xhp\n"
+"hd_id3152895\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
+msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Farver\">Farver</link>"
+
+msgctxt ""
+"05210200.xhp\n"
+"par_id3149119\n"
+"2\n"
+"help.text"
+msgid "Select a color to apply, save the current color list, or load a different color list."
+msgstr "Marker en farve for at anvende, gemme den aktuelle farveliste eller indlæse en anden farveliste."
+
+msgctxt ""
+"02190000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Plug-in"
+msgstr "Plugin"
+
+msgctxt ""
+"02190000.xhp\n"
+"bm_id3146946\n"
+"help.text"
+msgid "<bookmark_value>plug-ins; activating and deactivating</bookmark_value><bookmark_value>activating;plug-ins</bookmark_value><bookmark_value>deactivating; plug-ins</bookmark_value>"
+msgstr "<bookmark_value>plugins; aktivere og deaktivere</bookmark_value><bookmark_value>aktivere;plugins</bookmark_value><bookmark_value>deaktivere; plugins</bookmark_value>"
+
+msgctxt ""
+"02190000.xhp\n"
+"hd_id3146946\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02190000.xhp\" name=\"Plug-in\">Plug-in</link>"
+msgstr "<link href=\"text/shared/01/02190000.xhp\" name=\"Plugin\">Plugin</link>"
+
+msgctxt ""
+"02190000.xhp\n"
+"par_id3154863\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:PlugInsActive\">Allows you to edit <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-ins\">plug-ins</link> in your file. Choose this command to enable or disable this feature. When enabled, a check mark appears beside this command, and you find commands to edit the plug-in in its context menu. When disabled, you find commands to control the plug-in in its context menu.</ahelp>"
+msgstr "<ahelp hid=\".uno:PlugInsActive\">Giver dig mulighed for at redigere <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-ins\">plugins</link> i din fil. Brug denne kommando for at aktivere eller deaktivere denne funktionalitet. Hvis den er aktiveret, vises et flueben ved siden af denne kommando, og du finder kommandoer til at redigere plugin'et i dens genvejsmenu. Hvis den er deaktiveret, finder du kommandoer til at kontrollere plugin'et i dens genvejsmenu.</ahelp>"
+
+msgctxt ""
+"01010000.xhp\n"
+"par_id3154946\n"
+"66\n"
+"help.text"
+msgid "Creates a new presentation document ($[officename] Impress). If activated, the <link href=\"text/shared/autopi/01050000.xhp\" name=\"Presentation Wizard\">Presentation Wizard</link> dialog appears."
+msgstr "Opretter et nyt præsentationsdokument ($[officename] Impress). Hvis den er aktiveret vil dialogen <link href=\"text/shared/autopi/01050000.xhp\" name=\"Autopilot Presentation\">Præsentationsguide</link> vises."
+
+msgctxt ""
+"01010000.xhp\n"
+"par_idN10A15\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new presentation document ($[officename] Impress). If activated, the Presentation Wizard dialog appears.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Opretter et nyt præsentationsdokument ($[officename] Impress). Hvis den er aktiveret vil dialogen Præsentationsguide vises.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"bm_id3145211\n"
+"help.text"
+msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; 'changed' message</bookmark_value>"
+msgstr "<bookmark_value>kataloger; oprette nye</bookmark_value> <bookmark_value>oprette mappe</bookmark_value> <bookmark_value>Mappen Mine dokumenter; åbne</bookmark_value> <bookmark_value>Flere dokumenter; åbne</bookmark_value> <bookmark_value>åbne; flere filer</bookmark_value> <bookmark_value>vælge; flere filer</bookmark_value> <bookmark_value>åbne; filer, med pladsholder</bookmark_value> <bookmark_value>pladsholdere;ved åbning af filer</bookmark_value> <bookmark_value>dokumenter; åbne med skabeloner</bookmark_value> <bookmark_value>skabeloner; åbne dokumenter med</bookmark_value> <bookmark_value>dokumenter; typografier ændret</bookmark_value> <bookmark_value>typografier; 'ændret' meddelelse</bookmark_value>"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3146936\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Åbn\">Åbn</link>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3151191\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"oeffnentext\"><ahelp hid=\"fpicker/ui/explorerfiledialog/ExplorerFileDialog\">Opens or imports a file.</ahelp></variable>"
+msgstr "<variable id=\"oeffnentext\"><ahelp hid=\"fpicker/ui/explorerfiledialog/ExplorerFileDialog\">Åbner eller importerer en fil.</ahelp></variable>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149877\n"
+"109\n"
+"help.text"
+msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> dialog box. To activate the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
+msgstr "De følgende sektioner beskriver <item type=\"productname\">%PRODUCTNAME</item> dialogboksen <emph>Åbn</emph>. For at aktivere <item type=\"productname\">%PRODUCTNAME</item> dialogboksene <emph>Åbn</emph> og <emph>Gem</emph> skal du vælge <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME - Generelt</emph></link> og så vælge <emph>Anvend %PRODUCTNAME-dialoger</emph> i området <emph>Åbn/Gem-dialoger</emph>."
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150713\n"
+"52\n"
+"help.text"
+msgid "If the file that you want to open contains Styles, <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"special rules\">special rules</link> apply."
+msgstr "Hvis den fil, som du vil åbne, indeholder typografier, gælder <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"special rules\">specielle regler</link>."
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3147250\n"
+"11\n"
+"help.text"
+msgid "Up One Level"
+msgstr "Et niveau op"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147226\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"SVT_HID_FILEOPEN_LEVELUP\">Move up one folder in the folder hierarchy. Long-click to see the higher level folders.</ahelp>"
+msgstr "<ahelp hid=\"SVT_HID_FILEOPEN_LEVELUP\">Flyt et katalog op i kataloghierarkiet. Langklik for at se højere niveauer.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153681\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/new_folder\">Creates a new folder.</ahelp>"
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/new_folder\">Opretter en ny mappe.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3156113\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILEDLG_STANDARD\">Displays the files and folders in the folder that you are in.</ahelp> To open a file, select the file, and then click <emph>Open</emph>."
+msgstr "<ahelp hid=\"HID_FILEDLG_STANDARD\">Viser filerne og mapperne i den mappe du aktuelt er i.</ahelp> For at åbne en fil, vælg filen og klik så <emph>Åbn</emph>."
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3159256\n"
+"78\n"
+"help.text"
+msgid "To open more than one document at the same time, each in an own window, hold <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you click the files, and then click <emph>Open</emph>."
+msgstr "For at åbne mere end en enkelt fil samtidig, hver i sit vindue, skal du holde <switchinline select=\"sys\"><caseinline select=\"MAC\">Æble</caseinline><defaultinline>Ctrl</defaultinline></switchinline> nede, mens du klikker på filerne, og så klikke på <emph>Åbn</emph>."
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3154514\n"
+"110\n"
+"help.text"
+msgid "Click a column header to sort the files. Click again to reverse the sort order."
+msgstr "Klik på en kolonneoverskrift for at sortere filerne. Klik igen for at sortere i omvendt orden."
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149514\n"
+"111\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">To delete a file, right-click the file, and then choose <emph>Delete</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">For at slette en fil, højreklik på filen, og vælg så <emph>Slet</emph>.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147618\n"
+"112\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">To rename a file, right-click the file, and then choose <emph>Rename</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">For at omdøbe en fil, højreklik på filen, og vælg så <emph>Omdøb</emph>.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153331\n"
+"124\n"
+"help.text"
+msgid "<ahelp hid=\"svt/ui/querydeletedialog/yes\" visibility=\"hidden\">Click to delete the file with the name shown in this dialog.</ahelp>"
+msgstr "<ahelp hid=\"svt/ui/querydeletedialog/yes\" visibility=\"hidden\">Klik for at slette filen med navnet vist i denne dialog.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3161458\n"
+"125\n"
+"help.text"
+msgid "<ahelp hid=\"svt/ui/querydeletedialog/no\" visibility=\"hidden\">Click to cancel deletion of the file with the name shown in this dialog.</ahelp>"
+msgstr "<ahelp hid=\"svt/ui/querydeletedialog/no\" visibility=\"hidden\">Klik for at fortryde sletning af filen med navnet vist i denne dialog.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147531\n"
+"126\n"
+"help.text"
+msgid "<ahelp hid=\"svt/ui/querydeletedialog/all\" visibility=\"hidden\">Click to delete all selected files.</ahelp>"
+msgstr "<ahelp hid=\"svt/ui/querydeletedialog/all\" visibility=\"hidden\">Klik for at slette alle valgte filer.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3161656\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> that starts with the protocol name ftp, http, or https.</ahelp>"
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Indtast et filnavn eller en sti til filen. Du kan også indtaste en <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>, der starter med protokolnavnet ftp, http, eller https.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150541\n"
+"72\n"
+"help.text"
+msgid "If you want, you can use wildcards in the <emph>File name </emph>box to filter the list of files that is displayed."
+msgstr "Hvis du ønsker det, kan du bruge jokertegn i feltet <emph>Filnavn</emph> for at filtrere listen af filer, som vises."
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153779\n"
+"24\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>For example, to list all of the text files in a folder, enter the asterisk wildcard with the text file extension (*.txt), and then click<emph> Open</emph>. Use the question mark (?) wildcard to represent any character, as in (??3*.txt), which only displays text files with a '3' as the third character in the file name.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>Eksempelvis for at liste alle tekstfiler i et katalog, indtast stjerne-jokertegnet med filendelsen for tekstfiler (*.txt), og klik så på <emph>Åbn</emph>. Brug spørgsmålstegn (?) som jokertegn for at repræsentere et vilkårligt tegn, som i (??3*.txt), der kun vil vise tekstfiler med '3' som det tredje tegn i filnavnet.</defaultinline></switchinline>"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145117\n"
+"81\n"
+"help.text"
+msgid "Version"
+msgstr "Version"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149291\n"
+"82\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILEOPEN_VERSION\">If there are multiple versions of the selected file, select the version that you want to open.</ahelp> You can save and organize multiple versions of a document by choosing <emph>File - Versions</emph>. The versions of a document are opened in read-only mode."
+msgstr "<ahelp hid=\"HID_FILEOPEN_VERSION\">Hvis der er flere versioner af den valgte fil, marker versionen som du vil åbne.</ahelp> Du kan gemme og administrere flere versioner af et dokument ved at vælge <emph>Filer - Versioner</emph>. Gamle versioner af et dokument åbnes i skrivebeskyttet tilstand."
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153969\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">Select the file type that you want to open, or select <emph>All Files (*)</emph> to display a list of all of the files in the folder.</ahelp>"
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">Marker filtypen, som du vil åbne, eller vælg <emph>Alle filer (*)</emph> for at vise en liste over alle filerne i kataloget.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3154125\n"
+"27\n"
+"help.text"
+msgid "Open"
+msgstr "Åbn"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3152933\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/open\">Opens the selected document(s).</ahelp>"
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/open\">Åbner det valgte dokument / de valgte dokumenter.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3156293\n"
+"89\n"
+"help.text"
+msgid "If you opened the dialog by choosing <emph>Insert - File</emph>, the <emph>Open</emph> button is labeled <emph>Insert</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Inserts the selected file into the current document at the cursor position.</ahelp>"
+msgstr "Hvis du åbnede dialogen ved at vælge <emph>Indsæt - Fil</emph>, er knappen <emph>Åbn</emph> påtrykt <emph>Indsæt</emph>.<ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Indsætter den valgte fil i det aktuelle dokument ved markørens position.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145785\n"
+"36\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILEOPEN_READONLY\">Opens the file in read-only mode.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILEOPEN_READONLY\">Åbner filen i skrivebeskyttet tilstand.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147289\n"
+"114\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILESAVE_DOPLAY\">Plays the selected sound file. Click again to stop playing the sound file.</ahelp>"
+msgstr "<ahelp hid=\"HID_FILESAVE_DOPLAY\">Spiller den valgte lydfil. Klik igen for at stoppe afspilning af lydfilen.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149260\n"
+"53\n"
+"help.text"
+msgid "Opening Documents With Templates"
+msgstr "Åbning af dokumenter med skabeloner"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145367\n"
+"40\n"
+"help.text"
+msgid "<item type=\"productname\">%PRODUCTNAME</item> recognizes templates that are located in any folder from the following list:"
+msgstr "<item type=\"productname\">%PRODUCTNAME </item> genkender skabeloner der er gemt i et af de følgende biblioteker:"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3151292\n"
+"120\n"
+"help.text"
+msgid "the shared template folder"
+msgstr "den delte skabelonmappe"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3144442\n"
+"121\n"
+"help.text"
+msgid "the user template folder <switchinline select=\"sys\"><caseinline select=\"UNIX\">in the home directory</caseinline><defaultinline>in the Documents and Settings folder</defaultinline></switchinline>"
+msgstr "brugerskabelonkataloget <switchinline select=\"sys\"><caseinline select=\"UNIX\">i hjemmekataloget </caseinline><defaultinline>i kataloget Documents and Settings</defaultinline></switchinline>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3146905\n"
+"122\n"
+"help.text"
+msgid "all template folders as defined in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\"><emph>%PRODUCTNAME - Paths</emph></link>"
+msgstr "alle skabelonfoldere som defineret i <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010300.xhp\" name=\"Tools - Options - %PRODUCTNAME - Paths\"><emph>%PRODUCTNAME - Stier</emph></link>"
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150105\n"
+"73\n"
+"help.text"
+msgid "When you open a document that was created from a \"sticky template\" (as defined above), <item type=\"productname\">%PRODUCTNAME</item> checks to see if the template has been modified since the document was last opened. If the template was changed a dialog is shown where you can select which styles to apply to the document."
+msgstr "Når du åbner et dokument, som er oprettet ud fra en dynamisk skabelon, undersøger <item type=\"productname\">%PRODUCTNAME dialogen</item> om skabelonen er blevet ændret siden dokumentet senest blev åbnet. Hvis skabelonen er ændret, vises en dialog, hvor du kan vælge hvilke typografier, du vil anvende til dokumentet."
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153096\n"
+"74\n"
+"help.text"
+msgid "To apply the new styles from the template to the document, click <emph>Update Styles</emph>."
+msgstr "For at anvende de nye typografier fra skabelonen til dokumentet, klik på <emph>Opdater typografier</emph>."
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147581\n"
+"75\n"
+"help.text"
+msgid "To retain the styles that are currently used in the document, click <emph>Keep Old Styles</emph>."
+msgstr "For at beholde typografierne som aktuelt er brugt i dokumentet, klik på <emph>Bevar gamle typografier</emph>."
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3154988\n"
+"44\n"
+"help.text"
+msgid "If a document was created using a template that cannot be found a dialog is shown that asks you how to proceed next time the document is opened."
+msgstr "Hvis et dokument blev oprettet ved brug af en skabelon, som ikke blev fundet, vises en dialog, som spørger dig hvad der skal ske, næste gang dokumentet åbnes."
+
+msgctxt ""
+"01020000.xhp\n"
+"par_id3151351\n"
+"91\n"
+"help.text"
+msgid "To break the link between the document and the missing template, click <emph>No</emph>, otherwise <item type=\"productname\">%PRODUCTNAME</item> will look for the template the next time you open the document."
+msgstr "For at bryde kæden mellem dokumentet og den manglende skabelon, klik på <emph>Nej</emph>; ellers vil <item type=\"productname\">%PRODUCTNAME dialogen</item> lede efter skabelonen næste gang du åbner dokumentet."
+
+msgctxt ""
+"01070000.xhp\n"
+"par_id3147654\n"
+"59\n"
+"help.text"
+msgid "To save a document as a template, use the command <emph>File - Save As Template</emph>."
+msgstr "For at gemme et dokument som en skabelon, brug kommandoen <emph>Fil - Gem som skabelon</emph>."
+
+msgctxt ""
+"01100200.xhp\n"
+"hd_id3155342\n"
+"13\n"
+"help.text"
+msgid "Editing time:"
+msgstr "redigeringstid:"
+
+msgctxt ""
+"01100200.xhp\n"
+"par_id3149795\n"
+"14\n"
+"help.text"
+msgid "Displays the amount of time that the file has been open for editing since the file was created. The editing time is updated when you save the file."
+msgstr "Viser den tid, som filen har været åben for redigering, siden filen blev oprettet. Redigeringstiden opdateres, når du gemmer filen."
+
+msgctxt ""
+"01100200.xhp\n"
+"hd_id3149576\n"
+"5\n"
+"help.text"
+msgid "Template:"
+msgstr "Skabelon:"
+
+msgctxt ""
+"01100200.xhp\n"
+"par_id3147530\n"
+"6\n"
+"help.text"
+msgid "Displays the template that was used to create the file."
+msgstr "Viser skabelonen, som blev brugt til at oprette filen."
+
+msgctxt ""
+"01100400.xhp\n"
+"hd_id3156027\n"
+"5\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tables: </caseinline><caseinline select=\"CALC\">Number of Sheets: </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tabeller: </caseinline><caseinline select=\"CALC\">Antal ark: </caseinline></switchinline>"
+
+msgctxt ""
+"01100400.xhp\n"
+"hd_id3153311\n"
+"30\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of Cells: </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Antal celler:</caseinline></switchinline>"
+
+msgctxt ""
+"01170000.xhp\n"
+"par_id3151299\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Closes all $[officename] programs and prompts you to save your changes.</ahelp> <switchinline select=\"sys\"><caseinline select=\"MAC\">This command does not exist on Mac OS X systems.</caseinline><defaultinline/></switchinline>"
+msgstr "<ahelp hid=\".\">Lukker alle $[officename]-programmer og beder dig gemme dine ændringer.</ahelp> <switchinline select=\"sys\"><caseinline select=\"MAC\">Denne kommando eksisterer ikke på Mac OS X-systemer.</caseinline><defaultinline/></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3149893\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"suchenersetzentext\"><ahelp hid=\".uno:SearchDialog\">Searches for or replaces text or formats in the current document.</ahelp></variable>"
+msgstr "<variable id=\"suchenersetzentext\"><ahelp hid=\".uno:SearchDialog\">Søger efter eller erstatter tekst eller formater i det aktuelle dokument.</ahelp></variable>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3152425\n"
+"3\n"
+"help.text"
+msgid "Search For"
+msgstr "Søg efter"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3155805\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchlist\">Enter the text that you want to search for, or select a previous search from the list.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/searchlist\">Indtast den tekst, som du vil søge efter, eller vælg en tidligere søgning fra listen.</ahelp>"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3153683\n"
+"189\n"
+"help.text"
+msgid "Search options are listed in the <emph>Options </emph>area of the dialog"
+msgstr "Søgemuligheder er vist i området <emph>Valgmuligheder </emph> i dialogen"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3152551\n"
+"5\n"
+"help.text"
+msgid "Replace With"
+msgstr "Erstat med"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3150506\n"
+"190\n"
+"help.text"
+msgid "Replacement options are listed in the <emph>Options </emph>area of the dialog."
+msgstr "Muligheder for erstatning er vist i området <emph>Valgmuligheder </emph> i dialogen."
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3166410\n"
+"8\n"
+"help.text"
+msgid "Options"
+msgstr "Indstillinger"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3148538\n"
+"10\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Hele celler</caseinline><defaultinline>Kun hele ord</defaultinline></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3149579\n"
+"11\n"
+"help.text"
+msgid "<variable id=\"ganze\"><ahelp hid=\"svx/ui/findreplacedialog/wholewords\">Searches for whole words or cells that are identical to the search text.</ahelp></variable>"
+msgstr "<variable id=\"ganze\"><ahelp hid=\"svx/ui/findreplacedialog/wholewords\">Søger efter hele ord eller celler, som er identiske med søgeteksten.</ahelp></variable>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3156192\n"
+"14\n"
+"help.text"
+msgid "Backwards"
+msgstr "Baglæns"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3150771\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/backwards\">Search starts at the current cursor position and goes backwards to the beginning of the file.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/backwards\">Søg begynder ved den aktuelle markørplacering og går baglæns til begyndelsen af filen.</ahelp>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3154924\n"
+"45\n"
+"help.text"
+msgid "Match case"
+msgstr "STORE og små bogstaver"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3154760\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\">Distinguishes between uppercase and lowercase characters.</ahelp></variable>"
+msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\">Skelner mellem store og små bogstaver.</ahelp></variable>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3147264\n"
+"47\n"
+"help.text"
+msgid "Current selection only"
+msgstr "Kun det markerede"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3150866\n"
+"48\n"
+"help.text"
+msgid "<ahelp hid=\".\">Searches only the selected text or cells.</ahelp>"
+msgstr "<ahelp hid=\".\">Søger kun i de(n) markerede tekst eller celler.</ahelp>"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id8876918\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the Search for list. To specify a replacement style, select a style from the Replace with list.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Søger efter tekst som er formateret med typografien, som du angiver. Vælg dette afkrydsningsfelt og vælg så en typografi fra listen Søg efter. For at angive en erstatningstypografi skal du markere en typografi fra listen Erstat med.</ahelp>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3153524\n"
+"49\n"
+"help.text"
+msgid "Search for Styles / Including Styles"
+msgstr "Søg efter typografier / Inklusiv typografier"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3155103\n"
+"50\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/layout\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the <emph>Search for </emph>list. To specify a replacement style, select a style from the <emph>Replace with</emph> list.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/layout\">Søger efter typografien, som du angiver. Marker dette afkrydsningsfelt, og vælg så en typografi fra listen <emph>Søg efter</emph>. For at angive en erstatningstypografi, vælg en typografi fra listen <emph>Erstat med</emph>.</ahelp>"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_idN109CC\n"
+"help.text"
+msgid "After you select the attributes that you want to search for, the <emph>Search for Styles</emph> box in the <emph>Options </emph>area of the %PRODUCTNAME Writer <emph>Find & Replace </emph>dialog changes to <emph>Including Styles</emph>."
+msgstr "Efter at du vælger attributterne, som du vil søge efter, ændres feltet <emph>Søg efter typografier</emph> i området <emph>Indstillinger</emph> af %PRODUCTNAME Writer-dialogen <emph>Søg og erstat </emph> til <emph>Inklusiv typografier</emph>."
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3163821\n"
+"68\n"
+"help.text"
+msgid "Find Next"
+msgstr "Find næste"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3147436\n"
+"69\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/search\">Finds and selects the next occurrence of the text or format that you searching for in the document.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/search\">Finder og vælger den næste forekomst af teksten eller formatet, som du søger efter i dokumentet.</ahelp>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3147348\n"
+"192\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100200.xhp\" name=\"Attribute\">Attribute</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100200.xhp\" name=\"Attribute\">Attributter</link></caseinline></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3155854\n"
+"193\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100300.xhp\" name=\"Format\">Format</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100300.xhp\" name=\"Format\">Format</link></caseinline></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3154188\n"
+"135\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">No Format</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Intet format</caseinline></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3159155\n"
+"136\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Click in the <emph>Search for </emph>or the <emph>Replace with </emph>box, and then click this button to remove the search criteria based on formats.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Klik i feltet <emph>Søg efter</emph> eller <emph>Erstat med</emph>, og klik så på denne knap for at fjerne søgekriterier baseret på formater.</caseinline></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id1334269\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click in the Search for or the Replace with box, and then click this button to remove the search criteria based on formats.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Klik i feltet Søg eller Erstat med og klik så på denne knap for at fjerne søgekriteriet baseret på formater.</ahelp>"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3150337\n"
+"137\n"
+"help.text"
+msgid "The search criteria for formatting attributes are displayed under the <emph>Search for </emph>or the <emph>Replace with </emph>box."
+msgstr "Søgekriterier for formateringsattributter vises under feltet <emph>Søg efter</emph> eller <emph>Erstat med</emph>."
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3150113\n"
+"139\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows more or fewer search options. Click this button again to hide the extended search options.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Viser flere eller færre søgeindstillinger. Klik på denne knap igen for at skjule de udvidede søgeindstillinger.</ahelp>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3146925\n"
+"142\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formler</caseinline></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3149400\n"
+"144\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Values</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Værdier</caseinline></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3145650\n"
+"146\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Kommentarer </caseinline></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3153004\n"
+"148\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search direction</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Søgeretning</caseinline></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3155064\n"
+"150\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">By Rows</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Rækker</caseinline></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3156277\n"
+"152\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">By Columns</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Kolonner</caseinline></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3145207\n"
+"153\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches from top to bottom through the columns.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Søger fra top til bund gennem kolonnerne.</caseinline></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3153764\n"
+"194\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Extras</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Ekstra</caseinline></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3152960\n"
+"196\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search in all sheets</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Søg i alle ark</caseinline></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"par_id3145619\n"
+"197\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches through all of the sheets in the current spreadsheet file.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Søger gennem alle arkene i den aktuelle regnearksfil.</caseinline></switchinline>"
+
+msgctxt ""
+"02100001.xhp\n"
+"par_id3153700\n"
+"167\n"
+"help.text"
+msgid "Represents a line break that was inserted with the Shift+Enter key combination. To change a line break into a paragraph break, enter <emph>\\n</emph> in the <emph>Search for</emph> and <emph>Replace with</emph> boxes, and then perform a search and replace."
+msgstr "Repræsenterer et linjeskift som blev indsat med tastekombinationen Skift+Enter. For at ændre et linjeskift til et afsnitsskift, skal du skrive <emph>\\n</emph> i felterne <emph>Søg efter</emph> og <emph>Erstat med</emph>, og så udføre en søg og erstat."
+
+msgctxt ""
+"02100001.xhp\n"
+"par_id9262672\n"
+"help.text"
+msgid "\\n in the <emph>Search for</emph> text box stands for a line break that was inserted with the Shift+Enter key combination."
+msgstr "\\n i tekstfeltet <emph>Søg efter</emph> står for et linjeskift, som blev indsat med tastekombinationen Skift+Enter."
+
+msgctxt ""
+"02100001.xhp\n"
+"par_id2366100\n"
+"help.text"
+msgid "\\n in the <emph>Replace with</emph> text box stands for a paragraph break that can be entered with the Enter or Return key."
+msgstr "\\n i tekstfeltet <emph>Erstat med</emph> står for et afsnitsskift, som kan indtastes med Enter- eller Retur-tasten."
+
+msgctxt ""
+"02100001.xhp\n"
+"par_id3157809\n"
+"30\n"
+"help.text"
+msgid "Represents a tab. You can also use this expression in the <emph>Replace with</emph> box."
+msgstr "Repræsenterer en tabulator. Du kan også bruge dette udtryk i feltet <emph>Erstat med</emph>."
+
+msgctxt ""
+"02100001.xhp\n"
+"par_id3153961\n"
+"44\n"
+"help.text"
+msgid "Adds the string that was found by the search criteria in the <emph>Search for</emph> box to the term in the <emph>Replace with</emph> box when you make a replacement."
+msgstr "Føjer tekststrengen, som blev fundet med søgekriteriet i feltet <emph>Søg efter</emph>, til udtrykket i feltet <emph>Erstat med</emph>, når du foretager en erstatning."
+
+msgctxt ""
+"02100001.xhp\n"
+"par_id3149650\n"
+"201\n"
+"help.text"
+msgid "For example, if you enter \"window\" in the <emph>Search for</emph> box and \"&frame\" in the <emph>Replace with</emph> box, the word \"window\" is replaced with \"windowframe\"."
+msgstr "Hvis du for eksempel indtaster \"måge\" i feltet <emph>Søg efter</emph> og \"hav&\" i feltet <emph>Erstat med</emph>, vil ordet \"måge\" blive erstattet med \"havmåge\"."
+
+msgctxt ""
+"02100001.xhp\n"
+"par_id3150543\n"
+"206\n"
+"help.text"
+msgid "You can also enter an \"&\" in the <emph>Replace with</emph> box to modify the <emph>Attributes</emph> or the <emph>Format</emph> of the string found by the search criteria."
+msgstr "Du kan også indtaste en \"&\" i feltet <emph>Erstat med</emph> for at ændre <emph>Attributterne</emph> eller <emph>Formatet</emph> af tekststrengen, som blev fundet med søgekriteriet."
+
+msgctxt ""
+"02100001.xhp\n"
+"par_id2701803\n"
+"help.text"
+msgid "In the <emph>Search for</emph> box:"
+msgstr "I feltet <emph>Søg efter</emph>:"
+
+msgctxt ""
+"02100001.xhp\n"
+"par_id9200109\n"
+"help.text"
+msgid "In the <emph>Replace with</emph> box:"
+msgstr "I feltet <emph>Erstat med</emph>:"
+
+msgctxt ""
+"02100100.xhp\n"
+"par_id3146856\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/similarity\">Find terms that are similar to the <emph>Search for</emph> text. Select this checkbox, and then click the <emph>Similarities</emph> button to define the similarity options.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/findreplacedialog/similarity\">Søg termer, som ligner teksten i <emph>Søg efter</emph>. Marker dette afkrydsningsfelt og klik så på knappen <emph>Ligheder</emph> for at definere indstillinger for ensartetheden.</ahelp>"
+
+msgctxt ""
+"02100100.xhp\n"
+"par_id3149551\n"
+"66\n"
+"help.text"
+msgid "For example, a similarity search can find words that differ from the <emph>Search for </emph>text by two characters."
+msgstr "For eksempel kan en søgning på lignende finde ord, som adskiller sig fra teksten <emph>Søg efter</emph> med to tegn."
+
+msgctxt ""
+"02100300.xhp\n"
+"par_id3145383\n"
+"192\n"
+"help.text"
+msgid "The search criteria for attributes are listed below the <emph>Search for</emph> box."
+msgstr "Søgekriterier for attributter er listet under feltet <emph>Søg efter</emph>."
+
+msgctxt ""
+"02100300.xhp\n"
+"par_id3150466\n"
+"132\n"
+"help.text"
+msgid "You do not need to specify a search text in the <emph>Search for</emph> box when you search and replace formatting."
+msgstr "Du behøver ikke at angive et søgeord i feltet <emph>Søg efter</emph>, når du søger og erstatter formatering."
+
+msgctxt ""
+"02100300.xhp\n"
+"par_id3156152\n"
+"133\n"
+"help.text"
+msgid "To define a replacement format, click in the <emph>Replace with</emph> box, and then click the <emph>Format </emph>button."
+msgstr "For at definere et erstatningsformat skal du klikke i feltet <emph>Erstat med</emph> og så klikke på knappen <emph>Formater</emph>."
+
+msgctxt ""
+"02110000.xhp\n"
+"par_id3149666\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\"HID_NAVI_TBX21\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
+msgstr "<ahelp hid=\"HID_NAVI_TBX21\">Gemmer en kopi af indholdet af de sammenkædede filer i hoveddokumentet. Dette sikrer, at det aktuelle indhold er tilgængeligt, når der ikke er adgang til de sammenkædede filer.</ahelp>"
+
+msgctxt ""
+"02110000.xhp\n"
+"par_id3155852\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"HID_NAVI_TBX23\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
+msgstr "<ahelp hid=\"HID_NAVI_TBX23\">Flytter markeringen en placering ned i Navigatorlisten.</ahelp> Du kan også flytte elementer ved at trække og slippe dem på listen. Hvis du flytter en tekstsektion oven på en anden tekst sektion, bliver de to sektioner flettet sammen."
+
+msgctxt ""
+"02110000.xhp\n"
+"par_id3146927\n"
+"23\n"
+"help.text"
+msgid "<ahelp hid=\"HID_NAVI_TBX22\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
+msgstr "<ahelp hid=\"HID_NAVI_TBX22\">Flytter markeringen en placering op på navigatorlisten.</ahelp> Du kan også flytte elementer ved at trække og slippe dem på listen. Hvis du flytter en tekstsektion oven på en anden tekstsektion, bliver de to sektioner flettet sammen."
+
+msgctxt ""
+"02230100.xhp\n"
+"hd_id3150758\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02230100.xhp\" name=\"Record\">Record</link>"
+msgstr "<link href=\"text/shared/01/02230100.xhp\" name=\"Registrer\">Registrer</link>"
+
+msgctxt ""
+"02230100.xhp\n"
+"par_id3155934\n"
+"26\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you choose <emph>Record - Show</emph>, the lines containing changed text passages are indicated by a vertical line in the left page margin. You can set the properties of the vertical line and the other markup elements by choosing <link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Hvis du vælger <emph>Datapost - Vis</emph>, vises linjerne som indeholder ændrede tekstpassager med en lodret linje i venstre sidemargen. Du kan angive egenskaberne for den lodrette linje og endnu et opmærkningselementer ved at vælge <link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME Writer - Ændringer</emph></link> i dialogfeltet Indstillinger.</caseinline></switchinline>"
+
+msgctxt ""
+"02230402.xhp\n"
+"par_id3151210\n"
+"help.text"
+msgid "<image id=\"img_id3154138\" src=\"starmath/res/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154138\" src=\"starmath/res/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Ikon</alt></image>"
+
+msgctxt ""
+"04150200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Plug-In"
+msgstr "Indsæt plugin"
+
+msgctxt ""
+"04150200.xhp\n"
+"bm_id3149962\n"
+"help.text"
+msgid "<bookmark_value>plug-ins; inserting</bookmark_value><bookmark_value>inserting; plug-ins</bookmark_value>"
+msgstr "<bookmark_value>plugins; indsætte</bookmark_value><bookmark_value>indsætte; plugins</bookmark_value>"
+
+msgctxt ""
+"04150200.xhp\n"
+"hd_id3149962\n"
+"1\n"
+"help.text"
+msgid "Insert Plug-In"
+msgstr "Indsæt plugin"
+
+msgctxt ""
+"04150200.xhp\n"
+"par_id3155599\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"plugin\"><ahelp hid=\".uno:InsertPlugin\">Inserts a plug-in into the current document.</ahelp> </variable> A <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-in\">plug-in</link> is a software component that extends the capabilities of a web browser."
+msgstr "<variable id=\"plugin\"><ahelp hid=\".uno:InsertPlugin\">Indsætter et plugin i det aktuelle dokument.</ahelp></variable> Et <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-in\">plugin</link> er en programkomponent, som udvider mulighederne for en webbrowser."
+
+msgctxt ""
+"04150200.xhp\n"
+"hd_id3148585\n"
+"3\n"
+"help.text"
+msgid "File/URL"
+msgstr "Fil/URL"
+
+msgctxt ""
+"04150200.xhp\n"
+"par_id3147399\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/insertplugin/urled\">Enter the URL for the plug-in or click <emph>Browse</emph>, and then locate the plug-in that you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/insertplugin/urled\">>Indtast plugin'ets URLeller klik på <emph>Gennemse</emph> og find det plugin, du vil indsætte.</ahelp>"
+
+msgctxt ""
+"04150200.xhp\n"
+"hd_id3155552\n"
+"5\n"
+"help.text"
+msgid "Browse"
+msgstr "Gennemse"
+
+msgctxt ""
+"04150200.xhp\n"
+"par_id3143267\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/insertplugin/urlbtn\">Locate the plug-in that you want to insert, and then click <emph>Open</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/insertplugin/urlbtn\">Find det plug-in, du vil indsætte og klik på <emph>Åbn</emph>.</ahelp>"
+
+msgctxt ""
+"04150200.xhp\n"
+"hd_id3149750\n"
+"7\n"
+"help.text"
+msgid "Options"
+msgstr "Indstillinger"
+
+msgctxt ""
+"04150200.xhp\n"
+"par_id3150774\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/insertplugin/pluginoptions\">Enter the parameters for the plug-in using the format <emph>parameter1=\"some text\"</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/insertplugin/pluginoptions\">Indtast udvidelsesmodulets parametre med formatet <emph>parameter1=\"noget tekst\"</emph>.</ahelp>"
+
+msgctxt ""
+"04150400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Audio"
+msgstr "Indsæt lyd"
+
+msgctxt ""
+"04150400.xhp\n"
+"hd_id3152414\n"
+"1\n"
+"help.text"
+msgid "Insert Audio"
+msgstr "Indsæt lyd"
+
+msgctxt ""
+"04150400.xhp\n"
+"par_id3154840\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"klang\"><ahelp hid=\".uno:InsertSound\">Inserts an audio file into the current document.</ahelp></variable>"
+msgstr "<variable id=\"klang\"><ahelp hid=\".uno:InsertSound\">Indsætter en lydfil i det aktuelle dokument.</ahelp></variable>"
+
+msgctxt ""
+"04150500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert video"
+msgstr "Indsæt video"
+
+msgctxt ""
+"04150500.xhp\n"
+"hd_id3150999\n"
+"1\n"
+"help.text"
+msgid "Insert video"
+msgstr "Indsæt video"
+
+msgctxt ""
+"04150500.xhp\n"
+"par_id3152895\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"video\"><ahelp hid=\".uno:InsertVideo\">Inserts a video file into the current document.</ahelp></variable>"
+msgstr "<variable id=\"video\"><ahelp hid=\".uno:InsertVideo\">Indsætter en videofil i det aktuelle dokument.</ahelp></variable>"
+
+msgctxt ""
+"05020300.xhp\n"
+"par_id3159156\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/numberingformatpage/formated\">Displays the number format code for the selected format. You can also enter a custom format.</ahelp> The following options are only available for user-defined number formats."
+msgstr "<ahelp hid=\"cui/ui/numberingformatpage/formated\">Viser talformatkoden for det valgte format. Du kan også angive et tilpasset format.</ahelp> De følgende muligheder kan kun benyttes ved tilpassede talformater."
+
+msgctxt ""
+"05020300.xhp\n"
+"par_id3145364\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Number format codes</link>"
+msgstr "<link href=\"text/shared/01/05020301.xhp\" name=\"Talformatkoder\">Talformatkoder</link>"
+
+msgctxt ""
+"05020300.xhp\n"
+"par_id3153095\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">Custom format codes</link>"
+msgstr "<link href=\"text/shared/01/05020301.xhp\" name=\"Brugerdefinerede formatkoder\">Brugerdefinerede formatkoder</link>"
+
+msgctxt ""
+"05020301.xhp\n"
+"bm_id3153514\n"
+"help.text"
+msgid "<bookmark_value>format codes; numbers</bookmark_value><bookmark_value>conditions; in number formats</bookmark_value><bookmark_value>number formats; codes</bookmark_value><bookmark_value>currency formats</bookmark_value><bookmark_value>formats;of currencies/date/time</bookmark_value><bookmark_value>numbers; date, time and currency formats</bookmark_value><bookmark_value>Euro; currency formats</bookmark_value><bookmark_value>date formats</bookmark_value><bookmark_value>times, formats</bookmark_value>"
+msgstr "<bookmark_value>formatkoder; tal</bookmark_value><bookmark_value>betingelser; i talformater</bookmark_value><bookmark_value>talformater; koder</bookmark_value><bookmark_value>valutaformater</bookmark_value><bookmark_value>formater;for valutaer/dato/tid</bookmark_value><bookmark_value>tal; dato- tids- og valutaformater</bookmark_value><bookmark_value>Euro; valutaformater</bookmark_value><bookmark_value>datoformater</bookmark_value><bookmark_value>tid, formater</bookmark_value>"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3153514\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"zahlenformatcodes\"><link href=\"text/shared/01/05020301.xhp\" name=\"Number Format Codes\">Number Format Codes</link></variable>"
+msgstr "<variable id=\"zahlenformatcodes\"><link href=\"text/shared/01/05020301.xhp\" name=\"Talformatkoder\">Talformatkoder</link></variable>"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150467\n"
+"88\n"
+"help.text"
+msgid "Number format codes can consist of up to three sections separated by a semicolon (;)."
+msgstr "Talformatkoder kan bestå af op til tre sektioner adskilt af et semikolon (;)."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150146\n"
+"108\n"
+"help.text"
+msgid "In a number format code with two sections, the first section applies to positive values and zero, and the second section applies to negative values."
+msgstr "I en talformatkode med to sektioner vedrører den første sektion de positive værdier og nul, og den anden sektion vedrører de negative værdier."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3158442\n"
+"109\n"
+"help.text"
+msgid "In a number format code with three sections, the first section applies to positive values, the second section to negative values, and the third section to the value zero."
+msgstr "I en talformatkode med tre sektioner vedrører den første sektion de positive værdier, den anden sektion de negative værdier og den tredje sektion værdien nul."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155069\n"
+"110\n"
+"help.text"
+msgid "You can also assign conditions to the three sections, so that the format is only applied if a condition is met."
+msgstr "Du kan også tildele betingelser for de tre sektioner, så formatet kun anvendes, hvis en betingelse er opfyldt."
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3151262\n"
+"229\n"
+"help.text"
+msgid "Decimal Places and Significant Digits"
+msgstr "Decimalplacering og signifikante cifre"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153624\n"
+"3\n"
+"help.text"
+msgid "Use zero (0), the number sign (#) or the question mark (?) as placeholders in your number format code to represent numbers. The (#) only displays significant digits, while the (0) displays zeroes if there are fewer digits in the number than in the number format. The (?) works as the (#) but adds a space character to keep decimal alignment if there is a hidden non-significant zero."
+msgstr "Brug nul (0), nummertegnet (#) eller spørgsmålstegnet (?) som pladsholdere i din talformatkode til at repræsentere cifre. Tegnet (#) viser kun signifikante cifre, mens tegnet (0) viser nuller, hvis der er færre cifre i tallet end i talformatet. Tegnet (?) virker som tegnet (#), men tilføjer et mellemrumstegn for at holde decimaljusterinen, hvis der er et skjult ikke-betydende nul."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153323\n"
+"107\n"
+"help.text"
+msgid "Use question marks (?) to represent the number of digits to include in the numerator and the denominator of a fraction. Fractions that do not fit the pattern that you define are displayed as floating point numbers."
+msgstr "Brug spørgsmålstegn (?) til at angive antallet af cifre, der skal medtages i tælleren og nævneren for en brøk. Brøker, som ikke passer til det mønster, du angiver, bliver vist som kommatal."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148440\n"
+"4\n"
+"help.text"
+msgid "If a number contains more digits to the right of the decimal delimiter than there are placeholders in the format, the number is rounded accordingly. If a number contains more digits to the left of the decimal delimiter than there are placeholders in the format, the entire number is displayed. Use the following list as a guide for using placeholders when you create a number format code:"
+msgstr "Hvis et tal indeholder flere cifre til højre for decimaltegnet end der er pladsholdere i formatet, afrundes tallet. Hvis et tal indeholder flere cifre til venstre for decimaltegnet end der er pladsholdere i formatet, vises hele tallet. Brug følgende liste som en vejledning til brug af pladsholdere, når du opretter en talformatkode:"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150902\n"
+"86\n"
+"help.text"
+msgid "Placeholders"
+msgstr "Pladsholdere"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3157896\n"
+"87\n"
+"help.text"
+msgid "Explanation"
+msgstr "Forklaring"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152801\n"
+"5\n"
+"help.text"
+msgid "#"
+msgstr "#"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145090\n"
+"6\n"
+"help.text"
+msgid "Does not display extra zeros."
+msgstr "Viser ikke ekstra nuller."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152802\n"
+"239\n"
+"help.text"
+msgid "?"
+msgstr "?"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145091\n"
+"240\n"
+"help.text"
+msgid "Displays space characters instead of extra zeros."
+msgstr "Viser mellemrumstegn i stedet for ekstra nuller."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147088\n"
+"7\n"
+"help.text"
+msgid "0 (Zero)"
+msgstr "0 (nul)"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150774\n"
+"8\n"
+"help.text"
+msgid "Displays extra zeros if the number has less places than zeros in the format."
+msgstr "Viser ekstra nuller, hvis tallet har færre pladser end nuller i formatet."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149182\n"
+"9\n"
+"help.text"
+msgid "Number Format"
+msgstr "Talformat"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154749\n"
+"10\n"
+"help.text"
+msgid "Format Code"
+msgstr "Formatkode"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148538\n"
+"11\n"
+"help.text"
+msgid "3456.78 as 3456.8"
+msgstr "3456,78 som 3456,8"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150355\n"
+"12\n"
+"help.text"
+msgid "####.#"
+msgstr "####,#"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154142\n"
+"13\n"
+"help.text"
+msgid "9.9 as 9.900"
+msgstr "9,9 som 9,900"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3159256\n"
+"14\n"
+"help.text"
+msgid "#.000"
+msgstr "#,000"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147077\n"
+"15\n"
+"help.text"
+msgid "13 as 13.0 and 1234.567 as 1234.57"
+msgstr "13 som 13,0 og 1234,567 som 1234,57"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155388\n"
+"16\n"
+"help.text"
+msgid "#.0#"
+msgstr "#,0#"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149578\n"
+"17\n"
+"help.text"
+msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
+msgstr "5,75 som 5 3/4 og 6,3 som 6 3/10"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145315\n"
+"18\n"
+"help.text"
+msgid "# ???/???"
+msgstr "# ???/???"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156152\n"
+"19\n"
+"help.text"
+msgid ".5 as 0.5"
+msgstr ",5 som 0,5"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149762\n"
+"20\n"
+"help.text"
+msgid "0.##"
+msgstr "0,##"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156153\n"
+"241\n"
+"help.text"
+msgid ".5 as 0.5   (with two extra spaces at the end)"
+msgstr ".5 som 0.5   (med to ekstra mellemrum til slut)"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149763\n"
+"242\n"
+"help.text"
+msgid "0.???"
+msgstr "0.???"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3149276\n"
+"230\n"
+"help.text"
+msgid "Thousands Separator"
+msgstr "Tusindtalsskilletegn"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154380\n"
+"21\n"
+"help.text"
+msgid "Depending on your language setting, you can use a comma, a period or a blank as a thousands separator. You can also use the separator to reduce the size of the number that is displayed by a multiple of 1000."
+msgstr "Afhængig af din sprogindstilling, kan du bruge et komma eller punktum som et tusindtalsskilletegn. Du kan også bruge skilletegnet til at formindske det tal, som er vist med multipla af 1000."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154905\n"
+"22\n"
+"help.text"
+msgid "Number Format"
+msgstr "Talformat"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150822\n"
+"23\n"
+"help.text"
+msgid "Format Code"
+msgstr "Formatkode"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147264\n"
+"24\n"
+"help.text"
+msgid "15000 as 15,000"
+msgstr "15000 som 15.000"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151223\n"
+"25\n"
+"help.text"
+msgid "#,###"
+msgstr "#.###"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154935\n"
+"26\n"
+"help.text"
+msgid "16000 as 16"
+msgstr "16000 som 16"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153961\n"
+"27\n"
+"help.text"
+msgid "#,"
+msgstr "#."
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3154836\n"
+"79\n"
+"help.text"
+msgid "Including Text in Number Format Codes"
+msgstr "Inkluder tekst i talformatkoder"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3150398\n"
+"231\n"
+"help.text"
+msgid "Text and Numbers"
+msgstr "Tekst og tal"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154224\n"
+"80\n"
+"help.text"
+msgid "To include text in a number format that is applied to a cell containing numbers, place a double quotation mark (\") in front of and behind the text, or a backslash (\\) before a single character. For example, enter <emph>#.# \"meters\"</emph> to display \"3.5 meters\" or <emph>#.# \\m</emph> to display \"3.5 m\"."
+msgstr "For at inkludere tekst i et talformat, som er anvendt på en celle indeholdende tal, placer et dobbelt anførselstegn (\") foran og bag teksten, eller en bagstreg (\\) før et enkelt tegn. Eksempelvis indtast <emph>#,# \"meter\"</emph> for at vise \"3,5 meter\" eller <emph>#,# \\m</emph> for at vise \"3,5 m\"."
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3148979\n"
+"232\n"
+"help.text"
+msgid "Text and Text"
+msgstr "Tekst og tekst"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153338\n"
+"82\n"
+"help.text"
+msgid "To include text in a number format that is applied to a cell that might contain text, enclose the text by double quotation marks (\" \"), and then add an at sign (@). For example, enter <emph>\"Total for \"@</emph> to display \"Total for December\"."
+msgstr "For at indføje tekst i talformat, som er anvendt på en celle, som kan indeholde tekst, omgiv teksten med dobbelte anførselstegn (\" \"), og tilføj så et snabel-a (@). Eksempelvis indtast <emph>\"Total for \"@</emph> for at vise \"Total for december\"."
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3154330\n"
+"233\n"
+"help.text"
+msgid "Spaces"
+msgstr "Mellemrum"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156294\n"
+"81\n"
+"help.text"
+msgid "To use a character to define the width of a space in a number format, type an underscore ( _ ) followed by the character. The width of the space varies according to the width of the character that you choose. For example, <emph>_M</emph> creates a wider space than <emph>_i</emph>."
+msgstr "For at bruge et tegn til at angive bredden af et mellemrum i et talformat, så tast en understreg ( _ ) efterfulgt af tegnet. Afstandsbredden varierer i henhold til bredden af det tegn, du vælger. Eksempelvis vil <emph>_M</emph> opretter et bredere mellemrum end <emph>_i</emph>."
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3155994\n"
+"234\n"
+"help.text"
+msgid "Color"
+msgstr "Farve"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156423\n"
+"28\n"
+"help.text"
+msgid "To set the color of a section of a number format code, insert one of the following color names in square brackets [ ]:"
+msgstr "For at sætte farven på en sektion af en talformatkode, indsæt da en af de følgende farvenavne i kantede parenteser [ ]:"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154630\n"
+"29\n"
+"help.text"
+msgid "CYAN"
+msgstr "CYAN for tyrkis"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148676\n"
+"30\n"
+"help.text"
+msgid "GREEN"
+msgstr "GREEN for grøn"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154123\n"
+"31\n"
+"help.text"
+msgid "BLACK"
+msgstr "BLACK for sort"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149167\n"
+"32\n"
+"help.text"
+msgid "BLUE"
+msgstr "BLUE for blå"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3158407\n"
+"33\n"
+"help.text"
+msgid "MAGENTA"
+msgstr "MAGENTA for magentarød"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149560\n"
+"34\n"
+"help.text"
+msgid "RED"
+msgstr "RED for rød"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147502\n"
+"35\n"
+"help.text"
+msgid "WHITE"
+msgstr "WHITE for hvid"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153368\n"
+"36\n"
+"help.text"
+msgid "YELLOW"
+msgstr "YELLOW for gul"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3147435\n"
+"111\n"
+"help.text"
+msgid "Conditions"
+msgstr "Betingelser"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3148575\n"
+"235\n"
+"help.text"
+msgid "Conditional Brackets"
+msgstr "Betingede parenteser"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155312\n"
+"112\n"
+"help.text"
+msgid "You can define a number format so that it only applies when the condition that you specify is met. Conditions are enclosed by square brackets [ ]."
+msgstr "Du kan angive et talformat, så den kun anvendes, når den angivne betingelse er opfyldt. Betingelser er omgivet af kantede parenteser [ ]."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3159179\n"
+"115\n"
+"help.text"
+msgid "You can use any combination of numbers and the <, <=, >, >=, = and <> operators."
+msgstr "Du kan bruge enhver kombination af tal og operatorerne <, <=, >, >=, = og <>."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3159196\n"
+"236\n"
+"help.text"
+msgid "For example, if you want to apply different colors to different temperature data, enter:"
+msgstr "Eksempelvis hvis du vil anvende forskellige farver til forskellige temperaturer, indtast da:"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150872\n"
+"113\n"
+"help.text"
+msgid "[BLUE][<0]#,0 \"°C\";[RED][>30]#,0 \"°C\";[BLACK]#,0 \"°C\""
+msgstr "[BLUE][<0]#,0 \"°C\";[RED][>30]#,0 \"°C\";[BLACK]#,0 \"°C\""
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3157870\n"
+"114\n"
+"help.text"
+msgid "All temperatures below zero are blue, temperatures between 0 and 30 °C are black, and temperatures higher than 30 °C are red."
+msgstr "Alle temperaturer under 0°C er blå, temperaturer mellem 0°C og 30°C er sorte, og temperaturer højere end 30°C er røde."
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3154833\n"
+"90\n"
+"help.text"
+msgid "Positive and Negative Numbers"
+msgstr "Positive og negative tal"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147295\n"
+"91\n"
+"help.text"
+msgid "To define a number format that adds a different text to a number depending on if the number is positive, negative, or equal to zero, use the following format:"
+msgstr "For at definere et talformat som tilføjer en forskellig tekst til et tal, afhængigt af om tallet er positivt, negativt eller lig med nul, skal du bruge følgende formater:"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153727\n"
+"92\n"
+"help.text"
+msgid "\"plus\" 0;\"minus\" 0;\"null\" 0"
+msgstr "\"plus\" 0;\"minus\" 0;\"null\" 0"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3149260\n"
+"83\n"
+"help.text"
+msgid "Percentages and Scientific Notation"
+msgstr "Procenter og Videnskabelig notation"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3147218\n"
+"237\n"
+"help.text"
+msgid "Percentages"
+msgstr "Procenter"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151168\n"
+"84\n"
+"help.text"
+msgid "To display numbers as percentages, add the percent sign (%) to the number format."
+msgstr "Tilføj procenttegnet (%) til talformatet for at vise numre som procenter."
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3156005\n"
+"89\n"
+"help.text"
+msgid "Scientific Notation"
+msgstr "Videnskabelig notation"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146923\n"
+"85\n"
+"help.text"
+msgid "Scientific notation lets you write very large numbers or very small fractions in a compact form. For example, in scientific notation, 650000 is written as 6.5 x 10^5, and 0.000065 as 6.5 x 10^-5. In <item type=\"productname\">%PRODUCTNAME</item>, these numbers are written as 6.5E+5 and 6.5E-5, respectively. To create a number format that displays numbers using scientific notation, enter a # or 0, and then one of the following codes E-, E+, e- or e+. If sign is omitted after E or e, it won't appear for positive value of exponent. To get engineering notation, enter 3 digits (0 or #) in the integer part.For instance: ###.##E+00"
+msgstr "Videnskabelig notation lader dig skrive meget store eller meget små tal i et kompakt format. I videnskabelig notation kan 650000 eksempelvis skrives som 6,5 X 10^5, og 0,000065 som 6,5 X 10^-5. I <item type=\"productname\">%PRODUCTNAME</item> skrives disse tal henholdsvis som 6,5E+5 og 6,5E-5. For at oprette et talformat som viser tal ved brug af videnskabelig notation, skal du indtaste et #-tegn eller 0 og derefter en af de følgende koder E-, E+, e- eller e+. Hvis tegnet udelades efter E eller e, vil det ikke blive vist for positive værdier af eksponenten. For at opnår ingeniørnotation, indtast 3 cifre (0 eller #) i heltalsdelen. For eksempel: ###.##E+00"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3159080\n"
+"98\n"
+"help.text"
+msgid "Number Format Codes of Currency Formats"
+msgstr "Talformatkoder på valutaformater"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147318\n"
+"99\n"
+"help.text"
+msgid "The default currency format for the cells in your spreadsheet is determined by the regional setting of your operating system. If you want, you can apply a custom currency symbol to a cell. For example, enter #,##0.00 € to display 4.50 € (Euros)."
+msgstr "Standardvalutaformatet for cellerne i dit regneark bestemmes af regionsindstillingen for dit operativsystem. Hvis du vil, kan du anvende et brugerdefineret valutasymbol på en celle. Eksempelvis indtast #,##0.00 € for at vise 4.50 € (Euro)."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150032\n"
+"167\n"
+"help.text"
+msgid "You can also specify the locale setting for the currency by entering the locale code for the country after the symbol. For example, [$€-407] represents Euros in Germany. To view the locale code for a country, select the country in the <emph>Language</emph> list on the <emph>Numbers</emph> tab of the <emph>Format Cells</emph> dialog."
+msgstr "Du kan også angive lokalitetsindstillingen for valutaenheden ved at indtaste lokalitetskoden for landet efter symbolet. For eksempel, [$€-407] repræsenterer Euro i Tyskland. For at se lokalitetskoden for en land, marker landet i listen <emph>Sprog</emph> under fanebladet <emph>Tal</emph> i dialogen <emph>Formater celler</emph>."
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3157309\n"
+"238\n"
+"help.text"
+msgid "Date and Time Formats"
+msgstr "Dato- og klokkeslætformater"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3153740\n"
+"37\n"
+"help.text"
+msgid "Date Formats"
+msgstr "Datoformater"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152791\n"
+"38\n"
+"help.text"
+msgid "To display days, months and years, use the following number format codes."
+msgstr "For at vise dage, måneder og år, brug følgende talformatkoder."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152376\n"
+"39\n"
+"help.text"
+msgid "Format"
+msgstr "Format"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3159130\n"
+"40\n"
+"help.text"
+msgid "Format Code"
+msgstr "Formatkode"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147380\n"
+"41\n"
+"help.text"
+msgid "Month as 3."
+msgstr "Måned som 3."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145594\n"
+"43\n"
+"help.text"
+msgid "Month as 03."
+msgstr "Måned som 03."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153052\n"
+"44\n"
+"help.text"
+msgid "MM"
+msgstr "MM"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145728\n"
+"45\n"
+"help.text"
+msgid "Month as Jan-Dec"
+msgstr "Måned som jan-dec"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151073\n"
+"46\n"
+"help.text"
+msgid "MMM"
+msgstr "MMM"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149909\n"
+"47\n"
+"help.text"
+msgid "Month as January-December"
+msgstr "Måned som januar-december"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155318\n"
+"48\n"
+"help.text"
+msgid "MMMM"
+msgstr "MMMM"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151218\n"
+"116\n"
+"help.text"
+msgid "First letter of Name of Month"
+msgstr "Først bogstav i månedsnavn"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150420\n"
+"117\n"
+"help.text"
+msgid "MMMMM"
+msgstr "MMMMM"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154501\n"
+"49\n"
+"help.text"
+msgid "Day as 2"
+msgstr "Dag som 2"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146969\n"
+"51\n"
+"help.text"
+msgid "Day as 02"
+msgstr "Dag som 02"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156358\n"
+"52\n"
+"help.text"
+msgid "DD"
+msgstr "DD"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148495\n"
+"53\n"
+"help.text"
+msgid "Day as Sun-Sat"
+msgstr "Dag som man-søn"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3161665\n"
+"54\n"
+"help.text"
+msgid "NN or DDD"
+msgstr "NN eller DDD"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154272\n"
+"118\n"
+"help.text"
+msgid "Day as Sunday to Saturday"
+msgstr "Dag som mandag til søndag"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145164\n"
+"119\n"
+"help.text"
+msgid "NNN or DDDD"
+msgstr "NNN eller DDDD"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146791\n"
+"55\n"
+"help.text"
+msgid "Day followed by comma, as in \"Sunday,\""
+msgstr "Dag fulgt af komma, som i \"mandag,\""
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146081\n"
+"56\n"
+"help.text"
+msgid "NNNN"
+msgstr "NNNN"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156275\n"
+"57\n"
+"help.text"
+msgid "Year as 00-99"
+msgstr "År som 00-99"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3143236\n"
+"58\n"
+"help.text"
+msgid "YY"
+msgstr "YY"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148408\n"
+"59\n"
+"help.text"
+msgid "Year as 1900-2078"
+msgstr "År som 1900-2078"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151358\n"
+"60\n"
+"help.text"
+msgid "YYYY"
+msgstr "YYYY"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153355\n"
+"96\n"
+"help.text"
+msgid "Calendar week"
+msgstr "Ugenummer"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150744\n"
+"97\n"
+"help.text"
+msgid "WW"
+msgstr "WW"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154302\n"
+"103\n"
+"help.text"
+msgid "Quarterly as Q1 to Q4"
+msgstr "Kvartalsvis som Q1 til Q4"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3159266\n"
+"104\n"
+"help.text"
+msgid "Q"
+msgstr "Q"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147583\n"
+"105\n"
+"help.text"
+msgid "Quarterly as 1st quarter to 4th quarter"
+msgstr "Kvartalsvis som 1. kvartal til 4. kvartal"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146918\n"
+"106\n"
+"help.text"
+msgid "QQ"
+msgstr "QQ"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147534\n"
+"120\n"
+"help.text"
+msgid "Era on the Japanese Gengou calendar, single character (possible values are: M, T, S, H)"
+msgstr "Æra i den Japanske gengou-kalender, enkelt tegn (mulige værdier er: M, T, S, H)"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3163806\n"
+"122\n"
+"help.text"
+msgid "Era, abbreviation"
+msgstr "Æra, forkortelse"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155962\n"
+"123\n"
+"help.text"
+msgid "GG"
+msgstr "GG"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151187\n"
+"124\n"
+"help.text"
+msgid "Era, full name"
+msgstr "Æra, fuldt navn"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149568\n"
+"125\n"
+"help.text"
+msgid "GGG"
+msgstr "GGG"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147344\n"
+"126\n"
+"help.text"
+msgid "Number of the year within an era, without a leading zero for single-digit years"
+msgstr "Tallet på året indenfor en æra uden et foranstillet nul for enkeltcifrede år"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147255\n"
+"127\n"
+"help.text"
+msgid "E"
+msgstr "E"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148487\n"
+"128\n"
+"help.text"
+msgid "Number of the year within an era, with a leading zero for single-digit years"
+msgstr "Tallet på året indenfor en æra med et foranstillet nul for enkeltcifrede år"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150298\n"
+"129\n"
+"help.text"
+msgid "EE or R"
+msgstr "EE eller R"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152861\n"
+"138\n"
+"help.text"
+msgid "Era, full name and year"
+msgstr "Æra, fuldt navn og år"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149926\n"
+"139\n"
+"help.text"
+msgid "RR or GGGEE"
+msgstr "RR eller GGGEE"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3149929\n"
+"227\n"
+"help.text"
+msgid "Entering Dates"
+msgstr "Indtastning af datoer"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148397\n"
+"228\n"
+"help.text"
+msgid "To enter a date in a cell, use the Gregorian calendar format. For example, in an English locale, enter 1/2/2002 for Jan 2, 2002."
+msgstr "For at indtaste en dato i en celle, brug formater for den gregoianske kalender. Eksempelvis under en dansk lokalitet indtast da 31/12-2005 eller under en engelsk lokalitet 12/31/2005 for den 31. december 2005."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153274\n"
+"137\n"
+"help.text"
+msgid "All date formats are dependent on the locale that is set in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language settings - Languages</emph>. For example, if your locale is set to 'Japanese', then the Gengou calendar is used. The default date format in <item type=\"productname\">%PRODUCTNAME</item> uses the Gregorian Calendar."
+msgstr "Alle datoformater er afhængig af den lokalitet, der er sat i <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - Sprogindstillinger - Sprog</emph>. For eksempel, hvis din lokalitet er sat til 'japansk', så er det gengou-kalenderen, som bliver brugt. Standarddatoformatet i <item type=\"productname\">%PRODUCTNAME</item> bruger den gregorianske kalender."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153795\n"
+"216\n"
+"help.text"
+msgid "To specify a calendar format that is independent of the locale, add a modifier in front of the date format. For example, to display a date using the Jewish calendar format in a non-Hebrew locale, enter: [~jewish]DD/MM/YYYY."
+msgstr "For at angive et kalenderformat, som er uafhængig af lokaliteten, tilføj et ændringstegn foran datoformatet. Eksempelvis for at vise at en dato ved brug af det jødiske kalenderformat under en ikke-hebraisk lokalitet, indtast: [~jewish]DD/MM/ÅÅÅÅ."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145764\n"
+"217\n"
+"help.text"
+msgid "Modifier"
+msgstr "Ændringstegn"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152967\n"
+"218\n"
+"help.text"
+msgid "Calendar"
+msgstr "Kalender"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148390\n"
+"219\n"
+"help.text"
+msgid "[~buddhist]"
+msgstr "[~buddhist]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153781\n"
+"220\n"
+"help.text"
+msgid "Thai Buddhist Calendar"
+msgstr "Thailandsk buddhistisk kalender"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3157969\n"
+"133\n"
+"help.text"
+msgid "[~gengou]"
+msgstr "[~gengou]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154656\n"
+"134\n"
+"help.text"
+msgid "Japanese Gengou Calendar"
+msgstr "Japansk, gengou-kalender"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150086\n"
+"131\n"
+"help.text"
+msgid "[~gregorian]"
+msgstr "[~gregorian]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146070\n"
+"132\n"
+"help.text"
+msgid "Gregorian Calendar"
+msgstr "Den gregoianske kalender"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146808\n"
+"221\n"
+"help.text"
+msgid "[~hanja] or [~hanja_yoil]"
+msgstr "[~hanja] eller [~hanja_yoil]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149207\n"
+"136\n"
+"help.text"
+msgid "Korean Calendar"
+msgstr "Koreansk kalender"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150304\n"
+"222\n"
+"help.text"
+msgid "[~hijri]"
+msgstr "[~hijri]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149238\n"
+"223\n"
+"help.text"
+msgid "Arabic Islamic Calendar, currently supported for the following locales: ar_EG, ar_LB, ar_SA, and ar_TN"
+msgstr "Arabisk, Islamisk Kalender er i øjeblikket understøttet under følgende lokaliteter: ar_EG, ar_LB, ar_SA, og ar_TN"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154903\n"
+"224\n"
+"help.text"
+msgid "[~jewish]"
+msgstr "[~jewish]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151288\n"
+"225\n"
+"help.text"
+msgid "Jewish Calendar"
+msgstr "Jødisk kalender"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3166442\n"
+"135\n"
+"help.text"
+msgid "[~ROC]"
+msgstr "[~ROC]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145587\n"
+"226\n"
+"help.text"
+msgid "Republic Of China Calendar"
+msgstr "Republikken Kina-kalender"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152419\n"
+"140\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">If you perform a calculation that involves one or more cells using a date format, the result is formatted according to the following mappings: </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Hvis du udfør en beregning som involverer en eller flere celler, som bruger et datoformat, er resultatet formateret i henhold til de følgende afbildninger:</caseinline></switchinline>"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154194\n"
+"141\n"
+"help.text"
+msgid "Initial Format"
+msgstr "Startformat"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149787\n"
+"142\n"
+"help.text"
+msgid "Result Format"
+msgstr "Resultatformat"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152993\n"
+"143\n"
+"help.text"
+msgid "Date + Date"
+msgstr "Dato + dato"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150292\n"
+"144\n"
+"help.text"
+msgid "Number (Days)"
+msgstr "Antal (dage)"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150460\n"
+"145\n"
+"help.text"
+msgid "Date + Number"
+msgstr "Dato + tal"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154371\n"
+"146\n"
+"help.text"
+msgid "Date"
+msgstr "Dato"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145082\n"
+"147\n"
+"help.text"
+msgid "Date + Time"
+msgstr "Dato + tid"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156290\n"
+"148\n"
+"help.text"
+msgid "Date&Time"
+msgstr "Dato og klokkeslæt"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152456\n"
+"149\n"
+"help.text"
+msgid "Date + Date&Time"
+msgstr "Dato + Dato og klokkeslæt"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154527\n"
+"151\n"
+"help.text"
+msgid "Time + Time"
+msgstr "Tid + tid"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3159625\n"
+"152\n"
+"help.text"
+msgid "Time"
+msgstr "Tid"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146802\n"
+"153\n"
+"help.text"
+msgid "Time + Number"
+msgstr "Tid + tal"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146770\n"
+"154\n"
+"help.text"
+msgid "Time"
+msgstr "Tid"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155500\n"
+"155\n"
+"help.text"
+msgid "Time + Date&Time"
+msgstr "Klokkeslæt + Dato og klokkeslæt"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155128\n"
+"156\n"
+"help.text"
+msgid "Date&Time"
+msgstr "Dato og klokkeslæt"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152904\n"
+"157\n"
+"help.text"
+msgid "Date&Time + Date&Time"
+msgstr "Dato og klokkeslæt + Dato og klokkeslæt"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3159143\n"
+"158\n"
+"help.text"
+msgid "Time"
+msgstr "Tid"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148909\n"
+"159\n"
+"help.text"
+msgid "Date&Time + Number"
+msgstr "Dato og klokkeslæt + tal"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154806\n"
+"160\n"
+"help.text"
+msgid "Date&Time"
+msgstr "Dato og klokkeslæt"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151269\n"
+"161\n"
+"help.text"
+msgid "Number + Number"
+msgstr "Tal + tal"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154951\n"
+"162\n"
+"help.text"
+msgid "Number"
+msgstr "Tal"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149174\n"
+"163\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">The Date&Time format displays the date and time that an entry was made to a cell with this format. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Dato og klokkeslæt-formatet viser den dato og det klokkeslæt, som et element blev oprettet til en celle med dette format.</caseinline></switchinline>"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3143225\n"
+"164\n"
+"help.text"
+msgid "In <item type=\"productname\">%PRODUCTNAME</item>, a date with the value \"0\" corresponds to Dec 30, 1899."
+msgstr "I <item type=\"productname\">%PRODUCTNAME</item> vil en dato med værdien \"0\" svare til 30. december 1899."
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3155870\n"
+"61\n"
+"help.text"
+msgid "Time Formats"
+msgstr "Tidsformater"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150108\n"
+"62\n"
+"help.text"
+msgid "To display hours, minutes and seconds use the following number format codes."
+msgstr "For at vise timer, minutter og sekunder brug da følgende talformatkoder."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149158\n"
+"63\n"
+"help.text"
+msgid "Format"
+msgstr "Format"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154341\n"
+"64\n"
+"help.text"
+msgid "Format Code"
+msgstr "Formatkode"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154557\n"
+"65\n"
+"help.text"
+msgid "Hours as 0-23"
+msgstr "Timer som 0-23"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156348\n"
+"66\n"
+"help.text"
+msgid "h"
+msgstr "h"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3143218\n"
+"67\n"
+"help.text"
+msgid "Hours as 00-23"
+msgstr "Timer som 00-23"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155266\n"
+"68\n"
+"help.text"
+msgid "hh"
+msgstr "hh"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150139\n"
+"69\n"
+"help.text"
+msgid "Minutes as 0-59"
+msgstr "Minutter som 0-59"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149588\n"
+"70\n"
+"help.text"
+msgid "m"
+msgstr "m"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150531\n"
+"71\n"
+"help.text"
+msgid "Minutes as 00-59"
+msgstr "Minutter som 00-59"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147409\n"
+"72\n"
+"help.text"
+msgid "mm"
+msgstr "mm"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154854\n"
+"73\n"
+"help.text"
+msgid "Seconds as 0-59"
+msgstr "Sekunder som 0-59"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156173\n"
+"74\n"
+"help.text"
+msgid "s"
+msgstr "s"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149506\n"
+"75\n"
+"help.text"
+msgid "Seconds as 00-59"
+msgstr "sekunder som 00-59"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3157981\n"
+"76\n"
+"help.text"
+msgid "ss"
+msgstr "ss"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156039\n"
+"77\n"
+"help.text"
+msgid "To display seconds as fractions, add the decimal delimiter to your number format code. For example, enter <emph>hh:mm:ss.00</emph> to display the time as \"01:02:03.45\"."
+msgstr "For at vise delsekunder tilføjes decimaltegnet til din talformatkode efter sekunder. Eksempelvis vil <emph>tt:mm:ss.00</emph> vise tiden som \"01:02:03.45\"."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148649\n"
+"102\n"
+"help.text"
+msgid "If a time is entered in the form 02:03.45 or 01:02:03.45 or 25:01:02, the following formats are assigned if no other time format has been specified: MM:SS.00 or [HH]:MM:SS.00 or [HH]:MM:SS"
+msgstr "Hvis en tid er indtastet i formatet 02:03.45 eller 45:02:03.45 eller 25:45:02, vil de følgende formater blive tildelt, hvis intet andet klokkeslætsformat er angivet: mm:SS.00 eller [HH]:mm:SS.00 eller [HH]:mm:SS"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3158404\n"
+"169\n"
+"help.text"
+msgid "Displaying Numbers Using Native Characters"
+msgstr "Viser tal ved hjælp af nationale tegn"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149998\n"
+"170\n"
+"help.text"
+msgid "To display numbers using native number characters, use a [NatNum1], [NatNum2], ... [NatNum11] modifier at the beginning of a number format codes."
+msgstr "For at vise tal ved hjælp af nationale taltegn, brug da en [NatNum1]-, [NatNum2]-, ... [NatNum11]-ændringsangivelse i begyndelsen af en talformatkode."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154600\n"
+"171\n"
+"help.text"
+msgid "The [NatNum1] modifier always uses a one to one character mapping to convert numbers to a string that matches the native number format code of the corresponding locale. The other modifiers produce different results if they are used with different locales. A locale can be the language and the territory for which the format code is defined, or a modifier such as [$-yyy] that follows the native number modifier. In this case, yyy is the hexadecimal MS-LCID that is also used in currency format codes. For example, to display a number using Japanese short Kanji characters in an English US locale, use the following number format code:"
+msgstr "[NatNum1]-ændringsangivelse bruger altid én-til-én-tegnafbildning for at konvertere tal til en streng, som svarer til den nationale talformatkode under den tilsvarende lokalitet. De andre ændringsangivelser giver forskellige resultater, hvis de bruges under forskellige lokaliteter. En lokalitet kan være sproget og territoriet, for hvilken formatkoden er defineret, eller en ændringsangivelse såsom [$-yyy], som følger den nationale tal-ændringsangivelse. I dette tilfælde er yyy den hexadecimale MS-LCID, som også brugt er til valutaformatkoder. Eksempelvis for at vise et tal ved hjælp af japansk, kort kanji-tegn i en engelsk US-lokalitet, brug da følgende talformatkode:"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152546\n"
+"172\n"
+"help.text"
+msgid "[NatNum1][$-411]0"
+msgstr "[NatNum1][$-411]0"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147269\n"
+"173\n"
+"help.text"
+msgid "In the following list, the Microsoft Excel [DBNumX] modifier that corresponds to <item type=\"productname\">%PRODUCTNAME</item> [NatNum] modifier is shown. If you want, you can use a [DBNumX] modifier instead of [NatNum] modifier for your locale. Whenever possible, <item type=\"productname\">%PRODUCTNAME</item> internally maps [DBNumX] modifiers to [NatNumN] modifiers."
+msgstr "I den følgende liste vises Microsoft Excel [DBNumX]-ændringsangivelsen, som svarer til <item type=\"productname\">%PRODUCTNAME</item>[NatNum]-ændringsangivelsen. Hvis du vil, kan du bruge en [DBNumX]-ændringsangivelse i stedet for [NatNum]-ændringsangivelsen til din lokalitet. Hvor muligt vil <item type=\"productname\">%PRODUCTNAME</item> internt afbilde [DBNumX]-ændringsangivelse til [NatNumN]-ændringsangivelse."
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153111\n"
+"174\n"
+"help.text"
+msgid "[NatNum1] Transliterations"
+msgstr "[NatNum1]-tegnoversættelser"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146895\n"
+"175\n"
+"help.text"
+msgid "Chinese: Chinese lower case characters; CAL: 1/7/7 [DBNum1]"
+msgstr "Kinesisk: Kinesiske tegn med små bogstaver; CAL: 1/7/7 [DBNum1]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152536\n"
+"176\n"
+"help.text"
+msgid "Japanese: short Kanji characters [DBNum1]; CAL: 1/4/4 [DBNum1]"
+msgstr "Japansk: korte kanji-tegn [DBNum1]; CAL: 1/4/4 [DBNum1]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146125\n"
+"177\n"
+"help.text"
+msgid "Korean: Korean lower case characters [DBNum1]; CAL: 1/7/7 [DBNum1]"
+msgstr "Koreansk: Koreanske tegn med små bogstaver [DBNum1]; CAL: 1/7/7 [DBNum1]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149945\n"
+"178\n"
+"help.text"
+msgid "Thai: Thai characters"
+msgstr "Thai: Thai-tegn"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153264\n"
+"179\n"
+"help.text"
+msgid "Arabic: Indic characters"
+msgstr "Arabisk: Indiske tegn"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148973\n"
+"180\n"
+"help.text"
+msgid "Indic: Indic characters"
+msgstr "Indisk: Indiske tegn"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_idN112A3\n"
+"help.text"
+msgid "Hebrew: Hebrew letters"
+msgstr "Hebraisk: Hebraiske tegn"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147520\n"
+"181\n"
+"help.text"
+msgid "[NatNum2] Transliteration in"
+msgstr "[NatNum2]-tegnoversættelse på"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155383\n"
+"182\n"
+"help.text"
+msgid "Chinese: Chinese upper case characters; CAL: 2/8/8 [DBNum2]"
+msgstr "Kinesisk: Kinesiske tegn tegn med store bogstaver; CAL: 2/8/8 [DBNum2]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153931\n"
+"183\n"
+"help.text"
+msgid "Japanese: traditional Kanji characters; CAL: 2/5/5 [DBNum2]"
+msgstr "Japansk: traditionelle kanji-tegn; CAL: 2/5/5 [DBNum2]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155097\n"
+"184\n"
+"help.text"
+msgid "Korean: Korean upper case characters [DBNum2]; CAL: 2/8/8 [DBNum2]"
+msgstr "Koreansk: Koreanske tegn med store bogstaver [DBNum2]; CAL: 2/8/8 [DBNum2]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152976\n"
+"185\n"
+"help.text"
+msgid "[NatNum3] Transliteration in"
+msgstr "[NatNum3]-tegnoversættelse på"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154353\n"
+"186\n"
+"help.text"
+msgid "Chinese: fullwidth Arabic digits; CAL: 3/3/3 [DBNum3]"
+msgstr "Kinesisk: arabertal i fuld bredde; CAL: 3/3/3 [DBNum3]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154669\n"
+"187\n"
+"help.text"
+msgid "Japanese: fullwidth Arabic digits; CAL: 3/3/3 [DBNum3]"
+msgstr "Japansk: arabertal i fuld bredde; CAL: 3/3/3 [DBNum3]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150472\n"
+"188\n"
+"help.text"
+msgid "Korean: fullwidth Arabic digits [DBNum3]; CAL: 3/3/3 [DBNum3]"
+msgstr "Koreansk: arabertal i fuld bredde [DBNum3]; CAL: 3/3/3 [DBNum3]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3157811\n"
+"189\n"
+"help.text"
+msgid "[NatNum4] Transliteration in"
+msgstr "[NatNum4]-tegnoversættelse på"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154592\n"
+"190\n"
+"help.text"
+msgid "Chinese: lower case text [DBNum1]"
+msgstr "Kinesisk: tekst med små bogstaver [DBNum1]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150350\n"
+"191\n"
+"help.text"
+msgid "Japanese: modern long Kanji text [DBNum2]"
+msgstr "Japansk: moderne, lang kanji-tekst [DBNum2]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150930\n"
+"192\n"
+"help.text"
+msgid "Korean: formal lower case text"
+msgstr "Koreansk: formel tekst med små bogstaver"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153546\n"
+"193\n"
+"help.text"
+msgid "[NatNum5] Transliteration in"
+msgstr "[NatNum5]-tegnoversættelse på"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155612\n"
+"194\n"
+"help.text"
+msgid "Chinese: Chinese upper case text [DBNum2]"
+msgstr "Kinesisk: Kinesisk tekst med store bogstaver [DBNum2]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155909\n"
+"195\n"
+"help.text"
+msgid "Japanese: traditional long Kanji text [DBNum3]"
+msgstr "Japansk: traditionel, lang kanji-tekst [DBNum3]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151304\n"
+"196\n"
+"help.text"
+msgid "Korean: formal upper case text"
+msgstr "Koreansk: formel tekst med store bogstaver"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155075\n"
+"197\n"
+"help.text"
+msgid "[NatNum6] Transliteration in"
+msgstr "[NatNum6]-tegnoversættelse på"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150214\n"
+"198\n"
+"help.text"
+msgid "Chinese: fullwidth text [DBNum3]"
+msgstr "Kinesisk: tekst i fuld bredde [DBNum3]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154114\n"
+"199\n"
+"help.text"
+msgid "Japanese: fullwidth text"
+msgstr "Japansk: tekst i fuld bredde"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155344\n"
+"200\n"
+"help.text"
+msgid "Korean: fullwidth text"
+msgstr "Koreansk: tekst i fuld bredde"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155538\n"
+"201\n"
+"help.text"
+msgid "[NatNum7] Transliteration in"
+msgstr "[NatNum7]-tegnoversættelse på"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145123\n"
+"202\n"
+"help.text"
+msgid "Japanese: modern short Kanji text"
+msgstr "Japansk: moderne, kort kanji-tekst"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149424\n"
+"203\n"
+"help.text"
+msgid "Korean: informal lower case text"
+msgstr "Koreansk: uformel tekst med små bogstaver"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153688\n"
+"204\n"
+"help.text"
+msgid "[NatNum8] Transliteration in"
+msgstr "[NatNum8]-tegnoversættelse på"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156122\n"
+"205\n"
+"help.text"
+msgid "Japanese: traditional short Kanji text [DBNum4]"
+msgstr "Japansk: traditionel, kort kanji-tekst [DBNum4]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145602\n"
+"206\n"
+"help.text"
+msgid "Korean: informal upper case text"
+msgstr "Koreansk: uformel tekst med store bogstaver"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3159228\n"
+"207\n"
+"help.text"
+msgid "[NatNum9] Transliteration in"
+msgstr "[NatNum9]-tegnoversættelse på"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154644\n"
+"208\n"
+"help.text"
+msgid "Korean: Hangul characters"
+msgstr "Koreansk: Hangul-tegn"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155396\n"
+"209\n"
+"help.text"
+msgid "[NatNum10] Transliteration in"
+msgstr "[NatNum10]-tegnoversættelse på"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150878\n"
+"210\n"
+"help.text"
+msgid "Korean: formal Hangul text [DBNum4]; CAL: 9/11/11 [DBNum4]"
+msgstr "Koreansk: formel hangul-tekst [DBNum4]; CAL: 9/11/11 [DBNum4]"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149384\n"
+"211\n"
+"help.text"
+msgid "[NatNum11] Transliteration in"
+msgstr "[NatNum11]-tegnoversættelse på"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154213\n"
+"212\n"
+"help.text"
+msgid "Korean: informal Hangul text"
+msgstr "Koreansk: uformel hangul-tekst"
+
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3153524\n"
+"37\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Transparency</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Gennemsigtighed</caseinline></switchinline>"
+
+msgctxt ""
+"05030600.xhp\n"
+"par_idN107A4\n"
+"help.text"
+msgid "Background transparency can be set only for frames."
+msgstr "Baggrundsgennemsigtighed kan kun angives for rammer."
+
+msgctxt ""
+"05030600.xhp\n"
+"par_id3150358\n"
+"38\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/backgroundpage/transparencymf\">Set the transparency for the background color or graphic of a frame, where 100% is completely transparent and 0% is opaque. When you increase the transparency of the background, the underlying text or objects become visible through the background of the frame.</ahelp></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/backgroundpage/transparencymf\">Definer gennemsigtigheden for baggrundsfarven eller -grafikken for en ramme, hvor 100 % er fuldstændig gennemsigtig og 0 % er ugennemsigtig. Når du øger gennemsigtigheden af baggrunden, bliver den underliggende tekst eller de underliggende objekter synlige gennem rammens baggrund.</ahelp></caseinline></switchinline>"
+
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3151246\n"
+"help.text"
+msgid "Using a Gradient as a Background"
+msgstr "Brug af en farveovergang som baggrund"
+
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3153525\n"
+"help.text"
+msgid "Background gradient"
+msgstr "Farveovergang som baggrund"
+
+msgctxt ""
+"05030600.xhp\n"
+"par_id3152364\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/gradientslb\">Click the gradient that you want to use as a background. To remove a background gradient, set <emph>As</emph> to <emph>Color</emph>, then click <emph>No Fill</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/backgroundpage/gradientslb\">Klik på den farveovergang du ønsker at bruge som baggrund. For at fjerne en baggrundsfarveovergang, sæt <emph>Som</emph> til <emph>Farve</emph>, og klik så på <emph>Ingen fyld</emph>.</ahelp>"
+
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3153526\n"
+"help.text"
+msgid "Preview field"
+msgstr "Forhåndsvisningsfelt"
+
+msgctxt ""
+"05030600.xhp\n"
+"par_id3152362\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/previewctl\">Displays a preview of the currently selected gradient.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/backgroundpage/previewctl\">Viser en forhåndsvisning af den aktuelt valgte farveovergang.</ahelp>"
+
+msgctxt ""
+"05060000.xhp\n"
+"hd_id3150449\n"
+"11\n"
+"help.text"
+msgid "Styles and Formatting"
+msgstr "Typografier og formatering"
+
+msgctxt ""
+"05060000.xhp\n"
+"par_id3149202\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles and Formatting window</link></caseinline><defaultinline>Styles and Formatting window</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">Åbner <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Typografi og format vinduet</link></caseinline><defaultinline>Typografi og format vinduet</defaultinline></switchinline>, hvor du kan vælge en tegntypografi for den fonetiske tekst.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3154346\n"
+"20\n"
+"help.text"
+msgid "Increments (Gradients)"
+msgstr "Trin (farveovergange)"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3144423\n"
+"21\n"
+"help.text"
+msgid "Set the number of steps for blending the two end colors of a gradient."
+msgstr "Angiv det antal trin, som de to yderfarver i en farveovergang skal blandes i for at lave farveovergangen."
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3147264\n"
+"22\n"
+"help.text"
+msgid "Automatic"
+msgstr "Automatisk"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3149457\n"
+"23\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_STEPCOUNT\">Automatically determines the number of steps for blending the two end colors of the gradient.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/TSB_STEPCOUNT\">Bestemmer automatisk antallet af trin for at blande de to yderfarver i farveovergangen.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3150360\n"
+"25\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/NUM_FLD_STEPCOUNT\">Enter the number of steps for blending the two end colors of the gradient.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/NUM_FLD_STEPCOUNT\">Angiv antallet af trin, der skal bruges til at blande de to yderfarver i farveovergangen.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3153381\n"
+"31\n"
+"help.text"
+msgid "Size (Bitmaps)"
+msgstr "Størrelse (Bitmaps)"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3148798\n"
+"32\n"
+"help.text"
+msgid "Specify the dimensions of the bitmap."
+msgstr "Angiver dimensionerne for bitmappen."
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3125865\n"
+"34\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_SCALE\">Rescales the bitmap relative to the size of the selected object by the percentage values that you enter in the <emph>Width</emph> and <emph>Height</emph> boxes . Clear this checkbox to resize the selected object with the measurements that you enter in the <emph>Width</emph> and <emph>Height</emph> boxes.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/TSB_SCALE\">Skalerer bitmappen igen i forhold til størrelsen af det valgte objekt med procentdelen, som du indtaster i <emph>Bredde</emph> og <emph>Højde</emph> . Nulstil dette afkrydsningsfelt for at ændre det valgte objekts størrelse med målingerne, som du indtaster i <emph>Bredde</emph> og <emph>Højde</emph>.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3153970\n"
+"36\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_ORIGINAL\">Retains the original size of the bitmap when filling the selected object. To resize the bitmap, clear this checkbox, and then click <emph>Relative</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/TSB_ORIGINAL\">Beholder den oprindelige størrelse af bitmapbilledet, når du fylder det markerede objekt. For at nulstille størrelsen for bitmappen skal du rydde dette afkrydsningsfelt og så klikke på <emph>Relativ</emph>.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3155994\n"
+"37\n"
+"help.text"
+msgid "Width"
+msgstr "Bredde"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3149810\n"
+"38\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_X_SIZE\">Enter a width for the bitmap.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_X_SIZE\">Indtast en bredde for bitmappen.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3156281\n"
+"39\n"
+"help.text"
+msgid "Height"
+msgstr "Højde"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3150868\n"
+"40\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_Y_SIZE\">Enter a height for the bitmap.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_Y_SIZE\">Indtast en højde for bitmappen.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3148673\n"
+"41\n"
+"help.text"
+msgid "Position (Bitmaps)"
+msgstr "Placering (Bitmaps)"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3154821\n"
+"42\n"
+"help.text"
+msgid "Click in the position grid to specify the offset for tiling the bitmap."
+msgstr "Klikke i placeringsgitter for at angive forskydningen for fliselægning af bitmappen."
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3153056\n"
+"43\n"
+"help.text"
+msgid "X Offset"
+msgstr "X-forskydning"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3147299\n"
+"44\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_X_OFFSET\">Enter the horizontal offset for tiling the bitmap.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_X_OFFSET\">Indtast den vandrette forskydning for fliselægning af bitmappen.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3149985\n"
+"45\n"
+"help.text"
+msgid "Y Offset"
+msgstr "Y-forskydning"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3148559\n"
+"46\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_Y_OFFSET\">Enter the vertical offset for tiling the bitmap.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_Y_OFFSET\">Indtast den lodrette forskydning for fliselægning af bitmappen.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3156060\n"
+"27\n"
+"help.text"
+msgid "Tile"
+msgstr "Side om side"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3152576\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_TILE\">Tiles the bitmap to fill the selected object.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/TSB_TILE\">Fliselægger bitmappen for at opfylde det markerede objekt.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3150334\n"
+"29\n"
+"help.text"
+msgid "AutoFit"
+msgstr "Tilpas automatisk"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3149481\n"
+"30\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_STRETCH\">Stretches the bitmap to fill the selected object. To use this feature, clear the <emph>Tile </emph>box.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/TSB_STRETCH\">Strækker bitmappen til at fylde det markerede objekt. For at bruge denne funktionalitet, ryd <emph>Side om side</emph> boksen.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3148555\n"
+"47\n"
+"help.text"
+msgid "Offset"
+msgstr "Forskydning"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3155412\n"
+"48\n"
+"help.text"
+msgid "Specify the offset for tiling the bitmap in terms of rows and columns."
+msgstr "Angiver den forskydning for fliselægning af bitmappen i termer af rækker og kolonner."
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3151115\n"
+"49\n"
+"help.text"
+msgid "Row"
+msgstr "Række"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3155369\n"
+"50\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/RBT_ROW\">Horizontally offsets the original bitmap relative to the bitmap tiles by the amount that you enter.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/RBT_ROW\">Forskyder det originale bitmap vandret i forhold til bitmapfliserne med den værdi, som du indtaster.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3144442\n"
+"51\n"
+"help.text"
+msgid "Column"
+msgstr "Kolonne"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3146974\n"
+"52\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/RBT_COLUMN\">Vertically offsets the original bitmap relative to the bitmap tiles by the amount that you enter.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/RBT_COLUMN\">Forskyder det originale bitmap lodret i forhold til bitmapfliserne med den værdi, som du indtaster.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3150684\n"
+"53\n"
+"help.text"
+msgid "Percent"
+msgstr "Procent"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3155314\n"
+"54\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_OFFSET\">Enter the percentage to offset the rows or columns.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_OFFSET\">Indtast procentdelen til at forskyde rækkerne eller kolonnerne.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3152887\n"
+"59\n"
+"help.text"
+msgid "Background Color (Hatching)"
+msgstr "Baggrundsfarve (skravering)"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3153364\n"
+"61\n"
+"help.text"
+msgid "Background color"
+msgstr "Baggrundsfarve"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3152940\n"
+"62\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/CB_HATCHBCKGRD\">Applies a background color to the hatching pattern. Select this checkbox, and then click a color in the list.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/CB_HATCHBCKGRD\">Anvender en baggrundsfarve til skraveringsmønsteret. Vælg denne afkrydsningsfelt, og klik så på en farve i listen.</ahelp>"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3152460\n"
+"63\n"
+"help.text"
+msgid "List of colors"
+msgstr "Liste af farver"
+
+msgctxt ""
+"05210100.xhp\n"
+"par_id3157309\n"
+"64\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/LB_HATCHBCKGRDCOLOR\">Click the color that you want to use as a background for the selected hatching pattern.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/areatabpage/LB_HATCHBCKGRDCOLOR\">Klik på den farve, som du vil bruge som baggrund for det valgte skraveringsmønster.</ahelp>"
+
+msgctxt ""
+"05210200.xhp\n"
+"par_id3154288\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010500.xhp\" name=\"$[officename] - Colors\">$[officename] - Colors</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Indstillinger</caseinline><defaultinline>Funktioner - Indstillinger</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010500.xhp\" name=\"$[officename] - Colors\">$[officename] - Farver</link>"
+
+msgctxt ""
+"05210300.xhp\n"
+"hd_id3155830\n"
+"15\n"
+"help.text"
+msgid "Gradients"
+msgstr "Farveovergange"
+
+msgctxt ""
+"05210300.xhp\n"
+"par_id3157909\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/gradientpage/gradientslb\">Select the type of gradient that you want to apply or create.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/gradientslb\">Vælg typen af farveovergang, som du vil anvende eller oprette.</ahelp>"
+
+msgctxt ""
+"05210300.xhp\n"
+"hd_id3155341\n"
+"31\n"
+"help.text"
+msgid "Load Gradients List"
+msgstr "Indlæs farveovergangsliste"
+
+msgctxt ""
+"05210300.xhp\n"
+"par_id3145085\n"
+"32\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/gradientpage/load\">Load a different list of gradients.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/load\">Indlæs en anden liste med farveovergange.</ahelp>"
+
+msgctxt ""
+"05210300.xhp\n"
+"hd_id3148943\n"
+"33\n"
+"help.text"
+msgid "Save Gradients List"
+msgstr "Gem farveovergangsliste"
+
+msgctxt ""
+"05210300.xhp\n"
+"par_id3161459\n"
+"34\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/gradientpage/save\">Saves the current list of gradients, so that you can load it later.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/save\">Gemmer den nuværende liste af farveovergange, så du kan indlæse den senere.</ahelp>"
+
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3156113\n"
+"9\n"
+"help.text"
+msgid "Angle grid"
+msgstr "Vinkelgitter"
+
+msgctxt ""
+"05210400.xhp\n"
+"par_id3147242\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/hatchpage/anglectl\">Click a position in the grid to define the rotation angle for the hatch lines.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/hatchpage/anglectl\">Klik på en placering i gitteret for at angive rotationsvinklen for skraveringslinjerne.</ahelp>"
+
+msgctxt ""
+"05210400.xhp\n"
+"par_id3149955\n"
+"12\n"
+"help.text"
+msgid "Lists the available hatching patterns. You can also modify or create your own hatching pattern. To save the list, click the <emph>Save Hatches List</emph> button. To display a different list, click the <emph>Load Hatches List</emph> button."
+msgstr "Lister de tilgængelige skraveringsmønstre. Du kan også ændre eller oprette dit eget skraveringsmønster. For at gemme listen skal du klikke på knappen <emph>Gem skraveringsliste</emph>. For at se en anden liste skal du klikke på knappen <emph>Indlæs skraveringsliste</emph>."
+
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3150670\n"
+"13\n"
+"help.text"
+msgid "Hatches list"
+msgstr "Skraveringsliste"
+
+msgctxt ""
+"05210400.xhp\n"
+"par_id3144438\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/hatchpage/hatchingslb\">Lists the available hatching patterns. Click the hatching pattern that you want to apply, and then click <emph>OK</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/hatchpage/hatchingslb\">Opremser de tilgængelige skraveringsmønstre. Klik på det skraveringsmønster, som du vil anvende, og klik så på <emph>OK</emph>.</ahelp>"
+
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3147304\n"
+"25\n"
+"help.text"
+msgid "Load Hatches List"
+msgstr "Indlæs skraveringsliste"
+
+msgctxt ""
+"05210400.xhp\n"
+"par_id3156343\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/hatchpage/load\">Loads a different list of hatching patterns.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/hatchpage/load\">Indlæser en anden liste med skraveringsmønstre.</ahelp>"
+
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3154347\n"
+"27\n"
+"help.text"
+msgid "Save Hatches List"
+msgstr "Gem skraveringsliste"
+
+msgctxt ""
+"05210400.xhp\n"
+"par_id3152811\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/hatchpage/save\">Saves the current list of hatching patterns, so that you can load it later.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/hatchpage/save\">Gemmer den nuværende liste af skraveringsmønstre, så du kan indlæse den senere.</ahelp>"
+
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3145072\n"
+"17\n"
+"help.text"
+msgid "Foreground color"
+msgstr "Forgrundsfarve"
+
+msgctxt ""
+"05210500.xhp\n"
+"par_id3155535\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/LB_COLOR\">Select a foreground color, and then click in the grid to add a pixel to the pattern.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/bitmaptabpage/LB_COLOR\">Vælg en forgrundsfarve, og klik så i gitteret for at tilføje et billedpunkt til mønsteret.</ahelp>"
+
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3149398\n"
+"19\n"
+"help.text"
+msgid "Background color"
+msgstr "Baggrundsfarve"
+
+msgctxt ""
+"05210500.xhp\n"
+"par_id3148538\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/LB_BACKGROUND_COLOR\">Select a background color for your bitmap pattern.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/bitmaptabpage/LB_BACKGROUND_COLOR\">Marker en baggrundsfarve for din bitmapmønster.</ahelp>"
+
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3147275\n"
+"7\n"
+"help.text"
+msgid "Bitmap Pattern"
+msgstr "Bitmapmønster"
+
+msgctxt ""
+"05210500.xhp\n"
+"par_id3146847\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/LB_BITMAPS\">Select a bitmap in the list, and then click <emph>OK</emph> to apply the pattern to the selected object.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/bitmaptabpage/LB_BITMAPS\">Marker en bitmap på listen, og klik så på <emph>OK</emph> for at anvende mønsteret til det valgte objekt.</ahelp>"
+
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3150275\n"
+"9\n"
+"help.text"
+msgid "Add"
+msgstr "Tilføj"
+
+msgctxt ""
+"05210500.xhp\n"
+"par_id3154306\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_ADD\">Adds a bitmap that you created in the <emph>Pattern Editor </emph>to the current list.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_ADD\">Tilføjer en bitmap, som du oprettede i <emph>Mønsterredigering</emph>, til den aktuelle liste.</ahelp>"
+
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3158432\n"
+"11\n"
+"help.text"
+msgid "Modify"
+msgstr "Modificer"
+
+msgctxt ""
+"05210500.xhp\n"
+"par_id3153827\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_MODIFY\">Replaces a bitmap that you created in the <emph>Pattern Editor</emph> with the current bitmap pattern. If you want, you can save the pattern under a different name.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_MODIFY\">Erstatter en bitmap, som du oprettede i <emph>Mønsterredigering</emph>, med det aktuelle bitmapmønster. Hvis du vil, du kan gemme mønsteret under et andet navn.</ahelp>"
+
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3159166\n"
+"21\n"
+"help.text"
+msgid "Load Bitmap List"
+msgstr "Indlæs Bitmapliste"
+
+msgctxt ""
+"05210500.xhp\n"
+"par_id3155341\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_LOAD\">Loads a different list of bitmaps.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_LOAD\">Indlæser en anden liste med bitmaps.</ahelp>"
+
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3151246\n"
+"23\n"
+"help.text"
+msgid "Save Bitmap List"
+msgstr "Gem bitmapliste"
+
+msgctxt ""
+"05210500.xhp\n"
+"par_id3151385\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_SAVE\">Saves the current list of bitmaps, so that you can load it later.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_SAVE\">Gemmer den nuværende liste over Bitmaps, så du kan indlæse den senere.</ahelp>"
+
+msgctxt ""
+"05280000.xhp\n"
+"par_id3149202\n"
+"68\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/dockingfontwork/slantx\">Horizontally slants the characters in the text object.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/dockingfontwork/slantx\">Hælder tegnene i tekstobjektet vandret.</ahelp>"
+
+msgctxt ""
+"05280000.xhp\n"
+"par_id3154297\n"
+"70\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/dockingfontwork/slanty\">Vertically slants the characters in the text object.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/dockingfontwork/slanty\">Hælder tegnene i tekstobjektet lodret.</ahelp>"
+
+msgctxt ""
+"05350200.xhp\n"
+"par_id3145785\n"
+"32\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/docking3deffects/inverthormals\">Inverts the light source.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/docking3deffects/inverthormals\">Omvender lyskilden.</ahelp>"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3147085\n"
+"88\n"
+"help.text"
+msgid "Insert"
+msgstr "Indsæt"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149984\n"
+"113\n"
+"help.text"
+msgid "Play"
+msgstr "Afspil"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3154388\n"
+"24\n"
+"help.text"
+msgid "Increment"
+msgstr "Forøgelse"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148538\n"
+"19\n"
+"help.text"
+msgid "Display area"
+msgstr "Visningsområde"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3144762\n"
+"35\n"
+"help.text"
+msgid "Read-only"
+msgstr "Skrivebeskyttet"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156169\n"
+"150\n"
+"help.text"
+msgid "Number"
+msgstr "Tal"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3149202\n"
+"35\n"
+"help.text"
+msgid "Original"
+msgstr "Oprindelig"
+
+msgctxt ""
+"01100200.xhp\n"
+"hd_id3154046\n"
+"35\n"
+"help.text"
+msgid "Delete"
+msgstr "Slet"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151249\n"
+"121\n"
+"help.text"
+msgid "G"
+msgstr "G"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146928\n"
+"42\n"
+"help.text"
+msgid "M"
+msgstr "M"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156181\n"
+"50\n"
+"help.text"
+msgid "D"
+msgstr "D"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3154280\n"
+"21\n"
+"help.text"
+msgid "File name"
+msgstr "Filnavn"
+
+msgctxt ""
+"02230100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Record"
+msgstr "Datapost"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3154068\n"
+"33\n"
+"help.text"
+msgid "Relative"
+msgstr "Relativ"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3150767\n"
+"25\n"
+"help.text"
+msgid "File type"
+msgstr "Filtype"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145211\n"
+"13\n"
+"help.text"
+msgid "Create New Folder"
+msgstr "Opret ny mappe"
diff --git a/source/da/helpcontent2/source/text/shared/guide.po b/source/da/helpcontent2/source/text/shared/guide.po
index b165ec8aa2c..f2ed044018b 100644
--- a/source/da/helpcontent2/source/text/shared/guide.po
+++ b/source/da/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-07-13 12:44+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1468413843.000000\n"
#: aaa_start.xhp
@@ -2190,7 +2190,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2270,7 +2270,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9919,8 +9919,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "For at hoppe til en celle i et regneark, indtast da først et navn for cellen (<emph>Indsæt - Navne - Angiv</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12428,20 +12428,20 @@ msgstr "På fanebladet <emph>Indstillinger</emph> skal du sikre dig, at feltet <
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "Så snart du klikker på <emph>Nyt dokument</emph>, vil du se et lille vindue med knappen <emph>Synkroniser etiketter</emph>. Indtast første etiket. Når du klikker på <emph>Synkroniser etiketter</emph>, bliver den aktuelle individuelle etiket kopieret til alle de andre etiketter på arket."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "Klik på <emph>Nyt dokument</emph> for at oprette et nyt dokument med de indstillinger, du har indtastet."
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "Klik på <emph>Nyt dokument</emph> for at oprette et nyt dokument med de indstillinger, du har indtastet."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "Så snart du klikker på <emph>Nyt dokument</emph>, vil du se et lille vindue med knappen <emph>Synkroniser etiketter</emph>. Indtast første etiket. Når du klikker på <emph>Synkroniser etiketter</emph>, bliver den aktuelle individuelle etiket kopieret til alle de andre etiketter på arket."
#: labels.xhp
msgctxt ""
@@ -18304,758 +18304,721 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Start $[officename]-softwaren med parametre"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>startparametre</bookmark_value><bookmark_value>kommandolinjeparametre</bookmark_value><bookmark_value>parametre; kommandolinje</bookmark_value><bookmark_value>argumenter i kommandolinje</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Start $[officename]-softwaren med parametre"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "Ved at starte $[officename]-softwaren fra kommandolinjen kan du tildele forskellige parametre, hvormed du kan ændre ydelsen. Brug af kommandolinjeparametre er kun anbefalet til erfarne brugere."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "Brug af kommandolinjeparametre er normalt ikke nødvendig. Nogle få af parametrene kræver en dybere viden om den tekniske baggrund for $[officename]s softwareteknologi."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "Start af $[officename]-softwaren fra kommandolinjen"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
-msgstr "I Windows, vælg <emph>Kør</emph> fra Windows' Startmenu, eller åbn en en skal i Linux, *BSD eller Mac OS X."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "I Windows, indtast den følgende tekst i <emph>Åbn</emph>-tekstfeltet og klik på <emph>OK</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
-msgstr "I UNIX-lignende systemer, skal du indtaste følgende tekstlinje, og efterfølgende trykke på <emph>Retur</emph>:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{installer}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{installer}/Program/soffice {parameter}</caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "Erstat <emph>{installer}</emph> med stien til din installation af $[officename]-softwaren (for eksempel <emph>c:\\Programmer\\Office</emph>, eller <emph>~/Office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "Hvor det er krævet, erstat <emph>{parameter}</emph> med en eller flere af de følgende kommandolinjeparametre."
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "Gyldige kommandolinje parametre"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "Parameter"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "Betydning"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "--help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "Lister de tilgængelige kommandolinjeparametre <switchinline select=\"sys\"><caseinline select=\"WIN\">i en dialog </caseinline><defaultinline>til konsollen</defaultinline></switchinline>."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
-msgstr "--version"
+msgid "Opens the file and applies specified macros from the file."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
-msgstr "Viser versionsoplysningerne."
+msgid "Getting help and information"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "-writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "Starter med et tomt Writer dokument."
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "-calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "Starter med et tomt Calc regneark."
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "-draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "Starter med et tomt Draw dokument."
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "--impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "Starter med et tomt Impress dokument."
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "-math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "Starter med et tomt Math dokument."
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "--global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "Starter med et tomt Writer hoveddokument."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "-web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "Starter med et tomt HTML-dokument."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "--show {filnavn.odp}"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "Starter med Impress-filen <emph>{filnavn.odp}</emph> og starter præsentationen. Går i redigeringstilstand efter præsentationen."
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
+"help.text"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
"help.text"
-msgid "--minimized"
-msgstr "--minimized"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "Starter minimeret. Velkomstbilledet vises ikke."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "--invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "Starter i usynlig tilstand."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Hverken begyndelseslogoet eller det oprindelige programvindue vil være synlig. Dog kan $[officename]-softwaren kontrolleres og dokumenter og dialoger åbnes via <link href=\"http://api.openoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
-msgstr "Når $[officename] programmet er started med denne parameter, kan det kun afsluttes ved hjælp af opgavelisten (Windows) eller kommandoen <emph>kill </emph> (UNIX-systemer)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "Det kan ikke bruges sammen med <emph>-hurtig start</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Mere information findes i <emph>$[officename] Udviklingsvejledningen</emph>."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
+"help.text"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
"help.text"
-msgid "--norestore"
-msgstr "--norestore"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "Deaktiverer genstart og filgendannelse efter et systemnedbrud."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "Deaktiverer velkomstguiden."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "--quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Aktiverer Hurtig start."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "--accept={UNO string}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "Underretter $[officename] softwaren om at der ved oprettelse af \"UNO Acceptor Threads\", vil en \"UNO Accept String\" blive benyttet."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Mere information findes i <emph>$[officename] Udviklingsvejledningen</emph>."
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "--unaccept={UNO string}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
-msgstr "Lukker en accept som blev oprettet med --accept={UNO string}. Brug --unaccept=all for at lukke alle accepts."
+msgid "Exit after loading documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {filnavn1} {filnavn2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "Udskriver filerne <emph>{filnavn1} {filnavn2} ...</emph> til standardprinteren og afslutter. Velkomstbilledet vises ikke."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Hvis filnavnet indeholder mellemrum, så skal det være omgivet af anførselstegn."
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "--pt {Printername} {filename1} {filename2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "Udskriver filerne <emph>{filnavn1} {filnavn2} ...</emph> til printeren <emph>{Printernavn}</emph> og afslutter. Velkomstbilledet vises ikke."
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Hvis filnavnet indeholder mellemrum, så skal det være omgivet af anførselstegn."
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {filnavn}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "Åbner <emph>{filnavn}</emph> for at redigere, også selvom det er en skabelon."
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "--view {filename}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "Opretter en midlertidig kopi af <emph>{filnavn}</emph> og åbner det som skrivebeskyttet."
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {filnavn}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "Opretter et nyt dokument ved brug af <emph>{filnavn}</emph> som skabelon."
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "--nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "Deaktiverer velkomstbilledet ved programstart."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "--nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "Hvis filnavnet indeholder mellemrum, så skal det være omgivet af anførselstegn."
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "Starter uden at vise andet end velkomstbilledet."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
-msgstr "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
-msgstr "Deaktiverer kontrol for fjern-enheder under installationen."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150828\n"
+"help.text"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3145268\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3153838\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "Føj denne parameter til programstartkommandoen for at undertrykke velkomstguiden."
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id315053p\n"
"help.text"
-msgid "--display {display}"
-msgstr "--display {display}"
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
-msgstr "Sætter variablen <emph>DISPLAY</emph> på UNIX-lignende platforme til værdien <emph>{display}</emph>. Denne parameter understøttes kun af startskriptet for $[officename] software på UNIX-lignende platforme."
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id315053q\n"
"help.text"
-msgid "--headless"
-msgstr "--headless"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "Starter i \"headless tilstand\" som tillader at bruge programmet uden brugergrænseflade."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Denne specielle tilstand kan bruges, når programmet er kontrolleret af eksterne klienter via <link href=\"http://api.openoffice.org\" name=\"API\">API</link>."
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "--infilter={filter}"
-msgstr "--infilter={filter}"
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
-msgstr "Påtvinger en inputfiltertype, hvis det er muligt. F.eks. --infilter=\"Calc Office Open XML\"."
+msgid "Ignored switches"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
-msgstr "--convert-to output_file_extension[:output_filter_navn] [--outdir output_folder] filer"
+msgid "Ignored (MacOS X only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
-msgstr "Batchkonverter filer. Hvis --outdir ikke er angivet, vil det aktuelle bibliotek blive anvendt som output_dir.<br/>F.eks. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (COM+ related; Windows only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014529900\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
-msgstr "--print-to-file [--printer-name printer_navn] [--outdir output_folder] filer"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
-msgstr "Batch-udskriv filer til fil. Hvis --outdir ikke er angivet, vil det aktuelle bibliotek blive anvendt som output_dir.<br/>F.eks. --print-to-file *.doc<br/>--print-to-file --printer-name 2330dn-laser --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
+msgstr ""
#: startcenter.xhp
msgctxt ""
diff --git a/source/da/sc/source/ui/src.po b/source/da/sc/source/ui/src.po
index 2f654580d70..5ce6fdd273b 100644
--- a/source/da/sc/source/ui/src.po
+++ b/source/da/sc/source/ui/src.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
"PO-Revision-Date: 2016-12-02 11:27+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480678045.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480678066.000000\n"
#: filter.src
msgctxt ""
@@ -9669,8 +9669,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Lægger de argumenter sammen, som opfylder kriterierne."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/da/sd/uiconfig/simpress/ui.po b/source/da/sd/uiconfig/simpress/ui.po
index a48540a98c1..b46520f7e24 100644
--- a/source/da/sd/uiconfig/simpress/ui.po
+++ b/source/da/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-06 18:54+0000\n"
+"PO-Revision-Date: 2016-12-12 20:32+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: none\n"
"Language: da\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481050451.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481574748.000000\n"
#: customanimationeffecttab.ui
msgctxt ""
@@ -1706,7 +1706,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Home"
-msgstr "Start"
+msgstr "Hjem"
#: notebookbar.ui
msgctxt ""
diff --git a/source/da/sfx2/source/dialog.po b/source/da/sfx2/source/dialog.po
index 5dc87556485..ef30f2e2307 100644
--- a/source/da/sfx2/source/dialog.po
+++ b/source/da/sfx2/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-08 18:13+0000\n"
+"PO-Revision-Date: 2016-12-12 20:01+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481220818.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481572872.000000\n"
#: dialog.src
msgctxt ""
@@ -418,7 +418,7 @@ msgctxt ""
"Office\n"
"itemlist.text"
msgid "Office"
-msgstr ""
+msgstr "Kontor"
#: dinfdlg.src
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"Purpose\n"
"itemlist.text"
msgid "Purpose"
-msgstr ""
+msgstr "Formål"
#: dinfdlg.src
msgctxt ""
@@ -553,7 +553,7 @@ msgctxt ""
"DateTime\n"
"itemlist.text"
msgid "DateTime"
-msgstr ""
+msgstr "DateTime"
#: dinfdlg.src
msgctxt ""
@@ -580,7 +580,7 @@ msgctxt ""
"Number\n"
"itemlist.text"
msgid "Number"
-msgstr ""
+msgstr "Tal"
#: dinfdlg.src
msgctxt ""
diff --git a/source/da/sfx2/source/doc.po b/source/da/sfx2/source/doc.po
index 98de2d2bfd0..7a8adc6e41e 100644
--- a/source/da/sfx2/source/doc.po
+++ b/source/da/sfx2/source/doc.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-06 19:33+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2016-12-12 20:01+0000\n"
+"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467833638.000000\n"
+"X-POOTLE-MTIME: 1481572886.000000\n"
#: doc.src
msgctxt ""
@@ -146,7 +146,7 @@ msgctxt ""
"STR_TEMPLATE_SELECTION\n"
"string.text"
msgid "Select a Template"
-msgstr ""
+msgstr "Vælg en skabelon"
#: doc.src
msgctxt ""
@@ -733,7 +733,7 @@ msgctxt ""
"Styles\n"
"itemlist.text"
msgid "Styles"
-msgstr ""
+msgstr "Typografier"
#: doctempl.src
msgctxt ""
diff --git a/source/da/sfx2/source/view.po b/source/da/sfx2/source/view.po
index c4bb6ea198f..302e0a93886 100644
--- a/source/da/sfx2/source/view.po
+++ b/source/da/sfx2/source/view.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-03 11:37+0000\n"
+"PO-Revision-Date: 2016-12-12 20:01+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480765048.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481572905.000000\n"
#: view.src
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"STR_READONLY_PDF\n"
"string.text"
msgid "This PDF is open in read-only mode to allow signing the existing file."
-msgstr ""
+msgstr "Denne PDF er åben i læsetilstand for at kunne signere den eksisterende fil."
#: view.src
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"STR_CHECKOUT\n"
"string.text"
msgid "Check Out"
-msgstr ""
+msgstr "Tjek ud"
#: view.src
msgctxt ""
diff --git a/source/da/sfx2/uiconfig/ui.po b/source/da/sfx2/uiconfig/ui.po
index 22dd0d7070d..8f2cecd330d 100644
--- a/source/da/sfx2/uiconfig/ui.po
+++ b/source/da/sfx2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-03 11:54+0000\n"
+"PO-Revision-Date: 2016-12-12 20:04+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: none\n"
"Language: da\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480766070.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481573048.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Confirm editing of document"
-msgstr ""
+msgstr "Bekræft redigering af dokument"
#: editdocumentdialog.ui
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Are you sure you want to edit the document?"
-msgstr ""
+msgstr "Er du sikker på at du vil redigere dokumentet?"
#: editdocumentdialog.ui
msgctxt ""
@@ -500,7 +500,7 @@ msgctxt ""
"secondary_text\n"
"string.text"
msgid "The original file can be signed without editing the document. Existing signatures on the document will be lost in case of saving an edited version."
-msgstr ""
+msgstr "Den originale fil kan signeres uden at redigere det. Eksisterende signaturer i dokumentet vil gå tabt i tilfælde af du gemmer en redigeret version."
#: editdocumentdialog.ui
msgctxt ""
@@ -1436,7 +1436,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Enter Safe Mode"
-msgstr ""
+msgstr "Gå i sikker tilstand"
#: safemodequerydialog.ui
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Are you sure you want to restart %PRODUCTNAME and enter the Safe Mode?"
-msgstr ""
+msgstr "Er du sikker på at du vil genstarte %PRODUCTNAME og gå til sikker tilstand?"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1472,7 +1472,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template _Name"
-msgstr ""
+msgstr "Skabelon_navn"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1481,7 +1481,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template _Category"
-msgstr ""
+msgstr "Skabelon_kategori"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1490,7 +1490,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Set as default template"
-msgstr ""
+msgstr "_Sæt som standardskabelon"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1796,7 +1796,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Recent Files List"
-msgstr ""
+msgstr "Seneste filer"
#: startcenter.ui
msgctxt ""
@@ -1805,7 +1805,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Templates List"
-msgstr ""
+msgstr "Skabelonliste"
#: templatecategorydlg.ui
msgctxt ""
@@ -1877,7 +1877,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Filter by Application"
-msgstr ""
+msgstr "Filtrér efter program"
#: templatedlg.ui
msgctxt ""
@@ -1904,7 +1904,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template List"
-msgstr ""
+msgstr "Skabelonliste"
#: templatedlg.ui
msgctxt ""
@@ -1913,7 +1913,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Settings"
-msgstr ""
+msgstr "Indstillinger"
#: templatedlg.ui
msgctxt ""
@@ -1922,7 +1922,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Browse online templates"
-msgstr ""
+msgstr "Gennemse online skabeloner"
#: templatedlg.ui
msgctxt ""
@@ -1931,7 +1931,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show this dialog at startup"
-msgstr ""
+msgstr "Vis dialog ved opstart"
#: templatedlg.ui
msgctxt ""
diff --git a/source/da/starmath/source.po b/source/da/starmath/source.po
index 96b69b56b78..3bd21a1b5ee 100644
--- a/source/da/starmath/source.po
+++ b/source/da/starmath/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-03 15:33+0000\n"
+"PO-Revision-Date: 2016-12-12 20:04+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480779185.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481573099.000000\n"
#: commands.src
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"RID_XEVALUATEDATY_HELP\n"
"string.text"
msgid "Evaluated At"
-msgstr ""
+msgstr "Evaluer ved"
#: commands.src
msgctxt ""
@@ -2492,7 +2492,7 @@ msgctxt ""
"RID_PRINTUIOPT_TITLE\n"
"string.text"
msgid "~Title"
-msgstr ""
+msgstr "~Titel"
#: smres.src
msgctxt ""
@@ -2516,7 +2516,7 @@ msgctxt ""
"RID_PRINTUIOPT_SIZE\n"
"string.text"
msgid "Size"
-msgstr ""
+msgstr "Størrelse"
#: smres.src
msgctxt ""
@@ -2532,7 +2532,7 @@ msgctxt ""
"RID_PRINTUIOPT_FITTOPAGE\n"
"string.text"
msgid "Fit to ~page"
-msgstr ""
+msgstr "~Tilpas til side"
#: smres.src
msgctxt ""
@@ -2540,7 +2540,7 @@ msgctxt ""
"RID_PRINTUIOPT_SCALING\n"
"string.text"
msgid "~Scaling"
-msgstr ""
+msgstr "~Skalering"
#: symbol.src
msgctxt ""
diff --git a/source/da/svtools/source/java.po b/source/da/svtools/source/java.po
index 454b7fa2e13..12e1ca1a262 100644
--- a/source/da/svtools/source/java.po
+++ b/source/da/svtools/source/java.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 19:39+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2016-12-12 20:05+0000\n"
+"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467661188.000000\n"
+"X-POOTLE-MTIME: 1481573111.000000\n"
#: javaerror.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_WARNING_JAVANOTFOUND_MAC\n"
"string.text"
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 ""
+msgstr "%PRODUCTNAME forudsætter Oracles Java Development Kit (JDK) på Mac OS X 10.10 eller højere for at udføre denne handling. Installer den og genstart %PRODUCTNAME."
#: javaerror.src
msgctxt ""
diff --git a/source/da/svtools/source/misc.po b/source/da/svtools/source/misc.po
index 362a22afa92..3237e28e349 100644
--- a/source/da/svtools/source/misc.po
+++ b/source/da/svtools/source/misc.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 19:39+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2016-12-12 20:05+0000\n"
+"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467661190.000000\n"
+"X-POOTLE-MTIME: 1481573122.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3876,7 +3876,7 @@ msgctxt ""
"LANGUAGE_USER_SILESIAN\n"
"pairedlist.text"
msgid "Silesian"
-msgstr ""
+msgstr "Silesiansk"
#: langtab.src
msgctxt ""
@@ -3885,7 +3885,7 @@ msgctxt ""
"LANGUAGE_USER_HUNGARIAN_ROVAS\n"
"pairedlist.text"
msgid "Hungarian (Szekely-Hungarian Rovas)"
-msgstr ""
+msgstr "Ungarsk (Szekely-Hungarian Rovas)"
#: svtools.src
msgctxt ""
diff --git a/source/da/svtools/uiconfig/ui.po b/source/da/svtools/uiconfig/ui.po
index 98580c5f0a4..f3c1c133c07 100644
--- a/source/da/svtools/uiconfig/ui.po
+++ b/source/da/svtools/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 19:40+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2016-12-12 20:05+0000\n"
+"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: none\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467661210.000000\n"
+"X-POOTLE-MTIME: 1481573141.000000\n"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -896,7 +896,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "For the extension to work properly, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "For at denne udvidelse skal fungere korrekt, skal %PRODUCTNAME genstartes."
#: restartdialog.ui
msgctxt ""
@@ -905,7 +905,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "For the OpenGL changes to take effect, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "For at OpenGL-ændringerne skal få effekt, skal %PRODUCTNAME genstartes."
#: restartdialog.ui
msgctxt ""
diff --git a/source/da/svx/source/dialog.po b/source/da/svx/source/dialog.po
index b4ad1b3cba8..68a4d9b51ec 100644
--- a/source/da/svx/source/dialog.po
+++ b/source/da/svx/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-03 15:53+0000\n"
+"PO-Revision-Date: 2016-12-12 20:08+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480780400.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481573285.000000\n"
#: SafeMode.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"RID_SVXSTR_SAFEMODE_ZIP_FAILURE\n"
"string.text"
msgid "The zip file could not be created."
-msgstr ""
+msgstr "Zip-filen kunne ikke oprettes."
#: bmpmask.src
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"Letter\n"
"itemlist.text"
msgid "Letter"
-msgstr ""
+msgstr "Letter"
#: page.src
msgctxt ""
@@ -1040,7 +1040,7 @@ msgctxt ""
"Native Numbering\n"
"itemlist.text"
msgid "Native Numbering"
-msgstr ""
+msgstr "Indbygget nummerering"
#: pagenumbering.src
msgctxt ""
@@ -1372,7 +1372,7 @@ msgctxt ""
"Left and Right Pages\n"
"itemlist.text"
msgid "Left and Right Pages"
-msgstr ""
+msgstr "Venstre- og højre sider"
#: samecontent.src
msgctxt ""
@@ -1381,7 +1381,7 @@ msgctxt ""
"First, Left and Right Pages\n"
"itemlist.text"
msgid "First, Left and Right Pages"
-msgstr ""
+msgstr "Første, venstre og højre sider"
#: sdstring.src
msgctxt ""
@@ -1421,7 +1421,7 @@ msgctxt ""
"RID_SVXSTR_PATTERN_UNTITLED\n"
"string.text"
msgid "Untitled Pattern"
-msgstr ""
+msgstr "Unavngivet mønster"
#: sdstring.src
msgctxt ""
@@ -3626,7 +3626,7 @@ msgctxt ""
"Extra Small (1/16\")\n"
"itemlist.text"
msgid "Extra Small (1/16\")"
-msgstr ""
+msgstr "Ekstra lille (1/16\")"
#: spacing.src
msgctxt ""
@@ -3635,7 +3635,7 @@ msgctxt ""
"Small (1/8\")\n"
"itemlist.text"
msgid "Small (1/8\")"
-msgstr ""
+msgstr "Lille (1/8\")"
#: spacing.src
msgctxt ""
@@ -3644,7 +3644,7 @@ msgctxt ""
"Small Medium (1/4\")\n"
"itemlist.text"
msgid "Small Medium (1/4\")"
-msgstr ""
+msgstr "Lille medium (1/4\")"
#: spacing.src
msgctxt ""
@@ -3653,7 +3653,7 @@ msgctxt ""
"Medium (3/8\")\n"
"itemlist.text"
msgid "Medium (3/8\")"
-msgstr ""
+msgstr "Medium (3/8\")"
#: spacing.src
msgctxt ""
@@ -3662,7 +3662,7 @@ msgctxt ""
"Medium Large (1/2\")\n"
"itemlist.text"
msgid "Medium Large (1/2\")"
-msgstr ""
+msgstr "Medium stor (1/2\")"
#: spacing.src
msgctxt ""
@@ -3671,7 +3671,7 @@ msgctxt ""
"Large (3/4\")\n"
"itemlist.text"
msgid "Large (3/4\")"
-msgstr ""
+msgstr "Stor (3/4\")"
#: spacing.src
msgctxt ""
@@ -3680,7 +3680,7 @@ msgctxt ""
"Extra Large (1\")\n"
"itemlist.text"
msgid "Extra Large (1\")"
-msgstr ""
+msgstr "Ekstra stor (1\")"
#: srchdlg.src
msgctxt ""
@@ -7400,7 +7400,7 @@ msgctxt ""
"RID_SUBSETSTR_ADLAM\n"
"string.text"
msgid "Adlam"
-msgstr ""
+msgstr "Adlam"
#: ucsubset.src
msgctxt ""
@@ -7409,7 +7409,7 @@ msgctxt ""
"RID_SUBSETSTR_BHAIKSUKI\n"
"string.text"
msgid "Bhaiksuki"
-msgstr ""
+msgstr "Bhaiksuki"
#: ucsubset.src
msgctxt ""
@@ -7418,7 +7418,7 @@ msgctxt ""
"RID_SUBSETSTR_CYRILLIC_EXTENDED_C\n"
"string.text"
msgid "Cyrillic Extended-C"
-msgstr ""
+msgstr "Kyrillisk udvidet-C"
#: ucsubset.src
msgctxt ""
@@ -7427,7 +7427,7 @@ msgctxt ""
"RID_SUBSETSTR_GLAGOLITIC_SUPPLEMENT\n"
"string.text"
msgid "Glagolitic Supplement"
-msgstr ""
+msgstr "Glagolitic Supplement"
#: ucsubset.src
msgctxt ""
@@ -7436,7 +7436,7 @@ msgctxt ""
"RID_SUBSETSTR_IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION\n"
"string.text"
msgid "Ideographic Symbols and Punctuation"
-msgstr ""
+msgstr "Ideografiske symboler og punkttegn"
#: ucsubset.src
msgctxt ""
@@ -7445,7 +7445,7 @@ msgctxt ""
"RID_SUBSETSTR_MARCHEN\n"
"string.text"
msgid "Marchen"
-msgstr ""
+msgstr "Marchen"
#: ucsubset.src
msgctxt ""
@@ -7454,7 +7454,7 @@ msgctxt ""
"RID_SUBSETSTR_MONGOLIAN_SUPPLEMENT\n"
"string.text"
msgid "Mongolian Supplement"
-msgstr ""
+msgstr "Mongolsk supplement"
#: ucsubset.src
msgctxt ""
@@ -7463,7 +7463,7 @@ msgctxt ""
"RID_SUBSETSTR_NEWA\n"
"string.text"
msgid "Newa"
-msgstr ""
+msgstr "Newa"
#: ucsubset.src
msgctxt ""
@@ -7481,7 +7481,7 @@ msgctxt ""
"RID_SUBSETSTR_TANGUT\n"
"string.text"
msgid "Tangut"
-msgstr ""
+msgstr "Tangut"
#: ucsubset.src
msgctxt ""
@@ -7490,4 +7490,4 @@ msgctxt ""
"RID_SUBSETSTR_TANGUT_COMPONENTS\n"
"string.text"
msgid "Tangut Components"
-msgstr ""
+msgstr "Tangut komponenter"
diff --git a/source/da/svx/source/form.po b/source/da/svx/source/form.po
index a3b15c8ecf2..1f35b4e3db4 100644
--- a/source/da/svx/source/form.po
+++ b/source/da/svx/source/form.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-01 19:22+0000\n"
+"PO-Revision-Date: 2016-12-12 20:32+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480620178.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481574763.000000\n"
#: datanavi.src
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"Query\n"
"itemlist.text"
msgid "Query"
-msgstr "Forespørg"
+msgstr "Forespørgsel"
#: fmstring.src
msgctxt ""
@@ -1311,7 +1311,7 @@ msgctxt ""
"TRUE\n"
"itemlist.text"
msgid "TRUE"
-msgstr ""
+msgstr "TRUE"
#: fmstring.src
msgctxt ""
@@ -1320,7 +1320,7 @@ msgctxt ""
"FALSE\n"
"itemlist.text"
msgid "FALSE"
-msgstr ""
+msgstr "FALSE"
#: fmstring.src
msgctxt ""
@@ -1338,7 +1338,7 @@ msgctxt ""
"BETWEEN\n"
"itemlist.text"
msgid "BETWEEN"
-msgstr ""
+msgstr "BETWEEN"
#: fmstring.src
msgctxt ""
@@ -1347,7 +1347,7 @@ msgctxt ""
"OR\n"
"itemlist.text"
msgid "OR"
-msgstr ""
+msgstr "OR"
#: fmstring.src
msgctxt ""
@@ -1356,7 +1356,7 @@ msgctxt ""
"AND\n"
"itemlist.text"
msgid "AND"
-msgstr ""
+msgstr "AND"
#: fmstring.src
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"Count\n"
"itemlist.text"
msgid "Count"
-msgstr ""
+msgstr "Count"
#: fmstring.src
msgctxt ""
@@ -1419,7 +1419,7 @@ msgctxt ""
"Any\n"
"itemlist.text"
msgid "Any"
-msgstr ""
+msgstr "Any"
#: fmstring.src
msgctxt ""
@@ -1428,7 +1428,7 @@ msgctxt ""
"Some\n"
"itemlist.text"
msgid "Some"
-msgstr ""
+msgstr "Some"
#: fmstring.src
msgctxt ""
@@ -1473,7 +1473,7 @@ msgctxt ""
"Collect\n"
"itemlist.text"
msgid "Collect"
-msgstr ""
+msgstr "Collect"
#: fmstring.src
msgctxt ""
@@ -1491,7 +1491,7 @@ msgctxt ""
"Intersection\n"
"itemlist.text"
msgid "Intersection"
-msgstr ""
+msgstr "Intersection"
#: fmstring.src
msgctxt ""
diff --git a/source/da/svx/source/tbxctrls.po b/source/da/svx/source/tbxctrls.po
index 54eb4bcab8c..0293fb6a9cb 100644
--- a/source/da/svx/source/tbxctrls.po
+++ b/source/da/svx/source/tbxctrls.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-01 19:23+0000\n"
+"PO-Revision-Date: 2016-12-12 20:09+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480620227.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481573381.000000\n"
#: colrctrl.src
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"RID_SVXSTR_NOFILL\n"
"string.text"
msgid "No Fill"
-msgstr ""
+msgstr "Ingen udfyldning"
#: tbcontrl.src
msgctxt ""
@@ -618,7 +618,7 @@ msgctxt ""
"RID_SVXSTR_BY_AUTHOR\n"
"string.text"
msgid "By author"
-msgstr ""
+msgstr "Af forfatter"
#: tbcontrl.src
msgctxt ""
@@ -682,7 +682,7 @@ msgctxt ""
"RID_SVXSTR_CUSTOM_PAL\n"
"string.text"
msgid "custom"
-msgstr ""
+msgstr "brugertilpasset"
#: tbcontrl.src
msgctxt ""
diff --git a/source/da/svx/uiconfig/ui.po b/source/da/svx/uiconfig/ui.po
index d3f5e3d9a5f..b783fac5c50 100644
--- a/source/da/svx/uiconfig/ui.po
+++ b/source/da/svx/uiconfig/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-03 16:47+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-23 08:55+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480783648.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482483321.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Lossy compression"
-msgstr ""
+msgstr "Tabsfri komprimering"
#: compressgraphicdialog.ui
msgctxt ""
@@ -959,7 +959,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "PNG Compression"
-msgstr ""
+msgstr "PNG-komprimering:"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1139,7 +1139,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Calculate New Size:"
-msgstr ""
+msgstr "Beregn ny størrelse:"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1274,7 +1274,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restart LibreOffice to enter Safe Mode"
-msgstr ""
+msgstr "Genstart LibreOffice for at gå i sikker tilstand"
#: datanavigator.ui
msgctxt ""
@@ -2345,7 +2345,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 2"
-msgstr ""
+msgstr "Kildefarve 2"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2354,7 +2354,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 3"
-msgstr ""
+msgstr "Kildefarve 3"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2363,7 +2363,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 4"
-msgstr ""
+msgstr "Kildefarve 4"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2372,7 +2372,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 1"
-msgstr ""
+msgstr "Kildefarve 1"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2411,7 +2411,6 @@ msgid "Tolerance 3"
msgstr "Tolerance 3"
#: dockingcolorreplace.ui
-#, fuzzy
msgctxt ""
"dockingcolorreplace.ui\n"
"tol4\n"
@@ -2427,7 +2426,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 1"
-msgstr ""
+msgstr "Erstat med 1"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2436,7 +2435,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 2"
-msgstr ""
+msgstr "Erstat med 2"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2445,7 +2444,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 3"
-msgstr ""
+msgstr "Erstat med 3"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2454,7 +2453,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 4"
-msgstr ""
+msgstr "Erstat med 4"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2757,7 +2756,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME %PRODUCTVERSION Document Recovery"
-msgstr ""
+msgstr "%PRODUCTNAME %PRODUCTVERSION Dokumentgendannelse"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2784,7 +2783,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "%PRODUCTNAME will attempt to recover the state of the files you were working on before it crashed. Click 'Start' to begin the process, or click 'Discard' to cancel the recovery."
-msgstr ""
+msgstr "%PRODUCTNAME vil forsøge at genskabe den fil du arbejdede på, da systemet gik ned. Klik på 'Start' for at begynde gendannelsen eller klik 'Afbryd' for at annullere gendannelsen."
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2820,7 +2819,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME %PRODUCTVERSION Document Recovery"
-msgstr ""
+msgstr "%PRODUCTNAME %PRODUCTVERSION Dokumentgendannelse"
#: docrecoverysavedialog.ui
msgctxt ""
@@ -2901,7 +2900,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "For_matted display"
-msgstr ""
+msgstr "Formateret visning"
#: findreplacedialog.ui
msgctxt ""
@@ -2928,7 +2927,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "All _sheets"
-msgstr ""
+msgstr "Alle _ark"
#: findreplacedialog.ui
msgctxt ""
@@ -2973,7 +2972,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Find Pre_vious"
-msgstr ""
+msgstr "Find _forrige"
#: findreplacedialog.ui
msgctxt ""
@@ -3027,7 +3026,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Attribut_es..."
-msgstr ""
+msgstr "Attributt_er..."
#: findreplacedialog.ui
msgctxt ""
@@ -3062,8 +3061,8 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "Ignorer diakritiske CTL"
+msgid "Ignore diac_ritics"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -3071,7 +3070,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -3207,7 +3206,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colum_ns"
-msgstr ""
+msgstr "_Kolonner"
#: findreplacedialog.ui
msgctxt ""
@@ -3270,7 +3269,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_End value:"
-msgstr ""
+msgstr "S_lutværdi:"
#: floatingareastyle.ui
msgctxt ""
@@ -3627,7 +3626,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Same _content on left and right pages"
-msgstr ""
+msgstr "Samme indhold på venstre- og højresider"
#: headfootformatpage.ui
msgctxt ""
@@ -3978,7 +3977,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Playback:"
-msgstr ""
+msgstr "Afspilning:"
#: mediaplayback.ui
msgctxt ""
@@ -5071,7 +5070,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Continue in Safe Mode"
-msgstr ""
+msgstr "_Fortsæt i sikker tilstand"
#: safemodedialog.ui
msgctxt ""
@@ -5089,7 +5088,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr ""
+msgstr "_Anvend ændringerne og genstart"
#: safemodedialog.ui
msgctxt ""
@@ -5104,6 +5103,11 @@ msgid ""
"\n"
"The proposed changes get more radical from top down so it is recommended to try them successively one after another."
msgstr ""
+"%PRODUCTNAME kører nu i sikker tilstand hvilket midlertidigt undertrykker din konfiguration og dine udvidelser \n"
+"\n"
+"Du kan udføre en eller flere af de følgende ændringer til din brugerprofil for at gendanne %PRODUCTNAME i fungerende tilstand.\n"
+"\n"
+"De foreslåede ændringer bliver mere alvorlige fra toppen og nedad, så det anbefales at forsøge mulighederne en af gangen."
#: safemodedialog.ui
msgctxt ""
@@ -5112,7 +5116,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore from backup"
-msgstr ""
+msgstr "Gendan fra sikkerhedskopi"
#: safemodedialog.ui
msgctxt ""
@@ -5121,7 +5125,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore user configuration to the last known working state"
-msgstr ""
+msgstr "Gendan brugerprofil til senest fungerende tilstand"
#: safemodedialog.ui
msgctxt ""
@@ -5130,7 +5134,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore state of installed user extensions to the last known working state"
-msgstr ""
+msgstr "Gendan tilstand af installerede brugerudvidelser til senest fungerende tilstand"
#: safemodedialog.ui
msgctxt ""
@@ -5148,7 +5152,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Disable all user extensions"
-msgstr "Deaktivér alle brugerudvidelser"
+msgstr "Slå alle brugerudvidelser fra"
#: safemodedialog.ui
msgctxt ""
@@ -5157,16 +5161,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Disable hardware acceleration (OpenGL, OpenCL)"
-msgstr ""
+msgstr "Slå hardware acceleration (OpenGL, OpenCL) fra"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
-msgstr ""
+msgid "Extensions"
+msgstr "Udvidelser"
#: safemodedialog.ui
msgctxt ""
@@ -5180,10 +5184,19 @@ msgstr "Afinstallér alle brugerudvidelser"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
@@ -5193,7 +5206,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset to factory settings"
-msgstr ""
+msgstr "Nulstil til fabriksindstillinger"
#: safemodedialog.ui
msgctxt ""
@@ -5202,7 +5215,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset settings and user interface modifications"
-msgstr ""
+msgstr "Nulstil indstillinger og tilpasninger til brugergrænsefladen"
#: safemodedialog.ui
msgctxt ""
@@ -5211,7 +5224,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset entire user profile"
-msgstr ""
+msgstr "Nulstil hele brugerprofilen"
#: safemodedialog.ui
msgctxt ""
@@ -5220,7 +5233,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "If you experience problems that are not resolved by using safe mode, visit the following link to get help or report a bug."
-msgstr ""
+msgstr "Hvis du oplever problemer som ikke er løst ved hjælp af sikker tilstand, kan du besøge følgende link for at få hjælp eller til at indsende en fejlrapport."
#: safemodedialog.ui
msgctxt ""
@@ -5238,7 +5251,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "You can also include relevant parts of your user profile in the bugreport (be aware it might contain personal data)."
-msgstr ""
+msgstr "Du kan også medsende relevante dele af din brugerprofil i fejlrapporten (vær opmærksom på at den kan indeholde personoplysninger)"
#: safemodedialog.ui
msgctxt ""
@@ -5247,7 +5260,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create Zip Archive from User Profile"
-msgstr ""
+msgstr "Opret ZIP-arkiv fra brugerprofil"
#: safemodedialog.ui
msgctxt ""
@@ -6255,7 +6268,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position _Y:"
-msgstr ""
+msgstr "Position _Y:"
#: sidebarpossize.ui
msgctxt ""
diff --git a/source/da/sw/source/core/undo.po b/source/da/sw/source/core/undo.po
index e8ee91d30ff..2a361437013 100644
--- a/source/da/sw/source/core/undo.po
+++ b/source/da/sw/source/core/undo.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2014-06-10 18:00+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2016-12-12 20:17+0000\n"
+"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1402423214.000000\n"
+"X-POOTLE-MTIME: 1481573879.000000\n"
#: undo.src
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"STR_UNDO_TBLSTYLE_CREATE\n"
"string.text"
msgid "Create table style: $1"
-msgstr ""
+msgstr "Opret tabeltypografi: $1"
#: undo.src
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"STR_UNDO_TBLSTYLE_DELETE\n"
"string.text"
msgid "Delete table style: $1"
-msgstr ""
+msgstr "Slet tabeltypografi $1"
#: undo.src
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"STR_UNDO_TBLSTYLE_UPDATE\n"
"string.text"
msgid "Update table style: $1"
-msgstr ""
+msgstr "Opdater tabeltypografi $1"
#: undo.src
msgctxt ""
diff --git a/source/da/sw/source/ui/dochdl.po b/source/da/sw/source/ui/dochdl.po
index 0622a4c4782..674c3f5f002 100644
--- a/source/da/sw/source/ui/dochdl.po
+++ b/source/da/sw/source/ui/dochdl.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-08-25 12:34+0200\n"
-"PO-Revision-Date: 2016-07-04 19:49+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"PO-Revision-Date: 2016-01-06 21:54+0000\n"
+"Last-Translator: Jeppe Bundsgaard <jeppe@bundsgaard.net>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467661787.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1452117240.000000\n"
#: dochdl.src
msgctxt ""
@@ -87,3 +87,10 @@ msgctxt ""
"string.text"
msgid "DDE link"
msgstr "DDE-kæde"
+
+msgctxt ""
+"dochdl.src\n"
+"STR_NO_TABLE\n"
+"string.text"
+msgid "A table cannot be inserted into another table. However, you can paste the data into the document when the cursor is not in a table."
+msgstr "Det er ikke muligt at indsætte en tabel i en anden tabel. Men du kan indsætte disse data i dokumentet, når markøren ikke er i en tabel"
diff --git a/source/da/sw/source/ui/misc.po b/source/da/sw/source/ui/misc.po
index 7a34b6eefa2..4a10b22e52a 100644
--- a/source/da/sw/source/ui/misc.po
+++ b/source/da/sw/source/ui/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-01 19:31+0000\n"
+"PO-Revision-Date: 2016-12-12 20:18+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480620660.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481573895.000000\n"
#: glossary.src
msgctxt ""
@@ -177,7 +177,7 @@ msgctxt ""
"Native Numbering\n"
"itemlist.text"
msgid "Native Numbering"
-msgstr ""
+msgstr "Indbygget nummerering"
#: numberingtypelistbox.src
msgctxt ""
diff --git a/source/da/sw/source/ui/utlui.po b/source/da/sw/source/ui/utlui.po
index 21d9c549a5f..942590603e3 100644
--- a/source/da/sw/source/ui/utlui.po
+++ b/source/da/sw/source/ui/utlui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-29 18:02+0000\n"
+"PO-Revision-Date: 2016-12-12 20:18+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480442579.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481573903.000000\n"
#: poolfmt.src
msgctxt ""
@@ -1575,7 +1575,7 @@ msgctxt ""
"STR_TABSTYLE_LAVENDER\n"
"string.text"
msgid "Lavender"
-msgstr ""
+msgstr "Lavendel"
#: poolfmt.src
msgctxt ""
diff --git a/source/da/sw/source/uibase/utlui.po b/source/da/sw/source/uibase/utlui.po
index ca8d88ef021..d23b137d758 100644
--- a/source/da/sw/source/uibase/utlui.po
+++ b/source/da/sw/source/uibase/utlui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-01 19:31+0000\n"
+"PO-Revision-Date: 2016-12-12 20:18+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480620689.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481573907.000000\n"
#: attrdesc.src
msgctxt ""
@@ -1816,7 +1816,7 @@ msgctxt ""
"~Zoom\n"
"itemlist.text"
msgid "~Zoom"
-msgstr ""
+msgstr "~Zoom"
#: unotools.src
msgctxt ""
diff --git a/source/da/sw/uiconfig/swriter/ui.po b/source/da/sw/uiconfig/swriter/ui.po
index 0b999b30633..81c662de1d9 100644
--- a/source/da/sw/uiconfig/swriter/ui.po
+++ b/source/da/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-12-03 18:43+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-12 20:33+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: none\n"
"Language: da\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480790636.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481574811.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5769,7 +5769,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "of $1"
-msgstr ""
+msgstr "af $1"
#: gotopagedialog.ui
msgctxt ""
@@ -5958,7 +5958,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Update entry from selection"
-msgstr ""
+msgstr "Opdatér element fra markering"
#: indexentry.ui
msgctxt ""
@@ -8775,7 +8775,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Toggle Master View"
-msgstr ""
+msgstr "Mastervisning til/fra"
#: navigatorpanel.ui
msgctxt ""
@@ -8937,7 +8937,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Toggle Master View"
-msgstr ""
+msgstr "Mastervisning til/fra"
#: navigatorpanel.ui
msgctxt ""
@@ -9054,7 +9054,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Outline"
-msgstr ""
+msgstr "Disposition"
#: notebookbar.ui
msgctxt ""
@@ -9351,7 +9351,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Document Area Elements"
-msgstr ""
+msgstr "Elementer i dokumentområde"
#: notebookbar.ui
msgctxt ""
@@ -9486,7 +9486,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Brightness & Contrast"
-msgstr ""
+msgstr "-20% Lysstyrke & kontrast"
#: notebookbar_groups.ui
msgctxt ""
@@ -9495,7 +9495,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Brightness"
-msgstr ""
+msgstr "-20% Lysstyrke"
#: notebookbar_groups.ui
msgctxt ""
@@ -9504,7 +9504,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Contrast"
-msgstr ""
+msgstr "-20% Kontrast"
#: notebookbar_groups.ui
msgctxt ""
@@ -9513,7 +9513,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "0% Brightness & Contrast"
-msgstr ""
+msgstr "0% Lysstyrke & kontrast"
#: notebookbar_groups.ui
msgctxt ""
@@ -9522,7 +9522,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Brightness"
-msgstr ""
+msgstr "+20% Lysstyrke"
#: notebookbar_groups.ui
msgctxt ""
@@ -9531,7 +9531,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Contrast"
-msgstr ""
+msgstr "+20% Kontrast"
#: notebookbar_groups.ui
msgctxt ""
@@ -9540,7 +9540,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Brightness & Contrast"
-msgstr ""
+msgstr "+20% Lysstyrke & kontrast"
#: notebookbar_groups.ui
msgctxt ""
@@ -9549,7 +9549,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Red"
-msgstr ""
+msgstr "Farvelæg rød"
#: notebookbar_groups.ui
msgctxt ""
@@ -9558,7 +9558,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Blue"
-msgstr ""
+msgstr "Farvelæg blå"
#: notebookbar_groups.ui
msgctxt ""
@@ -9567,7 +9567,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Green"
-msgstr ""
+msgstr "Farvelæg grøn"
#: notebookbar_groups.ui
msgctxt ""
@@ -9576,7 +9576,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Orange"
-msgstr ""
+msgstr "Farvelæg orange"
#: notebookbar_groups.ui
msgctxt ""
@@ -9630,7 +9630,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default Paragraph"
-msgstr ""
+msgstr "Standard afsnit"
#: notebookbar_groups.ui
msgctxt ""
@@ -9648,7 +9648,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Subtitle"
-msgstr "Undertekst"
+msgstr "Undertitel"
#: notebookbar_groups.ui
msgctxt ""
@@ -9657,7 +9657,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default Character"
-msgstr ""
+msgstr "Standard tegn"
#: notebookbar_groups.ui
msgctxt ""
@@ -9702,7 +9702,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 1"
-msgstr ""
+msgstr "Typografi 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -9711,7 +9711,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 2"
-msgstr ""
+msgstr "Typografi 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -9720,7 +9720,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 3"
-msgstr ""
+msgstr "Typografi 3"
#: notebookbar_groups.ui
msgctxt ""
@@ -9729,7 +9729,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 4"
-msgstr ""
+msgstr "Typografi 4"
#: notebookbar_groups.ui
msgctxt ""
@@ -9738,7 +9738,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows Above"
-msgstr ""
+msgstr "Indsætte rækker over"
#: notebookbar_groups.ui
msgctxt ""
@@ -9747,7 +9747,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows Below"
-msgstr ""
+msgstr "Indsæt rækker under"
#: notebookbar_groups.ui
msgctxt ""
@@ -9824,24 +9824,6 @@ msgstr "Typografi"
#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
"label\n"
"string.text"
@@ -10026,7 +10008,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Contour"
-msgstr ""
+msgstr "Rediger kontur"
#: notebookbar_single.ui
msgctxt ""
@@ -11362,7 +11344,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Insertions"
-msgstr ""
+msgstr "Farve for indsat indhold"
#: optredlinepage.ui
msgctxt ""
@@ -11407,7 +11389,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Deletions"
-msgstr ""
+msgstr "Farve for slettet indhold"
#: optredlinepage.ui
msgctxt ""
@@ -11452,7 +11434,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Changed Attributes"
-msgstr ""
+msgstr "Farve for ændrede egenskaber"
#: optredlinepage.ui
msgctxt ""
@@ -11479,7 +11461,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Mark"
-msgstr ""
+msgstr "Farve for mærke"
#: optredlinepage.ui
msgctxt ""
@@ -12068,7 +12050,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tab stop at:"
-msgstr ""
+msgstr "Tabulatorstop ved:"
#: outlinepositionpage.ui
msgctxt ""
@@ -12293,7 +12275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Same Content:"
-msgstr ""
+msgstr "Samme indhold:"
#: pageformatpanel.ui
msgctxt ""
@@ -12329,7 +12311,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Orientation:"
-msgstr ""
+msgstr "Papirretning:"
#: pageformatpanel.ui
msgctxt ""
@@ -12410,7 +12392,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Normal 0.75\""
-msgstr ""
+msgstr "Normal 0.75\""
#: pageformatpanel.ui
msgctxt ""
@@ -12419,7 +12401,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Normal 1\""
-msgstr ""
+msgstr "Normal 1\""
#: pageformatpanel.ui
msgctxt ""
@@ -12428,7 +12410,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Normal 1.25\""
-msgstr ""
+msgstr "Normal 1.25\""
#: pageformatpanel.ui
msgctxt ""
@@ -12482,7 +12464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spacing:"
-msgstr "Mellemrum:"
+msgstr "Afstand:"
#: pageheaderpanel.ui
msgctxt ""
@@ -12491,7 +12473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Same Content:"
-msgstr ""
+msgstr "Samme indhold:"
#: pagemargincontrol.ui
msgctxt ""
@@ -15146,7 +15128,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 2 Width"
-msgstr ""
+msgstr "Kolonne 2 bredde"
#: tablecolumnpage.ui
msgctxt ""
@@ -15155,7 +15137,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 3 Width"
-msgstr ""
+msgstr "Kolonne 3 bredde"
#: tablecolumnpage.ui
msgctxt ""
@@ -15164,7 +15146,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 4 Width"
-msgstr ""
+msgstr "Kolonne 4 bredde"
#: tablecolumnpage.ui
msgctxt ""
@@ -15173,7 +15155,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 5 Width"
-msgstr ""
+msgstr "Kolonne 5 bredde"
#: tablecolumnpage.ui
msgctxt ""
@@ -15182,7 +15164,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 6 Width"
-msgstr ""
+msgstr "Kolonne 6 bredde"
#: tablecolumnpage.ui
msgctxt ""
@@ -15191,7 +15173,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 1 Width"
-msgstr ""
+msgstr "Kolonne 1 bredde"
#: tablecolumnpage.ui
msgctxt ""
@@ -16685,7 +16667,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "L_ink"
-msgstr ""
+msgstr "Kæde"
#: tocentriespage.ui
msgctxt ""
diff --git a/source/da/swext/mediawiki/help.po b/source/da/swext/mediawiki/help.po
index 30d8cfe0d64..2acea2c79dc 100644
--- a/source/da/swext/mediawiki/help.po
+++ b/source/da/swext/mediawiki/help.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-03 18:45+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"PO-Revision-Date: 2016-12-12 21:21+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480790759.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481577697.000000\n"
#: help.tree
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_id4277169\n"
"help.text"
msgid "Before you use the Wiki Publisher, ensure that %PRODUCTNAME uses a Java Runtime Environment (JRE). To check the status of the JRE, choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Advanced</item>. Ensure that “Use a Java runtime environment” is checked and that a Java runtime folder is selected in the big listbox. If no JRE was activated, then activate a JRE of version 1.4 or later and restart %PRODUCTNAME."
-msgstr ""
+msgstr "Før du bruger Wiki Publisher skal du sikre, at %PRODUCTNAME bruger et Java Runtime Environment (Java-afviklingsmiljø, JRE). For at kontrollere status for JRE skal du vælge <item type=\"menuitem\">Funktioner - Indstillinger - %PRODUCTNAME - Java</item>. Sørg for, at Anvend et Java-afviklingsmiljø er markeret, og at en Java-afviklingsmappe er valgt i det store listefelt. Hvis intet JRE blev aktiveret skal du aktivere et JRE 1.4 eller senere, og genstarte %PRODUCTNAME."
#: wiki.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id656758\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable to store your password between sessions. The master password must be enabled; see <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Security</item>.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aktiver for at gemme din adgangskode fra session til session. Hovedadgangskoden skal være aktiveret, se <item type=\"menuitem\">Funktioner - Indstillinger - %PRODUCTNAME - Sikkerhed</item>.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aktiver for at gemme din adgangskode fra session til session. Hovedadgangskoden skal være aktiveret; se <item type=\"menuitem\">Funktioner - Indstillinger - %PRODUCTNAME - Sikkerhed</item>.</ahelp>"
#: wikiaccount.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id628070\n"
"help.text"
msgid "If the wiki allows anonymous access, you can leave the account text boxes empty. Else enter your user name and password."
-msgstr ""
+msgstr "Hvis wikien tillader anonym adgang, kan du efterlade boksen konto tom. Ellers skal du indtastet dit brugernavn og adgangskode."
#: wikiaccount.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_id508133\n"
"help.text"
msgid "Apply a heading paragraph style to the headings in your Writer document. The wiki will show the heading styles of the same outline level, formatted as defined by the wiki engine."
-msgstr ""
+msgstr "Anvend en overskriftstypografi til overskrifterne i dit Writer-dokument. Wikien vil vise overskriftstypografierne for det samme dispositionsniveau formateret som defineret af wiki-maskinen."
#: wikiformats.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3735465\n"
"help.text"
msgid "Native OpenDocument hyperlinks are transformed into “external” wiki links. Therefore, the built-in linking facility of OpenDocument should only be used to create links that point to other sites outside the wiki web. For creating wiki links that point to other subjects of the same wiki domain, use wiki links."
-msgstr ""
+msgstr "OpenDocument hyperlinks konverteres til \"eksterne\" wiki-links. Derfor bør den indbyggede link-funktion i OpenDocument kun bruges til at oprette links, som peger på eksterne lokationer udenfor wikien. For at oprette wiki-links, som peger på emner indenfor wikiens domæne, bruges wiki-links."
#: wikiformats.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id8942838\n"
"help.text"
msgid "Lists can be exported reliably when the whole list uses a consistent list style. Use the Numbering or Bullets icon to generate a list in Writer. If you need a list without numbering or bullets, use <emph>Format - Bullets and Numbering</emph> to define and apply the respective list style."
-msgstr ""
+msgstr "Lister kan eksporteres pålideligt, hvis hele liste bruger en konsistent listetypografi. Brug nummererings- eller punktopstillingsikonet for at opstille en liste i Writer. Hvis du har brug for en liste uden nummererings- eller eller punkttegn, brug <emph>Formater - Punktopstilling</emph> for at definere og anvende den ønskede listetypografi."
#: wikiformats.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id376598\n"
"help.text"
msgid "Explicit text alignment should not be used in wiki articles. Nevertheless, text alignment is supported for left, centered, and right alignment of text."
-msgstr ""
+msgstr "Eksplicit tekstjustering bør ikke bruges i wiki-artikler; dog er venstre- højre- og centerstilling af tekst understøttet."
#: wikiformats.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"par_id1459395\n"
"help.text"
msgid "A paragraph style with a fixed-width font is transformed as pre-formatted text. Pre-formatted text is shown on the wiki with a border around the text."
-msgstr ""
+msgstr "En afsnitstypografi med fastbredde-skrifttype konverteres til præformateret tekst. Præformateret tekst vises på den wiki'en med en ramme omkring teksten."
#: wikiformats.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id6397595\n"
"help.text"
msgid "Character styles modify the appearance of parts of a paragraph. The transformation supports bold, italics, bold/italics, subscript and superscript. All fixed-width fonts are transformed into the wiki typewriter style."
-msgstr ""
+msgstr "Tegntypografier modificerer udseendet for dele af et afsnit. Konverteringen understøtter fed, kursiv, fed/kursiv, sænket skrift og hævet skrift. Alle fastbredde-skrifttyper konverteres til wiki-typografien Typewriter."
#: wikiformats.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id5238196\n"
"help.text"
msgid "Note: The transformation uses the new style of footnotes with <ref> and <references> tags that requires the Cite.php extension to be installed into MediaWiki. If those tags are shown as plain text in the transformation result, ask the wiki administrator to install this extension."
-msgstr ""
+msgstr "Bemærk: Konverteringen bruger den nye type fodnoter med <ref>- og <references>-mærkater, som kræver udvidelsen Cite.php installeret i MediaWiki. Hvis disse mærkater vises som ren tekst i konverteringsresultatet, bør du bede wiki-administratoren om at installere denne udvidelse."
#: wikiformats.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id1831110\n"
"help.text"
msgid "Irrespective of custom table styles for border and background, a table is always exported as “prettytable,” which renders in the wiki engine with simple borders and bold header."
-msgstr ""
+msgstr "Uanset tilpassede tabeltypografier for kanter og baggrund, eksporteres en tabel altid som \"prettytable\", som vises i wiki'en med simple kanter og fed overskrift."
#: wikiformats.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"par_id8216193\n"
"help.text"
msgid "The character set of the transformation result is fixed to UTF-8. Depending on your system, this might not be the default character set. This might cause “special characters” to look broken when viewed with default settings. However, you can switch your editor to UTF-8 encoding to fix this. If your editor does not support switching the encoding, you can display the result of the transformation in the Firefox browser and switch the encoding to UTF-8 there. Now, you can copy and paste the transformation result to your program of choice."
-msgstr ""
+msgstr "Konverteringsresultatets tegnsæt vil altid være UTF-8. Afhængigt af dit system kan dette være forskelligt fra standardtegnsættet. Det kan forårsage, at visse tegn bliver vist forkert i en editor, når det vises med standardindstillinger. Formentlig kan du dog nemt ændre indstillingen for din editor til UTF-8-tegnsæt og dermed løse problemet. Hvis din editor ikke understøtter ændring af tegnsæt, kan du kan få vist resultatet af konverteringen i Firefox-browseren ved at skifte tegnsæt til UTF-8 der. Derefter kan du kopiere og indsætte resultatet i din editor."
#: wikisend.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_id2794885\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the title of your wiki entry. This is the top heading of your wiki entry. For a new entry, the title must be unique on this wiki. If you enter an existing title, your upload will overwrite the existing wiki entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indtast titlen på dit Wikielement. Det er øverste overskrift for dit wiki-element. For et nyt element, skal titlen være unik på denne wiki. Hvis du indtaster en eksisterende titel, vil din side overskriv det eksisterende wiki-element.</ahelp>"
#: wikisend.xhp
msgctxt ""
diff --git a/source/da/vcl/source/src.po b/source/da/vcl/source/src.po
index f8758f8774a..26f4a7a21d0 100644
--- a/source/da/vcl/source/src.po
+++ b/source/da/vcl/source/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-03 18:45+0000\n"
+"PO-Revision-Date: 2016-12-12 20:27+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480790750.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481574459.000000\n"
#: app.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"SV_APP_LAYOUT_ENGINE\n"
"string.text"
msgid "Layout Engine: "
-msgstr ""
+msgstr "Layout motor: "
#: app.src
msgctxt ""
diff --git a/source/da/xmlsecurity/uiconfig/ui.po b/source/da/xmlsecurity/uiconfig/ui.po
index c2799f245c1..828daf732af 100644
--- a/source/da/xmlsecurity/uiconfig/ui.po
+++ b/source/da/xmlsecurity/uiconfig/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-03 18:47+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-12 20:27+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480790833.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481574466.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr "Beskrivelse"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
@@ -266,7 +275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use AdES-compliant signature when there is a choice"
-msgstr ""
+msgstr "Brug AdES-kompatibel signatur når det er muligt"
#: macrosecuritydialog.ui
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/sbasic/shared.po b/source/de/helpcontent2/source/text/sbasic/shared.po
index 13d4b8c69ae..d0c5313a477 100644
--- a/source/de/helpcontent2/source/text/sbasic/shared.po
+++ b/source/de/helpcontent2/source/text/sbasic/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-05 16:50+0000\n"
+"PO-Revision-Date: 2016-12-21 13:43+0000\n"
"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480956611.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482327790.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"110\n"
"help.text"
msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.odt</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.odt</emph> in URL notation."
-msgstr ""
+msgstr "In der URL-Notation sind bestimmte Sonderzeichen nicht zulässig. Sie werden entweder durch andere Zeichen ersetzt oder codiert. Als Pfadtrenner wird der Schrägstrich (<emph>/</emph>) verwendet. Ein Verweis auf eine Datei im lokalen Rechner, der in \"Windows-Notation\" <emph>C:\\Meine Datei.odt</emph> lautet, wird in URL-Notation zu <emph>file:///C|/Meine%20Datei.odt</emph>."
#: 00000003.xhp
msgctxt ""
@@ -9476,7 +9476,7 @@ msgctxt ""
"hd_id3150360\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement [Runtime]\">Put Statement [Runtime]</link>"
-msgstr "Input #Dateinummer As Integer; var1[, var2[, var3[, ...]]]"
+msgstr "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put-Anweisung [Laufzeit]\">Put-Anweisung [Laufzeit]</link>"
#: 03020204.xhp
msgctxt ""
@@ -10788,7 +10788,7 @@ msgctxt ""
"par_id3154012\n"
"help.text"
msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.ods\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments."
-msgstr ""
+msgstr "Um eine Liste aller Dateien in einem bestimmten Verzeichnis zu erstellen, gehen Sie wie folgt vor: Beim ersten Aufruf der Dir-Funktion geben Sie den vollständigen Suchpfad für die Dateien an, so z. B. \"D:\\Dateien\\*.ods\". Wenn der Pfad korrekt ist und mindestens eine Datei gefunden wird, gibt die Dir-Funktion den Namen der ersten Datei zurück, auf die der Suchpfad zutrifft. Um weitere Dateinamen für diesen Suchpfad zurückzugeben, rufen Sie Dir erneut auf, ohne jedoch irgendwelche Argumente anzugeben."
#: 03020404.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/00.po b/source/de/helpcontent2/source/text/scalc/00.po
index d2532624b19..a21f8941e12 100644
--- a/source/de/helpcontent2/source/text/scalc/00.po
+++ b/source/de/helpcontent2/source/text/scalc/00.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-09-18 04:19+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-23 12:45+0000\n"
+"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1474172349.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482497157.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -553,8 +553,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">Menü <emph>Einfügen - Namen</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr "<variable id=\"einamen\">Wählen Sie im Menü <emph>Einfügen - Benannten Bereich...</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"37\n"
"help.text"
msgid "<variable id=\"eiextdata\">Choose <emph>Sheet - Link to External Data</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"eiextdata\">Menü <emph>Tabelle - Verknüpfung zu externen Daten</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -571,8 +571,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "Menü <emph>Einfügen - Namen - Festlegen...</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr "Wählen Sie im Menü <emph>Tabelle - Benannte Bereiche - Festlegen...</emph>"
#: 00000404.xhp
msgctxt ""
@@ -589,8 +589,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">Menü <emph>Einfügen - Namen - Einfügen</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr "<variable id=\"einaei\">Wählen Sie im Menü <emph>Tabelle - Benannte Bereiche - Einfügen...</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -598,8 +598,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">Menü <emph>Einfügen - Namen - Übernehmen</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr "<variable id=\"einaueb\">Wählen Sie im Menü <emph>Tabelle - Benannte Bereiche - Erstellen...</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -607,8 +607,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">Menü<emph> Einfügen - Namen - Beschriftungen</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr "<variable id=\"einabesch\">Wählen Sie im Menü <emph>Tabelle - Benannte Bereiche - Beschriftungen...</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1051,7 +1051,7 @@ msgctxt ""
"par_id3149020\n"
"help.text"
msgid "<variable id=\"protect_sheet\">Choose <emph>Tools - Protect Sheet</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"protect_sheet\">Menü <emph>Extras - Tabelle schützen</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -1059,7 +1059,7 @@ msgctxt ""
"par_id3154256\n"
"help.text"
msgid "<variable id=\"protect_spreadsheet\">Choose <emph>Tools - Protect Spreadsheet</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"protect_spreadsheet\">Wählen Sie im Menü <emph>Extras - Tabellendokument schützen...</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -1135,7 +1135,7 @@ msgctxt ""
"par_id3153663\n"
"help.text"
msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item></variable>"
-msgstr ""
+msgstr "<variable id=\"fefix\">Wählen Sie im Menü <item type=\"menuitem\">Ansicht - Zellen fixieren - Zeilen/Spalten fixieren</item></variable>"
#: 00000412.xhp
msgctxt ""
@@ -1714,7 +1714,7 @@ msgctxt ""
"par_id3149095\n"
"help.text"
msgid "<variable id=\"insert_page_break\">Choose <emph>Sheet - Insert Page Break</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"insert_page_break\">Wählen Sie im Menü <emph>Tabelle - Umbruch einfügen</emph></variable>"
#: sheet_menu.xhp
msgctxt ""
@@ -1722,7 +1722,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "<variable id=\"insert_page_break_row\">Choose <emph>Sheet - Insert Page Break - Row Break</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"insert_page_break_row\">Wählen Sie im Menü <emph>Tabelle - Umbruch einfügen - Zeilenumbruch</emph></variable>"
#: sheet_menu.xhp
msgctxt ""
@@ -1730,7 +1730,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "<variable id=\"insert_page_break_column\">Choose <emph>Sheet - Insert Page Break - Column Break</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"insert_page_break_column\">Wählen Sie im Menü <emph>Tabelle - Umbruch einfügen - Spaltenumbruch</emph></variable>"
#: sheet_menu.xhp
msgctxt ""
@@ -1738,7 +1738,7 @@ msgctxt ""
"par_id3153093\n"
"help.text"
msgid "<variable id=\"delete_page_break\">Choose <emph>Sheet - Delete Page Break</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"delete_page_break\">Wählen Sie im Menü <emph>Tabelle - Umbruch löschen</emph></variable>"
#: sheet_menu.xhp
msgctxt ""
@@ -1746,7 +1746,7 @@ msgctxt ""
"par_id3153191\n"
"help.text"
msgid "<variable id=\"delete_page_break_row\">Choose <emph>Sheet - Delete Page Break - Row Break</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"delete_page_break_row\">Wählen Sie im Menü <emph>Tabelle - Umbruch löschen - Zeilenumbruch</emph></variable>"
#: sheet_menu.xhp
msgctxt ""
@@ -1754,4 +1754,4 @@ msgctxt ""
"par_id3145645\n"
"help.text"
msgid "<variable id=\"delete_page_break_column\">Choose <emph>Sheet - Delete Page Break - Column Break</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"delete_page_break_column\">Wählen Sie im Menü <emph>Tabelle - Umbruch löschen - Spaltenumbruch</emph></variable>"
diff --git a/source/de/helpcontent2/source/text/scalc/01.po b/source/de/helpcontent2/source/text/scalc/01.po
index 26da09799e2..539ec3d68b3 100644
--- a/source/de/helpcontent2/source/text/scalc/01.po
+++ b/source/de/helpcontent2/source/text/scalc/01.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-11-22 08:51+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-23 13:13+0000\n"
+"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479804690.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482498819.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -2281,7 +2281,7 @@ msgctxt ""
"par_id082520160232335032\n"
"help.text"
msgid "<image id=\"img_id083120161149318932\" src=\"media/screenshots/modules/scalc/ui/deletecells/DeleteCellsDialog.png\" width=\"3.3126in\" height=\"1.5209in\"><alt id=\"alt_id083120161149318932\">Delete cells dialog</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id083120161149318932\" src=\"media/screenshots/modules/scalc/ui/deletecells/DeleteCellsDialog.png\" width=\"3.3126in\" height=\"1.5209in\"><alt id=\"alt_id083120161149318932\">Dialog Zellen löschen</alt></image>"
#: 02160000.xhp
msgctxt ""
@@ -2562,7 +2562,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Delete Page Break"
-msgstr ""
+msgstr "Umbruch löschen"
#: 02190000.xhp
msgctxt ""
@@ -2570,7 +2570,7 @@ msgctxt ""
"hd_id3150541\n"
"help.text"
msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Page Break\">Delete Page Break</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Page Break\">Umbruch löschen</link>"
#: 02190000.xhp
msgctxt ""
@@ -2620,7 +2620,7 @@ msgctxt ""
"par_id3151041\n"
"help.text"
msgid "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose <emph>Sheet - Delete Page Break - Row Break</emph>. The manual row break is removed."
-msgstr ""
+msgstr "Setzen Sie den Cursor in eine Zelle unmittelbar unter dem Zeilenumbruch, der durch eine waagerechte Linie gekennzeichnet ist, und wählen Sie im Menü <emph>Tabelle - Umbruch löschen - Zeilenumbruch</emph>. Der manuelle Zeilenumbruch wird entfernt."
#: 02190200.xhp
msgctxt ""
@@ -2662,7 +2662,7 @@ msgctxt ""
"par_id3145173\n"
"help.text"
msgid "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose <emph>Sheet - Delete Page Break - Column Break</emph>. The manual column break is removed."
-msgstr ""
+msgstr "Setzen Sie den Cursor in die Zelle rechts neben dem Spaltenumbruch, der durch eine senkrechte Linie dargestellt ist, und wählen Sie im Menü <emph>Tabelle - Umbruch löschen - Spaltenumbruch</emph>. Der manuelle Spaltenumbruch wird entfernt."
#: 02200000.xhp
msgctxt ""
@@ -2922,7 +2922,7 @@ msgctxt ""
"hd_id3154731\n"
"help.text"
msgid "Delete Page Breaks"
-msgstr ""
+msgstr "Umbrüche löschen"
#: 03100000.xhp
msgctxt ""
@@ -2954,7 +2954,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert Page Break"
-msgstr ""
+msgstr "Umbruch einfügen"
#: 04010000.xhp
msgctxt ""
@@ -2971,7 +2971,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Insert Page Break\">Insert Page Break</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04010000.xhp\" name=\"Insert Page Break\">Umbruch einfügen</link>"
#: 04010000.xhp
msgctxt ""
@@ -2988,7 +2988,7 @@ msgctxt ""
"par_id3155133\n"
"help.text"
msgid "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Sheet - Delete Page Break\">Sheet - Delete Page Break</link> to remove breaks created manually."
-msgstr ""
+msgstr "Wählen Sie <link href=\"text/scalc/01/02190000.xhp\" name=\"Tabelle - Umbruch löschen\">Tabelle - Umbruch löschen</link>, um manuell erstellte Umbrüche zu entfernen."
#: 04010100.xhp
msgctxt ""
@@ -4034,7 +4034,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<variable id=\"drking\"><link href=\"text/scalc/01/04060100.xhp\" name=\"Functions by Category\">Functions by Category</link></variable>"
-msgstr ""
+msgstr "<variable id=\"drking\"><link href=\"text/scalc/01/04060100.xhp\" name=\"Functions by Category\">Funktionen nach Kategorie</link></variable>"
#: 04060100.xhp
msgctxt ""
@@ -4151,7 +4151,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operatoren</link>"
#: 04060101.xhp
msgctxt ""
@@ -5510,7 +5510,7 @@ msgctxt ""
"bm_id3154536\n"
"help.text"
msgid "<bookmark_value>date and time functions</bookmark_value> <bookmark_value>functions; date & time</bookmark_value> <bookmark_value>Function Wizard; date & time</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Datums- und Zeitfunktionen</bookmark_value> <bookmark_value>Funktionen; Datum & Zeit</bookmark_value> <bookmark_value>Funktions-Assistent; Datum & Zeit</bookmark_value>"
#: 04060102.xhp
msgctxt ""
@@ -5518,7 +5518,7 @@ msgctxt ""
"hd_id3154536\n"
"help.text"
msgid "Date & Time Functions"
-msgstr ""
+msgstr "Datums- und Zeitfunktionen"
#: 04060102.xhp
msgctxt ""
@@ -5526,7 +5526,7 @@ msgctxt ""
"par_id3153973\n"
"help.text"
msgid "<variable id=\"datumzeittext\">These spreadsheet functions are used for inserting and editing dates and times. </variable>"
-msgstr ""
+msgstr "<variable id=\"datumzeittext\">Diese Tabellenfunktionen dienen zum Einfügen und Bearbeiten von Datums- und Zeitangaben. </variable>"
#: 04060102.xhp
msgctxt ""
@@ -5542,7 +5542,7 @@ msgctxt ""
"par_id3150437\n"
"help.text"
msgid "$[officename] internally handles a date/time value as a numerical value. If you assign the numbering format \"Number\" to a date or time value, it is converted to a number. For example, 01/01/2000 12:00 PM, converts to 36526.5. The value preceding the decimal point corresponds to the date; the value following the decimal point corresponds to the time. If you do not want to see this type of numerical date or time representation, change the number format (date or time) accordingly. To do this, select the cell containing the date or time value, call its context menu and select <emph>Format Cells</emph>. The <emph>Numbers</emph> tab page contains the functions for defining the number format."
-msgstr ""
+msgstr "$[officename] Calc behandelt Datums- und Uhrzeitwerte intern als numerische Werte. Wenn Sie einem Datums- oder Zeitwert das Zahlenformat \"Zahl\" zuweisen, dann wird der Wert in eine Zahl konvertiert. So wird beispielsweise die Angabe 01.01.2000 14:00 zu der Zahl 36526,58. Die Stellen vor dem Komma entsprechen dem Datum, die Stellen hinter dem Komma der Zeit. Wenn Sie diese Art der numerischen Datums- oder Zeitangabe nicht wünschen, können Sie das Zahlenformat (Datum oder Zeit) entsprechend ändern. Wählen Sie hierzu die Zelle mit der Datums- oder Zeitangabe aus, öffnen Sie das dazugehörige Kontextmenü, und wählen Sie <emph>Zellen formatieren</emph>. Die Funktionen zum Festlegen des Zahlformats finden Sie im Register <emph>Zahlen</emph>."
#: 04060102.xhp
msgctxt ""
@@ -5654,7 +5654,7 @@ msgctxt ""
"par_id3149720\n"
"help.text"
msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - General</emph> you find the area <emph>Year (two digits)</emph>. This sets the period for which two-digit information applies. Note that changes made here have an effect on some of the following functions."
-msgstr ""
+msgstr "Im Menü unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Eigenschaften</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - $[officename] - Allgemein</emph> finden Sie den Bereich <emph>Zweistellige Jahreszahlen</emph>. Dieser setzt die Periode, für die zweistellige Jahreszahlen gültig sind. Beachten Sie, dass Änderungen, die hier gemacht werden, einige der folgenden Funktion beeinflussen."
#: 04060102.xhp
msgctxt ""
@@ -5678,7 +5678,7 @@ msgctxt ""
"par_id231020162315043955\n"
"help.text"
msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr ""
+msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
#: 04060102.xhp
msgctxt ""
@@ -5686,7 +5686,7 @@ msgctxt ""
"par_id231020163315043955\n"
"help.text"
msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr ""
+msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
#: 04060103.xhp
msgctxt ""
@@ -10065,7 +10065,7 @@ msgctxt ""
"par_id3151222\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"ROW\";D2)</item> returns 2."
-msgstr "<item type=\"input\">=ZELLE(\"ZEILE\";D2)</item> ergibt 2."
+msgstr "<item type=\"input\">=ZELLE(\"ROW\";D2)</item> ergibt 2."
#: 04060104.xhp
msgctxt ""
@@ -10089,7 +10089,7 @@ msgctxt ""
"par_id3149169\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"Sheet\";Sheet3.D2)</item> returns 3."
-msgstr "<item type=\"input\">=ZELLE(\"Tabelle\";Tabelle3.D2)</item> ergibt 3."
+msgstr "<item type=\"input\">=ZELLE(\"Sheet\";Tabelle3.D2)</item> ergibt 3."
#: 04060104.xhp
msgctxt ""
@@ -10113,7 +10113,7 @@ msgctxt ""
"par_id3154136\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"ADDRESS\";D2)</item> returns $D$2."
-msgstr "<item type=\"input\">=ZELLE(\"ADRESSE\";D2)</item> ergibt $D$2."
+msgstr "<item type=\"input\">=ZELLE(\"ADDRESS\";D2)</item> ergibt $D$2."
#: 04060104.xhp
msgctxt ""
@@ -10121,7 +10121,7 @@ msgctxt ""
"par_id3159198\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"ADDRESS\";Sheet3.D2)</item> returns $Sheet3.$D$2."
-msgstr "<item type=\"input\">=ZELLE(\"ADRESSE\";Tabelle3.D2)</item> ergibt $Tabelle3.$D$2."
+msgstr "<item type=\"input\">=ZELLE(\"ADDRESS\";Tabelle3.D2)</item> ergibt $Tabelle3.$D$2."
#: 04060104.xhp
msgctxt ""
@@ -10129,7 +10129,7 @@ msgctxt ""
"par_id3150245\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"ADDRESS\";'X:\\dr\\test.ods'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.ods'#$Sheet1.$D$2."
-msgstr ""
+msgstr "<item type=\"input\">=ZELLE(\"ADDRESS\";'X:\\dr\\test.ods'#$Tabelle1.D2)</item> ergibt 'file:///X:/dr/test.ods'#$Tabelle1.$D$2."
#: 04060104.xhp
msgctxt ""
@@ -10153,7 +10153,7 @@ msgctxt ""
"par_id3148896\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"FILENAME\";D2)</item> returns 'file:///X:/dr/own.ods'#$Sheet1, if the formula in the current document X:\\dr\\own.ods is located in Sheet1."
-msgstr ""
+msgstr "<item type=\"input\">=ZELLE(\"FILENAME\";D2)</item> ergibt 'file:///X:/dr/own.ods'#$Tabelle1, wenn die Formel im aktuellen Dokument X:\\dr\\own.ods in Tabelle1 enthalten ist."
#: 04060104.xhp
msgctxt ""
@@ -10161,7 +10161,7 @@ msgctxt ""
"par_id3155144\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"FILENAME\";'X:\\dr\\test.ods'#$Sheet1.D2)</item> returns 'file:///X:/dr/test.ods'#$Sheet1."
-msgstr ""
+msgstr "<item type=\"input\">=ZELLE(\"FILENAME\";'X:\\dr\\test.ods'#$Tabelle1.D2)</item> ergibt 'file:///X:/dr/test.ods'#$Tabelle1."
#: 04060104.xhp
msgctxt ""
@@ -20651,8 +20651,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=INDEX(SummeX;4;1)</item> ergibt den Wert in Zeile 4 und Spalte 1 des Bereich <emph>SummeX</emph>, der im Menü unter <emph>Einfügen - Namen - Festlegen...</emph> festgelegt wurde."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20676,8 +20676,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=INDEX((mehrfach);4;1)</item> gibt den Wert an, der in Zeile 4 und Spalte 1 des (Mehrfach-) Bereichs enthalten ist, welchen Sie unter <emph>Einfügen - Namen - Festlegen...</emph> als <emph>mehrfach</emph> benannt haben. Der Mehrfachbereich kann aus verschiedenen rechteckigen Bereichen bestehen, jeder mit einer Zeile 4 und einer Spalte 1. Falls Sie nun den zweiten Block dieses Mehrfachbereichs aufrufen möchten, geben Sie die Nummer <item type=\"input\">2</item> als Parameter für <emph>Bereich</emph> ein."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -49847,8 +49847,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "Namen"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -49856,8 +49856,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Namen\">Namen</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50247,8 +50247,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Wählen Sie den Tabellenbereich aus, der alle zu benennenden Zellbereiche umfasst. Wählen Sie dann <emph>Einfügen - Namen - Übernehmen</emph>. Dadurch wird der Dialog <emph>Namen erzeugen</emph> geöffnet, in dem Sie die gewünschten Benennungsoptionen angeben können."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52134,8 +52134,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Wählen Sie <emph>- keiner -</emph>, um einen festgelegten Druckbereich für das aktuelle Tabellendokument zu entfernen. Wählen Sie <emph>- ganze Tabelle -</emph>, um die aktuelle Tabelle als Druckbereich festzulegen. Wählen Sie <emph>- Auswahl -</emph>, um den im Tabellendokument ausgewählten Bereich als Druckbereich festzulegen. Mit <emph>- benutzerdefiniert -</emph> können Sie einen Druckbereich angeben, den Sie bereits über <emph>Format - Druckbereiche - Festlegen</emph> festgelegt haben. Über <emph>Einfügen - Namen - Festlegen</emph> festgelegte Namen für Druckbereiche werden hier angezeigt und können im Listenfeld ausgewählt werden."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/guide.po b/source/de/helpcontent2/source/text/scalc/guide.po
index 67cd2efe8dd..a7ddb53a4d2 100644
--- a/source/de/helpcontent2/source/text/scalc/guide.po
+++ b/source/de/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-11-22 09:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1479805764.000000\n"
#: address_auto.xhp
@@ -2131,8 +2131,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "Wenn Sie den Quellbereich als Bereich definieren möchten, wählen Sie die Zellen aus und wählen dann <emph>Einfügen - Namen - Festlegen</emph>. Speichern Sie das Quelldokument, ohne es zu schließen."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11831,8 +11831,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "Wählen Sie zunächst eine Zelle oder einen Zellbereich aus und klicken <emph>Einfügen - Namen - Verwalten und dann das Feld \"Hinzufügen\"</emph> an. Der Dialog <emph>Namen festlegen</emph> wird geöffnet."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11884,8 +11884,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Einfügen - Namen - Festlegen\">Einfügen - Namen - Festlegen</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/00.po b/source/de/helpcontent2/source/text/shared/00.po
index 4e5f24f830c..a48d3e95d52 100644
--- a/source/de/helpcontent2/source/text/shared/00.po
+++ b/source/de/helpcontent2/source/text/shared/00.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-11 09:53+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-12-11 05:25+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476179631.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481433944.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -1352,7 +1352,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "Line spacing: 1.5"
-msgstr "Zeilenabstand: 1.5"
+msgstr "Zeilenabstand: 1,5"
#: 00000004.xhp
msgctxt ""
@@ -12070,15 +12070,6 @@ msgstr "Wählen Sie im Menü <emph>Format - Seite...</emph> und das Register <em
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "Wählen Sie im Menü <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Fläche...</emph> und das Register<emph>Farben</emph>"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/de/helpcontent2/source/text/shared/01.po b/source/de/helpcontent2/source/text/shared/01.po
index 14bbf26822d..586ec16a66f 100644
--- a/source/de/helpcontent2/source/text/shared/01.po
+++ b/source/de/helpcontent2/source/text/shared/01.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-12-05 23:18+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480979900.000000\n"
#: 01010000.xhp
@@ -8291,8 +8291,8 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
-msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Geben Sie an, wie viele Zeichen im Suchbegriff vertauscht sein dürfen.</ahelp> Wenn Sie hier beispielsweise 2 angeben, gelten \"Dreck\" und \"Speck\" als ähnliche Wörter."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
+msgstr ""
#: 02100100.xhp
msgctxt ""
@@ -25620,32 +25620,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Klicken Sie auf die Flächenfüllung, die Sie auf das ausgewählte Objekt anwenden möchten.</ahelp>"
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "Farbe"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Farben\">Farben</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr "Wählen Sie eine Farbe, speichern Sie die aktuelle Farbtabelle oder laden Sie eine andere."
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43243,6 +43217,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Geben Sie das Hauptkennwort erneut ein.</ahelp>"
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/de/helpcontent2/source/text/shared/guide.po b/source/de/helpcontent2/source/text/shared/guide.po
index 4880b8140e2..edc8a12e856 100644
--- a/source/de/helpcontent2/source/text/shared/guide.po
+++ b/source/de/helpcontent2/source/text/shared/guide.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-12-05 23:21+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480980070.000000\n"
#: aaa_start.xhp
@@ -2190,7 +2190,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2270,7 +2270,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9919,8 +9919,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "Um zu einer Zelle eines Tabellendokuments zu springen, geben Sie der Zelle einen Namen (<emph>Einfügen - Namen - Festlegen</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12428,20 +12428,20 @@ msgstr "Im Register <emph>Zusätze</emph> müssen Sie <emph>Inhalte synchronisie
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "Sobald Sie auf <emph>Neues Dokument</emph> geklickt haben, sehen Sie ein kleines Fenster mit der Schaltfläche <emph>Etiketten synchronisieren</emph>. Geben Sie das erste Etikett ein. Sobald Sie die genannte Schaltfläche anklicken, wird das aktuelle Einzeletikett in alle anderen Etiketten auf dem Bogen kopiert."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "Klicken Sie auf <emph>Neues Dokument</emph>, um ein neues Dokument mit den von Ihnen gemachten Vorgaben zu erstellen."
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "Klicken Sie auf <emph>Neues Dokument</emph>, um ein neues Dokument mit den von Ihnen gemachten Vorgaben zu erstellen."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "Sobald Sie auf <emph>Neues Dokument</emph> geklickt haben, sehen Sie ein kleines Fenster mit der Schaltfläche <emph>Etiketten synchronisieren</emph>. Geben Sie das erste Etikett ein. Sobald Sie die genannte Schaltfläche anklicken, wird das aktuelle Einzeletikett in alle anderen Etiketten auf dem Bogen kopiert."
#: labels.xhp
msgctxt ""
@@ -18304,758 +18304,721 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Starten von $[officename] mit Parametern"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>Startparameter</bookmark_value> <bookmark_value>Befehlszeilenparameter</bookmark_value> <bookmark_value>Parameter;Befehlszeile</bookmark_value> <bookmark_value>Argumente in der Befehlszeile</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Starten von $[officename] mit Parametern"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "Beim Starten von $[officename] über die Befehlszeile können Sie durch Angabe verschiedener Parameter die Programmleistung beeinflussen. Diesen Einsatz von Befehlszeilenparametern empfehlen wir jedoch nur erfahrenen Benutzern."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "Für den normalen Gebrauch sind Befehlszeilenparameter nicht erforderlich. Einige dieser Parameter setzen ein gewisses Maß an Kenntnis über die technischen Hintergründe der $[officename]-Software voraus."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "Starten von $[officename] über die Befehlszeile"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
-msgstr "Bei der Anwendung von Windows klicken Sie auf <emph>Start</emph> im Windows Start-Menü. Bei der Anwendung von Linux, *BSD oder Mac OS X öffnen Sie eine \"shell\"."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "Windows: Geben Sie den folgenden Text in das Textfeld <emph>Öffnen</emph> ein und klicken Sie auf <emph>OK</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
-msgstr "Auf UNIX-Systemen geben Sie folgenden Befehl ein und drücken Sie anschließend die <emph>Eingabetaste</emph>:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{Pfad}\\program\\soffice.exe {Parameter}</caseinline><caseinline select=\"UNIX\">{Pfad}/program/soffice {Parameter}</caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "Ersetzen Sie <emph>{Pfad}</emph> durch den Pfad zu Ihrer $[officename]-Installation (z.B. <emph>C:\\Programme\\Office</emph> oder <emph>~/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "Soweit erforderlich, ersetzen Sie <emph>{Parameter}</emph> durch einen oder mehrere der folgenden Befehlszeilenparameter."
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "Gültige Befehlszeilenparameter"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "<emph>Parameter</emph>"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "<emph>Bedeutung</emph>"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "--help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "Die verfügbaren Befehlszeilenparameter werden <switchinline select=\"sys\"><caseinline select=\"WIN\">in einem Dialog aufgelistet</caseinline><defaultinline>an die Konsole ausgegeben</defaultinline></switchinline>."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
-msgstr "--version"
+msgid "Opens the file and applies specified macros from the file."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
-msgstr "Zeigt die Versionsinformation an."
+msgid "Getting help and information"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "--writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "Startet mit einem leeren Writer-Dokument."
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "--calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "Startet mit einem leeren Calc-Dokument."
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "--draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "Startet mit einem leeren Draw-Dokument."
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "--impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "Startet mit einem leeren Impress-Dokument."
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "--math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "Startet mit einem leeren Math-Dokument."
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "--global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "Startet mit einem leeren Writer-Globaldokument."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "--web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "Startet mit einem leeren HTML-Dokument."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "--show {Dateiname.odp}"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "Ruft die Impress-Datei <emph>{Dateiname.odp}</emph> auf und startet die Präsentation. Schaltet nach der Präsentation in den Bearbeitungsmodus."
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
+"help.text"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
"help.text"
-msgid "--minimized"
-msgstr "--minimized"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "Startet das Programm im minimierten Modus. Der Startbildschirm wird nicht angezeigt."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "--invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "Startet das Programm im unsichtbaren Modus."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Weder das Startlogo noch das Startfenster werden angezeigt. $[officename] kann aber über die <link href=\"http://api.libreoffice.org\" name=\"API\">API</link> gesteuert und Dokumente und Dialoge können geöffnet werden."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
-msgstr "Wenn $[officename] mit diesem Parameter gestartet wurde, kann es nur über den Task-Manager (Windows) oder durch Eingabe des Befehls <emph>kill</emph> (UNIX-Systeme) beendet werden."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "Der Parameter kann nicht zusammen mit <emph>--quickstart</emph> verwendet werden."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Weitere Informationen finden Sie im <emph>$[officename] Developer's Guide</emph>."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
+"help.text"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
"help.text"
-msgid "--norestore"
-msgstr "--norestore"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "Verhindert den Neustart und die Dateiwiederherstellung nach einem Systemabsturz in $[officename]."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "Deaktiviert den Willkommens-Assistenten."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "--quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Aktiviert den Schnellstarter."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "--accept={UNO-Zeichenkette}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "Teilt der $[officename]-Software mit, dass bei der Erstellung von \"UNO Acceptor Threads\" ein \"UNO Accept String\" verwendet wird."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Weitere Informationen finden Sie im $[officename] <emph>Developer's Guide</emph>."
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "--unaccept={UNO-Zeichenkette}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
-msgstr "Beendet einen Akzeptor, der mittels --accept={UNO-Zeichenkette} gestartet wurde. Um alle Akzeptoren zu beenden, benutzen Sie --unaccept=all."
+msgid "Exit after loading documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {Dateiname1} {Dateiname2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "Gibt die Dateien <emph>{Dateiname1} {Dateiname2} ...</emph> an den Standarddrucker aus und beendet das Programm. Der Startbildschirm wird nicht angezeigt."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Wenn der Dateiname Leerzeichen enthält, muss er in Anführungszeichen gesetzt werden."
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "--pt {Druckername} {Dateiname1} {Dateiname2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "Gibt die Dateien <emph>{Dateiname1} {Dateiname2} ...</emph> an den Drucker <emph>{Druckername}</emph> aus und beendet das Programm. Der Startbildschirm wird nicht angezeigt."
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Wenn der Dateiname Leerzeichen enthält, muss er in Anführungszeichen gesetzt werden."
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {Dateiname}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "Öffnet <emph>{Dateiname}</emph> zum Bearbeiten, selbst dann, wenn es sich um eine Dokumentvorlage handelt."
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "--view {Dateiname}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "Erstellt eine temporäre Kopie von <emph>{Dateiname}</emph> und öffnet sie schreibgeschützt."
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {Dateiname}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "Erzeugt ein neues Dokument mit <emph>{Dateiname}</emph> als Dokumentvorlage."
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "--nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "Deaktiviert den Startbildschirm beim Programmstart."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "--nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "Wenn der Dateiname Leerzeichen enthält, muss er in Anführungszeichen gesetzt werden."
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "Startet die Anwendung im Hintergrund, außer dem Startbildschirm wird nichts angezeigt."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
-msgstr "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
-msgstr "Deaktiviert die Überprüfung für Remote-Instanzen bei der Installation."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150828\n"
+"help.text"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3145268\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3153838\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "Fügen Sie diesen Parameter zum Programmstartbefehl hinzu, damit der Willkommens-Assistent nicht angezeigt wird."
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id315053p\n"
"help.text"
-msgid "--display {display}"
-msgstr "--display {Bildschirm}"
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
-msgstr "Legt die <emph>DISPLAY</emph>-Umgebungsvariable auf UNIX-Systemen auf den Wert <emph>{Bildschirm}</emph> fest. Dieser Parameter wird nur vom Startskript für $[officename] auf UNIX-Systemen unterstützt."
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id315053q\n"
"help.text"
-msgid "--headless"
-msgstr "--headless"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "Startet das Programm im Modus \"headless\", der es ermöglicht, die Anwendung ohne Benutzerschnittstelle zu verwenden."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Dieser spezielle Modus eignet sich für die Steuerung der Anwendung durch externe Clients über die <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "--infilter={filter}"
-msgstr "--infilter={Filter}"
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
-msgstr "Erzwingt - wenn möglich - die Verwendung eines bestimmten Input-Filters. Z.B.: --infilter=\"Calc Office Open XML\"."
+msgid "Ignored switches"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
-msgstr "--convert-to Ausgabe_Dateiendung[:Ausgabe_Filtername] [--outdir Ausgabeverzeichnis] Dateien"
+msgid "Ignored (MacOS X only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
-msgstr "Konvertieren mehrerer Dateien im Stapel. Wenn das --outdir nicht angegeben ist, wird das aktuelle Verzeichnis als Ausgabeverzeichnis genutzt.<br/>Z.B.: --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (COM+ related; Windows only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014529900\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
-msgstr "--print-to-file [--printer-name Druckername] [--outdir Ausgabeverzeichnis] Dateien"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
-msgstr "Drucken von Dateien zu Dateien im Stapel. Wenn --outdir nicht angegeben ist, wird das aktuelle Verzeichnis als Ausgabeverzeichnis verwendet.<br/>Z.B.: --print-to-file *.doc<br/>--print-to-file --printer-name Mein_Drucker --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
+msgstr ""
#: startcenter.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter/01.po b/source/de/helpcontent2/source/text/swriter/01.po
index 55d05273b80..aef3f6fa3fe 100644
--- a/source/de/helpcontent2/source/text/swriter/01.po
+++ b/source/de/helpcontent2/source/text/swriter/01.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-06 10:27+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"PO-Revision-Date: 2016-12-11 05:32+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467800832.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481434338.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -15917,7 +15917,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "Restart numbering"
-msgstr "Nummer neu starten"
+msgstr "Nummerierung neu starten"
#: 05040700.xhp
msgctxt ""
@@ -16052,7 +16052,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "Restart numbering"
-msgstr "Nummer neu starten"
+msgstr "Nummerierung neu starten"
#: 05040700.xhp
msgctxt ""
diff --git a/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 3a2f83950a2..43a3f353b93 100644
--- a/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-22 08:13+0000\n"
+"PO-Revision-Date: 2016-12-13 08:55+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479802436.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481619332.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -2758,7 +2758,7 @@ msgctxt ""
"OOO_CONTROL_321\n"
"LngText.text"
msgid "Load [ProductName] during system start-up"
-msgstr "Lädt [ProductName] während des Systemstarts"
+msgstr "[ProductName] während des Systemstarts laden"
#: Control.ulf
msgctxt ""
diff --git a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
index a39dc5f4ec3..d1d9d708e9c 100644
--- a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-12-02 16:43+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2016-12-22 16:44+0000\n"
+"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480697009.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482425088.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -2363,7 +2363,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert Named Range or Expression..."
-msgstr "Benannten Bereich oder Ausdruck ~einfügen..."
+msgstr "Benannten Bereich ~einfügen..."
#: CalcCommands.xcu
msgctxt ""
@@ -2372,7 +2372,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Named Range or Expression..."
-msgstr "~Benannter Bereich oder Ausdruck..."
+msgstr "~Benannten Bereich..."
#: CalcCommands.xcu
msgctxt ""
@@ -3641,7 +3641,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Named Ranges and Expressions"
-msgstr "~Benannte Bereiche und Ausdrücke"
+msgstr "~Benannte Bereiche"
#: CalcCommands.xcu
msgctxt ""
diff --git a/source/de/sc/source/ui/src.po b/source/de/sc/source/ui/src.po
index f3d37c70ff4..d5147a3cf6c 100644
--- a/source/de/sc/source/ui/src.po
+++ b/source/de/sc/source/ui/src.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-02 16:44+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-23 12:31+0000\n"
+"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480697060.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482496303.000000\n"
#: filter.src
msgctxt ""
@@ -9669,8 +9669,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Summiert die Argumente, die den Bedingungen genügen."
+msgid "Totals the arguments that meet the condition."
+msgstr "Summiert die Argumente, die der Bedingung genügen."
#: scfuncs.src
msgctxt ""
diff --git a/source/de/sc/uiconfig/scalc/ui.po b/source/de/sc/uiconfig/scalc/ui.po
index b25e70af37c..7759048aced 100644
--- a/source/de/sc/uiconfig/scalc/ui.po
+++ b/source/de/sc/uiconfig/scalc/ui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-10 05:48+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2016-12-22 16:36+0000\n"
+"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
"Language-Team: none\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481348928.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482424602.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -3179,7 +3179,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Range or formula expression:"
-msgstr "Bereich für Formelausdruck:"
+msgstr "Bereich oder Formelausdruck:"
#: definename.ui
msgctxt ""
@@ -3197,7 +3197,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Define the name and range or formula expression."
-msgstr "Legen Sie den Namen und die Reichweite fest oder den Formelausdruck."
+msgstr "Legen Sie den Namen und den Bereich oder Formelausdruck fest."
#: definename.ui
msgctxt ""
@@ -5249,7 +5249,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Range or formula expression:"
-msgstr "Bereich für Formelausdruck:"
+msgstr "Bereich oder Formelausdruck:"
#: managenamesdialog.ui
msgctxt ""
diff --git a/source/de/svx/source/dialog.po b/source/de/svx/source/dialog.po
index 431dbf6780d..25a3a0cc09d 100644
--- a/source/de/svx/source/dialog.po
+++ b/source/de/svx/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-22 08:33+0000\n"
+"PO-Revision-Date: 2016-12-13 08:52+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479803624.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481619173.000000\n"
#: SafeMode.src
msgctxt ""
@@ -5033,7 +5033,7 @@ msgctxt ""
"RID_SUBSETSTR_BASIC_LATIN\n"
"string.text"
msgid "Basic Latin"
-msgstr "Latein, Basis"
+msgstr "Lateinisch"
#: ucsubset.src
msgctxt ""
@@ -5042,7 +5042,7 @@ msgctxt ""
"RID_SUBSETSTR_LATIN_1\n"
"string.text"
msgid "Latin-1"
-msgstr "Latein-1"
+msgstr "Lateinisch, Ergänzung"
#: ucsubset.src
msgctxt ""
@@ -5051,7 +5051,7 @@ msgctxt ""
"RID_SUBSETSTR_LATIN_EXTENDED_A\n"
"string.text"
msgid "Latin Extended-A"
-msgstr "Latein, erweitert-A"
+msgstr "Lateinisch, Erweiterung A"
#: ucsubset.src
msgctxt ""
@@ -5060,7 +5060,7 @@ msgctxt ""
"RID_SUBSETSTR_LATIN_EXTENDED_B\n"
"string.text"
msgid "Latin Extended-B"
-msgstr "Latein, erweitert-B"
+msgstr "Lateinisch, Erweiterung B"
#: ucsubset.src
msgctxt ""
@@ -5069,7 +5069,7 @@ msgctxt ""
"RID_SUBSETSTR_IPA_EXTENSIONS\n"
"string.text"
msgid "IPA Extensions"
-msgstr "Lautschrift, Erweiterungen"
+msgstr "Lautschrift-Erweiterungen"
#: ucsubset.src
msgctxt ""
@@ -5096,7 +5096,7 @@ msgctxt ""
"RID_SUBSETSTR_BASIC_GREEK\n"
"string.text"
msgid "Basic Greek"
-msgstr "Griechisch, Basis"
+msgstr "Griechisch"
#: ucsubset.src
msgctxt ""
@@ -5105,7 +5105,7 @@ msgctxt ""
"RID_SUBSETSTR_GREEK_SYMS_COPTIC\n"
"string.text"
msgid "Greek Symbols And Coptic"
-msgstr "Griechisch, Symbole und Koptisch"
+msgstr "Griechisch und Koptisch"
#: ucsubset.src
msgctxt ""
@@ -5132,7 +5132,7 @@ msgctxt ""
"RID_SUBSETSTR_BASIC_HEBREW\n"
"string.text"
msgid "Basic Hebrew"
-msgstr "Hebräisch, Basis"
+msgstr "Hebräisch"
#: ucsubset.src
msgctxt ""
@@ -5141,7 +5141,7 @@ msgctxt ""
"RID_SUBSETSTR_HEBREW_EXTENDED\n"
"string.text"
msgid "Hebrew Extended"
-msgstr "Hebräisch, erweitert"
+msgstr "Hebräisch, Erweiterung"
#: ucsubset.src
msgctxt ""
@@ -5150,7 +5150,7 @@ msgctxt ""
"RID_SUBSETSTR_BASIC_ARABIC\n"
"string.text"
msgid "Basic Arabic"
-msgstr "Arabisch, Basis"
+msgstr "Arabisch"
#: ucsubset.src
msgctxt ""
@@ -5159,7 +5159,7 @@ msgctxt ""
"RID_SUBSETSTR_ARABIC_EXTENDED\n"
"string.text"
msgid "Arabic Extended"
-msgstr "Arabisch, erweitert"
+msgstr "Arabisch, Zusatz"
#: ucsubset.src
msgctxt ""
@@ -5204,7 +5204,7 @@ msgctxt ""
"RID_SUBSETSTR_ODIA\n"
"string.text"
msgid "Odia"
-msgstr "Odia"
+msgstr "Oriya"
#: ucsubset.src
msgctxt ""
@@ -5213,7 +5213,7 @@ msgctxt ""
"RID_SUBSETSTR_TAMIL\n"
"string.text"
msgid "Tamil"
-msgstr "Tamil"
+msgstr "Tamilisch"
#: ucsubset.src
msgctxt ""
@@ -5240,7 +5240,7 @@ msgctxt ""
"RID_SUBSETSTR_MALAYALAM\n"
"string.text"
msgid "Malayalam"
-msgstr "Malayisch"
+msgstr "Malayalam"
#: ucsubset.src
msgctxt ""
@@ -5267,7 +5267,7 @@ msgctxt ""
"RID_SUBSETSTR_BASIC_GEORGIAN\n"
"string.text"
msgid "Basic Georgian"
-msgstr "Georgisch, Basis"
+msgstr "Georgisch"
#: ucsubset.src
msgctxt ""
@@ -5276,7 +5276,7 @@ msgctxt ""
"RID_SUBSETSTR_GEORGIAN_EXTENDED\n"
"string.text"
msgid "Georgian Extended"
-msgstr "Georgisch, erweitert"
+msgstr "Georgisch, Erweiterung"
#: ucsubset.src
msgctxt ""
@@ -5285,7 +5285,7 @@ msgctxt ""
"RID_SUBSETSTR_HANGUL_JAMO\n"
"string.text"
msgid "Hangul Jamo"
-msgstr "Hangul Jamo"
+msgstr "Hangeul-Jamo"
#: ucsubset.src
msgctxt ""
@@ -5294,7 +5294,7 @@ msgctxt ""
"RID_SUBSETSTR_LATIN_EXTENDED_ADDS\n"
"string.text"
msgid "Latin Extended Additionals"
-msgstr "Latein, weitere Zusätze"
+msgstr "Lateinisch, weitere Zusätze"
#: ucsubset.src
msgctxt ""
@@ -5303,7 +5303,7 @@ msgctxt ""
"RID_SUBSETSTR_GREEK_EXTENDED\n"
"string.text"
msgid "Greek Extended"
-msgstr "Griechisch, erweitert"
+msgstr "Griechisch, Erweiterung"
#: ucsubset.src
msgctxt ""
@@ -5312,7 +5312,7 @@ msgctxt ""
"RID_SUBSETSTR_GENERAL_PUNCTUATION\n"
"string.text"
msgid "General punctuation"
-msgstr "Allgemeine Interpunktion"
+msgstr "Interpunktion"
#: ucsubset.src
msgctxt ""
@@ -5321,7 +5321,7 @@ msgctxt ""
"RID_SUBSETSTR_SUB_SUPER_SCRIPTS\n"
"string.text"
msgid "Superscripts and Subscripts"
-msgstr "Hoch- und Tiefstellungen"
+msgstr "Hoch- und tiefgestellte Zeichen"
#: ucsubset.src
msgctxt ""
@@ -5330,7 +5330,7 @@ msgctxt ""
"RID_SUBSETSTR_CURRENCY_SYMBOLS\n"
"string.text"
msgid "Currency Symbols"
-msgstr "Währungssymbole"
+msgstr "Währungszeichen"
#: ucsubset.src
msgctxt ""
@@ -5339,7 +5339,7 @@ msgctxt ""
"RID_SUBSETSTR_COMB_DIACRITIC_SYMS\n"
"string.text"
msgid "Combining Diacritical Symbols"
-msgstr "Kombinierende diakritische Symbole"
+msgstr "Kombinierende diakritische Zeichen für Symbole"
#: ucsubset.src
msgctxt ""
@@ -5348,7 +5348,7 @@ msgctxt ""
"RID_SUBSETSTR_LETTERLIKE_SYMBOLS\n"
"string.text"
msgid "Letterlike Symbols"
-msgstr "Buchstabensymbole"
+msgstr "Buchstabenähnlich Symbole"
#: ucsubset.src
msgctxt ""
@@ -5357,7 +5357,7 @@ msgctxt ""
"RID_SUBSETSTR_NUMBER_FORMS\n"
"string.text"
msgid "Number Forms"
-msgstr "Zahlensymbole"
+msgstr "Zahlzeichen"
#: ucsubset.src
msgctxt ""
@@ -5366,7 +5366,7 @@ msgctxt ""
"RID_SUBSETSTR_ARROWS\n"
"string.text"
msgid "Arrows"
-msgstr "Pfeilsymbole"
+msgstr "Pfeile"
#: ucsubset.src
msgctxt ""
@@ -5384,7 +5384,7 @@ msgctxt ""
"RID_SUBSETSTR_MISC_TECHNICAL\n"
"string.text"
msgid "Miscellaneous Technical"
-msgstr "Verschiedene Technische Zeichen"
+msgstr "Verschiedene technische Zeichen"
#: ucsubset.src
msgctxt ""
@@ -5393,7 +5393,7 @@ msgctxt ""
"RID_SUBSETSTR_CONTROL_PICTURES\n"
"string.text"
msgid "Control Pictures"
-msgstr "Steuerelementsymbole"
+msgstr "Symbole für Steuerzeichen"
#: ucsubset.src
msgctxt ""
@@ -5402,7 +5402,7 @@ msgctxt ""
"RID_SUBSETSTR_OPTICAL_CHAR_REC\n"
"string.text"
msgid "Optical Character Recognition"
-msgstr "Maschinenlesbare Zeichen"
+msgstr "Optische Zeichenerkennung"
#: ucsubset.src
msgctxt ""
@@ -5411,7 +5411,7 @@ msgctxt ""
"RID_SUBSETSTR_ENCLOSED_ALPHANUM\n"
"string.text"
msgid "Enclosed Alphanumerics"
-msgstr "Eingekreiste Zeichen"
+msgstr "Umschlossene alphanumerische Zeichen"
#: ucsubset.src
msgctxt ""
@@ -5420,7 +5420,7 @@ msgctxt ""
"RID_SUBSETSTR_BOX_DRAWING\n"
"string.text"
msgid "Box Drawing"
-msgstr "Rahmungssymbole"
+msgstr "Rahmenzeichnung"
#: ucsubset.src
msgctxt ""
@@ -5429,7 +5429,7 @@ msgctxt ""
"RID_SUBSETSTR_BLOCK_ELEMENTS\n"
"string.text"
msgid "Block Elements"
-msgstr "Blocksymbole"
+msgstr "Blockelemente"
#: ucsubset.src
msgctxt ""
@@ -5438,7 +5438,7 @@ msgctxt ""
"RID_SUBSETSTR_GEOMETRIC_SHAPES\n"
"string.text"
msgid "Geometric Shapes"
-msgstr "Geometrische Symbole"
+msgstr "Geometrische Formen"
#: ucsubset.src
msgctxt ""
@@ -5456,7 +5456,7 @@ msgctxt ""
"RID_SUBSETSTR_DINGBATS\n"
"string.text"
msgid "Dingbats"
-msgstr "Symbolzeichen"
+msgstr "Dingbats"
#: ucsubset.src
msgctxt ""
@@ -5465,7 +5465,7 @@ msgctxt ""
"RID_SUBSETSTR_CJK_SYMS_PUNCTUATION\n"
"string.text"
msgid "CJK Symbols And Punctuation"
-msgstr "CJK Symbole und Punktierungen"
+msgstr "CJK-Symbole und -Interpunktion"
#: ucsubset.src
msgctxt ""
@@ -5501,7 +5501,7 @@ msgctxt ""
"RID_SUBSETSTR_HANGUL_COMPAT_JAMO\n"
"string.text"
msgid "Hangul Compatibility Jamo"
-msgstr "Hangul kompatibles Jamo"
+msgstr "Hangeul-Jamo, Kompatibilität"
#: ucsubset.src
msgctxt ""
@@ -5510,7 +5510,7 @@ msgctxt ""
"RID_SUBSETSTR_CJK_MISC\n"
"string.text"
msgid "CJK Miscellaneous"
-msgstr "Verschiedene CJK Zeichen"
+msgstr "Verschiedene CJK-Zeichen"
#: ucsubset.src
msgctxt ""
@@ -5519,7 +5519,7 @@ msgctxt ""
"RID_SUBSETSTR_ENCLOSED_CJK_LETTERS\n"
"string.text"
msgid "Enclosed CJK Letters And Months"
-msgstr "Eingekreiste CJK Zeichen und Monate"
+msgstr "Umschlossene CJK-Zeichen und -Monate"
#: ucsubset.src
msgctxt ""
@@ -5528,7 +5528,7 @@ msgctxt ""
"RID_SUBSETSTR_CJK_COMPATIBILITY\n"
"string.text"
msgid "CJK Compatibility"
-msgstr "CJK Kompatibilität"
+msgstr "CJK-Kompatibilität"
#: ucsubset.src
msgctxt ""
@@ -5537,7 +5537,7 @@ msgctxt ""
"RID_SUBSETSTR_HANGUL\n"
"string.text"
msgid "Hangul"
-msgstr "Hangul"
+msgstr "Hangeul"
#: ucsubset.src
msgctxt ""
@@ -5573,7 +5573,7 @@ msgctxt ""
"RID_SUBSETSTR_CJK_COMPAT_IDGRAPHS\n"
"string.text"
msgid "CJK Compatibility Ideographs"
-msgstr "CJK Kompatible Ideogramme"
+msgstr "CJK-Kompatibilitätsideogramme"
#: ucsubset.src
msgctxt ""
@@ -5591,7 +5591,7 @@ msgctxt ""
"RID_SUBSETSTR_ARABIC_PRESENT_A\n"
"string.text"
msgid "Arabic Presentation Forms-A"
-msgstr "Arabische Präsentationsformen-A"
+msgstr "Arabisch, Präsentationsformen A"
#: ucsubset.src
msgctxt ""
@@ -5600,7 +5600,7 @@ msgctxt ""
"RID_SUBSETSTR_COMBINING_HALF_MARKS\n"
"string.text"
msgid "Combining Half Marks"
-msgstr "Kombinierende Halbmarken"
+msgstr "Kombinierende halbe diakritische Zeichen"
#: ucsubset.src
msgctxt ""
@@ -5609,7 +5609,7 @@ msgctxt ""
"RID_SUBSETSTR_CJK_COMPAT_FORMS\n"
"string.text"
msgid "CJK Compatibility Forms"
-msgstr "CJK Kompatibilitätsformen"
+msgstr "CJK-Kompatibilitätsformen"
#: ucsubset.src
msgctxt ""
@@ -5618,7 +5618,7 @@ msgctxt ""
"RID_SUBSETSTR_SMALL_FORM_VARIANTS\n"
"string.text"
msgid "Small Form Variants"
-msgstr "Kleine Formen, Varianten"
+msgstr "Kleine Formvarianten"
#: ucsubset.src
msgctxt ""
@@ -5627,7 +5627,7 @@ msgctxt ""
"RID_SUBSETSTR_ARABIC_PRESENT_B\n"
"string.text"
msgid "Arabic Presentation Forms-B"
-msgstr "Arabische Präsentationsformen-B"
+msgstr "Arabisch, Präsentationsformen B"
#: ucsubset.src
msgctxt ""
@@ -5636,7 +5636,7 @@ msgctxt ""
"RID_SUBSETSTR_HALFW_FULLW_FORMS\n"
"string.text"
msgid "Half-width and Full-width Forms"
-msgstr "Halbbreite und breite Formen"
+msgstr "Halbbreite und vollbreite Formen"
#: ucsubset.src
msgctxt ""
@@ -5645,7 +5645,7 @@ msgctxt ""
"RID_SUBSETSTR_SPECIALS\n"
"string.text"
msgid "Specials"
-msgstr "Spezielle Symbole"
+msgstr "Spezielle Zeichen"
#: ucsubset.src
msgctxt ""
@@ -5654,7 +5654,7 @@ msgctxt ""
"RID_SUBSETSTR_YI_SYLLABLES\n"
"string.text"
msgid "Yi Syllables"
-msgstr "Yi-Silben"
+msgstr "Yi-Silbenzeichen"
#: ucsubset.src
msgctxt ""
@@ -5753,7 +5753,7 @@ msgctxt ""
"RID_SUBSETSTR_CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT\n"
"string.text"
msgid "CJK Compatibility Ideographs Supplement"
-msgstr "Erweiterung für CJK-Kompatibilitätsideogramme"
+msgstr "CJK-Kompatibilitätsideogramme, Ergänzung"
#: ucsubset.src
msgctxt ""
@@ -5780,7 +5780,7 @@ msgctxt ""
"RID_SUBSETSTR_VARIATION_SELECTORS\n"
"string.text"
msgid "Variation Selectors"
-msgstr "Variantenauswahl"
+msgstr "Variantenselektoren"
#: ucsubset.src
msgctxt ""
@@ -5789,7 +5789,7 @@ msgctxt ""
"RID_SUBSETSTR_SUPPLEMENTARY_PRIVATE_USE_AREA_A\n"
"string.text"
msgid "Supplementary Private Use Area-A"
-msgstr "Ergänzender Bereich zum privaten Gebrauch-A"
+msgstr "Bereich zum privaten Gebrauch, Ergänzung A"
#: ucsubset.src
msgctxt ""
@@ -5798,7 +5798,7 @@ msgctxt ""
"RID_SUBSETSTR_SUPPLEMENTARY_PRIVATE_USE_AREA_B\n"
"string.text"
msgid "Supplementary Private Use Area-B"
-msgstr "Ergänzender Bereich zum privaten Gebrauch-B"
+msgstr "Bereich zum privaten Gebrauch, Ergänzung B"
#: ucsubset.src
msgctxt ""
@@ -5825,7 +5825,7 @@ msgctxt ""
"RID_SUBSETSTR_KHMER_SYMBOLS\n"
"string.text"
msgid "Khmer Symbols"
-msgstr "Khmer"
+msgstr "Khmer, Symbole"
#: ucsubset.src
msgctxt ""
@@ -5861,7 +5861,7 @@ msgctxt ""
"RID_SUBSETSTR_LINEAR_B_SYLLABARY\n"
"string.text"
msgid "Linear B Syllabary"
-msgstr "Linear-B-Silbenzeichen"
+msgstr "Linear B, Silbenzeichen"
#: ucsubset.src
msgctxt ""
@@ -5870,7 +5870,7 @@ msgctxt ""
"RID_SUBSETSTR_LINEAR_B_IDEOGRAMS\n"
"string.text"
msgid "Linear B Ideograms"
-msgstr "Linear-B-Ideogramme"
+msgstr "Linear B, Ideogramme"
#: ucsubset.src
msgctxt ""
@@ -5897,7 +5897,7 @@ msgctxt ""
"RID_SUBSETSTR_SHAVIAN\n"
"string.text"
msgid "Shavian"
-msgstr "Shaw-Alphabet"
+msgstr "Shaw"
#: ucsubset.src
msgctxt ""
@@ -5951,7 +5951,7 @@ msgctxt ""
"RID_SUBSETSTR_OGHAM\n"
"string.text"
msgid "Ogham"
-msgstr "Ogham"
+msgstr "Ogam"
#: ucsubset.src
msgctxt ""
@@ -6005,7 +6005,7 @@ msgctxt ""
"RID_SUBSETSTR_CANADIAN_ABORIGINAL\n"
"string.text"
msgid "Canadian Aboriginal Syllables"
-msgstr "Kanadische Aborigin Silben"
+msgstr "Vereinheitlichte Silbenzeichen kanadischer Ureinwohner"
#: ucsubset.src
msgctxt ""
@@ -6023,7 +6023,7 @@ msgctxt ""
"RID_SUBSETSTR_MISC_MATH_SYMS_A\n"
"string.text"
msgid "Miscellaneous Mathematical Symbols-A"
-msgstr "Verschiedene Mathematische Symbole-A"
+msgstr "Verschiedene Mathematische Symbole A"
#: ucsubset.src
msgctxt ""
@@ -6032,7 +6032,7 @@ msgctxt ""
"RID_SUBSETSTR_SUPPL_ARROWS_A\n"
"string.text"
msgid "Supplemental Arrows-A"
-msgstr "Pfeile, Ergänzung-A"
+msgstr "Pfeile, Ergänzung A"
#: ucsubset.src
msgctxt ""
@@ -6041,7 +6041,7 @@ msgctxt ""
"RID_SUBSETSTR_BRAILLE_PATTERNS\n"
"string.text"
msgid "Braille Patterns"
-msgstr "Braille"
+msgstr "Braille-Zeichen"
#: ucsubset.src
msgctxt ""
@@ -6050,7 +6050,7 @@ msgctxt ""
"RID_SUBSETSTR_SUPPL_ARROWS_B\n"
"string.text"
msgid "Supplemental Arrows-B"
-msgstr "Pfeile, Ergänzung-B"
+msgstr "Pfeile, Ergänzung B"
#: ucsubset.src
msgctxt ""
@@ -6059,7 +6059,7 @@ msgctxt ""
"RID_SUBSETSTR_MISC_MATH_SYMS_B\n"
"string.text"
msgid "Miscellaneous Mathematical Symbols-B"
-msgstr "Verschiedene Mathematische Symbole-B"
+msgstr "Verschiedene Mathematische Symbole B"
#: ucsubset.src
msgctxt ""
@@ -6068,7 +6068,7 @@ msgctxt ""
"RID_SUBSETSTR_CJK_RADICAL_SUPPL\n"
"string.text"
msgid "CJK Radical Supplement"
-msgstr "Ergänzte CJK Radikale"
+msgstr "CJK-Radikale, Ergänzung"
#: ucsubset.src
msgctxt ""
@@ -6104,7 +6104,7 @@ msgctxt ""
"RID_SUBSETSTR_HANUNOO\n"
"string.text"
msgid "Hanunoo"
-msgstr "Hanunoo"
+msgstr "Hanunóo"
#: ucsubset.src
msgctxt ""
@@ -6113,7 +6113,7 @@ msgctxt ""
"RID_SUBSETSTR_TAGBANWA\n"
"string.text"
msgid "Tagbanwa"
-msgstr "Tagbanwa"
+msgstr "Tagbanuwa"
#: ucsubset.src
msgctxt ""
@@ -6122,7 +6122,7 @@ msgctxt ""
"RID_SUBSETSTR_BUHID\n"
"string.text"
msgid "Buhid"
-msgstr "Buhid"
+msgstr "Buid"
#: ucsubset.src
msgctxt ""
@@ -6140,7 +6140,7 @@ msgctxt ""
"RID_SUBSETSTR_BOPOMOFO_EXTENDED\n"
"string.text"
msgid "Bopomofo Extended"
-msgstr "Bopomofo, erweitert"
+msgstr "Bopomofo, Erweiterung"
#: ucsubset.src
msgctxt ""
@@ -6149,7 +6149,7 @@ msgctxt ""
"RID_SUBSETSTR_KATAKANA_PHONETIC\n"
"string.text"
msgid "Katakana Phonetics"
-msgstr "Phonetisches Katakana"
+msgstr "Katakana, phonetische Erweiterungen"
#: ucsubset.src
msgctxt ""
@@ -6167,7 +6167,7 @@ msgctxt ""
"RID_SUBSETSTR_CYPRIOT_SYLLABARY\n"
"string.text"
msgid "Cypriot Syllabary"
-msgstr "Kyprisch, Silben"
+msgstr "Kyprisch"
#: ucsubset.src
msgctxt ""
@@ -6176,7 +6176,7 @@ msgctxt ""
"RID_SUBSETSTR_TAI_XUAN_JING_SYMBOLS\n"
"string.text"
msgid "Tai Xuan Jing Symbols"
-msgstr "Tai-Xuan-Jing-Zeichen"
+msgstr "Tai-Xuan-Jing-Symbole"
#: ucsubset.src
msgctxt ""
@@ -6185,7 +6185,7 @@ msgctxt ""
"RID_SUBSETSTR_VARIATION_SELECTORS_SUPPLEMENT\n"
"string.text"
msgid "Variation Selectors Supplement"
-msgstr "Variantenauswahl, Ergänzung"
+msgstr "Variantenselektoren, Ergänzung"
#: ucsubset.src
msgctxt ""
@@ -6194,7 +6194,7 @@ msgctxt ""
"RID_SUBSETSTR_ANCIENT_GREEK_MUSICAL_NOTATION\n"
"string.text"
msgid "Ancient Greek Musical Notation"
-msgstr "Altgriechische Notenschriftzeichen"
+msgstr "Altgriechisch, Notenschriftzeichen"
#: ucsubset.src
msgctxt ""
@@ -6203,7 +6203,7 @@ msgctxt ""
"RID_SUBSETSTR_ANCIENT_GREEK_NUMBERS\n"
"string.text"
msgid "Ancient Greek Numbers"
-msgstr "Altgriechische Zahlen"
+msgstr "Altgriechisch, Zahlzeichen"
#: ucsubset.src
msgctxt ""
@@ -6248,7 +6248,7 @@ msgctxt ""
"RID_SUBSETSTR_ETHIOPIC_EXTENDED\n"
"string.text"
msgid "Ethiopic Extended"
-msgstr "Äthiopisch, erweitert"
+msgstr "Äthiopisch, Zusatz"
#: ucsubset.src
msgctxt ""
@@ -6257,7 +6257,7 @@ msgctxt ""
"RID_SUBSETSTR_ETHIOPIC_SUPPLEMENT\n"
"string.text"
msgid "Ethiopic Supplement"
-msgstr "Äthiopisch, Zusatz"
+msgstr "Äthiopisch, Ergänzung"
#: ucsubset.src
msgctxt ""
@@ -6329,7 +6329,7 @@ msgctxt ""
"RID_SUBSETSTR_SUPPLEMENTAL_PUNCTUATION\n"
"string.text"
msgid "Supplemental Punctuation"
-msgstr "Zusätzliche Interpunktion"
+msgstr "Interpunktion, Ergänzung"
#: ucsubset.src
msgctxt ""
@@ -6383,7 +6383,7 @@ msgctxt ""
"RID_SUBSETSTR_LATIN_EXTENDED_C\n"
"string.text"
msgid "Latin Extended-C"
-msgstr "Lateinisch, erweitert-C"
+msgstr "Lateinisch, Erweiterung C"
#: ucsubset.src
msgctxt ""
@@ -6392,7 +6392,7 @@ msgctxt ""
"RID_SUBSETSTR_LATIN_EXTENDED_D\n"
"string.text"
msgid "Latin Extended-D"
-msgstr "Lateinisch, erweitert-D"
+msgstr "Lateinisch, Erweiterung D"
#: ucsubset.src
msgctxt ""
@@ -6473,7 +6473,7 @@ msgctxt ""
"RID_SUBSETSTR_CYRILLIC_EXTENDED_A\n"
"string.text"
msgid "Cyrillic Extended-A"
-msgstr "Kyrillisch, erweitert-A"
+msgstr "Kyrillisch, Erweiterung A"
#: ucsubset.src
msgctxt ""
@@ -6491,7 +6491,7 @@ msgctxt ""
"RID_SUBSETSTR_CYRILLIC_EXTENDED_B\n"
"string.text"
msgid "Cyrillic Extended-B"
-msgstr "Kyrillisch, erweitert-B"
+msgstr "Kyrillisch, Erweiterung B"
#: ucsubset.src
msgctxt ""
@@ -6608,7 +6608,7 @@ msgctxt ""
"RID_SUBSETSTR_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_EXTENDED\n"
"string.text"
msgid "Canadian Aboriginal Syllabics Extended"
-msgstr "Vereinheitlichte Silbenzeichen kanadischer Ureinwohner, erweitert"
+msgstr "Vereinheitlichte Silbenzeichen kanadischer Ureinwohner, Erweiterung"
#: ucsubset.src
msgctxt ""
@@ -6626,7 +6626,7 @@ msgctxt ""
"RID_SUBSETSTR_VEDIC_EXTENSIONS\n"
"string.text"
msgid "Vedic Extensions"
-msgstr "Vedisch, Erweiterungen"
+msgstr "Vedische Erweiterungen"
#: ucsubset.src
msgctxt ""
@@ -6662,7 +6662,7 @@ msgctxt ""
"RID_SUBSETSTR_DEVANAGARI_EXTENDED\n"
"string.text"
msgid "Devanagari Extended"
-msgstr "Devanagari, erweitert"
+msgstr "Devanagari, Erweiterung"
#: ucsubset.src
msgctxt ""
@@ -6671,7 +6671,7 @@ msgctxt ""
"RID_SUBSETSTR_HANGUL_JAMO_EXTENDED_A\n"
"string.text"
msgid "Hangul Jamo Extended-A"
-msgstr "Hangeul-Jamo, erweitert-A"
+msgstr "Hangeul-Jamo, Erweiterung A"
#: ucsubset.src
msgctxt ""
@@ -6689,7 +6689,7 @@ msgctxt ""
"RID_SUBSETSTR_MYANMAR_EXTENDED_A\n"
"string.text"
msgid "Myanmar Extended-A"
-msgstr "Birmanisch, erweitert-A"
+msgstr "Birmanisch, Erweiterung A"
#: ucsubset.src
msgctxt ""
@@ -6716,7 +6716,7 @@ msgctxt ""
"RID_SUBSETSTR_HANGUL_JAMO_EXTENDED_B\n"
"string.text"
msgid "Hangul Jamo Extended-B"
-msgstr "Hangeul-Jamo, erweitert-B"
+msgstr "Hangeul-Jamo, Erweiterung B"
#: ucsubset.src
msgctxt ""
@@ -6752,7 +6752,7 @@ msgctxt ""
"RID_SUBSETSTR_INSCRIPTIONAL_PARTHIAN\n"
"string.text"
msgid "Inscriptional Parthian"
-msgstr "Inschriften-Parthisch"
+msgstr "Parthisch"
#: ucsubset.src
msgctxt ""
@@ -6770,7 +6770,7 @@ msgctxt ""
"RID_SUBSETSTR_OLD_TURKIC\n"
"string.text"
msgid "Old Turkic"
-msgstr "Alt-Türkisch"
+msgstr "Alttürkisch"
#: ucsubset.src
msgctxt ""
@@ -6797,7 +6797,7 @@ msgctxt ""
"RID_SUBSETSTR_EGYPTIAN_HIEROGLYPHS\n"
"string.text"
msgid "Egyptian Hieroglyphs"
-msgstr "Ägyptische Hieroglyphen"
+msgstr "Ägyptisch, Hieroglyphen"
#: ucsubset.src
msgctxt ""
@@ -6806,7 +6806,7 @@ msgctxt ""
"RID_SUBSETSTR_ENCLOSED_ALPHANUMERIC_SUPPLEMENT\n"
"string.text"
msgid "Enclosed Alphanumeric Supplement"
-msgstr "Zusätzliche umschlossene alphanumerische Zeichen"
+msgstr "Umschlossene alphanumerische Zeichen, Ergänzung"
#: ucsubset.src
msgctxt ""
@@ -6842,7 +6842,7 @@ msgctxt ""
"RID_SUBSETSTR_ETHIOPIC_EXTENDED_A\n"
"string.text"
msgid "Ethiopic Extended-A"
-msgstr "Äthiopisch, erweitert-A"
+msgstr "Äthiopisch, Erweiterung A"
#: ucsubset.src
msgctxt ""
@@ -6869,7 +6869,7 @@ msgctxt ""
"RID_SUBSETSTR_KANA_SUPPLEMENT\n"
"string.text"
msgid "Kana Supplement"
-msgstr "Kana, Ergänzung"
+msgstr "Kana"
#: ucsubset.src
msgctxt ""
@@ -6923,7 +6923,7 @@ msgctxt ""
"RID_SUBSETSTR_ARABIC_EXTENDED_A\n"
"string.text"
msgid "Arabic Extended-A"
-msgstr "Arabisch, erweitert-A"
+msgstr "Arabisch, Erweiterung A"
#: ucsubset.src
msgctxt ""
@@ -6932,7 +6932,7 @@ msgctxt ""
"RID_SUBSETSTR_ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS\n"
"string.text"
msgid "Arabic Mathematical Alphabetic Symbols"
-msgstr "Arabic Mathematical Alphabetic Symbols"
+msgstr "Arabisch, mathematische alphanumerische Zeichen"
#: ucsubset.src
msgctxt ""
@@ -6950,7 +6950,7 @@ msgctxt ""
"RID_SUBSETSTR_MEETEI_MAYEK_EXTENSIONS\n"
"string.text"
msgid "Meetei Mayek Extensions"
-msgstr "Meitei-Mayek, Erweiterungen"
+msgstr "Meitei-Mayek, Erweiterung"
#: ucsubset.src
msgctxt ""
@@ -6968,7 +6968,7 @@ msgctxt ""
"RID_SUBSETSTR_MEROITIC_HIEROGLYPHS\n"
"string.text"
msgid "Meroitic Hieroglyphs"
-msgstr "Meroitische Hieroglyphen"
+msgstr "Meroitisch, Hieroglyphen"
#: ucsubset.src
msgctxt ""
@@ -6995,7 +6995,7 @@ msgctxt ""
"RID_SUBSETSTR_SORA_SOMPENG\n"
"string.text"
msgid "Sora Sompeng"
-msgstr "Sora-Sompeng"
+msgstr "Sorang-Sompeng"
#: ucsubset.src
msgctxt ""
@@ -7022,7 +7022,7 @@ msgctxt ""
"RID_SUBSETSTR_BASSA_VAH\n"
"string.text"
msgid "Bassa Vah"
-msgstr "Bassa vah"
+msgstr "Bassa Vah"
#: ucsubset.src
msgctxt ""
@@ -7040,7 +7040,7 @@ msgctxt ""
"RID_SUBSETSTR_COPTIC_EPACT_NUMBERS\n"
"string.text"
msgid "Coptic Epact Numbers"
-msgstr "Koptisch, Jahresepakte"
+msgstr "Koptisch, Zahlzeichen"
#: ucsubset.src
msgctxt ""
@@ -7049,7 +7049,7 @@ msgctxt ""
"RID_SUBSETSTR_COMBINING_DIACRITICAL_MARKS_EXTENDED\n"
"string.text"
msgid "Combining Diacritical Marks Extended"
-msgstr "Kombinierende diakritische Zeichen, Ergänzung"
+msgstr "Kombinierende diakritische Zeichen, Erweiterung"
#: ucsubset.src
msgctxt ""
@@ -7058,7 +7058,7 @@ msgctxt ""
"RID_SUBSETSTR_DUPLOYAN\n"
"string.text"
msgid "Duployan"
-msgstr "Duployé-Schrift"
+msgstr "Duployé"
#: ucsubset.src
msgctxt ""
@@ -7076,7 +7076,7 @@ msgctxt ""
"RID_SUBSETSTR_GEOMETRIC_SHAPES_EXTENDED\n"
"string.text"
msgid "Geometric Shapes Extended"
-msgstr "Geometrische Formen, erweitert"
+msgstr "Geometrische Formen, Erweiterung"
#: ucsubset.src
msgctxt ""
@@ -7112,7 +7112,7 @@ msgctxt ""
"RID_SUBSETSTR_LATIN_EXTENDED_E\n"
"string.text"
msgid "Latin Extended-E"
-msgstr "Latein, erweitert-E"
+msgstr "Latein, Erweiterung E"
#: ucsubset.src
msgctxt ""
@@ -7121,7 +7121,7 @@ msgctxt ""
"RID_SUBSETSTR_LINEAR_A\n"
"string.text"
msgid "Linear A"
-msgstr "Linear-A"
+msgstr "Linear A"
#: ucsubset.src
msgctxt ""
@@ -7175,7 +7175,7 @@ msgctxt ""
"RID_SUBSETSTR_MYANMAR_EXTENDED_B\n"
"string.text"
msgid "Myanmar Extended-B"
-msgstr "Birmanisch, erweitert-B"
+msgstr "Birmanisch, Erweiterung B"
#: ucsubset.src
msgctxt ""
@@ -7274,7 +7274,7 @@ msgctxt ""
"RID_SUBSETSTR_SINHALA_ARCHAIC_NUMBERS\n"
"string.text"
msgid "Sinhala Archaic Numbers"
-msgstr "Singhalesische Zahlzeichen"
+msgstr "Singhalesisch, Zahlzeichen"
#: ucsubset.src
msgctxt ""
@@ -7283,7 +7283,7 @@ msgctxt ""
"RID_SUBSETSTR_SUPPLEMENTAL_ARROWS_C\n"
"string.text"
msgid "Supplemental Arrows-C"
-msgstr "Pfeile, Ergänzung-C"
+msgstr "Pfeile, Ergänzung C"
#: ucsubset.src
msgctxt ""
@@ -7319,7 +7319,7 @@ msgctxt ""
"RID_SUBSETSTR_ANATOLIAN_HIEROGLYPHS\n"
"string.text"
msgid "Anatolian Hieroglyphs"
-msgstr "Anatolische Hieroglyphen"
+msgstr "Anatolisch, Hieroglyphen"
#: ucsubset.src
msgctxt ""
@@ -7346,7 +7346,7 @@ msgctxt ""
"RID_SUBSETSTR_EARLY_DYNASTIC_CUNEIFORM\n"
"string.text"
msgid "Early Dynastic Cuneiform"
-msgstr "Frühdynastische Keilschrift"
+msgstr "Frühe Keilschrift"
#: ucsubset.src
msgctxt ""
@@ -7391,7 +7391,7 @@ msgctxt ""
"RID_SUBSETSTR_SUTTON_SIGNWRITING\n"
"string.text"
msgid "Sutton Signwriting"
-msgstr "Sutton-Zeichenschrift"
+msgstr "Sutton"
#: ucsubset.src
msgctxt ""
@@ -7418,7 +7418,7 @@ msgctxt ""
"RID_SUBSETSTR_CYRILLIC_EXTENDED_C\n"
"string.text"
msgid "Cyrillic Extended-C"
-msgstr "Kyrillisch, erweitert-C"
+msgstr "Kyrillisch, Erweiterung C"
#: ucsubset.src
msgctxt ""
diff --git a/source/de/svx/uiconfig/ui.po b/source/de/svx/uiconfig/ui.po
index d41fb3e89e8..c890b1a3713 100644
--- a/source/de/svx/uiconfig/ui.po
+++ b/source/de/svx/uiconfig/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-02 20:01+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-23 12:36+0000\n"
+"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480708882.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482496568.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3061,8 +3061,8 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "Ignoriere _diakritische Zeichen bei CTL"
+msgid "Ignore diac_ritics"
+msgstr "_Diakritische Zeichen ignorieren"
#: findreplacedialog.ui
msgctxt ""
@@ -3070,8 +3070,8 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
-msgstr "Kashida-_CTL ignorieren"
+msgid "Ignore _kashida"
+msgstr "Kashida i_gnorieren"
#: findreplacedialog.ui
msgctxt ""
@@ -5166,11 +5166,11 @@ msgstr "Hardware-Beschleunigung deaktivieren (OpenGL, OpenCL)"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
-msgstr "Extensions deinstallieren"
+msgid "Extensions"
+msgstr "Extensions"
#: safemodedialog.ui
msgctxt ""
@@ -5184,11 +5184,20 @@ msgstr "Alle Benutzer-Extensions deinstallieren"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
-msgstr "Alle Extensions deinstallieren (einschließlich gemeinsame und vorinstallierte)"
+msgid "Reset state of shared extensions"
+msgstr "Systemweite Extensions zurücksetzen"
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of bundled extensions"
+msgstr "Mitgelieferte Extensions zurücksetzen"
#: safemodedialog.ui
msgctxt ""
diff --git a/source/de/sw/uiconfig/swriter/ui.po b/source/de/sw/uiconfig/swriter/ui.po
index aeb956a83c7..312be34d05b 100644
--- a/source/de/sw/uiconfig/swriter/ui.po
+++ b/source/de/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-11-22 08:38+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-11 05:32+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: none\n"
"Language: de\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479803933.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481434349.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -4779,7 +4779,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Restart numbering"
-msgstr "_Nummer neu starten"
+msgstr "_Nummerierung neu starten"
#: footnotesendnotestabpage.ui
msgctxt ""
@@ -9824,24 +9824,6 @@ msgstr "Vorlage"
#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
"label\n"
"string.text"
diff --git a/source/de/xmlsecurity/uiconfig/ui.po b/source/de/xmlsecurity/uiconfig/ui.po
index ac8a6cf6463..9a5683b903e 100644
--- a/source/de/xmlsecurity/uiconfig/ui.po
+++ b/source/de/xmlsecurity/uiconfig/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-02 20:03+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-23 12:36+0000\n"
+"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480708988.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482496581.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr "Beschreibung"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr "Signaturtyp"
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/dgo/sc/source/ui/src.po b/source/dgo/sc/source/ui/src.po
index 32105f4075b..e2095aabba3 100644
--- a/source/dgo/sc/source/ui/src.po
+++ b/source/dgo/sc/source/ui/src.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 19:40+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 14:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dgo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467661242.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480601389.000000\n"
#: filter.src
#, fuzzy
@@ -9753,8 +9753,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "शर्तां पूरियां करदे आर्ग्युमैंटें दा कुल जोड़. "
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/dgo/svx/uiconfig/ui.po b/source/dgo/svx/uiconfig/ui.po
index 45becdcae4a..0abd4501f97 100644
--- a/source/dgo/svx/uiconfig/ui.po
+++ b/source/dgo/svx/uiconfig/ui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 19:59+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 14:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dgo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467662357.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480601707.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3065,7 +3065,7 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
+msgid "Ignore diac_ritics"
msgstr ""
#: findreplacedialog.ui
@@ -3074,7 +3074,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5179,10 +5179,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5197,10 +5197,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/dgo/sw/uiconfig/swriter/ui.po b/source/dgo/sw/uiconfig/swriter/ui.po
index 89dcf38d1b7..c19f33928e5 100644
--- a/source/dgo/sw/uiconfig/swriter/ui.po
+++ b/source/dgo/sw/uiconfig/swriter/ui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 20:05+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-14 12:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: dgo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467662709.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479127041.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -10153,26 +10153,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/dgo/xmlsecurity/uiconfig/ui.po b/source/dgo/xmlsecurity/uiconfig/ui.po
index 29eabc29964..b763f2be58a 100644
--- a/source/dgo/xmlsecurity/uiconfig/ui.po
+++ b/source/dgo/xmlsecurity/uiconfig/ui.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-05-25 12:41+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 14:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: dgo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1464180091.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480601707.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -207,6 +207,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/dz/helpcontent2/source/text/scalc/00.po b/source/dz/helpcontent2/source/text/scalc/00.po
index 2fd67be6def..a0429286fc9 100644
--- a/source/dz/helpcontent2/source/text/scalc/00.po
+++ b/source/dz/helpcontent2/source/text/scalc/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 18:11+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-05-24 04:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467742295.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1464064860.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -573,8 +573,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">གདམ་ <emph>བཙུགས་ - མིང་ཚུ་ </emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -591,8 +591,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "གདམ་ <emph>བཙུགས་ - མིང་ཚུ་ - ངེས་འཛིན་འབད་ </emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -609,8 +609,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">གདམ་ <emph>བཙུགས་ - མིང་ཚུ་ - བཙུགས་ </emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -618,8 +618,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">གདམ་ <emph>བཙུགས་ - མིང་ཚུ་ - གསར་བསྐྲུན་འབད་ </emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -627,8 +627,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">གདམ་ <emph>བཙུགས་ - མིང་ཚུ་ - ཁ་ཡིག་བཏགས་ནི་ཚུ་ </emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/scalc/01.po b/source/dz/helpcontent2/source/text/scalc/01.po
index 09d02327e8c..ae26888deaf 100644
--- a/source/dz/helpcontent2/source/text/scalc/01.po
+++ b/source/dz/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-07-05 21:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1467755771.000000\n"
#: 01120000.xhp
@@ -20782,8 +20782,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "=INDEX(SumX;4;1) གིས་ ཁྱབ་ཚད་ <emph> བསྡོམས་ཨེགསི་ </emph> ལས་ <emph> བཙུགས་ - མིང་ཚུ་ - ངེས་འཛིན་འབད་ </emph> ཚུ་ནང་ ངེས་འཛིན་འབད་ཡོདཔ་བཟུམ་སྦེ་ གནས་གོང་སླར་ལོག་འབདཝ་ཨིན།"
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20807,8 +20807,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "=INDEX((multi);4;1) གིས་ ཁྱབ་ཚད་ཀྱི་ གྲལ་ཐིག་༤ དང་ ཀེར་ཐིག་ ༡ ནང་ན་ཤོམ་ཏེ་ཡོད་པའི་ (སྣ་མང་) ཁྱོད་ཀྱིས་ <emph>བཙུགས་ - མིང་ཚུ་ - གཞི་སྒྲིག་ </emph> ཚུ་ <emph> སྣ་མང་སྦེ་ </emph> བཙུགས་ཡོད་པའི་གནས་གོང་བརྡ་སྟོནམ་ཨིན། ཁྱབ་ཚད་སྣ་མང་ དེ་ཡང་ཅིན་འབདན་ གྲུ་བཞི་ནར་མོ་ཅན་ཁྱབ་ཚད་ལེ་ཤ་སོ་སོ་གྲལ་ཐིག་ ༤ དང་ ཀེར་ཐིག་ ༡ དང་ལྡནམ་ཨིན། ད་འབདན་ཁྱོད་ཀྱིས་ འ་ནི་སྣ་མང་ཁྱབ་ཚད་ཀྱི་ སྡེབ་ཚན་གཉིས་པམ་དེ་འབོ་ནི་ཨིན་པ་ཅིན་ ཨང་གྲངས་ ༢ དེ་ <emph> ཁྱབ་ཚད་ཚད་བཟུང་སྦེ་ </emph> བཙུགས།"
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -50315,8 +50315,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "མིང་ཚུ།"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50324,8 +50324,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\"> མིང་ཚུ། </link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50715,8 +50715,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "ཁྱོད་ཀྱིས་ མིང་བཏགས་དགོཔ་འདོད་པའི་ཁྱབ་ཚད་ཚུ་ཆ་མཉམ་རང་ཤོམ་ཏེ་ཡོད་པའི་མངའ་ཁོངས་སེལ་འཐུ་འབད། དེ་ལས་ <emph> བཙུགས་ - མིང་ཚུ་ - གསར་བསྐྲུན་འབད་ </emph> ཚུ་སེལ་འཐུ་འབད། འ་ནི་གིས་ <emph> ཁྱོད་ཀྱིས་དགོ་པའི་མིང་བཏགས་ནིའི་གདམ་ཁ་ཚུ་སེལ་འཐུ་འབད་ཚུགས་པའི་ </emph> མིང་ཚུའི་ཌའི་ལོག་གསར་བསྐྲུན་འབད་དེ་ ཁ་ཕྱེཝ་ཨིན།"
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52612,8 +52612,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "ད་ལྟོའི་ཤོག་ཁྲམ་ལུ་ <emph>-none-</emph> དཔར་བསྐྲུན་ཁྱབ་ཚད་འགྲལ་བཤད་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་སེལ་འཐུ་འབད། ད་ལྟོའི་ཤོག་ཁྲམ་འདི་དཔར་བསྐྲུན་ཁྱབ་ཚད་སྦེ་གཞི་སྒྲིག་འབད་ནིའི་དོན་ལུ་ <emph>-ཤོག་ཁྲམ་ཧྲིལ་བུ་-</emph> སེལ་འཐུ་འབད། ཤོག་ཁྲམ་གྱི་སེལ་འཐུ་གྲུབ་ཡོད་པའི་མངའ་ཁོངས་འདི་དཔར་བསྐྲུན་ཁྱབ་ཚད་སྦེ་ངེས་འཛིན་འབད་ནིའི་དོན་ལུ་ <emph>-སེལ་འཐུ་-</emph> སེལ་འཐུ་འབད། <emph>-ལག་ལེན་པ་-ངེས་འཛིན་འབད་ཡོདཔ་-</emph> ཚུ་སེལ་འཐུ་གི་ཐོག་ལས་ ཁྱོད་ཀྱིས་ <emph>རྩ་སྒྲིག་ - དཔར་བསྐྲུན་ཁྱབ་ཚད་ཚུ་ - ངེས་འཛིན་འབད་ནི་ </emph> བརྡ་བཀོད་ ལག་ལེན་ཐོག་ལས་ཧེ་མ་ལས་རང་ངེས་འཛིན་འབད་ཡོད་པའི་དཔར་བསྐྲུན་ཁྱབ་ཚད་ངེས་འཛིན་འབད་ཚུགསཔ་ཨིན། ཁྱོད་ཀྱིས་ <emph> བཙུགས་ - མིང་ཚུ་ - ངེས་འཛིན་འབད་ནི་ </emph> བརྡ་བཀོད་ཚུ་ལག་ལེན་ཐོག་ལས་ ཁྱབ་ཚད་ལུ་མིང་གྲ་སྒྲིག་འབད་དེ་ཡོད་པ་ཅིན་ འ་ནི་མིང་འདི་བཀྲམ་སྟོན་འབད་ནི་ཨིནམ་དང་ ཐོ་ཡིག་སྒྲོམ་ནང་ལས་སེལ་འཐུ་འབད་ཚུགསཔ་ཨིན།"
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/scalc/guide.po b/source/dz/helpcontent2/source/text/scalc/guide.po
index c4bafff353e..75735f8b698 100644
--- a/source/dz/helpcontent2/source/text/scalc/guide.po
+++ b/source/dz/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-07-05 21:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467753107.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467753093.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -2140,8 +2140,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "འབྱུང་ཁུངས་ཁྱབ་ཚད་འདི་ ཁྱབ་ཚད་སྦེ་གཞི་སྒྲིག་འབད་ནི་གི་དོན་ལུ་ ནང་ཐིག་སེལ་འཐུ་འབད་ཞིནམ་ལས་ <emph>བཙུགས་ - མིང་ཚུ་ - ངེས་འཛིན་འབད་</emph> གདམ་ཁ་རྐྱབས། འབྱུང་ཁུངས་ཡིག་ཆ་འདི་སྲུང་ཞིནམ་ལས་ ཁ་མ་བསྡམས།"
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11872,8 +11872,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "ནང་ཐིག་ ཡང་ན་ ནང་ཐིག་གི་ཁྱབ་ཚད་གཅིག་སེལ་འཐུ་འབད་ཞིནམ་ལས་ <emph>བཙུགས་ - མིང་ཚུ་ - ངེས་འཛིན་འབད་</emph> གདམ་ཁ་རྐྱབས། <emph>མིང་ངེས་འཛིན་འབད་</emph> ཌའི་ལོག་འབྱུངམ་ཨིན།"
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11925,8 +11925,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">བཙུགས་ - མིང་ཚུ་ - ངེས་འཛིན་</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/schart/01.po b/source/dz/helpcontent2/source/text/schart/01.po
index d899e74cd48..c45771a15f5 100644
--- a/source/dz/helpcontent2/source/text/schart/01.po
+++ b/source/dz/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-05 21:12+0000\n"
+"PO-Revision-Date: 2016-12-22 23:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467753125.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482449742.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -8055,3 +8055,94 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves down the selected entry in the Data Series list.</ahelp>"
msgstr ""
+
+msgctxt ""
+"04050100.xhp\n"
+"par_id7272255\n"
+"help.text"
+msgid "<variable id=\"trendlinestext\"><ahelp hid=\".\">Trend lines can be added to all 2D chart types except for Pie and Stock charts.</ahelp></variable>"
+msgstr "<variable id=\"untentext\"><ahelp hid=\".\">ནང་ཐིག་གི་ ནང་དོན་ཚུ་ ནང་ཐིག་གི་འོག་ལུ་ ཕྲང་སྒྲིག་འབདཝ་ཨིན།</ahelp></variable>"
+
+msgctxt ""
+"04050100.xhp\n"
+"par_id8092593\n"
+"help.text"
+msgid "To show the equation and the coefficient of determination, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Equation</item>."
+msgstr "འགོ་ཚག་བཀལ་ཡོད་པའི་ཐོ་ཡིག་གི་རྩ་སྒྲིག་འབད་ནི་བསྒྱུར་བཅོས་འབད་ནིའི་དོན་ལས་ <emph>རྩ་སྒྲིག་ - འགོ་ཚག་ཚུ་དང་ཨང་བཏགས་ནི་</emph>གདམ་ཁ་རྐྱབས།"
+
+msgctxt ""
+"04050100.xhp\n"
+"par_id7971434\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show equation to see the equation of the trend line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">སེལ་འཐུ་འབད་ཡོད་མི་བཟུམ་གྱི་ཤུལ་མམ་གྱི་དངོས་པོ་དེ་ལུ་ འོད་རྟགས་དེ་གཞི་སྒྲིག་འབདཝ་ཨིན།</ahelp>"
+
+msgctxt ""
+"04050100.xhp\n"
+"par_id558793\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show Coefficient of Determination to see the determination coefficient of the trend line.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">སེལ་འཐུ་འབད་ཡོད་མི་བཟུམ་གྱི་ཤུལ་མམ་གྱི་དངོས་པོ་དེ་ལུ་ འོད་རྟགས་དེ་གཞི་སྒྲིག་འབདཝ་ཨིན།</ahelp>"
+
+msgctxt ""
+"04050100.xhp\n"
+"par_id4562211\n"
+"help.text"
+msgid "<link href=\"text/schart/01/04050000.xhp\">Y Error Bars tab page</link>"
+msgstr "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">དཔེ་རིས་ གྱང་རྩིག</link>"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id5649281\n"
+"help.text"
+msgid "r² = RSQ(Data_Y;LN(Data_X))"
+msgstr ""
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id1664479\n"
+"help.text"
+msgid "exponential regression: only positive y-values are considered,"
+msgstr ""
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8918729\n"
+"help.text"
+msgid "A <emph>polynomial regression</emph> curve cannot be added automatically. You must calculate this curve manually."
+msgstr ""
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id33875\n"
+"help.text"
+msgid "Create a table with the columns x, x², x³, … , xⁿ, y up to the desired degree n."
+msgstr ""
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8398998\n"
+"help.text"
+msgid "If you insert a trend line to a chart type that uses categories, like <emph>Line </emph>or <emph>Column, </emph>then the numbers 1, 2, 3, <emph>…</emph> are used as x-values to calculate the trend line."
+msgstr ""
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id5676747\n"
+"help.text"
+msgid "To insert trend lines for all data series, double-click the chart to enter edit mode. Choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select the type of trend line from None, Linear, Logarithmic, Exponential, or Power trend line."
+msgstr ""
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id394299\n"
+"help.text"
+msgid "The <emph>logarithm regression</emph> follows the equation <item type=\"literal\">y=a*ln(x)+b</item>."
+msgstr ""
diff --git a/source/dz/helpcontent2/source/text/shared/00.po b/source/dz/helpcontent2/source/text/shared/00.po
index 17b6d94b95a..ed075d9a597 100644
--- a/source/dz/helpcontent2/source/text/shared/00.po
+++ b/source/dz/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 21:12+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-05-24 05:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467753168.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1464067538.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -12208,15 +12208,6 @@ msgstr "<emph>རྩ་སྒྲིག་ - ཤོག་ལེབ་ - རྒྱ
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>མངའ་ཁོངས་ - ཚོས་གཞི་ཚུ་</emph> མཆོང་ལྡེ་གདམ།"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/dz/helpcontent2/source/text/shared/01.po b/source/dz/helpcontent2/source/text/shared/01.po
index 4e57f4c82c8..61e0bfd3cf7 100644
--- a/source/dz/helpcontent2/source/text/shared/01.po
+++ b/source/dz/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 21:56+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-07-05 21:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467755771.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467753690.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -8308,8 +8308,8 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
-msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">བརྗེ་སོར་འབད་བཏུབ་པའི་འཚོལ་ཞིབ་ཀྱི་ཐ་སྙད་ནང་ལུ་ ཡིག་འབྲུ་ཚུ་གི་ཨང་གྲངས་འདི་ཐོ་བཀོད་འབད། </ahelp>དཔེར་ན་ ཁྱོད་ཀྱིས་ ཡིག་འབྲུ་གཉིས་བརྗེ་སོར་འབད་མི་འདི་གསལ་བཀོད་འབད་བ་ཅིན་ \"black\" དང་ \"crack\"ཚུ་ ཆ་འདྲ་བ་འབད་བརྩི་འཇོག་འབདཝ་ཨིན།"
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
+msgstr ""
#: 02100100.xhp
msgctxt ""
@@ -25788,32 +25788,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">སེལ་འཐུ་འབད་ཡོད་པའི་དངོས་པོ་ལུ་ ཁྱོད་ཀྱིས་འཇུག་སྤྱོད་འབད་ནི་ཨིན་མི་འདི་གི་བཀང་ལུ་ཨེབ་གཏང་།</ahelp>"
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "ཚོས་གཞི་ཚུ།"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">ཚོས་གཞི་ཚུ།</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr "ད་ལྟོའི་ཐོ་ཡིག་འདི་སརུངས་ནི་དང་ ཡང་ན་ ཚོས་གཞི་ཐོ་ཡིག་སོ་སོ་ཅིག་མངོན་གསལ་འབད་ནི་ལུ་ འཇུག་སྤྱོད་འབད་ནི་དོན་ལུ་ ཚོས་གཞི་ཅིག་སེལ་འཐུ་འབད།"
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43451,6 +43425,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">ཆོག་ཡིག་ཨམ་ཅིག་སླར་ཐོ་བཀོད་འབད།</ahelp>"
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/dz/helpcontent2/source/text/shared/guide.po b/source/dz/helpcontent2/source/text/shared/guide.po
index 06cd82356b0..eebcf18b2bc 100644
--- a/source/dz/helpcontent2/source/text/shared/guide.po
+++ b/source/dz/helpcontent2/source/text/shared/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 21:32+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-07-05 21:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467754323.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467754284.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2194,7 +2194,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2274,7 +2274,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9940,8 +9940,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "ཤོག་ཁྲམ་ནང་ནང་ཐིག་ལུ་མཆོང་ནི་ལུ་ དང་པ་རང་ནང་ཐིག་གི་དོན་ལུ་མིང་ཐོ་བཀོད་འབད་(<emph>བཙུགས་ - མིང་ཚུ་ - ངེས་འཛིན་</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12455,20 +12455,20 @@ msgstr "གདམ་ཁ་ཚུའི་<emph>མཆོང་ལྡེ་ཤོ
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "ཁྱོད་ཀྱིས་ <emph>ཡིག་ཆ་གསརཔ་</emph>གུ་ཨེབ་གཏང་ཚརཝ་ཅིན་ ཁྱོད་ཀྱིས་ སྒོ་སྒྲིག་ཆུང་ཀུ་ཅིག་ <emph>མཉམ་འབྱུང་ཁ་ཡིག་གི་</emph>ཨེབ་རྟ་དང་གཅིག་ཁར་འབད་མི་ཅགི་མཐོང་ཚུགས་ ད་ལྟོའི་ངོ་རྐྱང་ཁ་ཡིག་འདི་ ལེབ་གྲངས་གུའི་ཁ་ཡིག་གཞན་མི་ཆ་མཉམ་ལུ་ འདྲ་བཤུས་རྐྱབས་ཡོདཔ་ཨིན།"
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "ཁྱོད་ཀྱིས་བཙུགས་ཡོད་པའི་སྒྲིག་སྟངས་ཚུ་དང་གཅིག་ཁར་ཡིག་ཆ་གསརཔ་གསར་བསྐྲུན་འབད་ནི་ལུ་<emph>ཡིག་ཆ་གསརཔ་གུ་</emph>ཨེབ་གཏང་།"
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "ཁྱོད་ཀྱིས་བཙུགས་ཡོད་པའི་སྒྲིག་སྟངས་ཚུ་དང་གཅིག་ཁར་ཡིག་ཆ་གསརཔ་གསར་བསྐྲུན་འབད་ནི་ལུ་<emph>ཡིག་ཆ་གསརཔ་གུ་</emph>ཨེབ་གཏང་།"
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "ཁྱོད་ཀྱིས་ <emph>ཡིག་ཆ་གསརཔ་</emph>གུ་ཨེབ་གཏང་ཚརཝ་ཅིན་ ཁྱོད་ཀྱིས་ སྒོ་སྒྲིག་ཆུང་ཀུ་ཅིག་ <emph>མཉམ་འབྱུང་ཁ་ཡིག་གི་</emph>ཨེབ་རྟ་དང་གཅིག་ཁར་འབད་མི་ཅགི་མཐོང་ཚུགས་ ད་ལྟོའི་ངོ་རྐྱང་ཁ་ཡིག་འདི་ ལེབ་གྲངས་གུའི་ཁ་ཡིག་གཞན་མི་ཆ་མཉམ་ལུ་ འདྲ་བཤུས་རྐྱབས་ཡོདཔ་ཨིན།"
#: labels.xhp
msgctxt ""
@@ -18366,58 +18366,53 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "ཚད་བཟུང་ཚུ་ $[officename] འདི་མཉེན་ཆས་དང་བཅསཔ་སྦེ་འགོ་བཙུགས་དོ།"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value> ཚད་བཟུང་ཚུ་འགོ་བཙུགས་ </bookmark_value><bookmark_value> བཀོད་ལམ་ཚད་བཟུང་ཚུ་ </bookmark_value><bookmark_value> ཚད་བཟུང་ཚུ། བཀོད་ལམ་ </bookmark_value><bookmark_value> བཀོད་ལམ་ནང་ལུ་སྒྲུབ་རྟགས་ཚུ། </bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "ཚད་བཟུང་ཚུ་ $[officename] འདི་མཉེན་ཆས་དང་བཅསཔ་སྦེ་འགོ་བཙུགས་དོ།"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "བཀོད་ལམ་ལས་$[officename] མཉེན་ཆས་འགོ་བཙུགས་ཐོག་ལས་ཁྱོད་ཀྱིས་ལཱ་ཤུགས་རྒྱུད་བསྐུལ་ཚུགས་ནི་ཨིན་མི་དང་གཅིག་ཁར་ཁྱོད་ཀྱིས་ཚད་བཟུང་ཚུ་འདྲ་མིན་སྣ་ཚོགས་འགན་སྤྲོད་འབད་ཚུགས། བཀོད་ལམ་ཚད་བཟུང་ཚུ་གི་ལག་ལེན་འདི་ཉམས་མྱོང་་ཡོད་པའི་ལག་ལེན་པ་ཚུ་རྐྱངམ་གཅིག་ལུ་འོས་སྦྱོར་འབད་ཡོདཔ་ཨིན།"
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "སྤྱིར་བཏང་ལེགས་སྐྱོང་འཐབ་ནིའི་དོན་ལུ་ བཀོད་ལམ་ཚད་བཟུང་ཚུའི་ལག་ལེན་འདི་ཉེ་བར་མི་མཁོ། ཚད་བཟུང་དག་པ་ཅིག་ལུ་$[officename]མཉེན་ཆས་འཕྲུལ་རིག་གི་ཐབས་རིག་རྒྱབ་གཞི་གི་ཤེས་ཡོན་གཏིང་ཟབ་དགོས་མཁོ་ཡོད།"
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "བཀོད་ལམ་ལས་$[officename]མཉེན་ཆས་འགོ་བཙུགས་དོ།"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
msgstr ""
@@ -18426,16 +18421,14 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "ཝིན་ཌོསི་གི་འོག་ལུ་ ཁ་ཕྱེ་ཚིག་ཡིག་ས་སྒོ་ནང་འོག་གི་ཚིག་ཡིག་ཡིག་དཔར་རྐྱབ་ཞིནམ་དང་<emph>བཏུབ་ </emph>ཨེབ་ <emph>གཏང་།</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
msgstr ""
@@ -18444,679 +18437,649 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{གཞི་བཙུགས་}\\ལས་རིམ་\\ཨེསི་ཡིག་ཚང་ ཨི་ཨེཀསི་ཨི་ {ཚད་བཟུང་} </caseinline><caseinline select=\"UNIX\">{གཞི་བཙུགས་}/ལས་རིམ་/ཨེསི་ཡིག་ཚང་ {ཚད་བཟུང་} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "$[officename] མཉེན་ཆས་ཀྱི་ཁྱོད་ཀྱི་གཞི་བཙུགས་ལུ་འགྲུལ་ལམ་དང་གཅིག་ཁར་ <emph>{གཞི་བཙུགས་}</emph>ཚབ་བཙུགས་ (དཔེར་ན་ <emph>སི་:\\ལས་རིམ་ཡིག་སྣོད་ཚུ་\\ཡིག་ཚང་</emph>, ཡང་ན་ <emph>~/ཡིག་ཚང་</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "དགོས་མཁོ་ཡོད་ས་ལུ་ འོག་གི་བཀོད་ལམ་ཚད་བཟུང་ཚུ་གཅིག་ཡང་ན་ལེ་ཤ་དང་གཅིག་ཁར་<emph>{ཚད་བཟུང་}</emph>ཚད་བཙུགས།"
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "ཚད་བཟུང་ཚུ་གི་བཀོད་ལམ་ནུས་ཅན།"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "ཚད་བཟུང་།"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "དོན་དག"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "-གྲོགས་རམ་ / -ཨེཆ་ / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "མ་སྒྲོམ་ལུ་ <switchinline select=\"sys\"><caseinline select=\"WIN\">ཌའི་ལོག་སྒྲོམ་ནང་ </caseinline><defaultinline>ཐོབ་ཚུགས་མི་བཀོད་ལམ་ཚད་བཟུང་ཚུ་ཐོ་བཀོད་འབདཝ་ཨིན།</defaultinline></switchinline>. -གྲོགས་རམ་འདང་གིས་གྲོགས་རམ་ཚིག་ཡིག་རིངམ་སྟོནམ་ཨིན་ -ཨེཆ་འདི་གིས་གྲོགས་རམ་ཚིག་ཡིག་ཐུང་ཀུ་སྟོནམ་ཨིན།"
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
+msgid "Opens the file and applies specified macros from the file."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
+msgid "Getting help and information"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "-རྩོམ་འབྲི་པ།"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "རྩོམ་འབྲི་པའི་ཡིག་ཆ་སྟོངམ་གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིན།"
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "-ཀེལསི།"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "ཀེལསི་ཡིག་ཆ་སྟོངམ་གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིན།"
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "-ཌྲོ།"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "ཌྲོ་ཡིག་ཆ་སྟོངམ་གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིན།"
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "-ཨིམ་པེརེསི།"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "ཨིམ་པེརེསི་ཡིག་ཆ་སྟོངམ་དང་གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིན།"
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "-ཨང་རྩིས།"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "ཨང་རྩིས་ཡིག་ཆ་སྟོངམ་དང་གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིན།"
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "-སྤྱི་ཁྱབ།"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "རྩོམ་འབྲི་པ་ཡིག་ཆ་ཨམ་གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིན།"
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "-ཝེབ།"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ་སྟོངམ་དང་གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིན།"
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id315330t\n"
+"help.text"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315053o\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "-{filename.odp}སྟོན།"
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id20161204101917197\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "ཨིམ་པེརེསི་ཡིག་སྣོད་<emph>{filename.odp}</emph>གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིནམ་དང་གསལ་སྟོན་འགོ་བཙུགསཔ་ཨིན། གསལ་སྟོན་གྱི་ཤུལ་ལས་ཟུན་དག་ཐབས་ལམ་བཙུགསཔ་ཨིན།"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id3146786\n"
"help.text"
-msgid "--minimized"
-msgstr "-ཆུང་ཀུ་བཟོ་ཡོདཔ།"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
+"help.text"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "ཆུང་ཀུ་བཟོ་ཡོད་མི་འགོ་བཙུགསཔ་ཨིན། སིཔེལེཤ་གསལ་གཞི་འདི་བཀྲམ་སྟོན་མི་འབད།"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "-མ་མཐོངམ།"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "མ་མཐོང་མི་ཐབས་ལམ་ནང་འགོ་བཙུགསཔ་ཨིན།"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "འགོ་བཙུགས་-ནིའི་ལས་རྟགས་ཡང་ན་འགོ་ཐོག་ལས་རིམ་སྒོ་སྒྲིག་མེན་མི་འདི་མཐོང་ནི་འོང་། ག་དེ་སྦེ་རང་ཨིན་རུང་ $[officename] མཉེན་ཆས་འདི་ཚད་འཛིན་འབད་ཚུགས་ནི་དང་ཡིག་ཆ་ཚུ་དང་ཌའི་ལོག་ཚུ་ཁ་ཕྱེ་ཡོད་མི་དེ་ཨེ་པི་ཨའི་<link href=\"http://api.openoffice.org\" name=\"API\">བརྒྱུདཔ་ཨིན།</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "མགྱོགས་པར་འགོ་བཙུགས་གཅིག་ཁར་<emph>-འབྲེལ་ཚིག་ནང་དེ་ལག་ལེན་འཐབ་མི་ཚུགས།</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "$[officename]བཟོ་མི་ལམ་སྟོན་པ་ནང་<emph>བརྡ་དོན་ཧེང་བཀལ་ཐོབཔ་ཨིན།</emph>."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
"help.text"
-msgid "--norestore"
-msgstr "-སོར་ཆུད་མེད།"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
+"help.text"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "ལོག་འགོ་བཙུགས་ནི་དང་རིམ་ལུགས་བརྡབ་འཁྲུག་གི་ཤུལ་ལས་ཡིག་སྣོད་སླར་གསོ་འདི་ལྕོགས་མིན་བཟོཝ་ཨིན།"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "-nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "བྱོན་པ་ལེགས་སོའི་ཝི་ཛརཌི་འདི་ལྕོགས་མིན་བཟོཝ་ཨིན།"
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "མགྱོགས་པར་འགོ་བཙུགས།"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "མགྱོགས་པ་འགོ་བཙུགས་མི་དེ་ཤུགས་ལྡན་བཟོ།"
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "-accept={ཡུ་ཨེན་ཨོ་ ཡིག་རྒྱུན།}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "\"ཡུ་ཨེན་ཨོ་དང་ལེན་འབད་མི་ཐེརེཌི་ཚུ་\"གི་གསར་བསྐྲུན་འབད་མི་གུ་$[officename]མཉེན་ཆས་གསལ་བཀོད་འབདཝ་ཨིན། \"ཡུ་ཨེན་ཨོ་དང་ལེན་ཡིག་རྒྱུན་\"འདི་ལག་ལེན་འཐབ་འོང་།"
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "$[officename]བཟོ་མི་ལམ་སྟོན་པ་ནང་<emph>བརྡ་དོན་ཧེང་བཀལ་ཐོབཔ་ཨིན།</emph>."
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "-accept={ཡུ་ཨེན་ཨོ་ ཡིག་རྒྱུན།}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
+msgid "Exit after loading documents."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {ཡིག་སྣོད་མིང་ ༡} {ཡིག་སྣོད་མིང་ ༢} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "ཡིག་སྣོད་ཚུ་ <emph>{ཡིག་སྣོད་མིང་ ༡} {ཡིག་སྣོད་མིང་ ༢} ...</emph> སྔོན་སྒྲིག་དཔར་འཕྲུལ་དང་མཇུག་ཚུ་ལུ་ དཔར་བསྐྲུན་འབདཝ་ཨིན། སིཔེལེཤ་གསལ་གཞི་འདི་འབྱུང་ནི་མེདཔ་ཨིན།"
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "ཡིག་སྣོད་ནང་ན་བར་སྟོང་ཚུ་ཤོམ་ཏེ་ཡོད་པ་ཅིན་ འདི་འདྲེན་ཚིག་རྟགས་ཚུ་ནང་མཉམ་སྦྲགས་འབད་དགོསཔ་ཨིན།"
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "-pt {དཔར་འཕྲུལ་མིང་་} {ཡིག་སྣོད་མིང་ ༡} {ཡིག་སྣོད་མིང་ ༢} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "ཡིག་སྣོད་ཚུ་ <emph>{ཡིག་སྣོད་མིང་ ༡} {ཡིག་སྣོད་མིང་ ༢} ...</emph> དཔར་འཕྲུལ་དང་ <emph>{དཔར་འཕྲུལ་མིང་}</emph> མཇུག་ཚུ་ལུ་དཔར་བསྐྲུན་འབདཝ་ཨིན། སིཔེལེཤ་གསལ་གཞི་འདི་འབྱུང་ནི་མེདཔ་ཨིན།"
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "ཡིག་སྣོད་ནང་ན་བར་སྟོང་ཚུ་ཤོམ་ཏེ་ཡོད་པ་ཅིན་ འདི་འདྲེན་ཚིག་རྟགས་ཚུ་ནང་མཉམ་སྦྲགས་འབད་དགོསཔ་ཨིན།"
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-ཨོ་{ཡིག་སྣོད་མིང་།}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "{ཡིག་སྣོད་མིང་}དེ་ཊེམཔེལེཊི་ཨིན་རུང་རང་<emph>ཞུན་དག་འབད་ནིའི་དོན་ལུ་</emph>ཁ་ཕྱེཝ་ཨིན།"
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "-སྟོན་{ཡིག་སྣོད་མིང་།}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "{ཡིག་སྣོད་མིང་}གནས་སྐབས་འདྲ་བཤུས་གསར་བསྐྲུན་འབདཝ་ཨིནམ་དང་<emph>དེ་ཁ་ཕྱེ་</emph>ལྷག་ནི་-རྐྱངམ་གཅིག"
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-ཨེན་{ཡིག་སྣོད་མིང་།}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "{ཡིག་སྣོད་མིང་}འདི་ཊེམ་པེལེཊི་བཟུམ་སྦེ་ལག་ལེན་འཐབ་ཐོག་ལས་ <emph>ཡིག་ཆ་གསརཔ་</emph> གསར་བསྐྲུན་འབདཝ་ཨིན།"
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "-ལས་རྟགས་མེད།"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "ལས་རིམ་འགོ་བཙུགས་ལུ་སིཔེལེཤ་གསལ་གཞི་ལྕོགས་མིན་བཟོཝ་ཨིན།"
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "-སྔོན་སྒྲིག་མེད།"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "ཡིག་སྣོད་ནང་ན་བར་སྟོང་ཚུ་ཤོམ་ཏེ་ཡོད་པ་ཅིན་ འདི་འདྲེན་ཚིག་རྟགས་ཚུ་ནང་མཉམ་སྦྲགས་འབད་དགོསཔ་ཨིན།"
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "སི་པེལེཤ་གསལ་གཞི་མ་གཏོགས་ ག་ཅི་ཡང་བཀྲམ་སྟོན་མ་འབད་བར་འགོ་བཙུགཔ་ཨིན།"
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3150828\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "-nofirststartwizard"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3145268\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
+msgid "Opens following files in viewer mode (read-only)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id3153838\n"
"help.text"
-msgid "--display {display}"
-msgstr "-བཀྲམ་སྟོན་{བཀྲམ་སྟོན།}"
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id315053p\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "--headless"
-msgstr "-མགོ་མེད་མི།"
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id315053q\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "ལག་ལེན་པའི་ངོས་འདྲ་བ་མེད་པར་གློག་རིམ་ལག་ལེན་འཐབ་ཐོག་ལས་འབད་བཅུག་མི་ \"མགོ་མེད་མི་ཐབས་ལམ་\"འགོ་བཙུགསཔ་ཨིན།"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "འ་ནི་དམིགས་བསལ་ཐབས་ལམ་འདི་ <link href=\"http://api.openoffice.org\" name=\"API\">ཕྱིའི་ཞབས་ཏོག་སྤྱོད་མི་བརྒྱུད་དེ་ཨེ་པི་ཨའི་གིས་གློག་རིམ་འདི་ཚད་འཛིན་འབདཝ་ད་ལག་ལེན་འཐབ་ཚུགས།</link>."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "--infilter={filter}"
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
+msgid "Ignored switches"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (MacOS X only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
+msgid "Ignored (COM+ related; Windows only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id20161204014529900\n"
+"help.text"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
msgstr ""
#: startcenter.xhp
diff --git a/source/dz/sc/source/ui/src.po b/source/dz/sc/source/ui/src.po
index 3088d8a47ea..9d5701ed8b0 100644
--- a/source/dz/sc/source/ui/src.po
+++ b/source/dz/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 19:41+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 14:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467661307.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480601912.000000\n"
#: filter.src
#, fuzzy
@@ -9776,8 +9776,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "གནས་སྟངས་བསྒྲུབ་མི་བསྒྲུབ་རྟགས་ཚུ་བསྡོམ་སྟོནམ་ཨིན།"
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/dz/svx/uiconfig/ui.po b/source/dz/svx/uiconfig/ui.po
index 423b8c57693..a49b1e887c6 100644
--- a/source/dz/svx/uiconfig/ui.po
+++ b/source/dz/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 19:56+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 14:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467662184.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480602091.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3049,7 +3049,7 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
+msgid "Ignore diac_ritics"
msgstr ""
#: findreplacedialog.ui
@@ -3058,7 +3058,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5144,10 +5144,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5162,10 +5162,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/dz/sw/uiconfig/swriter/ui.po b/source/dz/sw/uiconfig/swriter/ui.po
index 85f0f8346e3..f35f1a1f7fa 100644
--- a/source/dz/sw/uiconfig/swriter/ui.po
+++ b/source/dz/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 20:00+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-14 15:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467662449.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479138542.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -10043,26 +10043,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/dz/xmlsecurity/uiconfig/ui.po b/source/dz/xmlsecurity/uiconfig/ui.po
index bfeb51f179b..9d3f4eecb69 100644
--- a/source/dz/xmlsecurity/uiconfig/ui.po
+++ b/source/dz/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-05-25 12:42+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 14:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: dz\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1464180120.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480602091.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/el/basic/source/classes.po b/source/el/basic/source/classes.po
index c698af34684..2d9cc88ee6b 100644
--- a/source/el/basic/source/classes.po
+++ b/source/el/basic/source/classes.po
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1449895645.000000\n"
@@ -1232,3 +1232,1082 @@ msgctxt ""
"string.text"
msgid "The library could not be removed from memory."
msgstr "Αδυναμία αφαίρεσης της βιβλιοθήκης από τη μνήμη."
+
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_NUMBER_OF_ARGS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid number of arguments."
+msgstr "Λανθασμένος αριθμός ορισμάτων."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_SYNTAX & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Syntax error."
+msgstr "Σφάλμα σύνταξης."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_GOSUB & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Return without Gosub."
+msgstr "Επιστροφή χωρίς Gosub."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_REDO_FROM_START & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect entry; please retry."
+msgstr "Λανθασμένη εισαγωγή· παρακαλούμε ξαναπροσπαθήστε."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_ARGUMENT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid procedure call."
+msgstr "Άκυρη κλήση διαδικασίας."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_MATH_OVERFLOW & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Overflow."
+msgstr "Υπερχείλιση."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_MEMORY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Not enough memory."
+msgstr "Ανεπαρκής μνήμη."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ALREADY_DIM & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Array already dimensioned."
+msgstr "Ο πίνακας έχει ήδη διαστάσεις."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_OUT_OF_RANGE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Index out of defined range."
+msgstr "Δείκτης έξω από την καθορισμένη περιοχή."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DUPLICATE_DEF & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Duplicate definition."
+msgstr "Διπλός ορισμός."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ZERODIV & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Division by zero."
+msgstr "Διαίρεση με το μηδέν."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_VAR_UNDEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Variable not defined."
+msgstr "Δεν έχει οριστεί μεταβλητή."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_CONVERSION & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Data type mismatch."
+msgstr "Ασυμφωνία τύπων δεδομένων."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_PARAMETER & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid parameter."
+msgstr "Άκυρη παράμετρος."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_USER_ABORT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Process interrupted by user."
+msgstr "Η διαδικασία διακόπηκε από τον χρήστη."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_RESUME & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Resume without error."
+msgstr "Συνέχεια χωρίς σφάλματα."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_STACK_OVERFLOW & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Not enough stack memory."
+msgstr "Ανεπαρκής μνήμη στοίβας."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROC_UNDEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Sub-procedure or function procedure not defined."
+msgstr "Ακαθόριστη λειτουργία υποδιαδικασίας ή συνάρτησης."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_DLL_LOAD & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Error loading DLL file."
+msgstr "Σφάλμα φόρτωσης αρχείου DLL."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_DLL_CALL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Wrong DLL call convention."
+msgstr "Λάθος συνθήκη κλήσης αρχείου DLL."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_INTERNAL_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Internal error $(ARG1)."
+msgstr "Εσωτερικό σφάλμα $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_CHANNEL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid file name or file number."
+msgstr "Άκυρο όνομα ή αριθμός αρχείου."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_FILE_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "File not found."
+msgstr "Το αρχείο δεν βρέθηκε."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_FILE_MODE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect file mode."
+msgstr "Λαθεμένη κατάσταση αρχείου."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_FILE_ALREADY_OPEN & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "File already open."
+msgstr "Το αρχείο είναι ήδη ανοιχτό."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_IO_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Device I/O error."
+msgstr "Σφάλμα εισόδου/εξόδου συσκευής."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_FILE_EXISTS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "File already exists."
+msgstr "Το αρχείο υπάρχει ήδη."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_RECORD_LENGTH & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect record length."
+msgstr "Λαθεμένο μήκος εγγραφής."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DISK_FULL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Disk or hard drive full."
+msgstr "Η δισκέτα ή ο σκληρός δίσκος είναι πλήρης."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_READ_PAST_EOF & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Reading exceeds EOF."
+msgstr "Η ανάγνωση υπερβαίνει το τέλος του αρχείου."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_RECORD_NUMBER & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect record number."
+msgstr "Λανθασμένος αριθμός εγγραφής."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_TOO_MANY_FILES & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Too many files."
+msgstr "Πάρα πολλά αρχεία."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_DEVICE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Device not available."
+msgstr "Η συσκευή δεν είναι διαθέσιμη."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ACCESS_DENIED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Access denied."
+msgstr "Άρνηση πρόσβασης."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_READY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Disk not ready."
+msgstr "Ανέτοιμος δίσκος."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_IMPLEMENTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Not implemented."
+msgstr "Δεν έχει υλοποιηθεί."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DIFFERENT_DRIVE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Renaming on different drives impossible."
+msgstr "Αδυναμία μετονομασίας σε διαφορετικούς δίσκους."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ACCESS_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Path/File access error."
+msgstr "Σφάλμα πρόσβασης διαδρομής/αρχείου."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PATH_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Path not found."
+msgstr "Δεν βρέθηκε η διαδρομή."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object variable not set."
+msgstr "Δεν ορίστηκε μεταβλητή αντικειμένου."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_PATTERN & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid string pattern."
+msgstr "Άκυρη μορφή συμβολοσειράς."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SBERR_IS_NULL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Use of zero not permitted."
+msgstr "Δεν επιτρέπεται η χρήση του μηδενός."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE Error."
+msgstr "Σφάλμα DDE."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_WAITINGACK & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Awaiting response to DDE connection."
+msgstr "Αναμένεται απάντηση στην σύνδεση DDE."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_OUTOFCHANNELS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "No DDE channels available."
+msgstr "Χωρίς διαθέσιμα κανάλια DDE."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_NO_RESPONSE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "No application responded to DDE connect initiation."
+msgstr "Δεν απαντά καμία εφαρμογή κατά την προσπάθεια σύνδεσης DDE."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_MULT_RESPONSES & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Too many applications responded to DDE connect initiation."
+msgstr "Απάντησαν υπερβολικά πολλές εφαρμογές κατά την προσπάθεια σύνδεσης DDE."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_CHANNEL_LOCKED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE channel locked."
+msgstr "Το κανάλι DDE είναι κλειδωμένο."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_NOTPROCESSED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "External application cannot execute DDE operation."
+msgstr "Η εξωτερική εφαρμογή δεν μπορεί να εκτελέσει τη λειτουργία DDE."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_TIMEOUT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Timeout while waiting for DDE response."
+msgstr "Υπέρβαση χρόνου κατά την αναμονή απάντησης από το DDE."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_USER_INTERRUPT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "User pressed ESCAPE during DDE operation."
+msgstr "Ο χρήστης πάτησε ESCAPE κατά τη λειτουργία DDE."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_BUSY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "External application busy."
+msgstr "Η εξωτερική εφαρμογή είναι απασχολημένη."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_NO_DATA & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE operation without data."
+msgstr "Λειτουργία DDE χωρίς δεδομένα."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_WRONG_DATA_FORMAT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Data are in wrong format."
+msgstr "Τα δεδομένα είναι σε λάθος μορφή."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_PARTNER_QUIT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "External application has been terminated."
+msgstr "Η εξωτερική εφαρμογή τερματίστηκε."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_CONV_CLOSED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE connection interrupted or modified."
+msgstr "Η σύνδεση DDE διακόπηκε ή τροποποιήθηκε."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_NO_CHANNEL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE method invoked with no channel open."
+msgstr "Η μέθοδος DDE κλήθηκε χωρίς ανοιχτό κανάλι."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_INVALID_LINK & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid DDE link format."
+msgstr "Άκυρη μορφή δεσμού DDE."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_QUEUE_OVERFLOW & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE message has been lost."
+msgstr "Το μήνυμα του DDE χάθηκε."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_LINK_ALREADY_EST & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Paste link already performed."
+msgstr "Η επικόλληση συνδέσμου εκτελέστηκε ήδη."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_LINK_INV_TOPIC & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Link mode cannot be set due to invalid link topic."
+msgstr "Αδυναμία ορισμού κατάστασης σύνδεσης λόγω άκυρων θεμάτων σύνδεσης."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_DLL_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE requires the DDEML.DLL file."
+msgstr "Το DDE απαιτεί το αρχείο DDEML.DLL."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_CANNOT_LOAD & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Module cannot be loaded; invalid format."
+msgstr "Αδυναμία φόρτωσης της ενότητας· άκυρη μορφή."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_INDEX & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid object index."
+msgstr "Άκυρο ευρετήριο αντικειμένων."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_ACTIVE_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object is not available."
+msgstr "Το αντικείμενο δεν είναι διαθέσιμο."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_PROP_VALUE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect property value."
+msgstr "Λαθεμένη τιμή ιδιότητας."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROP_READONLY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "This property is read-only."
+msgstr "Η ιδιότητα είναι μόνο για ανάγνωση."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROP_WRITEONLY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "This property is write only."
+msgstr "Η ιδιότητα είναι μόνο για εγγραφή."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_INVALID_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid object reference."
+msgstr "Άκυρη παραπομπή αντικειμένου."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_METHOD & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Property or method not found: $(ARG1)."
+msgstr "Η ιδιότητα ή η μέθοδος δεν βρέθηκε: $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NEEDS_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object required."
+msgstr "Απαιτείται αντικείμενο."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_INVALID_USAGE_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid use of an object."
+msgstr "Άκυρη χρήση αντικειμένου."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_OLE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "OLE Automation is not supported by this object."
+msgstr "Οι αυτοματισμοί OLE δεν υποστηρίζονται από αυτό το αντικείμενο."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_METHOD & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "This property or method is not supported by the object."
+msgstr "Το αντικείμενο δεν υποστηρίζει αυτή την ιδιότητα ή μέθοδο."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_OLE_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "OLE Automation Error."
+msgstr "Σφάλμα αυτοματισμού OLE."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_ACTION & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "This action is not supported by given object."
+msgstr "Η ενέργεια αυτή δεν υποστηρίζεται από αυτό το αντικείμενο."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_NAMED_ARGS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Named arguments are not supported by given object."
+msgstr "Τα ονομαζόμενα ορίσματα δεν υποστηρίζονται από αυτό το αντικείμενο."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_LOCALE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "The current locale setting is not supported by the given object."
+msgstr "Οι τρέχουσες τοπικές ρυθμίσεις δεν υποστηρίζονται από αυτό το αντικείμενο."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NAMED_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Named argument not found."
+msgstr "Το ονομαζόμενο όρισμα δεν βρέθηκε."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_OPTIONAL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Argument is not optional."
+msgstr "Το όρισμα δεν είναι προαιρετικό."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_WRONG_ARGS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid number of arguments."
+msgstr "Λανθασμένος αριθμός ορισμάτων."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_A_COLL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object is not a list."
+msgstr "Το αντικείμενο δεν είναι λίστα."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_ORDINAL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid ordinal number."
+msgstr "Άκυρος αριθμός τάξης."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DLLPROC_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Specified DLL function not found."
+msgstr "Δεν βρέθηκε η αναφερόμενη λειτουργία DLL."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_CLIPBD_FORMAT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid clipboard format."
+msgstr "Άκυρη μορφή προχείρου."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROPERTY_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object does not have this property."
+msgstr "Το αντικείμενο δεν έχει αυτή την ιδιότητα."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_METHOD_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object does not have this method."
+msgstr "Το αντικείμενο δεν έχει αυτή τη μέθοδο."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ARG_MISSING & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Required argument lacking."
+msgstr "Λείπει απαιτούμενο όρισμα."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_METHOD_FAILED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Error executing a method."
+msgstr "Σφάλμα εκτέλεσης μεθόδου."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_SETPROP_FAILED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unable to set property."
+msgstr "Αδυναμία ορισμού της ιδιότητας."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_GETPROP_FAILED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unable to determine property."
+msgstr "Αδυναμία προσδιορισμού ιδιότητας."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNEXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unexpected symbol: $(ARG1)."
+msgstr "Αναπάντεχο σύμβολο: $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Expected: $(ARG1)."
+msgstr "Αναμένεται: $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_SYMBOL_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Symbol expected."
+msgstr "Αναμένεται σύμβολο."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_VAR_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Variable expected."
+msgstr "Αναμένεται μεταβλητή."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_LABEL_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Label expected."
+msgstr "Αναμένεται ετικέτα."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_LVALUE_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Value cannot be applied."
+msgstr "Αδυναμία εφαρμογής της τιμής."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_VAR_DEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Variable $(ARG1) already defined."
+msgstr "Η μεταβλητή $(ARG1) έχει ήδη ορισθεί."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROC_DEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Sub procedure or function procedure $(ARG1) already defined."
+msgstr "Η υποδιαδικασία ή η διαδικασία λειτουργίας $(ARG1) έχει ήδη ορισθεί."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_LABEL_DEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Label $(ARG1) already defined."
+msgstr "Η ετικέτα $(ARG1) έχει ήδη οριστεί."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_VAR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Variable $(ARG1) not found."
+msgstr "Δεν βρέθηκε μεταβλητή $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_ARRAY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Array or procedure $(ARG1) not found."
+msgstr "Δεν βρέθηκε ο πίνακας ή η διαδικασία $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_PROC & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Procedure $(ARG1) not found."
+msgstr "Η διαδικασία $(ARG1) δεν βρέθηκε."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_LABEL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Label $(ARG1) undefined."
+msgstr "Ακαθόριστη ετικέτα $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_TYPE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unknown data type $(ARG1)."
+msgstr "Άγνωστος τύπος δεδομένων $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_EXIT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Exit $(ARG1) expected."
+msgstr "Αναμένεται έξοδος του $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_BLOCK & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Statement block still open: $(ARG1) missing."
+msgstr "Η ομάδα πρότασης είναι ακόμα ανοικτή: το $(ARG1) λείπει."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_BRACKETS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Parentheses do not match."
+msgstr "Ασυμφωνία παρενθέσεων."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_DECLARATION & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Symbol $(ARG1) already defined differently."
+msgstr "Το σύμβολο $(ARG1) ορίστηκε ήδη διαφορετικά."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_PARAMETERS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Parameters do not correspond to procedure."
+msgstr "Οι παράμετροι δεν απαντούν στη διαδικασία."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_CHAR_IN_NUMBER & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid character in number."
+msgstr "Άκυρος χαρακτήρας στον αριθμό."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_MUST_HAVE_DIMS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Array must be dimensioned."
+msgstr "Πρέπει να οριστούν οι διαστάσεις του πίνακα."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_IF & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Else/Endif without If."
+msgstr "Else/Endif χωρίς If."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_IN_SUBR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "$(ARG1) not allowed within a procedure."
+msgstr "$(ARG1) δεν επιτρέπεται σε διαδικασία."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_IN_MAIN & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "$(ARG1) not allowed outside a procedure."
+msgstr "$(ARG1) δεν επιτρέπεται εκτός διαδικασίας."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_WRONG_DIMS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Dimension specifications do not match."
+msgstr "Ασυμφωνία προδιαγραφών διάστασης."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_OPTION & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unknown option: $(ARG1)."
+msgstr "Άγνωστη επιλογή: $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_CONSTANT_REDECLARED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Constant $(ARG1) redefined."
+msgstr "Επαναπροσδιορισμός της σταθεράς $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROG_TOO_LARGE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Program too large."
+msgstr "Το πρόγραμμα είναι υπερβολικά μεγάλο."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_STRINGS_ARRAYS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Strings or arrays not permitted."
+msgstr "Δεν επιτρέπονται συμβολοσειρές ή πίνακες."
diff --git a/source/el/dbaccess/source/ui/dlg.po b/source/el/dbaccess/source/ui/dlg.po
index b7cc63dd26e..2de4f36cac4 100644
--- a/source/el/dbaccess/source/ui/dlg.po
+++ b/source/el/dbaccess/source/ui/dlg.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: dbacces/source/ui/dlg\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-08-25 12:34+0200\n"
-"PO-Revision-Date: 2016-07-04 19:01+0000\n"
+"PO-Revision-Date: 2015-12-12 04:54+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <users@el.libreoffice.org>\n"
"Language: el\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467658902.000000\n"
+"X-POOTLE-MTIME: 1449896086.000000\n"
#: AutoControls.src
msgctxt ""
@@ -851,3 +851,10 @@ msgctxt ""
"string.text"
msgid "Details"
msgstr "Λεπτομέρειες"
+
+msgctxt ""
+"AutoControls.src\n"
+"STR_COMMONURL\n"
+"string.text"
+msgid "Datasource URL"
+msgstr "URL προέλευσης δεδομένων"
diff --git a/source/el/helpcontent2/source/text/scalc/00.po b/source/el/helpcontent2/source/text/scalc/00.po
index 94e85279ffb..147b3f99163 100644
--- a/source/el/helpcontent2/source/text/scalc/00.po
+++ b/source/el/helpcontent2/source/text/scalc/00.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 18:12+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-05-30 07:39+0000\n"
+"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467742367.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1464593983.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -553,8 +553,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">Επιλέξτε <emph>Εισαγωγή - Ονόματα</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -571,8 +571,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "Επιλέξτε <emph>Εισαγωγή - Ονόματα - Καθορισμός</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -589,8 +589,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">Επιλέξτε <emph>Εισαγωγή - Ονόματα - Εισαγωγή</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -598,8 +598,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">Επιλέξτε <emph>Εισαγωγή - Ονόματα - Δημιουργία</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -607,8 +607,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">Επιλέξτε <emph>Εισαγωγή - Ονόματα - Ετικέτες</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/scalc/01.po b/source/el/helpcontent2/source/text/scalc/01.po
index a2a72d31294..7164b867159 100644
--- a/source/el/helpcontent2/source/text/scalc/01.po
+++ b/source/el/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 19:20+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-10-18 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: team@gnome.gr\n"
"Language: el\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1476818448.000000\n"
+"X-POOTLE-MTIME: 1476818281.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -20652,8 +20652,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "Το <item type=\"input\">=INDEX(SumX;4;1)</item> επιστρέφει την τιμή από την περιοχή <emph>SumX</emph> στη γραμμή 4 και στήλη 1 όπως καθορίζεται στο <emph>Εισαγωγή - Ονόματα - Καθορισμός</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20677,8 +20677,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "Το <item type=\"input\">=INDEX((multi);4;1)</item> υποδεικνύει την τιμή που περιέχεται στη γραμμή 4 και στήλη 1 της (πολλαπλής) περιοχής, την οποία ονομάσατε με το <emph>Εισαγωγή - Ονόματα - Καθορισμός</emph> ως <emph>multi</emph>. Η πολλαπλή περιοχή μπορεί να αποτελείται από πολλές ορθογώνιες περιοχές, κάθε μία με γραμμή 4 και στήλη 1. Αν τώρα επιθυμείτε να καλέσετε το δεύτερο μπλοκ της πολλαπλής περιοχής εισάγετε τον αριθμό <item type=\"input\">2</item> για την παράμετρο <emph>περιοχή</emph>."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -49848,8 +49848,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "Ονόματα"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -49857,8 +49857,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Ονόματα\">Ονόματα</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50248,8 +50248,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Επιλέξτε την περιοχή που περιέχει όλες τις περιοχές που επιθυμείτε να ονομάσετε. Ύστερα επιλέξτε από το μενού <emph>Εισαγωγή - Ονόματα - Δημιουργία</emph>. Με αυτόν τον τρόπο ανοίγετε το παράθυρο διαλόγου <emph>Δημιουργία ονομάτων</emph>, από την οποία μπορείτε να επιλέξετε τις επιλογές ονομασίας που επιθυμείτε."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52135,8 +52135,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Επιλέξτε <emph>-καμία-</emph> για να καταργήσετε έναν ορισμό περιοχής εκτύπωσης για το τρέχον υπολογιστικό φύλλο. Επιλέξτε <emph>-ολόκληρο φύλλο-</emph> για να καθορίσετε το τρέχον φύλλο ως περιοχή εκτύπωσης. Διαλέξτε <emph>-επιλογή-</emph>, για να ορίσετε την επιλεγμένη περιοχή υπολογιστικού φύλλου ως περιοχή εκτύπωσης. Επιλέγοντας <emph>-από το χρήστη-</emph>, μπορείτε να ορίσετε περιοχή εκτύπωσης που ήδη καθορίσατε χρησιμοποιώντας την εντολή <emph>Μορφή - Περιοχές εκτύπωσης - Ορισμός</emph>. Εάν έχετε ονομάσει μια περιοχή χρησιμοποιώντας την εντολή <emph>Εισαγωγή - Ονόματα - Ορισμός</emph>, αυτό το όνομα θα εμφανιστεί και μπορεί να επιλεγεί από το πλαίσιο καταλόγου."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/scalc/guide.po b/source/el/helpcontent2/source/text/scalc/guide.po
index 648d88207f6..895403b010d 100644
--- a/source/el/helpcontent2/source/text/scalc/guide.po
+++ b/source/el/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-07-07 21:23+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1467926592.000000\n"
@@ -2132,8 +2132,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "Για να καθοριστεί η περιοχή προέλευσης ως περιοχή, επιλέγετε τα κελιά και επιλέγετε την εντολή μενού <emph>Εισαγωγή- Ονόματα - Καθορισμός</emph>. Αποθηκεύεστε το αρχείο προέλευσης και μην το κλείσετε."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11832,8 +11832,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "Επιλέξτε κάποιο κελί ή περιοχή κελιών και έπειτα επιλέξτε <emph>Εισαγωγή - Ονόματα - Καθορισμός</emph>. Θα εμφανιστεί το παράθυρο διαλόγου <emph>Ορισμός Ονομάτων</emph>."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11885,8 +11885,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Εισαγωγή - Ονόματα - Καθορισμός\">Εισαγωγή - Ονόματα - Καθορισμός</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/shared/00.po b/source/el/helpcontent2/source/text/shared/00.po
index b859c670523..0b257bf9909 100644
--- a/source/el/helpcontent2/source/text/shared/00.po
+++ b/source/el/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 21:24+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-05-30 04:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: www.gnome.gr\n"
"Language: el\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467753888.000000\n"
+"X-POOTLE-MTIME: 1464583641.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -12071,15 +12071,6 @@ msgstr "Επιλέξτε την καρτέλα <emph>Μορφή - Σελίδα -
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "Επιλέξτε την καρτέλα <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Περιοχή - Χρώματα</emph>"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/el/helpcontent2/source/text/shared/01.po b/source/el/helpcontent2/source/text/shared/01.po
index 9e8564ffd8a..215d8671479 100644
--- a/source/el/helpcontent2/source/text/shared/01.po
+++ b/source/el/helpcontent2/source/text/shared/01.po
@@ -3,19 +3,19 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 19:20+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-07-07 21:25+0000\n"
+"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1476818448.000000\n"
+"X-POOTLE-MTIME: 1467926706.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -8292,8 +8292,8 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
-msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Εισάγετε τον αριθμό των χαρακτήρων στον όρο αναζήτησης που μπορούν να εναλλαχτούν.</ahelp> Για παράδειγμα, αν ορίσετε 2 εναλλασσόμενους χαρακτήρες, \"μαύρος\" και \"γαύρος\" θεωρούνται όμοια."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
+msgstr ""
#: 02100100.xhp
msgctxt ""
@@ -25621,32 +25621,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Πατήστε στο γέμισμα που θέλετε να εφαρμόσετε στο επιλεγμένο αντικείμενο.</ahelp>"
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "Χρώματα"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Χρώματα\">Χρώματα</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr "Διαλέξτε ένα χρώμα για να το εφαρμόσετε, αποθηκεύστε τον τρέχοντα κατάλογο χρωμάτων, ή φορτώστε έναν διαφορετικό κατάλογο χρωμάτων."
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43244,6 +43218,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Επανεισάγετε τον κύριο κωδικό πρόσβασης.</ahelp>"
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/el/helpcontent2/source/text/shared/guide.po b/source/el/helpcontent2/source/text/shared/guide.po
index 6d7d8b400fa..7ad0dbd36ea 100644
--- a/source/el/helpcontent2/source/text/shared/guide.po
+++ b/source/el/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-07-07 21:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: www.gnome.gr\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1467927146.000000\n"
@@ -2191,7 +2191,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2271,7 +2271,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9920,8 +9920,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "Για να μεταβείτε σε ένα κελί μέσα σε ένα υπολογιστικό φύλλο, πρώτα καταχωρίστε ένα όνομα για το κελί (<emph>Εισαγωγή - Ονόματα - Ορισμός</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12429,20 +12429,20 @@ msgstr "Στη σελίδα καρτέλας <emph>Επιλογές</emph>, βε
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "Μόλις κάνετε κλικ στο κουμπί <emph>Δημιουργία εγγράφου</emph>, θα εμφανιστεί ένα μικρό παράθυρο με το πεδίο επιλογής <emph>Συγχρονισμός ετικετών</emph>. Εισαγάγετε την πρώτη ετικέτα. Όταν κάνετε κλικ στο κουμπί <emph>Συγχρονισμός ετικετών</emph>, πραγματοποιείται αντιγραφή της τρέχουσας μεμονωμένης ετικέτας σε όλες τις άλλες ετικέτες του φύλλου."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "Κάντε κλικ στην επιλογή <emph>Δημιουργία εγγράφου</emph> για να δημιουργήσετε ένα νέο έγγραφο με τις ρυθμίσεις που έχετε εισαγάγει."
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "Κάντε κλικ στην επιλογή <emph>Δημιουργία εγγράφου</emph> για να δημιουργήσετε ένα νέο έγγραφο με τις ρυθμίσεις που έχετε εισαγάγει."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "Μόλις κάνετε κλικ στο κουμπί <emph>Δημιουργία εγγράφου</emph>, θα εμφανιστεί ένα μικρό παράθυρο με το πεδίο επιλογής <emph>Συγχρονισμός ετικετών</emph>. Εισαγάγετε την πρώτη ετικέτα. Όταν κάνετε κλικ στο κουμπί <emph>Συγχρονισμός ετικετών</emph>, πραγματοποιείται αντιγραφή της τρέχουσας μεμονωμένης ετικέτας σε όλες τις άλλες ετικέτες του φύλλου."
#: labels.xhp
msgctxt ""
@@ -18305,758 +18305,721 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Εκκίνηση του λογισμικού $[officename] με παραμέτρους"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>παράμετροι εκκίνησης</bookmark_value><bookmark_value>παράμετροι γραμμής εντολών</bookmark_value><bookmark_value>παράμετροι;γραμμή εντολών</bookmark_value><bookmark_value>ορίσματα σε γραμμή εντολών</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Εκκίνηση του λογισμικού $[officename] με παραμέτρους"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "Εκκινώντας το λογισμικό $[officename] από τη γραμμή εντολών μπορείτε να αντιστοιχίσετε διάφορες παραμέτρους, με τις οποίες μπορείτε να επηρεάσετε την απόδοση. Η χρήση της γραμμής εντολών συνίσταται μόνο σε προχωρημένους χρήστες."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "Για κανονική χρήση, η χρήση των παραμέτρων της γραμμής εντολών δεν είναι απαραίτητη. Μερικές από τις παραμέτρους απαιτούν μια βαθύτερη γνώση του τεχνικού παρασκηνίου της τεχνολογίας του λογισμικού $[officename]."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "Εκκίνηση του λογισμικού $[officename] από τη γραμμή εντολών"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
-msgstr "Στα Windows, επιλέξτε <emph>Εκτέλεση</emph> από το μενού έναρξης των Windows, ή ανοίξτε ένα κέλυφος στα λειτουργικά Linux, *BSD, ή Mac OS X."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "Στα Windows, τυπώστε το ακόλουθο κείμενο στο πεδίο κειμένου <emph>Άνοιγμα </emph> και κάντε κλικ στο <emph>OK</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
-msgstr "Σε σύστημα παρόμοια με UNIX, πληκτρολογήστε την παρακάτω γραμμή κειμένου, έπειτα πατήστε <emph>Επιστροφή</emph>:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "Αντικαταστήστε το <emph>{install}</emph> με τη διαδρομή της εγκατάστασης του λογισμικού $[officename] ( για παράδειγμα, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "Όπου απαιτείται, αντικαταστήστε το <emph>{parameter}</emph> με μία ή περισσότερες από τις παραμέτρους γραμμής εντολών που ακολουθούν."
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "Έγκυρες παράμετροι της γραμμής εντολής"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "Παράμετρος"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "Σημασία"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "--help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "Εμφανίζει σε λίστα τις διαθέσιμες παραμέτρους της γραμμής εντολών <switchinline select=\"sys\"><caseinline select=\"WIN\">σε ένα πεδίο διαλόγου</caseinline><defaultinline>στη κονσόλα</defaultinline></switchinline>."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
-msgstr "--version"
+msgid "Opens the file and applies specified macros from the file."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
-msgstr "Εμφανίζει την πληροφορία έκδοσης."
+msgid "Getting help and information"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "--writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "Αρχίζει με ένα κενό έγγραφο Writer."
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "--calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "Αρχίζει με ένα κενό έγγραφο Calc."
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "--draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "Αρχίζει με ένα κενό έγγραφο Draw."
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "--impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "Αρχίζει με ένα κενό έγγραφο Impress."
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "--math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "Αρχίζει με ένα κενό έγγραφο Math."
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "--global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "Αρχίζει με ένα κενό κύριο έγγραφο Writer."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "--web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "Αρχίζει με ένα κενό έγγραφο HTML."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "--show {filename.odp}"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "Ξεκινάει το αρχείο Impress <emph>{filename.odp}</emph> και αρχίζει την παρουσίαση. Μπαίνει σε κατάσταση επεξεργασίας μετά την παρουσίαση."
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
+"help.text"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
"help.text"
-msgid "--minimized"
-msgstr "--minimized"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "Ξεκινάει ελαχιστοποιημένο. Η splash screen δεν εμφανίζεται."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "--invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "Αρχίζει σε μη ορατή κατάσταση."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Ούτε ο λογότυπος εκκίνησης ούτε το αρχικό παράθυρο προγράμματος θα είναι ορατά. Όμως, το λογισμικό του $[officename] μπορεί να ελεγχθεί και έγγραφα και διάλογοι να ανοιχθούν μέσω του <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
-msgstr "Όταν το λογισμικό του $[officename] ξεκίνησε με αυτήν την παράμετρο, μπορεί να τερματιστεί μόνο χρησιμοποιώντας το διαχειριστή εργασιών (Windows) ή την εντολή <emph>θανάτωση</emph> (συστήματα παρόμοια με UNIX)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "Δεν μπορεί να χρησιμοποιηθεί μαζί με το <emph>-quickstart</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Περισσότερες πληροφορίες μπορούν να βρεθούν στο <emph>$[officename] Developer's Guide</emph>."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
+"help.text"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
"help.text"
-msgid "--norestore"
-msgstr "--norestore"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "Απενεργοποιεί την επανεκκίνηση και την επαναφορά αρχείου μετά από μια κατάρρευση του συστήματος."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "Απενεργοποιεί τον αυτόματο πιλότο καλοσωρίσματος."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "--quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Ενεργοποιεί το Quickstarter."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "--accept={UNO string}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "Γνωστοποιεί στο λογισμικό $[officename] ότι κατά τη δημιουργία του \"UNO Acceptor Threads\", θα χρησιμοποιηθεί ένα \"UNO Accept String\"."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Περισσότερες πληροφορίες μπορούν να βρεθούν στο <emph>$[officename] Developer's Guide</emph>."
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "--unaccept={UNO string}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
-msgstr "Κλείνει έναν αποδοχέα που δημιουργήθηκε με --accept={UNO string}. Χρήση του --unaccept=all για κλείσιμο όλων των ανοιχτών αποδοχέων."
+msgid "Exit after loading documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {filename1} {filename2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "Εκτυπώνει τα αρχεία <emph>{filename1} {filename2} ...</emph> στον προεπιλεγμένο εκτυπωτή και τελειώνει. Η splash screen δεν εμφανίζεται."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Αν το όνομα του αρχείου περιέχει διαστήματα, τότε πρέπει να μπει ανάμεσα σε εισαγωγικά."
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "--pt {Printername} {filename1} {filename2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "Εκτυπώνει τα αρχεία <emph>{filename1} {filename2} ...</emph> στον εκτυπωτή <emph>{ΌνομαΕκτυπωτή}</emph> και τελειώνει. Η αρχική οθόνη δεν εμφανίζεται."
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Αν το όνομα του αρχείου περιέχει διαστήματα, τότε πρέπει να μπει ανάμεσα σε εισαγωγικά."
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {filename}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "Ανοίγει για επεξεργασία το <emph>{όνομα αρχείου}</emph>, ακόμη και αν πρόκειται για πρότυπο."
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "--view {filename}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "Δημιουργεί ένα προσωρινό αντίγραφο του <emph>{filename}</emph> και το ανοίγει σε κατάσταση μόνο-ανάγνωσης."
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {filename}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "Δημιουργεί ένα νέο έγγραφο χρησιμοποιώντας το <emph>{filename}</emph> ως ένα πρότυπο."
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "--nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "Απενεργοποιεί την οθόνη splash στην εκκίνηση του προγράμματος."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "--nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "Αν το όνομα του αρχείου περιέχει διαστήματα, τότε πρέπει να μπει ανάμεσα σε εισαγωγικά."
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "Αρχίζει χωρίς να εμφανίζεται τίποτα στην οθόνη εκτός από την splash screen."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
-msgstr "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
-msgstr "Απενεργοποιεί τον έλεγχο για μακρινές περιπτώσεις χρησιμοποιώντας την εγκατάσταση."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150828\n"
+"help.text"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3145268\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3153838\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "Προσθέτει αυτή την παράμετρο στη εντολή εκκίνησης του προγράμματος για να μην εμφανίζεται ο αυτόματος πιλότος καλοσωρίσματος."
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id315053p\n"
"help.text"
-msgid "--display {display}"
-msgstr "--display {display}"
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
-msgstr "Ορίζει τη μεταβλητή περιβάλλοντος <emph>DISPLAY </emph> σε λογισμικά παρόμοια με UNIX στην τιμή <emph>{display}</emph>. Αυτή η παράμετρος υποστηρίζεται μόνο το αρχικό σενάριο του λογισμικού του $[officename] σε λογισμικά παρόμοια με UNIX."
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id315053q\n"
"help.text"
-msgid "--headless"
-msgstr "--headless"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "Αρχίζει σε \"headless mode\" που επιτρέπει την χρήση της εφαρμογής χωρίς γραφικό περιβάλλον χρήσης."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Αυτή η ειδική κατάσταση μπορεί να χρησιμοποιηθεί όταν η εφαρμογή ελέγχεται από εξωτερικούς πελάτες μέσω του <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "--infilter={filter}"
-msgstr "--infilter={filter}"
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
-msgstr "Εξαναγκάζει έναν τύπο φίλτρου εισόδου, εάν είναι δυνατό. Π.χ. --infilter=\"Calc Office Open XML\"."
+msgid "Ignored switches"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
-msgstr "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] αρχεία"
+msgid "Ignored (MacOS X only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
-msgstr "Αρχεία μετατροπής δέσμης. Εάν --outdir δεν ορίστηκε, τότε ο τρέχον κατάλογος εργασίας χρησιμοποιείται ως output_dir.<br/>π.χ. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (COM+ related; Windows only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014529900\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
-msgstr "--print-to-file [--printer-name printer_name] [--outdir output_dir] αρχεία"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
-msgstr "Αρχεία εκτύπωσης δέσμης σε αρχείο. Εάν --outdir δεν ορίστηκε, τότε ο τρέχον κατάλογος εργασίας χρησιμοποιείται ως output_dir.<br/>π.χ. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
+msgstr ""
#: startcenter.xhp
msgctxt ""
diff --git a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po b/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
index d37a3c5a822..820a249e256 100644
--- a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-12-01 11:06+0000\n"
+"PO-Revision-Date: 2016-12-14 11:55+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1480590388.000000\n"
+"X-POOTLE-MTIME: 1481716522.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -3957,7 +3957,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Column Operations"
-msgstr ""
+msgstr "Πράξεις στις στήλες"
#: CalcCommands.xcu
msgctxt ""
@@ -3966,7 +3966,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row Operations"
-msgstr ""
+msgstr "Πράξεις στις γραμμές"
#: CalcCommands.xcu
msgctxt ""
@@ -9915,7 +9915,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Master Pane"
-msgstr ""
+msgstr "Κύριο παράθυρο σελίδας"
#: DrawWindowState.xcu
msgctxt ""
@@ -9924,7 +9924,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Master Pane (no selection)"
-msgstr ""
+msgstr "Κύριο παράθυρο σελίδας (χωρίς επιλογή)"
#: DrawWindowState.xcu
msgctxt ""
@@ -19646,7 +19646,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Compare Non-Track Changed Document"
-msgstr ""
+msgstr "Να συγκριθούν οι μη παρακολουθούμενες αλλαγές στο έγγραφο"
#: GenericCommands.xcu
msgctxt ""
@@ -19673,7 +19673,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Merge Track Changed Document"
-msgstr ""
+msgstr "Συγχώνευση των παρακολουθούμενων αλλαγών στο έγγραφο"
#: GenericCommands.xcu
msgctxt ""
@@ -26072,7 +26072,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Links Active"
-msgstr ""
+msgstr "Ενεργοί σύνδεσμοι"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/el/sc/source/ui/src.po b/source/el/sc/source/ui/src.po
index cb1dd867ae0..4a0355febf0 100644
--- a/source/el/sc/source/ui/src.po
+++ b/source/el/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-02 07:54+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-22 23:25+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1480665261.000000\n"
+"X-POOTLE-MTIME: 1482449141.000000\n"
#: filter.src
msgctxt ""
@@ -9670,8 +9670,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Αθροίζει τα ορίσματα τα οποία εκπληρούν τις συνθήκες."
+msgid "Totals the arguments that meet the condition."
+msgstr "Αθροίζει τα ορίσματα τα οποία ικανοποιούν τις συνθήκες."
#: scfuncs.src
msgctxt ""
diff --git a/source/el/sc/uiconfig/scalc/ui.po b/source/el/sc/uiconfig/scalc/ui.po
index 30a6484d044..c6d07dc411a 100644
--- a/source/el/sc/uiconfig/scalc/ui.po
+++ b/source/el/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-02 11:24+0000\n"
+"PO-Revision-Date: 2016-12-13 07:10+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1480677866.000000\n"
+"X-POOTLE-MTIME: 1481613006.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6015,7 +6015,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accent 1"
-msgstr ""
+msgstr "Τονισμένο 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -6024,7 +6024,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accent 2"
-msgstr ""
+msgstr "Τονισμένο 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -6033,7 +6033,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accent 3"
-msgstr ""
+msgstr "Τονισμένο 3"
#: notebookbar_groups.ui
msgctxt ""
@@ -6060,7 +6060,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Good"
-msgstr ""
+msgstr "Καλή"
#: notebookbar_groups.ui
msgctxt ""
@@ -6069,7 +6069,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Neutral"
-msgstr ""
+msgstr "Ουδέτερο"
#: notebookbar_groups.ui
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bad"
-msgstr ""
+msgstr "Κακό"
#: notebookbar_groups.ui
msgctxt ""
@@ -6087,7 +6087,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Warning"
-msgstr ""
+msgstr "Προειδοποίηση"
#: notebookbar_groups.ui
msgctxt ""
@@ -6096,7 +6096,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Error"
-msgstr ""
+msgstr "Σφάλμα"
#: notebookbar_groups.ui
msgctxt ""
@@ -6105,7 +6105,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Note"
-msgstr ""
+msgstr "Σημείωση"
#: notebookbar_groups.ui
msgctxt ""
@@ -6114,7 +6114,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Footnote"
-msgstr ""
+msgstr "Υποσημείωση"
#: notebookbar_groups.ui
msgctxt ""
@@ -6123,7 +6123,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: notebookbar_groups.ui
msgctxt ""
@@ -6132,7 +6132,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Προεπιλογή"
#: notebookbar_groups.ui
msgctxt ""
@@ -6141,7 +6141,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 1"
-msgstr ""
+msgstr "Τεχνοτροπία 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -6150,7 +6150,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 2"
-msgstr ""
+msgstr "Τεχνοτροπία 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -6159,7 +6159,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 3"
-msgstr ""
+msgstr "Τεχνοτροπία 3"
#: notebookbar_groups.ui
msgctxt ""
@@ -6168,7 +6168,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 4"
-msgstr ""
+msgstr "Τεχνοτροπία 4"
#: notebookbar_groups.ui
msgctxt ""
@@ -6177,7 +6177,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows Above"
-msgstr ""
+msgstr "Εισαγωγή γραμμών από πάνω"
#: notebookbar_groups.ui
msgctxt ""
@@ -6186,7 +6186,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows Below"
-msgstr ""
+msgstr "Εισαγωγή γραμμών από κάτω"
#: notebookbar_groups.ui
msgctxt ""
@@ -6195,7 +6195,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Rows"
-msgstr ""
+msgstr "Διαγραφή γραμμών"
#: notebookbar_groups.ui
msgctxt ""
@@ -6204,7 +6204,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select Rows"
-msgstr ""
+msgstr "Επιλογή γραμμών"
#: notebookbar_groups.ui
msgctxt ""
@@ -6213,7 +6213,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Row Height..."
-msgstr ""
+msgstr "Ύψος γραμμής..."
#: notebookbar_groups.ui
msgctxt ""
@@ -6222,7 +6222,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal Row Height"
-msgstr ""
+msgstr "Βέλτιστο ύψος γραμμής"
#: notebookbar_groups.ui
msgctxt ""
@@ -6231,7 +6231,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Distribute Rows Evenly"
-msgstr ""
+msgstr "Ίση κατανομή στηλών"
#: notebookbar_groups.ui
msgctxt ""
@@ -6240,7 +6240,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Αρχείο"
#: notebookbar_groups.ui
msgctxt ""
@@ -6249,7 +6249,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clipboard"
-msgstr ""
+msgstr "Πρόχειρο"
#: notebookbar_groups.ui
msgctxt ""
@@ -6258,10 +6258,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Τεχνοτροπία"
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"growb\n"
@@ -6271,14 +6270,13 @@ msgid " "
msgstr " "
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"shrinkb\n"
"label\n"
"string.text"
msgid " "
-msgstr " "
+msgstr " "
#: notebookbar_groups.ui
msgctxt ""
@@ -6287,7 +6285,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Left"
-msgstr ""
+msgstr "Αριστερά"
#: notebookbar_groups.ui
msgctxt ""
@@ -6296,7 +6294,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Center"
-msgstr ""
+msgstr "Κεντραρισμένο"
#: notebookbar_groups.ui
msgctxt ""
@@ -6305,7 +6303,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Right"
-msgstr ""
+msgstr "Δεξιά"
#: notebookbar_groups.ui
msgctxt ""
@@ -6314,7 +6312,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Κείμενο"
#: notebookbar_groups.ui
msgctxt ""
@@ -6323,7 +6321,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Row"
-msgstr ""
+msgstr "Γραμμή"
#: notebookbar_groups.ui
msgctxt ""
@@ -6332,7 +6330,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Column"
-msgstr ""
+msgstr "Στήλη"
#: notebookbar_groups.ui
msgctxt ""
@@ -6341,7 +6339,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Merge"
-msgstr ""
+msgstr "Συγχώνευση"
#: notebookbar_groups.ui
msgctxt ""
@@ -6350,7 +6348,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Split"
-msgstr ""
+msgstr "Διαίρεση"
#: notebookbar_groups.ui
msgctxt ""
@@ -6359,7 +6357,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Conditional"
-msgstr ""
+msgstr "Υπό όρους"
#: notebookbar_groups.ui
msgctxt ""
@@ -6368,7 +6366,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Top"
-msgstr ""
+msgstr "Πάνω"
#: notebookbar_groups.ui
msgctxt ""
@@ -6377,7 +6375,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Center"
-msgstr ""
+msgstr "Κέντρο"
#: notebookbar_groups.ui
msgctxt ""
@@ -6386,7 +6384,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bottom"
-msgstr ""
+msgstr "Κάτω"
#: notebookbar_groups.ui
msgctxt ""
@@ -6395,7 +6393,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spreadsheet"
-msgstr ""
+msgstr "Φύλλο εργασίας"
#: notebookbar_groups.ui
msgctxt ""
@@ -6404,7 +6402,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shapes"
-msgstr ""
+msgstr "Σχήματα"
#: notebookbar_groups.ui
msgctxt ""
@@ -6413,7 +6411,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Links"
-msgstr ""
+msgstr "Σύνδεσμοι"
#: notebookbar_groups.ui
msgctxt ""
@@ -6422,7 +6420,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Εισαγωγή"
#: notebookbar_groups.ui
msgctxt ""
@@ -6431,7 +6429,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Τεχνοτροπία"
#: notebookbar_groups.ui
msgctxt ""
@@ -6440,7 +6438,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset"
-msgstr ""
+msgstr "Επαναφορά"
#: notebookbar_groups.ui
msgctxt ""
@@ -6449,7 +6447,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wrap"
-msgstr ""
+msgstr "Αναδίπλωση"
#: notebookbar_groups.ui
msgctxt ""
@@ -6458,7 +6456,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Lock"
-msgstr ""
+msgstr "Κλείδωμα"
#: notebookbar_groups.ui
msgctxt ""
@@ -6467,7 +6465,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Εικόνα"
#: notebookbar_groups.ui
msgctxt ""
@@ -6476,7 +6474,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: notebookbar_groups.ui
msgctxt ""
@@ -6485,7 +6483,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal"
-msgstr ""
+msgstr "Βέλτιστο"
#: notebookbar_groups.ui
msgctxt ""
@@ -6494,7 +6492,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Παράλληλο"
#: notebookbar_groups.ui
msgctxt ""
@@ -6503,7 +6501,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Before"
-msgstr ""
+msgstr "Πριν από"
#: notebookbar_groups.ui
msgctxt ""
@@ -6512,7 +6510,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "After"
-msgstr ""
+msgstr "Μετά από"
#: notebookbar_groups.ui
msgctxt ""
@@ -6521,7 +6519,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Through"
-msgstr ""
+msgstr "Μέσα από"
#: notebookbar_groups.ui
msgctxt ""
@@ -6530,7 +6528,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Contour"
-msgstr ""
+msgstr "Περίγραμμα"
#: notebookbar_groups.ui
msgctxt ""
@@ -6539,7 +6537,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Contour"
-msgstr ""
+msgstr "Επεξεργασία περιγράμματος"
#: optcalculatepage.ui
msgctxt ""
@@ -6557,7 +6555,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Disable case sensitivity for interoperability with Microsoft Excel"
-msgstr ""
+msgstr "Απενεργοποίηση διάκρισης πεζών-κεφαλαίων για διαλειτουργικότητα με το Microsoft Excel"
#: optcalculatepage.ui
msgctxt ""
@@ -6584,7 +6582,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Enable this for interoperability with Microsoft Excel"
-msgstr ""
+msgstr "Ενεργοποίησή του για διαλειτουργικότητα με το Microsoft Excel"
#: optcalculatepage.ui
msgctxt ""
@@ -6602,7 +6600,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Enable wildcards for interoperability with Microsoft Excel"
-msgstr ""
+msgstr "Ενεργοποίηση συμβόλων υποκατάστασης για διαλειτουργικότητα με το Microsoft Excel"
#: optcalculatepage.ui
msgctxt ""
@@ -6710,7 +6708,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Value 0 corresponds to 12/30/1899"
-msgstr ""
+msgstr "Η τιμή 0 αντιστοιχεί στις 30/12/1899"
#: optcalculatepage.ui
msgctxt ""
@@ -6728,7 +6726,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Value 0 corresponds to 01/01/1900"
-msgstr ""
+msgstr "Η τιμή 0 αντιστοιχεί στην τιμή 01/01/1900"
#: optcalculatepage.ui
msgctxt ""
@@ -6746,7 +6744,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "0 corresponds to 01/01/1904"
-msgstr ""
+msgstr "Το 0 αντιστοιχεί στη 01/01/1904"
#: optcalculatepage.ui
msgctxt ""
@@ -9176,7 +9174,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "skipped $1 ..."
-msgstr ""
+msgstr "παράλειψη του $1 ..."
#: selectdatasource.ui
msgctxt ""
@@ -9806,7 +9804,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Left Indent"
-msgstr ""
+msgstr "Αριστερή εσοχή"
#: sidebaralignment.ui
msgctxt ""
@@ -9869,7 +9867,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Text Orientation"
-msgstr ""
+msgstr "Προσανατολισμός κειμένου"
#: sidebaralignment.ui
msgctxt ""
@@ -9959,7 +9957,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Border Line Style"
-msgstr ""
+msgstr "Τεχνοτροπία γραμμής περιγράμματος"
#: sidebarcellappearance.ui
msgctxt ""
@@ -9986,7 +9984,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Border Line Color"
-msgstr ""
+msgstr "Χρώμα γραμμής περιγράμματος"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10094,7 +10092,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Category"
-msgstr ""
+msgstr "Κατηγορία"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10121,7 +10119,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Decimal Places"
-msgstr ""
+msgstr "Δεκαδικές θέσεις"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10130,7 +10128,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Den_ominator places:"
-msgstr ""
+msgstr "Θέσεις _παρανομαστή:"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10139,7 +10137,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Enter the number of places for the denominator that you want to display."
-msgstr ""
+msgstr "Εισάγετε τον αριθμό των θέσεων που θέλετε να εμφανίζονται για τον παρανομαστή."
#: sidebarnumberformat.ui
msgctxt ""
@@ -10148,7 +10146,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Denominator Places"
-msgstr ""
+msgstr "Θέσεις παρανομαστή"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10175,7 +10173,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Leading Zeroes"
-msgstr ""
+msgstr "Αρχικά μηδενικά"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10364,7 +10362,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "Αναφορά κελιού"
#: solverdlg.ui
msgctxt ""
@@ -10373,7 +10371,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "Αναφορά κελιού"
#: solverdlg.ui
msgctxt ""
@@ -10382,7 +10380,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "Αναφορά κελιού"
#: solverdlg.ui
msgctxt ""
@@ -10391,7 +10389,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "Αναφορά κελιού"
#: solverdlg.ui
msgctxt ""
@@ -10445,7 +10443,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Τελεστής"
#: solverdlg.ui
msgctxt ""
@@ -10499,7 +10497,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Τελεστής"
#: solverdlg.ui
msgctxt ""
@@ -10553,7 +10551,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Τελεστής"
#: solverdlg.ui
msgctxt ""
@@ -10607,7 +10605,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Τελεστής"
#: solverdlg.ui
msgctxt ""
@@ -10616,7 +10614,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Τιμή"
#: solverdlg.ui
msgctxt ""
@@ -10625,7 +10623,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Τιμή"
#: solverdlg.ui
msgctxt ""
@@ -10634,7 +10632,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Τιμή"
#: solverdlg.ui
msgctxt ""
@@ -10643,7 +10641,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Τιμή"
#: solverdlg.ui
msgctxt ""
@@ -10904,7 +10902,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Include comments-only boundary column(s)"
-msgstr ""
+msgstr "Να περιλαμβάνονται οριακές στήλες μόνο για σχόλια"
#: sortoptionspage.ui
msgctxt ""
@@ -10922,7 +10920,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy sort results to:"
-msgstr ""
+msgstr "Αντιγραφή αποτελεσμάτων ταξινόμησης στο:"
#: sortoptionspage.ui
msgctxt ""
@@ -10931,7 +10929,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy sort results to:"
-msgstr ""
+msgstr "Αντιγραφή αποτελεσμάτων ταξινόμησης στο:"
#: sortoptionspage.ui
msgctxt ""
@@ -10949,7 +10947,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Custom sort order"
-msgstr ""
+msgstr "Προσαρμοσμένη σειρά ταξινόμησης"
#: sortoptionspage.ui
msgctxt ""
@@ -11084,7 +11082,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 1"
-msgstr ""
+msgstr "Τελεστής 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11111,7 +11109,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 2"
-msgstr ""
+msgstr "Τελεστής 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11138,7 +11136,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 3"
-msgstr ""
+msgstr "Τελεστής 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11165,7 +11163,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 4"
-msgstr ""
+msgstr "Τελεστής 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11210,7 +11208,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 1"
-msgstr ""
+msgstr "Όνομα πεδίου 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11219,7 +11217,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 2"
-msgstr ""
+msgstr "Όνομα πεδίου 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11228,7 +11226,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 3"
-msgstr ""
+msgstr "Όνομα πεδίου 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11237,7 +11235,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 4"
-msgstr ""
+msgstr "Όνομα πεδίου 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11336,7 +11334,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 1"
-msgstr ""
+msgstr "Συνθήκη 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11435,7 +11433,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 2"
-msgstr ""
+msgstr "Συνθήκη 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11534,7 +11532,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 3"
-msgstr ""
+msgstr "Συνθήκη 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11633,7 +11631,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 4"
-msgstr ""
+msgstr "Συνθήκη 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11642,7 +11640,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 1"
-msgstr ""
+msgstr "Τιμή 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11651,7 +11649,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 2"
-msgstr ""
+msgstr "Τιμή 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11660,7 +11658,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 3"
-msgstr ""
+msgstr "Τιμή 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11669,7 +11667,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 4"
-msgstr ""
+msgstr "Τιμή 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11741,7 +11739,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy results to"
-msgstr ""
+msgstr "Αντιγραφή αποτελεσμάτων στο"
#: standardfilterdialog.ui
msgctxt ""
@@ -11750,7 +11748,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy results to"
-msgstr ""
+msgstr "Αντιγραφή αποτελεσμάτων στο"
#: standardfilterdialog.ui
msgctxt ""
@@ -12200,7 +12198,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Other"
-msgstr ""
+msgstr "Άλλο"
#: textimportcsv.ui
msgctxt ""
@@ -13037,7 +13035,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Browse to set source file."
-msgstr ""
+msgstr "Περιήγηση για ορισμό πηγαίου αρχείου."
#: xmlsourcedialog.ui
msgctxt ""
diff --git a/source/el/scp2/source/ooo.po b/source/el/scp2/source/ooo.po
index 9137ad33644..e2b7da12ef3 100644
--- a/source/el/scp2/source/ooo.po
+++ b/source/el/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 19:59+0000\n"
+"PO-Revision-Date: 2016-12-12 21:34+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467662378.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481578488.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_VEC\n"
"LngText.text"
msgid "Venetian"
-msgstr ""
+msgstr "Βενετικά"
#: module_langpack.ulf
msgctxt ""
@@ -3078,7 +3078,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_VEC\n"
"LngText.text"
msgid "Installs the Venetian user interface"
-msgstr ""
+msgstr "Εγκατάσταση της βενετικής διεπαφής χρήστη"
#: module_langpack.ulf
msgctxt ""
@@ -3806,7 +3806,7 @@ msgctxt ""
"STR_NAME_MODULE_EXTENSION_DICTIONARY_BO\n"
"LngText.text"
msgid "Classical Tibetan"
-msgstr ""
+msgstr "Κλασικά θιβετιανά"
#: module_ooo.ulf
msgctxt ""
@@ -3814,7 +3814,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_BO\n"
"LngText.text"
msgid "Classical Tibetan syllable spelling dictionary"
-msgstr ""
+msgstr "Κλασικό θιβετιανό συλλαβικό ορθογραφικό λεξικό"
#: module_ooo.ulf
msgctxt ""
diff --git a/source/el/sd/source/core.po b/source/el/sd/source/core.po
index 3932e6036f6..7cf44cef892 100644
--- a/source/el/sd/source/core.po
+++ b/source/el/sd/source/core.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 19:59+0000\n"
+"PO-Revision-Date: 2016-12-12 21:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467662395.000000\n"
+"X-POOTLE-MTIME: 1481578512.000000\n"
#: glob.src
msgctxt ""
@@ -87,7 +87,7 @@ msgctxt ""
"STR_MASTERSLIDE_NAME\n"
"string.text"
msgid "Master Slide"
-msgstr ""
+msgstr "Κύρια διαφάνεια"
#: glob.src
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"STR_MASTERPAGE_NAME\n"
"string.text"
msgid "Master Page"
-msgstr ""
+msgstr "Κύρια σελίδα"
#: glob.src
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"STR_SHRINK_FONT_SIZE\n"
"string.text"
msgid "Shrink font size"
-msgstr ""
+msgstr "Μείωση του μεγέθους της γραμματοσειράς"
#: glob.src
msgctxt ""
@@ -686,4 +686,4 @@ msgctxt ""
"STR_GROW_FONT_SIZE\n"
"string.text"
msgid "Grow font size"
-msgstr ""
+msgstr "Αύξηση του μεγέθους της γραμματοσειράς"
diff --git a/source/el/sd/source/ui/animations.po b/source/el/sd/source/ui/animations.po
index cae4582370a..c4be85a4341 100644
--- a/source/el/sd/source/ui/animations.po
+++ b/source/el/sd/source/ui/animations.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:00+0000\n"
+"PO-Revision-Date: 2016-12-12 21:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1467662400.000000\n"
+"X-POOTLE-MTIME: 1481578630.000000\n"
#: CustomAnimation.src
msgctxt ""
@@ -280,7 +280,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_DIRECTION_PROPERTY\n"
"string.text"
msgid "Direction:"
-msgstr ""
+msgstr "Κατεύθυνση:"
#: CustomAnimation.src
msgctxt ""
@@ -288,7 +288,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_ZOOM_PROPERTY\n"
"string.text"
msgid "Zoom:"
-msgstr ""
+msgstr "Εστίαση:"
#: CustomAnimation.src
msgctxt ""
@@ -296,7 +296,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_SPOKES_PROPERTY\n"
"string.text"
msgid "Spokes:"
-msgstr ""
+msgstr "Ακτίνες:"
#: CustomAnimation.src
msgctxt ""
@@ -304,7 +304,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY\n"
"string.text"
msgid "First color:"
-msgstr ""
+msgstr "Πρώτο χρώμα:"
#: CustomAnimation.src
msgctxt ""
@@ -312,7 +312,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY\n"
"string.text"
msgid "Second color:"
-msgstr ""
+msgstr "Δεύτερο χρώμα:"
#: CustomAnimation.src
msgctxt ""
@@ -320,7 +320,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY\n"
"string.text"
msgid "Fill color:"
-msgstr ""
+msgstr "Χρώμα γεμίσματος:"
#: CustomAnimation.src
msgctxt ""
@@ -328,7 +328,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_STYLE_PROPERTY\n"
"string.text"
msgid "Style:"
-msgstr ""
+msgstr "Τεχνοτροπία:"
#: CustomAnimation.src
msgctxt ""
@@ -336,7 +336,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FONT_PROPERTY\n"
"string.text"
msgid "Font:"
-msgstr ""
+msgstr "Γραμματοσειρά:"
#: CustomAnimation.src
msgctxt ""
@@ -344,7 +344,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY\n"
"string.text"
msgid "Font color:"
-msgstr ""
+msgstr "Χρώμα γραμματοσειράς:"
#: CustomAnimation.src
msgctxt ""
@@ -352,7 +352,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY\n"
"string.text"
msgid "Style:"
-msgstr ""
+msgstr "Τεχνοτροπία:"
#: CustomAnimation.src
msgctxt ""
@@ -360,7 +360,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY\n"
"string.text"
msgid "Typeface:"
-msgstr ""
+msgstr "Οικογένεια γραμματοσειρών:"
#: CustomAnimation.src
msgctxt ""
@@ -368,7 +368,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY\n"
"string.text"
msgid "Line color:"
-msgstr ""
+msgstr "Χρώμα γραμμής:"
#: CustomAnimation.src
msgctxt ""
@@ -376,7 +376,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_SIZE_PROPERTY\n"
"string.text"
msgid "Font size:"
-msgstr ""
+msgstr "Μέγεθος γραμματοσειράς:"
#: CustomAnimation.src
msgctxt ""
@@ -384,7 +384,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_SCALE_PROPERTY\n"
"string.text"
msgid "Size:"
-msgstr ""
+msgstr "Μέγεθος:"
#: CustomAnimation.src
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_AMOUNT_PROPERTY\n"
"string.text"
msgid "Amount:"
-msgstr ""
+msgstr "Ποσό:"
#: CustomAnimation.src
msgctxt ""
@@ -400,7 +400,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_COLOR_PROPERTY\n"
"string.text"
msgid "Color:"
-msgstr ""
+msgstr "Χρώμα:"
#: CustomAnimation.src
msgctxt ""
diff --git a/source/el/sd/source/ui/app.po b/source/el/sd/source/ui/app.po
index 0675b397df0..a17ecb32587 100644
--- a/source/el/sd/source/ui/app.po
+++ b/source/el/sd/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:02+0000\n"
+"PO-Revision-Date: 2016-12-12 21:38+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467662558.000000\n"
+"X-POOTLE-MTIME: 1481578706.000000\n"
#: popup.src
msgctxt ""
@@ -156,7 +156,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "Όλες οι τεχνοτροπίες"
#: res_bmp.src
msgctxt ""
@@ -165,7 +165,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Κρυφές τεχνοτροπίες"
#: res_bmp.src
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Εφαρμοσμένες τεχνοτροπίες"
#: res_bmp.src
msgctxt ""
@@ -183,7 +183,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Προσαρμοσμένες τεχνοτροπίες"
#: res_bmp.src
msgctxt ""
@@ -192,7 +192,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "Όλες οι τεχνοτροπίες"
#: res_bmp.src
msgctxt ""
@@ -201,7 +201,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Κρυφές τεχνοτροπίες"
#: sdstring.src
msgctxt ""
@@ -2427,7 +2427,7 @@ msgctxt ""
"STR_PRESENTATIONS_STYLE_FAMILY\n"
"string.text"
msgid "Presentation Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες παρουσίασης"
#: strings.src
msgctxt ""
@@ -2451,7 +2451,7 @@ msgctxt ""
"STR_CUSTOMANIMATIONPANE\n"
"string.text"
msgid "Animation"
-msgstr ""
+msgstr "Κίνηση"
#: strings.src
msgctxt ""
@@ -2603,7 +2603,7 @@ msgctxt ""
"STR_OBJECTS_TREE\n"
"string.text"
msgid "Page Tree"
-msgstr ""
+msgstr "Δέντρο σελίδας"
#: toolbox.src
msgctxt ""
diff --git a/source/el/sd/uiconfig/sdraw/ui.po b/source/el/sd/uiconfig/sdraw/ui.po
index 34b7302688a..5e0abee5352 100644
--- a/source/el/sd/uiconfig/sdraw/ui.po
+++ b/source/el/sd/uiconfig/sdraw/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:04+0000\n"
+"PO-Revision-Date: 2016-12-12 21:38+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467662673.000000\n"
+"X-POOTLE-MTIME: 1481578723.000000\n"
#: breakdialog.ui
msgctxt ""
@@ -87,7 +87,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Numbering"
-msgstr ""
+msgstr "Αρίθμηση"
#: bulletsandnumbering.ui
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Values from Selection"
-msgstr ""
+msgstr "Τιμές από επιλογή"
#: copydlg.ui
msgctxt ""
@@ -447,7 +447,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transparency"
-msgstr ""
+msgstr "Διαφάνεια"
#: drawparadialog.ui
msgctxt ""
@@ -600,7 +600,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Numbering"
-msgstr ""
+msgstr "Αρίθμηση"
#: drawprtldialog.ui
msgctxt ""
diff --git a/source/el/sd/uiconfig/simpress/ui.po b/source/el/sd/uiconfig/simpress/ui.po
index d064e4bd673..d484f39b0d2 100644
--- a/source/el/sd/uiconfig/simpress/ui.po
+++ b/source/el/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:05+0000\n"
+"PO-Revision-Date: 2016-12-12 21:55+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467662720.000000\n"
+"X-POOTLE-MTIME: 1481579740.000000\n"
#: customanimationeffecttab.ui
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Options"
-msgstr ""
+msgstr "Επιλογές"
#: customanimationspanel.ui
msgctxt ""
@@ -411,7 +411,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation Deck"
-msgstr ""
+msgstr "Περιοχή κίνησης"
#: customanimationspanel.ui
msgctxt ""
@@ -420,7 +420,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation List"
-msgstr ""
+msgstr "Κατάλογος κινήσεων"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -429,7 +429,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Add Effect"
-msgstr ""
+msgstr "Προσθήκη εφέ"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Remove Effect"
-msgstr ""
+msgstr "Αφαίρεση εφέ"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -447,7 +447,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Up"
-msgstr ""
+msgstr "Μετακίνηση προς τα πάνω"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -456,7 +456,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Down"
-msgstr ""
+msgstr "Μετακίνηση προς τα κάτω"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -465,7 +465,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Start:"
-msgstr ""
+msgstr "Έ_ναρξη:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -474,7 +474,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Direction:"
-msgstr ""
+msgstr "_Κατεύθυνση:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -483,7 +483,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "On click"
-msgstr ""
+msgstr "Στο πάτημα"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -492,7 +492,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "With previous"
-msgstr ""
+msgstr "Με το προηγούμενο"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -501,7 +501,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "After previous"
-msgstr ""
+msgstr "Μετά το προηγούμενο"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Category:"
-msgstr ""
+msgstr "Κατηγορία:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -519,7 +519,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Entrance"
-msgstr ""
+msgstr "Είσοδος"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -528,7 +528,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Emphasis"
-msgstr ""
+msgstr "Έμφαση"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -537,7 +537,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Exit"
-msgstr ""
+msgstr "Έξοδος"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -546,7 +546,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Motion Paths"
-msgstr ""
+msgstr "Διαδρομές κίνησης"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -555,7 +555,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Misc Effects"
-msgstr ""
+msgstr "Διάφορα εφέ"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -564,7 +564,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "D_uration:"
-msgstr ""
+msgstr "_Διάρκεια:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -573,7 +573,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the speed of the Animation."
-msgstr ""
+msgstr "Επιλογή της ταχύτητας της κίνησης."
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Effect:"
-msgstr ""
+msgstr "Εφέ:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -591,7 +591,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Automatic Preview"
-msgstr ""
+msgstr "Αυτόματη προεπισκόπηση"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -600,7 +600,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Play"
-msgstr ""
+msgstr "Αναπαραγωγή"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -609,7 +609,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Preview Effect"
-msgstr ""
+msgstr "Προεπισκόπηση εφέ"
#: customanimationtexttab.ui
msgctxt ""
@@ -780,7 +780,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the speed of the Animation."
-msgstr ""
+msgstr "Επιλογή της ταχύτητας της κίνησης."
#: customanimationtimingtab.ui
msgctxt ""
@@ -1572,7 +1572,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Document"
-msgstr ""
+msgstr "Έγγραφο"
#: navigatorpanel.ui
msgctxt ""
@@ -1581,7 +1581,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Active Window"
-msgstr ""
+msgstr "Ενεργό παράθυρο"
#: navigatorpanel.ui
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "First Slide"
-msgstr ""
+msgstr "Πρώτη διαφάνεια"
#: navigatorpanel.ui
msgctxt ""
@@ -1599,7 +1599,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Previous Slide"
-msgstr ""
+msgstr "Προηγούμενη διαφάνεια"
#: navigatorpanel.ui
msgctxt ""
@@ -1608,7 +1608,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Next Slide"
-msgstr ""
+msgstr "Επόμενη διαφάνεια"
#: navigatorpanel.ui
msgctxt ""
@@ -1617,7 +1617,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Last Slide"
-msgstr ""
+msgstr "Τελευταία διαφάνεια"
#: navigatorpanel.ui
msgctxt ""
@@ -1626,7 +1626,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Drag Mode"
-msgstr ""
+msgstr "Κατάσταση μετακίνησης"
#: navigatorpanel.ui
msgctxt ""
@@ -1635,7 +1635,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Show Shapes"
-msgstr ""
+msgstr "Εμφάνιση σχημάτων"
#: notebookbar.ui
msgctxt ""
@@ -1644,7 +1644,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Αρχείο"
#: notebookbar.ui
msgctxt ""
@@ -1653,7 +1653,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clone"
-msgstr ""
+msgstr "Κλωνοποίηση"
#: notebookbar.ui
msgctxt ""
@@ -1662,7 +1662,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Κουκκίδες και αρίθμηση"
#: notebookbar.ui
msgctxt ""
@@ -1671,7 +1671,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Εσοχή"
#: notebookbar.ui
msgctxt ""
@@ -1680,7 +1680,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Increase Indent"
-msgstr ""
+msgstr "Αύξηση εσοχής"
#: notebookbar.ui
msgctxt ""
@@ -1689,7 +1689,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "Μείωση εσοχής"
#: notebookbar.ui
msgctxt ""
@@ -1698,7 +1698,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Horizontal Alignment"
-msgstr ""
+msgstr "Οριζόντια στοίχιση"
#: notebookbar.ui
msgctxt ""
@@ -1707,7 +1707,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Home"
-msgstr ""
+msgstr "Αρχή"
#: notebookbar.ui
msgctxt ""
@@ -1716,7 +1716,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert Audio or Video"
-msgstr ""
+msgstr "Εισαγωγή ήχου ή βίντεο"
#: notebookbar.ui
msgctxt ""
@@ -1725,7 +1725,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Symbol"
-msgstr ""
+msgstr "Σύμβολο"
#: notebookbar.ui
msgctxt ""
@@ -1734,7 +1734,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Εισαγωγή"
#: notebookbar.ui
msgctxt ""
@@ -1743,7 +1743,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transitions"
-msgstr ""
+msgstr "Μεταβάσεις"
#: notebookbar.ui
msgctxt ""
@@ -1752,7 +1752,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation"
-msgstr ""
+msgstr "Κίνηση"
#: notebookbar.ui
msgctxt ""
@@ -1761,7 +1761,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Slide Show"
-msgstr ""
+msgstr "Προβολή παρουσίασης"
#: notebookbar.ui
msgctxt ""
@@ -1770,7 +1770,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto Spellcheck"
-msgstr ""
+msgstr "Αυτόματος ορθογραφικός έλεγχος"
#: notebookbar.ui
msgctxt ""
@@ -1779,7 +1779,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Review"
-msgstr ""
+msgstr "Επιθεώρηση"
#: notebookbar.ui
msgctxt ""
@@ -1788,7 +1788,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Grid"
-msgstr ""
+msgstr "Πλέγμα"
#: notebookbar.ui
msgctxt ""
@@ -1797,7 +1797,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "View"
-msgstr ""
+msgstr "Προβολή"
#: notebookbar.ui
msgctxt ""
@@ -1806,7 +1806,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Πίνακας"
#: notebookbar.ui
msgctxt ""
@@ -1815,7 +1815,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Εικόνα"
#: notebookbar_groups.ui
msgctxt ""
@@ -1824,7 +1824,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Blank"
-msgstr ""
+msgstr "Κενό"
#: notebookbar_groups.ui
msgctxt ""
@@ -1833,7 +1833,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title Slide"
-msgstr ""
+msgstr "Διαφάνεια τίτλου"
#: notebookbar_groups.ui
msgctxt ""
@@ -1842,7 +1842,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title, Text"
-msgstr ""
+msgstr "Τίτλος, κείμενο"
#: notebookbar_groups.ui
msgctxt ""
@@ -1851,7 +1851,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title, Content"
-msgstr ""
+msgstr "Τίτλος, περιεχόμενο"
#: notebookbar_groups.ui
msgctxt ""
@@ -1860,7 +1860,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Centered Text"
-msgstr ""
+msgstr "Κεντραρισμένο κείμενο"
#: notebookbar_groups.ui
msgctxt ""
@@ -1869,7 +1869,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hyperlink"
-msgstr ""
+msgstr "Σύνδεσμος"
#: notebookbar_groups.ui
msgctxt ""
@@ -1878,7 +1878,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Footnote"
-msgstr ""
+msgstr "Υποσημείωση"
#: notebookbar_groups.ui
msgctxt ""
@@ -1887,7 +1887,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Endnote"
-msgstr ""
+msgstr "Σημείωση τέλους"
#: notebookbar_groups.ui
msgctxt ""
@@ -1896,7 +1896,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bookmark"
-msgstr ""
+msgstr "Σελιδοδείκτης"
#: notebookbar_groups.ui
msgctxt ""
@@ -1905,7 +1905,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cross-Reference"
-msgstr ""
+msgstr "Παραπομπή"
#: notebookbar_groups.ui
msgctxt ""
@@ -1914,7 +1914,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Master 1"
-msgstr ""
+msgstr "Κύριο 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -1923,7 +1923,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Master 2"
-msgstr ""
+msgstr "Κύριο 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -1932,7 +1932,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Προεπιλογή"
#: notebookbar_groups.ui
msgctxt ""
@@ -1941,7 +1941,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "No Fill"
-msgstr ""
+msgstr "Χωρίς γέμισμα"
#: notebookbar_groups.ui
msgctxt ""
@@ -1950,7 +1950,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "With Shadow"
-msgstr ""
+msgstr "Με σκιά"
#: notebookbar_groups.ui
msgctxt ""
@@ -1959,7 +1959,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title 1"
-msgstr ""
+msgstr "Τίτλος 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -1968,7 +1968,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title 2"
-msgstr ""
+msgstr "Τίτλος 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -1977,7 +1977,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Αρχείο"
#: notebookbar_groups.ui
msgctxt ""
@@ -1986,7 +1986,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clipboard"
-msgstr ""
+msgstr "Πρόχειρο"
#: notebookbar_groups.ui
msgctxt ""
@@ -1995,10 +1995,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Τεχνοτροπία"
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"growb\n"
@@ -2008,7 +2007,6 @@ msgid " "
msgstr " "
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"shrinkb\n"
@@ -2024,7 +2022,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Κείμενο"
#: notebookbar_groups.ui
msgctxt ""
@@ -2033,7 +2031,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start"
-msgstr ""
+msgstr "Εκκίνηση"
#: notebookbar_groups.ui
msgctxt ""
@@ -2042,7 +2040,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Master"
-msgstr ""
+msgstr "Κύριο"
#: notebookbar_groups.ui
msgctxt ""
@@ -2051,7 +2049,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Layout"
-msgstr ""
+msgstr "Διάταξη"
#: notebookbar_groups.ui
msgctxt ""
@@ -2060,7 +2058,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation"
-msgstr ""
+msgstr "Κίνηση"
#: notebookbar_groups.ui
msgctxt ""
@@ -2069,7 +2067,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transition"
-msgstr ""
+msgstr "Μετάβαση"
#: notebookbar_groups.ui
msgctxt ""
@@ -2078,7 +2076,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Slide"
-msgstr ""
+msgstr "Διαφάνεια"
#: notebookbar_groups.ui
msgctxt ""
@@ -2087,7 +2085,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shapes"
-msgstr ""
+msgstr "Σχήματα"
#: notebookbar_groups.ui
msgctxt ""
@@ -2096,7 +2094,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Links"
-msgstr ""
+msgstr "Σύνδεσμοι"
#: notebookbar_groups.ui
msgctxt ""
@@ -2105,7 +2103,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Εισαγωγή"
#: notebookbar_groups.ui
msgctxt ""
@@ -2114,7 +2112,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Τεχνοτροπία"
#: notebookbar_groups.ui
msgctxt ""
@@ -2123,7 +2121,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset"
-msgstr ""
+msgstr "Επαναφορά"
#: notebookbar_groups.ui
msgctxt ""
@@ -2132,7 +2130,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wrap"
-msgstr ""
+msgstr "Αναδίπλωση"
#: notebookbar_groups.ui
msgctxt ""
@@ -2141,7 +2139,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Lock"
-msgstr ""
+msgstr "Κλείδωμα"
#: notebookbar_groups.ui
msgctxt ""
@@ -2150,7 +2148,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Εικόνα"
#: notebookbar_groups.ui
msgctxt ""
@@ -2159,7 +2157,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: notebookbar_groups.ui
msgctxt ""
@@ -2168,7 +2166,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal"
-msgstr ""
+msgstr "Βέλτιστο"
#: notebookbar_groups.ui
msgctxt ""
@@ -2177,7 +2175,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Παράλληλο"
#: notebookbar_groups.ui
msgctxt ""
@@ -2186,7 +2184,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Before"
-msgstr ""
+msgstr "Πριν από"
#: notebookbar_groups.ui
msgctxt ""
@@ -2195,7 +2193,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "After"
-msgstr ""
+msgstr "Μετά από"
#: notebookbar_groups.ui
msgctxt ""
@@ -2204,7 +2202,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Through"
-msgstr ""
+msgstr "Μέσα από"
#: notebookbar_groups.ui
msgctxt ""
@@ -2213,7 +2211,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Contour"
-msgstr ""
+msgstr "Περίγραμμα"
#: notebookbar_groups.ui
msgctxt ""
@@ -2222,7 +2220,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Contour"
-msgstr ""
+msgstr "Επεξεργασία περιγράμματος"
#: optimpressgeneralpage.ui
msgctxt ""
@@ -2258,7 +2256,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start with _Template Selection"
-msgstr ""
+msgstr "Έναρξη με την επιλογή _προτύπου"
#: optimpressgeneralpage.ui
msgctxt ""
@@ -2510,7 +2508,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fill Screen"
-msgstr ""
+msgstr "Γέμισμα της οθόνης"
#: photoalbum.ui
msgctxt ""
@@ -2519,7 +2517,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link images"
-msgstr ""
+msgstr "Σύνδεση εικόνων"
#: photoalbum.ui
msgctxt ""
@@ -3761,7 +3759,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Master Slide"
-msgstr ""
+msgstr "Κύρια διαφάνεια"
#: sidebarslidebackground.ui
msgctxt ""
@@ -3770,7 +3768,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Close Master Slide"
-msgstr ""
+msgstr "Κλείσιμο κύριας διαφάνειας"
#: slidedesigndialog.ui
msgctxt ""
@@ -3959,7 +3957,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Duration:"
-msgstr ""
+msgstr "Διάρκεια:"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -3968,7 +3966,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the speed of Slide Transition."
-msgstr ""
+msgstr "Επιλογή της ταχύτητας μετάβασης διαφάνειας."
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -3977,7 +3975,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Variant:"
-msgstr ""
+msgstr "Παραλλαγή:"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -3986,7 +3984,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sound:"
-msgstr ""
+msgstr "Ήχος:"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -3995,7 +3993,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "No sound"
-msgstr ""
+msgstr "Χωρίς ήχο"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4004,7 +4002,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Stop previous sound"
-msgstr ""
+msgstr "Διακοπή προηγούμενου ήχου"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4013,7 +4011,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Other sound..."
-msgstr ""
+msgstr "Άλλος ήχος..."
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4022,7 +4020,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Loop until next sound"
-msgstr ""
+msgstr "Βρόχος μέχρι τον επόμενο ήχο"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4031,7 +4029,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "On mouse click"
-msgstr ""
+msgstr "Με το πάτημα του ποντικιού"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4040,7 +4038,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Automatically after:"
-msgstr ""
+msgstr "Αυτόματα μετά από:"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4049,7 +4047,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4058,7 +4056,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Automatic Preview"
-msgstr ""
+msgstr "Αυτόματη προεπισκόπηση"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4067,7 +4065,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply Transition to All Slides"
-msgstr ""
+msgstr "Εφαρμογή μετάβασης σε όλες τις διαφάνειες"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4076,7 +4074,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Play"
-msgstr ""
+msgstr "Αναπαραγωγή"
#: tabledesignpanel.ui
msgctxt ""
@@ -4139,7 +4137,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Header row"
-msgstr ""
+msgstr "Γραμμή επι_κεφαλίδας"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4148,7 +4146,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tot_al row"
-msgstr ""
+msgstr "Σ_υνολική γραμμή"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4157,7 +4155,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Banded rows"
-msgstr ""
+msgstr "Γραμμές με _ζώνες"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4166,7 +4164,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ba_nded columns"
-msgstr ""
+msgstr "Στήλες με ζώ_νες"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4175,7 +4173,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fi_rst column"
-msgstr ""
+msgstr "Π_ρώτη στήλη"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4184,7 +4182,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Last column"
-msgstr ""
+msgstr "_Τελευταία στήλη"
#: templatedialog.ui
msgctxt ""
diff --git a/source/el/sfx2/source/dialog.po b/source/el/sfx2/source/dialog.po
index ee978c0a65d..59e96466a7a 100644
--- a/source/el/sfx2/source/dialog.po
+++ b/source/el/sfx2/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-06 06:17+0000\n"
+"PO-Revision-Date: 2016-12-12 21:59+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481005033.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481579948.000000\n"
#: dialog.src
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"SID_PRINTDOC\n"
"menuitem.text"
msgid "Print"
-msgstr ""
+msgstr "Εκτύπωση"
#: dialog.src
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"SID_MENUBAR\n"
"menuitem.text"
msgid "Menubar"
-msgstr ""
+msgstr "Γραμμή μενού"
#: dialog.src
msgctxt ""
@@ -248,7 +248,7 @@ msgctxt ""
"SID_OPTIONS\n"
"menuitem.text"
msgid "Options"
-msgstr ""
+msgstr "Επιλογές"
#: dialog.src
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"SID_CLOSEDOC\n"
"menuitem.text"
msgid "Close"
-msgstr ""
+msgstr "Κλείσιμο"
#: dinfdlg.src
msgctxt ""
@@ -274,7 +274,7 @@ msgctxt ""
"Checked by\n"
"itemlist.text"
msgid "Checked by"
-msgstr ""
+msgstr "Ελέγχθηκε από"
#: dinfdlg.src
msgctxt ""
@@ -283,7 +283,7 @@ msgctxt ""
"Client\n"
"itemlist.text"
msgid "Client"
-msgstr ""
+msgstr "Πελάτης"
#: dinfdlg.src
msgctxt ""
@@ -292,7 +292,7 @@ msgctxt ""
"Date completed\n"
"itemlist.text"
msgid "Date completed"
-msgstr ""
+msgstr "Ημερομηνία ολοκλήρωσης"
#: dinfdlg.src
msgctxt ""
@@ -301,7 +301,7 @@ msgctxt ""
"Department\n"
"itemlist.text"
msgid "Department"
-msgstr ""
+msgstr "Τμήμα"
#: dinfdlg.src
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"Destinations\n"
"itemlist.text"
msgid "Destinations"
-msgstr ""
+msgstr "Προορισμοί"
#: dinfdlg.src
msgctxt ""
@@ -319,7 +319,7 @@ msgctxt ""
"Disposition\n"
"itemlist.text"
msgid "Disposition"
-msgstr ""
+msgstr "Διάθεση"
#: dinfdlg.src
msgctxt ""
@@ -328,7 +328,7 @@ msgctxt ""
"Division\n"
"itemlist.text"
msgid "Division"
-msgstr ""
+msgstr "Διαίρεση"
#: dinfdlg.src
msgctxt ""
@@ -337,7 +337,7 @@ msgctxt ""
"Document number\n"
"itemlist.text"
msgid "Document number"
-msgstr ""
+msgstr "Αριθμός εγγράφου"
#: dinfdlg.src
msgctxt ""
@@ -346,7 +346,7 @@ msgctxt ""
"Editor\n"
"itemlist.text"
msgid "Editor"
-msgstr ""
+msgstr "Επεξεργαστής"
#: dinfdlg.src
msgctxt ""
@@ -355,7 +355,7 @@ msgctxt ""
"E-Mail\n"
"itemlist.text"
msgid "E-Mail"
-msgstr ""
+msgstr "Ηλ. αλληλογραφία"
#: dinfdlg.src
msgctxt ""
@@ -364,7 +364,7 @@ msgctxt ""
"Forward to\n"
"itemlist.text"
msgid "Forward to"
-msgstr ""
+msgstr "Προώθηση σε"
#: dinfdlg.src
msgctxt ""
@@ -373,7 +373,7 @@ msgctxt ""
"Group\n"
"itemlist.text"
msgid "Group"
-msgstr ""
+msgstr "Ομάδα"
#: dinfdlg.src
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"Info\n"
"itemlist.text"
msgid "Info"
-msgstr ""
+msgstr "Πληροφορίες"
#: dinfdlg.src
msgctxt ""
@@ -391,7 +391,7 @@ msgctxt ""
"Language\n"
"itemlist.text"
msgid "Language"
-msgstr ""
+msgstr "Γλώσσα"
#: dinfdlg.src
msgctxt ""
@@ -400,7 +400,7 @@ msgctxt ""
"Mailstop\n"
"itemlist.text"
msgid "Mailstop"
-msgstr ""
+msgstr "Διακοπή αλληλογραφίας"
#: dinfdlg.src
msgctxt ""
@@ -409,7 +409,7 @@ msgctxt ""
"Matter\n"
"itemlist.text"
msgid "Matter"
-msgstr ""
+msgstr "Θέμα"
#: dinfdlg.src
msgctxt ""
@@ -418,7 +418,7 @@ msgctxt ""
"Office\n"
"itemlist.text"
msgid "Office"
-msgstr ""
+msgstr "Γραφείο"
#: dinfdlg.src
msgctxt ""
@@ -427,7 +427,7 @@ msgctxt ""
"Owner\n"
"itemlist.text"
msgid "Owner"
-msgstr ""
+msgstr "Ιδιοκτήτης"
#: dinfdlg.src
msgctxt ""
@@ -436,7 +436,7 @@ msgctxt ""
"Project\n"
"itemlist.text"
msgid "Project"
-msgstr ""
+msgstr "Έργο"
#: dinfdlg.src
msgctxt ""
@@ -445,7 +445,7 @@ msgctxt ""
"Publisher\n"
"itemlist.text"
msgid "Publisher"
-msgstr ""
+msgstr "Εκδότης"
#: dinfdlg.src
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"Purpose\n"
"itemlist.text"
msgid "Purpose"
-msgstr ""
+msgstr "Σκοπός"
#: dinfdlg.src
msgctxt ""
@@ -463,7 +463,7 @@ msgctxt ""
"Received from\n"
"itemlist.text"
msgid "Received from"
-msgstr ""
+msgstr "Ελήφθη από"
#: dinfdlg.src
msgctxt ""
@@ -472,7 +472,7 @@ msgctxt ""
"Recorded by\n"
"itemlist.text"
msgid "Recorded by"
-msgstr ""
+msgstr "Καταγράφηκε από"
#: dinfdlg.src
msgctxt ""
@@ -481,7 +481,7 @@ msgctxt ""
"Recorded date\n"
"itemlist.text"
msgid "Recorded date"
-msgstr ""
+msgstr "Ημερομηνία καταγραφής"
#: dinfdlg.src
msgctxt ""
@@ -490,7 +490,7 @@ msgctxt ""
"Reference\n"
"itemlist.text"
msgid "Reference"
-msgstr ""
+msgstr "Παραπομπή"
#: dinfdlg.src
msgctxt ""
@@ -499,7 +499,7 @@ msgctxt ""
"Source\n"
"itemlist.text"
msgid "Source"
-msgstr ""
+msgstr "Πηγή"
#: dinfdlg.src
msgctxt ""
@@ -508,7 +508,7 @@ msgctxt ""
"Status\n"
"itemlist.text"
msgid "Status"
-msgstr ""
+msgstr "Κατάσταση"
#: dinfdlg.src
msgctxt ""
@@ -517,7 +517,7 @@ msgctxt ""
"Telephone number\n"
"itemlist.text"
msgid "Telephone number"
-msgstr ""
+msgstr "Αριθμός τηλεφώνου"
#: dinfdlg.src
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"Typist\n"
"itemlist.text"
msgid "Typist"
-msgstr ""
+msgstr "Δακτυλογράφος"
#: dinfdlg.src
msgctxt ""
@@ -535,7 +535,7 @@ msgctxt ""
"URL\n"
"itemlist.text"
msgid "URL"
-msgstr ""
+msgstr "URL"
#: dinfdlg.src
msgctxt ""
@@ -544,7 +544,7 @@ msgctxt ""
"Text\n"
"itemlist.text"
msgid "Text"
-msgstr ""
+msgstr "Κείμενο"
#: dinfdlg.src
msgctxt ""
@@ -553,7 +553,7 @@ msgctxt ""
"DateTime\n"
"itemlist.text"
msgid "DateTime"
-msgstr ""
+msgstr "Ημερομηνία και χρόνος"
#: dinfdlg.src
msgctxt ""
@@ -562,7 +562,7 @@ msgctxt ""
"Date\n"
"itemlist.text"
msgid "Date"
-msgstr ""
+msgstr "Ημερομηνία"
#: dinfdlg.src
msgctxt ""
@@ -571,7 +571,7 @@ msgctxt ""
"Duration\n"
"itemlist.text"
msgid "Duration"
-msgstr ""
+msgstr "Διάρκεια"
#: dinfdlg.src
msgctxt ""
@@ -580,7 +580,7 @@ msgctxt ""
"Number\n"
"itemlist.text"
msgid "Number"
-msgstr ""
+msgstr "Αριθμός"
#: dinfdlg.src
msgctxt ""
@@ -589,7 +589,7 @@ msgctxt ""
"Yes or no\n"
"itemlist.text"
msgid "Yes or no"
-msgstr ""
+msgstr "Ναι ή όχι"
#: dinfdlg.src
msgctxt ""
diff --git a/source/el/sfx2/source/doc.po b/source/el/sfx2/source/doc.po
index 9a48ddb06de..e19ef6c4ad3 100644
--- a/source/el/sfx2/source/doc.po
+++ b/source/el/sfx2/source/doc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-06 05:07+0000\n"
+"PO-Revision-Date: 2016-12-12 21:59+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1467781662.000000\n"
+"X-POOTLE-MTIME: 1481579960.000000\n"
#: doc.src
msgctxt ""
@@ -146,7 +146,7 @@ msgctxt ""
"STR_TEMPLATE_SELECTION\n"
"string.text"
msgid "Select a Template"
-msgstr ""
+msgstr "Επιλογή προτύπου"
#: doc.src
msgctxt ""
@@ -733,7 +733,7 @@ msgctxt ""
"Styles\n"
"itemlist.text"
msgid "Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες"
#: doctempl.src
msgctxt ""
diff --git a/source/el/sfx2/source/sidebar.po b/source/el/sfx2/source/sidebar.po
index 37e0907172a..2c787742b9d 100644
--- a/source/el/sfx2/source/sidebar.po
+++ b/source/el/sfx2/source/sidebar.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:08+0000\n"
+"PO-Revision-Date: 2016-12-13 07:11+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1467662882.000000\n"
+"X-POOTLE-MTIME: 1481613108.000000\n"
#: Sidebar.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"SFX_STR_SIDEBAR_CUSTOMIZATION\n"
"string.text"
msgid "Customization"
-msgstr ""
+msgstr "Προσαρμογή"
#: Sidebar.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"SFX_STR_SIDEBAR_RESTORE\n"
"string.text"
msgid "Restore Default"
-msgstr ""
+msgstr "Επαναφορά προεπιλογής"
#: Sidebar.src
msgctxt ""
@@ -62,4 +62,4 @@ msgctxt ""
"SFX_STR_SIDEBAR_HIDE_SIDEBAR\n"
"string.text"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Κλείσιμο πλευρικής στήλης"
diff --git a/source/el/sfx2/source/view.po b/source/el/sfx2/source/view.po
index b30ba8bb0d8..c9bc695e5cf 100644
--- a/source/el/sfx2/source/view.po
+++ b/source/el/sfx2/source/view.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-08-03 03:34+0000\n"
+"PO-Revision-Date: 2016-12-13 07:17+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1470195261.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481613450.000000\n"
#: view.src
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"STR_READONLY_PDF\n"
"string.text"
msgid "This PDF is open in read-only mode to allow signing the existing file."
-msgstr ""
+msgstr "Αυτό το PDF είναι ανοικτό σε κατάσταση μόνο για ανάγνωση για να επιτρέψει την υπογραφή του υπάρχοντος αρχείου."
#: view.src
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"STR_CHECKOUT\n"
"string.text"
msgid "Check Out"
-msgstr ""
+msgstr "Έλεγχος εξόδου"
#: view.src
msgctxt ""
@@ -248,7 +248,7 @@ msgctxt ""
"STR_READONLY_EDIT\n"
"string.text"
msgid "Edit Document"
-msgstr ""
+msgstr "Επεξεργασία εγγράφου"
#: view.src
msgctxt ""
@@ -256,4 +256,4 @@ msgctxt ""
"STR_READONLY_SIGN\n"
"string.text"
msgid "Sign Document"
-msgstr ""
+msgstr "Υπογραφή εγγράφου"
diff --git a/source/el/sfx2/uiconfig/ui.po b/source/el/sfx2/uiconfig/ui.po
index 51f2f7e9de2..ebb6da430de 100644
--- a/source/el/sfx2/uiconfig/ui.po
+++ b/source/el/sfx2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-06 05:08+0000\n"
+"PO-Revision-Date: 2016-12-13 07:27+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467781693.000000\n"
+"X-POOTLE-MTIME: 1481614035.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -483,7 +483,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Confirm editing of document"
-msgstr ""
+msgstr "Επιβεβαίωση επεξεργασίας εγγράφου"
#: editdocumentdialog.ui
msgctxt ""
@@ -492,7 +492,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Are you sure you want to edit the document?"
-msgstr ""
+msgstr "Είσαστε βέβαιος ότι θέλετε να επεξεργαστείτε το έγγραφο;"
#: editdocumentdialog.ui
msgctxt ""
@@ -501,7 +501,7 @@ msgctxt ""
"secondary_text\n"
"string.text"
msgid "The original file can be signed without editing the document. Existing signatures on the document will be lost in case of saving an edited version."
-msgstr ""
+msgstr "Το αρχικό αρχείο μπορεί να υπογραφεί χωρίς επεξεργασία του εγγράφου. Οι υπάρχουσες υπογραφές στο έγγραφο θα χαθούν στην περίπτωση αποθήκευσης μιας επεξεργασμένης έκδοσης. "
#: editdocumentdialog.ui
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Document"
-msgstr ""
+msgstr "Επεξεργασία εγγράφου"
#: editdocumentdialog.ui
msgctxt ""
@@ -519,7 +519,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cancel"
-msgstr ""
+msgstr "Ακύρωση"
#: editdurationdialog.ui
msgctxt ""
@@ -1347,7 +1347,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Password"
-msgstr ""
+msgstr "Κωδικός πρόσβασης"
#: password.ui
msgctxt ""
@@ -1437,7 +1437,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Enter Safe Mode"
-msgstr ""
+msgstr "Εισαγωγή σε ασφαλή λειτουργία "
#: safemodequerydialog.ui
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Restart"
-msgstr ""
+msgstr "_Επανεκκίνηση"
#: safemodequerydialog.ui
msgctxt ""
@@ -1455,7 +1455,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Are you sure you want to restart %PRODUCTNAME and enter the Safe Mode?"
-msgstr ""
+msgstr "Είσαστε βέβαιος ότι θέλετε να επανεκκινήσετε το %PRODUCTNAME και να εισέλθετε σε ασφαλή λειτουργία;"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1473,7 +1473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template _Name"
-msgstr ""
+msgstr "Ό_νομα προτύπου"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1482,7 +1482,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template _Category"
-msgstr ""
+msgstr "_Κατηγορία προτύπου"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1491,7 +1491,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Set as default template"
-msgstr ""
+msgstr "_Ορισμός ως προεπιλεγμένο πρότυπο"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1617,7 +1617,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clear Recent Documents"
-msgstr ""
+msgstr "Εκκαθάριση πρόσφατων εγγράφων"
#: startcenter.ui
msgctxt ""
@@ -1788,7 +1788,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Application"
-msgstr ""
+msgstr "Εφαρμογή"
#: startcenter.ui
msgctxt ""
@@ -1797,7 +1797,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Recent Files List"
-msgstr ""
+msgstr "Κατάλογος πρόσφατων αρχείων"
#: startcenter.ui
msgctxt ""
@@ -1806,7 +1806,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Templates List"
-msgstr ""
+msgstr "Κατάλογος προτύπων"
#: templatecategorydlg.ui
msgctxt ""
@@ -1860,7 +1860,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Search"
-msgstr ""
+msgstr "Αναζήτηση"
#: templatedlg.ui
msgctxt ""
@@ -1878,7 +1878,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Filter by Application"
-msgstr ""
+msgstr "Φιλτράρισμα ανάλογα την εφαρμογή"
#: templatedlg.ui
msgctxt ""
@@ -1887,7 +1887,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Filter by Category"
-msgstr ""
+msgstr "Φιλτράρισμα ανά κατηγορία"
#: templatedlg.ui
msgctxt ""
@@ -1905,7 +1905,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template List"
-msgstr ""
+msgstr "Κατάλογος προτύπων"
#: templatedlg.ui
msgctxt ""
@@ -1914,7 +1914,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Settings"
-msgstr ""
+msgstr "Ρυθμίσεις"
#: templatedlg.ui
msgctxt ""
@@ -1923,7 +1923,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Browse online templates"
-msgstr ""
+msgstr "Διαδικτυακή περιήγηση προτύπων"
#: templatedlg.ui
msgctxt ""
@@ -1932,7 +1932,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show this dialog at startup"
-msgstr ""
+msgstr "Εμφάνιση αυτού του διαλόγου στην αρχή"
#: templatedlg.ui
msgctxt ""
diff --git a/source/el/starmath/source.po b/source/el/starmath/source.po
index 91abea7a465..5b587e8bd93 100644
--- a/source/el/starmath/source.po
+++ b/source/el/starmath/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 20:14+0000\n"
+"PO-Revision-Date: 2016-12-13 07:28+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467663281.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481614138.000000\n"
#: commands.src
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"RID_XEVALUATEDATY_HELP\n"
"string.text"
msgid "Evaluated At"
-msgstr ""
+msgstr "Υπολογισμένο σε"
#: commands.src
msgctxt ""
@@ -2476,7 +2476,7 @@ msgctxt ""
"RID_PRINTUIOPT_PRODNAME\n"
"string.text"
msgid "%PRODUCTNAME %s"
-msgstr ""
+msgstr "%PRODUCTNAME %s"
#: smres.src
msgctxt ""
@@ -2484,7 +2484,7 @@ msgctxt ""
"RID_PRINTUIOPT_CONTENTS\n"
"string.text"
msgid "Contents"
-msgstr ""
+msgstr "Περιεχόμενα"
#: smres.src
msgctxt ""
@@ -2492,7 +2492,7 @@ msgctxt ""
"RID_PRINTUIOPT_TITLE\n"
"string.text"
msgid "~Title"
-msgstr ""
+msgstr "~Τίτλος"
#: smres.src
msgctxt ""
@@ -2500,7 +2500,7 @@ msgctxt ""
"RID_PRINTUIOPT_FRMLTXT\n"
"string.text"
msgid "~Formula text"
-msgstr ""
+msgstr "Κείμενο ~τύπου"
#: smres.src
msgctxt ""
@@ -2508,7 +2508,7 @@ msgctxt ""
"RID_PRINTUIOPT_BORDERS\n"
"string.text"
msgid "B~orders"
-msgstr ""
+msgstr "Περι~γράμματα"
#: smres.src
msgctxt ""
@@ -2516,7 +2516,7 @@ msgctxt ""
"RID_PRINTUIOPT_SIZE\n"
"string.text"
msgid "Size"
-msgstr ""
+msgstr "Μέγεθος"
#: smres.src
msgctxt ""
@@ -2524,7 +2524,7 @@ msgctxt ""
"RID_PRINTUIOPT_ORIGSIZE\n"
"string.text"
msgid "O~riginal size"
-msgstr ""
+msgstr "Αρ~χικό μέγεθος"
#: smres.src
msgctxt ""
@@ -2532,7 +2532,7 @@ msgctxt ""
"RID_PRINTUIOPT_FITTOPAGE\n"
"string.text"
msgid "Fit to ~page"
-msgstr ""
+msgstr "Προσαρμογή στη ~σελίδα"
#: smres.src
msgctxt ""
@@ -2540,7 +2540,7 @@ msgctxt ""
"RID_PRINTUIOPT_SCALING\n"
"string.text"
msgid "~Scaling"
-msgstr ""
+msgstr "~Κλιμάκωση"
#: symbol.src
msgctxt ""
diff --git a/source/el/svtools/source/java.po b/source/el/svtools/source/java.po
index 3696b392c5b..f2e967d3927 100644
--- a/source/el/svtools/source/java.po
+++ b/source/el/svtools/source/java.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:16+0000\n"
+"PO-Revision-Date: 2016-12-13 07:30+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1467663363.000000\n"
+"X-POOTLE-MTIME: 1481614244.000000\n"
#: javaerror.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_WARNING_JAVANOTFOUND_MAC\n"
"string.text"
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 ""
+msgstr "Το %PRODUCTNAME απαιτεί Oracle's Java Development Kit (JDK) σε Mac OS X 10.10 ή νεότερο για να εκτελέσει αυτήν την εργασία. Παρακαλούμε, εγκαταστήστε το και επανεκκινήστε το %PRODUCTNAME."
#: javaerror.src
msgctxt ""
diff --git a/source/el/svtools/source/misc.po b/source/el/svtools/source/misc.po
index 55c0b6a727f..eb1cd86cb66 100644
--- a/source/el/svtools/source/misc.po
+++ b/source/el/svtools/source/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:16+0000\n"
+"PO-Revision-Date: 2016-12-13 07:31+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467663365.000000\n"
+"X-POOTLE-MTIME: 1481614313.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3877,7 +3877,7 @@ msgctxt ""
"LANGUAGE_USER_SILESIAN\n"
"pairedlist.text"
msgid "Silesian"
-msgstr ""
+msgstr "Σιλεσιανά"
#: langtab.src
msgctxt ""
@@ -3886,7 +3886,7 @@ msgctxt ""
"LANGUAGE_USER_HUNGARIAN_ROVAS\n"
"pairedlist.text"
msgid "Hungarian (Szekely-Hungarian Rovas)"
-msgstr ""
+msgstr "Ουγγρικά (Szekely-Hungarian Rovas)"
#: svtools.src
msgctxt ""
diff --git a/source/el/svtools/uiconfig/ui.po b/source/el/svtools/uiconfig/ui.po
index d7efd16a4be..d63f0b91e3c 100644
--- a/source/el/svtools/uiconfig/ui.po
+++ b/source/el/svtools/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:16+0000\n"
+"PO-Revision-Date: 2016-12-13 07:34+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: none\n"
"Language: el\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: 1467663415.000000\n"
+"X-POOTLE-MTIME: 1481614482.000000\n"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -896,7 +896,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "For the extension to work properly, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "Για να δουλέψει σωστά η επέκταση, το %PRODUCTNAME πρέπει να επανεκκινηθεί."
#: restartdialog.ui
msgctxt ""
@@ -905,7 +905,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "For the OpenGL changes to take effect, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "Για να εφαρμοστούν οι αλλαγές στο OpenGL, πρέπει να επανεκκινηθεί το %PRODUCTNAME."
#: restartdialog.ui
msgctxt ""
diff --git a/source/el/svx/uiconfig/ui.po b/source/el/svx/uiconfig/ui.po
index 21d3d65c03d..8b23aab90a8 100644
--- a/source/el/svx/uiconfig/ui.po
+++ b/source/el/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-06 05:17+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-22 23:30+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467782271.000000\n"
+"X-POOTLE-MTIME: 1482449434.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -456,7 +456,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Base text"
-msgstr ""
+msgstr "Κείμενο βάσης"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -474,7 +474,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Base text"
-msgstr ""
+msgstr "Κείμενο βάσης"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -483,7 +483,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Ruby text"
-msgstr ""
+msgstr "Κείμενο φωνητικής γραφής"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -492,7 +492,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Base text"
-msgstr ""
+msgstr "Κείμενο βάσης"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -501,7 +501,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Ruby text"
-msgstr ""
+msgstr "Κείμενο φωνητικής γραφής"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Ruby text"
-msgstr ""
+msgstr "Κείμενο φωνητικής γραφής"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -519,7 +519,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Base text"
-msgstr ""
+msgstr "Κείμενο βάσης"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -906,7 +906,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: colorwindow.ui
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "JPEG Quality"
-msgstr ""
+msgstr "Ποιότητα JPEG"
#: compressgraphicdialog.ui
msgctxt ""
@@ -951,7 +951,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Lossy compression"
-msgstr ""
+msgstr "Συμπίεση χωρίς απώλειες"
#: compressgraphicdialog.ui
msgctxt ""
@@ -960,7 +960,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "PNG Compression"
-msgstr ""
+msgstr "Συμπίεση PNG"
#: compressgraphicdialog.ui
msgctxt ""
@@ -969,7 +969,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Lossless compression"
-msgstr ""
+msgstr "Συμπίεση χωρίς απώλειες"
#: compressgraphicdialog.ui
msgctxt ""
@@ -978,7 +978,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "90"
-msgstr ""
+msgstr "90"
#: compressgraphicdialog.ui
msgctxt ""
@@ -987,7 +987,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "9"
-msgstr ""
+msgstr "9"
#: compressgraphicdialog.ui
msgctxt ""
@@ -996,7 +996,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Compression"
-msgstr ""
+msgstr "Συμπίεση"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1050,7 +1050,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "1"
-msgstr ""
+msgstr "1"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1059,7 +1059,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "1"
-msgstr ""
+msgstr "1"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1095,7 +1095,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Resolution"
-msgstr ""
+msgstr "Ανάλυση"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1140,7 +1140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Calculate New Size:"
-msgstr ""
+msgstr "Υπολογισμός του νέου μεγέθους:"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1275,7 +1275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restart LibreOffice to enter Safe Mode"
-msgstr ""
+msgstr "Επανεκκινήστε το LibreOffice για να εισέλθετε σε ασφαλή λειτουργία"
#: datanavigator.ui
msgctxt ""
@@ -1392,7 +1392,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Lines & Arrows"
-msgstr ""
+msgstr "Γραμμές και βέλη"
#: defaultshapespanel.ui
msgctxt ""
@@ -1401,7 +1401,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Curve"
-msgstr ""
+msgstr "Καμπύλη"
#: defaultshapespanel.ui
msgctxt ""
@@ -1410,7 +1410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Connectors"
-msgstr ""
+msgstr "Γραμμές σύνδεσης"
#: defaultshapespanel.ui
msgctxt ""
@@ -1419,7 +1419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Basic Shapes"
-msgstr ""
+msgstr "Βασικά σχήματα"
#: defaultshapespanel.ui
msgctxt ""
@@ -1428,7 +1428,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Symbols"
-msgstr ""
+msgstr "Σύμβολα"
#: defaultshapespanel.ui
msgctxt ""
@@ -1437,7 +1437,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Block Arrows"
-msgstr ""
+msgstr "Χοντρά βέλη"
#: defaultshapespanel.ui
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Flowchart"
-msgstr ""
+msgstr "Διάγραμμα ροής"
#: defaultshapespanel.ui
msgctxt ""
@@ -1455,7 +1455,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Callouts"
-msgstr ""
+msgstr "Επεξηγήσεις"
#: defaultshapespanel.ui
msgctxt ""
@@ -1464,7 +1464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Stars"
-msgstr ""
+msgstr "Αστέρια"
#: defaultshapespanel.ui
msgctxt ""
@@ -1473,7 +1473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "3D Objects"
-msgstr ""
+msgstr "3Δ αντικείμενα"
#: deletefooterdialog.ui
msgctxt ""
@@ -2346,7 +2346,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 2"
-msgstr ""
+msgstr "Χρώμα πηγής 2"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2355,7 +2355,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 3"
-msgstr ""
+msgstr "Χρώμα πηγής 3"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2364,7 +2364,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 4"
-msgstr ""
+msgstr "Χρώμα πηγής 4"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2373,7 +2373,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 1"
-msgstr ""
+msgstr "Χρώμα πηγής 1"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2391,7 +2391,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Tolerance 1"
-msgstr ""
+msgstr "Ανοχή 1"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2400,7 +2400,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Tolerance 2"
-msgstr ""
+msgstr "Ανοχή 2"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2409,7 +2409,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Tolerance 3"
-msgstr ""
+msgstr "Ανοχή 3"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2418,7 +2418,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Tolerance 4"
-msgstr ""
+msgstr "Ανοχή 4"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2427,7 +2427,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 1"
-msgstr ""
+msgstr "Αντικατάσταση με 1"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2436,7 +2436,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 2"
-msgstr ""
+msgstr "Αντικατάσταση με 2"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2445,7 +2445,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 3"
-msgstr ""
+msgstr "Αντικατάσταση με 3"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2454,7 +2454,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 4"
-msgstr ""
+msgstr "Αντικατάσταση με 4"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2757,7 +2757,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME %PRODUCTVERSION Document Recovery"
-msgstr ""
+msgstr "Ανάκτηση εγγράφου %PRODUCTNAME %PRODUCTVERSION"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2766,7 +2766,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Discard"
-msgstr ""
+msgstr "Από_ρριψη"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2775,7 +2775,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Start"
-msgstr ""
+msgstr "Έ_ναρξη"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2784,7 +2784,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "%PRODUCTNAME will attempt to recover the state of the files you were working on before it crashed. Click 'Start' to begin the process, or click 'Discard' to cancel the recovery."
-msgstr ""
+msgstr "Το %PRODUCTNAME θα προσπαθήσει να ανακτήσει την κατάσταση των αρχείων στα οποία εργαζόσασταν πριν την κατάρρευση. Πατήστε 'Έναρξη΄για να ξεκινήσει η διαδικασία, ή πατήστε 'Απόρριψη' για να ακυρώσετε την ανάκτηση."
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2820,7 +2820,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME %PRODUCTVERSION Document Recovery"
-msgstr ""
+msgstr "Ανάκτηση εγγράφου %PRODUCTNAME %PRODUCTVERSION"
#: docrecoverysavedialog.ui
msgctxt ""
@@ -2901,7 +2901,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "For_matted display"
-msgstr ""
+msgstr "_Μορφοποιημένη εμφάνιση"
#: findreplacedialog.ui
msgctxt ""
@@ -2928,7 +2928,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "All _sheets"
-msgstr ""
+msgstr "Όλα τα _φύλλα"
#: findreplacedialog.ui
msgctxt ""
@@ -2973,7 +2973,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Find Pre_vious"
-msgstr ""
+msgstr "Αναζήτηση προη_γουμένου"
#: findreplacedialog.ui
msgctxt ""
@@ -2982,7 +2982,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Find Ne_xt"
-msgstr ""
+msgstr "Αναζήτηση ε_πόμενου"
#: findreplacedialog.ui
msgctxt ""
@@ -3018,7 +3018,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Re_gular expressions"
-msgstr ""
+msgstr "Κανονικές εκ_φράσεις"
#: findreplacedialog.ui
msgctxt ""
@@ -3027,7 +3027,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Attribut_es..."
-msgstr ""
+msgstr "_Χαρακτηριστικά..."
#: findreplacedialog.ui
msgctxt ""
@@ -3062,8 +3062,8 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "Παράβλεψη _διακριτικών CTL"
+msgid "Ignore diac_ritics"
+msgstr "Παράβλεψη των διακ_ριτικών"
#: findreplacedialog.ui
msgctxt ""
@@ -3071,8 +3071,8 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
-msgstr ""
+msgid "Ignore _kashida"
+msgstr "Παράβλεψη των _κασίδα"
#: findreplacedialog.ui
msgctxt ""
@@ -3108,7 +3108,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sounds like (_Japanese)"
-msgstr ""
+msgstr "Ακούγεται σαν (_ιαπωνικά)"
#: findreplacedialog.ui
msgctxt ""
@@ -3144,7 +3144,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Replace _backwards"
-msgstr ""
+msgstr "Αντικατάσταση προς τα πίσ_ω"
#: findreplacedialog.ui
msgctxt ""
@@ -3207,7 +3207,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colum_ns"
-msgstr ""
+msgstr "_Στήλες"
#: findreplacedialog.ui
msgctxt ""
@@ -3225,7 +3225,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Angle:"
-msgstr ""
+msgstr "_Γωνία:"
#: floatingareastyle.ui
msgctxt ""
@@ -3234,7 +3234,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the angle of rotation for the gradient shading style."
-msgstr ""
+msgstr "Ορίστε τη γωνία περιστροφής για την τεχνοτροπία σκίασης διαβάθμισης."
#: floatingareastyle.ui
msgctxt ""
@@ -3243,7 +3243,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Rotate counterclockwise by 45 degrees."
-msgstr ""
+msgstr "Περιστροφή αριστερόστροφα κατά 45 μοίρες."
#: floatingareastyle.ui
msgctxt ""
@@ -3252,7 +3252,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Rotate clockwise by 45 degrees."
-msgstr ""
+msgstr "Περιστροφή δεξιόστροφα κατά 45 μοίρες."
#: floatingareastyle.ui
msgctxt ""
@@ -3261,7 +3261,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Start value:"
-msgstr ""
+msgstr "_Αρχική τιμή:"
#: floatingareastyle.ui
msgctxt ""
@@ -3270,7 +3270,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_End value:"
-msgstr ""
+msgstr "_Τελική τιμή:"
#: floatingareastyle.ui
msgctxt ""
@@ -3279,7 +3279,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Enter a transparency value for the beginning point of the gradient, where 0% is fully opaque and 100% is fully transparent."
-msgstr ""
+msgstr "Εισάγετε μια τιμή διαφάνειας για το αρχικό σημείο της διαβάθμισης, όπου 0% είναι πλήρως αδιαφανές και 100% είναι πλήρως διαφανές."
#: floatingareastyle.ui
msgctxt ""
@@ -3288,7 +3288,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent."
-msgstr ""
+msgstr "Εισάγετε μια τιμή διαφάνειας για το τελικό σημείο της διαβάθμισης, όπου 0% είναι πλήρως αδιαφανές και 100% είναι πλήρως διαφανές."
#: floatingareastyle.ui
msgctxt ""
@@ -3297,7 +3297,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: floatingareastyle.ui
msgctxt ""
@@ -3306,7 +3306,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Border:"
-msgstr ""
+msgstr "_Περίγραμμα:"
#: floatingareastyle.ui
msgctxt ""
@@ -3315,7 +3315,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the border value of gradient transparency."
-msgstr ""
+msgstr "Ορίστε την τιμή περιγράμματος της διαφάνειας διαβάθμισης."
#: floatingareastyle.ui
msgctxt ""
@@ -3324,7 +3324,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: floatingareastyle.ui
msgctxt ""
@@ -3333,7 +3333,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Center _X:"
-msgstr ""
+msgstr "Κέντρο _X:"
#: floatingareastyle.ui
msgctxt ""
@@ -3342,7 +3342,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Center _Y:"
-msgstr ""
+msgstr "Κέντρο _Υ:"
#: floatingareastyle.ui
msgctxt ""
@@ -3351,7 +3351,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the horizontal offset percentage from the center for the gradient shading style. 50% is the horizontal center."
-msgstr ""
+msgstr "Ορίστε το οριζόντιο ποσοστό μετατόπισης από το κέντρο για την τεχνοτροπία σκίασης διαβάθμισης. 50% είναι το οριζόντιο κέντρο."
#: floatingareastyle.ui
msgctxt ""
@@ -3360,7 +3360,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: floatingareastyle.ui
msgctxt ""
@@ -3369,7 +3369,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
-msgstr ""
+msgstr "Ορίστε το ποσοστό κάθετης μετατόπισης από το κέντρο για την τεχνοτροπία σκίασης διαβάθμισης. 50% είναι το κάθετο κέντρο."
#: floatingareastyle.ui
msgctxt ""
@@ -3378,7 +3378,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: floatingcontour.ui
msgctxt ""
@@ -3627,7 +3627,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Same _content on left and right pages"
-msgstr ""
+msgstr "Ίδιο _περιεχόμενο σε αριστερές και δεξιές σελίδες"
#: headfootformatpage.ui
msgctxt ""
@@ -3978,7 +3978,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Playback:"
-msgstr ""
+msgstr "Αναπαραγωγή:"
#: mediaplayback.ui
msgctxt ""
@@ -3987,7 +3987,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Seek:"
-msgstr ""
+msgstr "Αναζήτηση:"
#: mediaplayback.ui
msgctxt ""
@@ -3996,7 +3996,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Volume:"
-msgstr ""
+msgstr "Ένταση:"
#: mediaplayback.ui
msgctxt ""
@@ -4005,7 +4005,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "View"
-msgstr ""
+msgstr "Προβολή"
#: namespacedialog.ui
msgctxt ""
@@ -4329,7 +4329,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "1.15 Lines"
-msgstr ""
+msgstr "1,15 γραμμές"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4338,7 +4338,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "1.5 Lines"
-msgstr ""
+msgstr "1,5 γραμμή"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4347,7 +4347,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Double"
-msgstr ""
+msgstr "Διπλασιασμός"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4356,7 +4356,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Proportional"
-msgstr ""
+msgstr "Αναλογικά"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4365,7 +4365,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "At least"
-msgstr ""
+msgstr "Τουλάχιστον"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4374,7 +4374,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Leading"
-msgstr ""
+msgstr "Αρχικά"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4383,7 +4383,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Fixed"
-msgstr ""
+msgstr "Σταθερά"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4410,7 +4410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Before"
-msgstr ""
+msgstr "Πριν από"
#: paralrspacing.ui
msgctxt ""
@@ -4419,7 +4419,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Before Text Indent"
-msgstr ""
+msgstr "Πριν την εσοχή του κειμένου"
#: paralrspacing.ui
msgctxt ""
@@ -4428,7 +4428,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "After"
-msgstr ""
+msgstr "Μετά από"
#: paralrspacing.ui
msgctxt ""
@@ -4437,7 +4437,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "After Text Indent"
-msgstr ""
+msgstr "Μετά την εσοχή κειμένου"
#: paralrspacing.ui
msgctxt ""
@@ -4446,7 +4446,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "First line"
-msgstr ""
+msgstr "Πρώτη γραμμή"
#: paralrspacing.ui
msgctxt ""
@@ -4455,7 +4455,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "First Line Indent"
-msgstr ""
+msgstr "Εσοχή πρώτης γραμμής"
#: paraulspacing.ui
msgctxt ""
@@ -4464,7 +4464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Above"
-msgstr ""
+msgstr "Πάνω από"
#: paraulspacing.ui
msgctxt ""
@@ -4473,7 +4473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Below"
-msgstr ""
+msgstr "Κάτω από"
#: paraulspacing.ui
msgctxt ""
@@ -4482,7 +4482,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Above Paragraph Spacing"
-msgstr ""
+msgstr "Πάνω από το διάκενο παραγράφου"
#: paraulspacing.ui
msgctxt ""
@@ -4491,7 +4491,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Below Paragraph Spacing"
-msgstr ""
+msgstr "Κάτω από το διάκενο παραγράφου"
#: passwd.ui
msgctxt ""
@@ -4554,7 +4554,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Profile exported"
-msgstr ""
+msgstr "Εξαγόμενη κατατομή (προφίλ)"
#: profileexporteddialog.ui
msgctxt ""
@@ -4563,7 +4563,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Open Containing _Folder"
-msgstr ""
+msgstr "Άνοιγμα του _φακέλου που το περιέχει"
#: profileexporteddialog.ui
msgctxt ""
@@ -4572,7 +4572,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Your user profile has been exported as “libreoffice-profile.zip”."
-msgstr ""
+msgstr "Η κατατομή (προφίλ) χρήστη έχει εξαχθεί ως “libreoffice-profile.zip”."
#: querydeletecontourdialog.ui
msgctxt ""
@@ -4819,7 +4819,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Σχόλιο"
#: redlinefilterpage.ui
msgctxt ""
@@ -4855,7 +4855,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Συγγραφέας"
#: redlinefilterpage.ui
msgctxt ""
@@ -4864,7 +4864,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Range"
-msgstr ""
+msgstr "Περιοχή"
#: redlinefilterpage.ui
msgctxt ""
@@ -5062,7 +5062,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Safe Mode"
-msgstr ""
+msgstr "Ασφαλής λειτουργία"
#: safemodedialog.ui
msgctxt ""
@@ -5071,7 +5071,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Continue in Safe Mode"
-msgstr ""
+msgstr "_Συνέχεια σε ασφαλή λειτουργία"
#: safemodedialog.ui
msgctxt ""
@@ -5080,7 +5080,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Quit"
-msgstr ""
+msgstr "Έ_ξοδος"
#: safemodedialog.ui
msgctxt ""
@@ -5089,7 +5089,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr ""
+msgstr "_Εφαρμογή των αλλαγών και επανεκκίνηση"
#: safemodedialog.ui
msgctxt ""
@@ -5104,6 +5104,11 @@ msgid ""
"\n"
"The proposed changes get more radical from top down so it is recommended to try them successively one after another."
msgstr ""
+"Το %PRODUCTNAME εκτελείται τώρα σε ασφαλή λειτουργία που προσωρινά απενεργοποιεί τη διαμόρφωση χρήστη και τις επεκτάσεις.\n"
+"\n"
+"Μπορείτε να κάνετε μία ή περισσότερες από τις ακόλουθες αλλαγές στην κατατομή (προφίλ) χρήστη για να μπορέσει το %PRODUCTNAME να επιστρέψει σε λειτουργική κατάσταση.\n"
+"\n"
+"Οι προτεινόμενες αλλαγές γίνονται πιο ριζικές από πάνω προς τα κάτω, γι' αυτό προτείνεται να τις δοκιμάσετε διαδοχικά τη μία μετά την άλλη."
#: safemodedialog.ui
msgctxt ""
@@ -5112,7 +5117,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore from backup"
-msgstr ""
+msgstr "Επαναφορά από αντίγραφο ασφαλείας"
#: safemodedialog.ui
msgctxt ""
@@ -5121,7 +5126,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore user configuration to the last known working state"
-msgstr ""
+msgstr "Επαναφορά ρυθμίσεων χρήστη στην τελευταία γνωστή λειτουργική κατάσταση"
#: safemodedialog.ui
msgctxt ""
@@ -5130,7 +5135,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore state of installed user extensions to the last known working state"
-msgstr ""
+msgstr "Επαναφορά της κατάστασης των εγκατεστημένων επεκτάσεων του χρήστη στην τελευταία γνωστή λειτουργική κατάσταση"
#: safemodedialog.ui
msgctxt ""
@@ -5139,7 +5144,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Configure"
-msgstr ""
+msgstr "Ρύθμιση"
#: safemodedialog.ui
msgctxt ""
@@ -5148,7 +5153,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Disable all user extensions"
-msgstr ""
+msgstr "Απενεργοποίηση όλων των επεκτάσεων του χρήστη"
#: safemodedialog.ui
msgctxt ""
@@ -5157,16 +5162,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Disable hardware acceleration (OpenGL, OpenCL)"
-msgstr ""
+msgstr "Απενεργοποίηση της επιτάχυνσης υλικού (OpenGL, OpenCL)"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
-msgstr ""
+msgid "Extensions"
+msgstr "Επεκτάσεις"
#: safemodedialog.ui
msgctxt ""
@@ -5175,16 +5180,25 @@ msgctxt ""
"label\n"
"string.text"
msgid "Uninstall all user extensions"
-msgstr ""
+msgstr "Απεγκατάσταση όλων των επεκτάσεων του χρήστη"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
-msgstr ""
+msgid "Reset state of shared extensions"
+msgstr "Επαναφορά της κατάστασης των κοινόχρηστων επεκτάσεων"
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of bundled extensions"
+msgstr "Επαναφορά της κατάστασης των ομαδοποιημένων επεκτάσεων"
#: safemodedialog.ui
msgctxt ""
@@ -5193,7 +5207,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset to factory settings"
-msgstr ""
+msgstr "Επαναφορά των εργοστασιακών ρυθμίσεων"
#: safemodedialog.ui
msgctxt ""
@@ -5202,7 +5216,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset settings and user interface modifications"
-msgstr ""
+msgstr "Επαναφορά των ρυθμίσεων και των τροποποιήσεων διεπαφής του χρήστη"
#: safemodedialog.ui
msgctxt ""
@@ -5211,7 +5225,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset entire user profile"
-msgstr ""
+msgstr "Επαναφορά της πλήρους κατατομής (προφίλ) χρήστη"
#: safemodedialog.ui
msgctxt ""
@@ -5220,7 +5234,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "If you experience problems that are not resolved by using safe mode, visit the following link to get help or report a bug."
-msgstr ""
+msgstr "Αν αντιμετωπίζετε προβλήματα που δεν επιλύονται με τη λειτουργία ασφαλείας, επισκεφτείτε τον παρακάτω σύνδεσμο για να πάρετε βοήθεια ή αναφέρτε ένα σφάλμα."
#: safemodedialog.ui
msgctxt ""
@@ -5229,7 +5243,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Get Help"
-msgstr ""
+msgstr "Λήψη βοήθειας"
#: safemodedialog.ui
msgctxt ""
@@ -5238,7 +5252,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "You can also include relevant parts of your user profile in the bugreport (be aware it might contain personal data)."
-msgstr ""
+msgstr "Μπορείτε επίσης να συμπεριλάβετε τα σχετικά τμήματα της κατατομής χρήστη στην αναφορά σφάλματος (να γνωρίζετε ότι μπορεί να περιέχει προσωπικά δεδομένα)."
#: safemodedialog.ui
msgctxt ""
@@ -5247,7 +5261,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create Zip Archive from User Profile"
-msgstr ""
+msgstr "Δημιουργία αρχείου Zip από την κατατομή χρήστη"
#: safemodedialog.ui
msgctxt ""
@@ -5256,7 +5270,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show User Profile"
-msgstr ""
+msgstr "Εμφάνιση κατατομής (προφίλ) χρήστη"
#: safemodedialog.ui
msgctxt ""
@@ -5265,7 +5279,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Advanced"
-msgstr ""
+msgstr "Προχωρημένα"
#: savemodifieddialog.ui
msgctxt ""
@@ -5445,7 +5459,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Import"
-msgstr ""
+msgstr "_Εισαγωγή"
#: sidebararea.ui
msgctxt ""
@@ -5679,7 +5693,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color mode"
-msgstr ""
+msgstr "Κατάσταση χρώματος"
#: sidebargraphic.ui
msgctxt ""
@@ -5724,7 +5738,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Red"
-msgstr ""
+msgstr "Κόκκινο"
#: sidebargraphic.ui
msgctxt ""
@@ -5742,7 +5756,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Green"
-msgstr ""
+msgstr "Πράσινο"
#: sidebargraphic.ui
msgctxt ""
@@ -5760,7 +5774,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Blue"
-msgstr ""
+msgstr "Γαλάζιο"
#: sidebargraphic.ui
msgctxt ""
@@ -6084,7 +6098,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Above Paragraph Spacing"
-msgstr ""
+msgstr "Πάνω από το διάκενο παραγράφου"
#: sidebarparagraph.ui
msgctxt ""
@@ -6102,7 +6116,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Below Paragraph Spacing"
-msgstr ""
+msgstr "Κάτω από το διάκενο παραγράφου"
#: sidebarparagraph.ui
msgctxt ""
@@ -6174,7 +6188,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Before Text Indent"
-msgstr ""
+msgstr "Πριν την εσοχή του κειμένου"
#: sidebarparagraph.ui
msgctxt ""
@@ -6192,7 +6206,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "After Text Indent"
-msgstr ""
+msgstr "Μετά την εσοχή κειμένου"
#: sidebarparagraph.ui
msgctxt ""
@@ -6210,7 +6224,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "First Line Indent"
-msgstr ""
+msgstr "Εσοχή πρώτης γραμμής"
#: sidebarparagraph.ui
msgctxt ""
@@ -6228,7 +6242,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position _X:"
-msgstr ""
+msgstr "Θέση _Χ:"
#: sidebarpossize.ui
msgctxt ""
@@ -6255,7 +6269,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position _Y:"
-msgstr ""
+msgstr "Θέση _Υ:"
#: sidebarpossize.ui
msgctxt ""
diff --git a/source/el/sw/source/core/undo.po b/source/el/sw/source/core/undo.po
index 8b8d82f2767..c5dcc4dc6af 100644
--- a/source/el/sw/source/core/undo.po
+++ b/source/el/sw/source/core/undo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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: 2014-06-12 05:25+0000\n"
+"PO-Revision-Date: 2016-12-13 15:19+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1402550742.000000\n"
+"X-POOTLE-MTIME: 1481642359.000000\n"
#: undo.src
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"STR_UNDO_TBLSTYLE_CREATE\n"
"string.text"
msgid "Create table style: $1"
-msgstr ""
+msgstr "Δημιουργία τεχνοτροπίας πίνακα: $1"
#: undo.src
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"STR_UNDO_TBLSTYLE_DELETE\n"
"string.text"
msgid "Delete table style: $1"
-msgstr ""
+msgstr "Διαγραφή τεχνοτροπίας πίνακα: $1"
#: undo.src
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"STR_UNDO_TBLSTYLE_UPDATE\n"
"string.text"
msgid "Update table style: $1"
-msgstr ""
+msgstr "Ενημέρωση τεχνοτροπίας πίνακα: $1"
#: undo.src
msgctxt ""
diff --git a/source/el/sw/source/core/unocore.po b/source/el/sw/source/core/unocore.po
index 6dbec963dd1..d413fcd68d1 100644
--- a/source/el/sw/source/core/unocore.po
+++ b/source/el/sw/source/core/unocore.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-26 14:57+0000\n"
+"PO-Revision-Date: 2016-12-13 15:19+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1464274631.000000\n"
+"X-POOTLE-MTIME: 1481642363.000000\n"
#: unocore.src
msgctxt ""
@@ -86,4 +86,4 @@ msgctxt ""
"STR_STYLE_FAMILY_CELL\n"
"string.text"
msgid "Cell"
-msgstr ""
+msgstr "Κελί"
diff --git a/source/el/sw/source/ui/app.po b/source/el/sw/source/ui/app.po
index 8fb312817a2..21733a49318 100644
--- a/source/el/sw/source/ui/app.po
+++ b/source/el/sw/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:25+0000\n"
+"PO-Revision-Date: 2016-12-13 15:22+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1467663926.000000\n"
+"X-POOTLE-MTIME: 1481642578.000000\n"
#: app.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_PARAGRAPHSTYLEFAMILY\n"
"string.text"
msgid "Paragraph Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες παραγράφου"
#: app.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_CHARACTERSTYLEFAMILY\n"
"string.text"
msgid "Character Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες χαρακτήρων"
#: app.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_FRAMESTYLEFAMILY\n"
"string.text"
msgid "Frame Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες πλαισίου"
#: app.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_PAGESTYLEFAMILY\n"
"string.text"
msgid "Page Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες σελίδας"
#: app.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_LISTSTYLEFAMILY\n"
"string.text"
msgid "List Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες καταλόγου"
#: app.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_TABLESTYLEFAMILY\n"
"string.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες πίνακα"
#: app.src
msgctxt ""
@@ -87,7 +87,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "Όλες οι τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -96,7 +96,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Κρυφές τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -105,7 +105,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Εφαρμοσμένες τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -114,7 +114,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Προσαρμοσμένες τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -123,7 +123,7 @@ msgctxt ""
"Automatic\n"
"itemlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "Αυτόματα"
#: app.src
msgctxt ""
@@ -132,7 +132,7 @@ msgctxt ""
"Text Styles\n"
"itemlist.text"
msgid "Text Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες κειμένου"
#: app.src
msgctxt ""
@@ -141,7 +141,7 @@ msgctxt ""
"Chapter Styles\n"
"itemlist.text"
msgid "Chapter Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες κεφαλαίων"
#: app.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"List Styles\n"
"itemlist.text"
msgid "List Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες καταλόγου"
#: app.src
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"Index Styles\n"
"itemlist.text"
msgid "Index Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες ευρετηρίων"
#: app.src
msgctxt ""
@@ -168,7 +168,7 @@ msgctxt ""
"Special Styles\n"
"itemlist.text"
msgid "Special Styles"
-msgstr ""
+msgstr "Ειδικές τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -177,7 +177,7 @@ msgctxt ""
"HTML Styles\n"
"itemlist.text"
msgid "HTML Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες HTML"
#: app.src
msgctxt ""
@@ -186,7 +186,7 @@ msgctxt ""
"Conditional Styles\n"
"itemlist.text"
msgid "Conditional Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες υπό συνθήκη"
#: app.src
msgctxt ""
@@ -195,7 +195,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Όλες"
#: app.src
msgctxt ""
@@ -204,7 +204,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Κρυφές τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -213,7 +213,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Εφαρμοσμένες τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Προσαρμοσμένες τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -231,7 +231,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Όλες"
#: app.src
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Κρυφές τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -249,7 +249,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Εφαρμοσμένες τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -258,7 +258,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Προσαρμοσμένες τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -267,7 +267,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Όλες"
#: app.src
msgctxt ""
@@ -276,7 +276,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Κρυφές τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -285,7 +285,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Εφαρμοσμένες τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Προσαρμοσμένες τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -303,7 +303,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Όλες"
#: app.src
msgctxt ""
@@ -312,7 +312,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Κρυφές τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -321,7 +321,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Εφαρμοσμένες τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -330,7 +330,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Προσαρμοσμένες τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -339,7 +339,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Όλες"
#: app.src
msgctxt ""
@@ -348,7 +348,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Κρυφές τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -357,7 +357,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Εφαρμοσμένες τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Προσαρμοσμένες τεχνοτροπίες"
#: app.src
msgctxt ""
@@ -1148,7 +1148,7 @@ msgctxt ""
"STR_COMCORE_READERROR\n"
"string.text"
msgid "Read Error"
-msgstr ""
+msgstr "Σφάλμα ανάγνωσης"
#: error.src
msgctxt ""
diff --git a/source/el/sw/source/ui/dochdl.po b/source/el/sw/source/ui/dochdl.po
index 5bb2aecc164..1a3117d4c4a 100644
--- a/source/el/sw/source/ui/dochdl.po
+++ b/source/el/sw/source/ui/dochdl.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-08-25 12:34+0200\n"
-"PO-Revision-Date: 2016-07-04 20:26+0000\n"
+"PO-Revision-Date: 2015-12-15 21:22+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467664017.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1450214574.000000\n"
#: dochdl.src
msgctxt ""
@@ -87,3 +87,10 @@ msgctxt ""
"string.text"
msgid "DDE link"
msgstr "Σύνδεση DDE"
+
+msgctxt ""
+"dochdl.src\n"
+"STR_NO_TABLE\n"
+"string.text"
+msgid "A table cannot be inserted into another table. However, you can paste the data into the document when the cursor is not in a table."
+msgstr "Αδύνατη η εισαγωγή ενός πίνακα μέσα σε έναν άλλο πίνακα. Όμως, μπορείτε να επικολλήσετε τα δεδομένα σε ένα έγγραφο, όταν ο δρομέας δε βρίσκεται σε έναν πίνακα."
diff --git a/source/el/sw/source/ui/index.po b/source/el/sw/source/ui/index.po
index a881a7bd4ae..d5cc56ef5aa 100644
--- a/source/el/sw/source/ui/index.po
+++ b/source/el/sw/source/ui/index.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:27+0000\n"
+"PO-Revision-Date: 2016-12-13 15:23+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1467664052.000000\n"
+"X-POOTLE-MTIME: 1481642602.000000\n"
#: cnttab.src
msgctxt ""
@@ -231,7 +231,7 @@ msgctxt ""
"%PRODUCTNAME Math\n"
"itemlist.text"
msgid "%PRODUCTNAME Math"
-msgstr ""
+msgstr "%PRODUCTNAME Math"
#: cnttab.src
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"%PRODUCTNAME Chart\n"
"itemlist.text"
msgid "%PRODUCTNAME Chart"
-msgstr ""
+msgstr "%PRODUCTNAME Chart"
#: cnttab.src
msgctxt ""
@@ -249,7 +249,7 @@ msgctxt ""
"%PRODUCTNAME Calc\n"
"itemlist.text"
msgid "%PRODUCTNAME Calc"
-msgstr ""
+msgstr "%PRODUCTNAME Calc"
#: cnttab.src
msgctxt ""
@@ -258,7 +258,7 @@ msgctxt ""
"%PRODUCTNAME Draw/%PRODUCTNAME Impress\n"
"itemlist.text"
msgid "%PRODUCTNAME Draw/%PRODUCTNAME Impress"
-msgstr ""
+msgstr "%PRODUCTNAME Draw/%PRODUCTNAME Impress"
#: cnttab.src
msgctxt ""
@@ -267,7 +267,7 @@ msgctxt ""
"Other OLE Objects\n"
"itemlist.text"
msgid "Other OLE Objects"
-msgstr ""
+msgstr "Άλλα αντικείμενα OLE"
#: cnttab.src
msgctxt ""
diff --git a/source/el/sw/source/ui/misc.po b/source/el/sw/source/ui/misc.po
index d421ba46341..2f7cd7088e0 100644
--- a/source/el/sw/source/ui/misc.po
+++ b/source/el/sw/source/ui/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:27+0000\n"
+"PO-Revision-Date: 2016-12-13 15:25+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1467664072.000000\n"
+"X-POOTLE-MTIME: 1481642724.000000\n"
#: glossary.src
msgctxt ""
@@ -87,7 +87,7 @@ msgctxt ""
"None\n"
"itemlist.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: numberingtypelistbox.src
msgctxt ""
@@ -96,7 +96,7 @@ msgctxt ""
"Bullet\n"
"itemlist.text"
msgid "Bullet"
-msgstr ""
+msgstr "Κουκκίδα"
#: numberingtypelistbox.src
msgctxt ""
@@ -105,7 +105,7 @@ msgctxt ""
"Graphics\n"
"itemlist.text"
msgid "Graphics"
-msgstr ""
+msgstr "Γραφικά"
#: numberingtypelistbox.src
msgctxt ""
@@ -114,7 +114,7 @@ msgctxt ""
"1, 2, 3, ...\n"
"itemlist.text"
msgid "1, 2, 3, ..."
-msgstr ""
+msgstr "1, 2, 3, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -123,7 +123,7 @@ msgctxt ""
"A, B, C, ...\n"
"itemlist.text"
msgid "A, B, C, ..."
-msgstr ""
+msgstr "A, B, C, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -132,7 +132,7 @@ msgctxt ""
"a, b, c, ...\n"
"itemlist.text"
msgid "a, b, c, ..."
-msgstr ""
+msgstr "a, b, c, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -141,7 +141,7 @@ msgctxt ""
"I, II, III, ...\n"
"itemlist.text"
msgid "I, II, III, ..."
-msgstr ""
+msgstr "I, II, III, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"i, ii, iii, ...\n"
"itemlist.text"
msgid "i, ii, iii, ..."
-msgstr ""
+msgstr "i, ii, iii, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"A, .., AA, .., AAA, ...\n"
"itemlist.text"
msgid "A, .., AA, .., AAA, ..."
-msgstr ""
+msgstr "A, .., AA, .., AAA, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -168,7 +168,7 @@ msgctxt ""
"a, .., aa, .., aaa, ...\n"
"itemlist.text"
msgid "a, .., aa, .., aaa, ..."
-msgstr ""
+msgstr "a, .., aa, .., aaa, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -177,7 +177,7 @@ msgctxt ""
"Native Numbering\n"
"itemlist.text"
msgid "Native Numbering"
-msgstr ""
+msgstr "Τοπική αρίθμηση"
#: numberingtypelistbox.src
msgctxt ""
@@ -186,7 +186,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Bulgarian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (Βουλγαρικά)"
#: numberingtypelistbox.src
msgctxt ""
@@ -195,7 +195,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Bulgarian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Bulgarian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (βουλγαρικά)"
#: numberingtypelistbox.src
msgctxt ""
@@ -204,7 +204,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Bulgarian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Бб, ... (βουλγαρικά)"
#: numberingtypelistbox.src
msgctxt ""
@@ -213,7 +213,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Bulgarian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Bulgarian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (Βουλγαρικά)"
#: numberingtypelistbox.src
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Russian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Russian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (Ρωσικά)"
#: numberingtypelistbox.src
msgctxt ""
@@ -231,7 +231,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Russian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Russian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (Ρώσικα)"
#: numberingtypelistbox.src
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Russian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Russian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Бб, ... (Ρώσικα)"
#: numberingtypelistbox.src
msgctxt ""
@@ -249,7 +249,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Russian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Russian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (Ρώσικα)"
#: numberingtypelistbox.src
msgctxt ""
@@ -258,7 +258,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Serbian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (Σερβικά)"
#: numberingtypelistbox.src
msgctxt ""
@@ -267,7 +267,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Serbian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Serbian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (Σερβικά)"
#: numberingtypelistbox.src
msgctxt ""
@@ -276,7 +276,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Serbian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (Σερβικά)"
#: numberingtypelistbox.src
msgctxt ""
@@ -285,7 +285,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Serbian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Serbian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (Σερβικά)"
#: numberingtypelistbox.src
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"Α, Β, Γ, ... (Greek Upper Letter)\n"
"itemlist.text"
msgid "Α, Β, Γ, ... (Greek Upper Letter)"
-msgstr ""
+msgstr "Α, Β, Γ, ... (ελληνικά κεφαλαία γράμματα)"
#: numberingtypelistbox.src
msgctxt ""
@@ -303,7 +303,7 @@ msgctxt ""
"α, β, γ, ... (Greek Lower Letter)\n"
"itemlist.text"
msgid "α, β, γ, ... (Greek Lower Letter)"
-msgstr ""
+msgstr "α, β, γ, ... (Ελληνικά πεζά)"
#: swruler.src
msgctxt ""
diff --git a/source/el/sw/source/ui/sidebar.po b/source/el/sw/source/ui/sidebar.po
index dfb8bde22d0..1a414f28d63 100644
--- a/source/el/sw/source/ui/sidebar.po
+++ b/source/el/sw/source/ui/sidebar.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-01-10 04:45+0000\n"
+"PO-Revision-Date: 2016-12-13 15:25+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1420865106.000000\n"
+"X-POOTLE-MTIME: 1481642756.000000\n"
#: PagePropertyPanel.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_LEFT\n"
"string.text"
msgid "Left: "
-msgstr ""
+msgstr "Αριστερά: "
#: PagePropertyPanel.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_RIGHT\n"
"string.text"
msgid ". Right: "
-msgstr ""
+msgstr ". Δεξιά: "
#: PagePropertyPanel.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_INNER\n"
"string.text"
msgid "Inner: "
-msgstr ""
+msgstr "Εσωτερικά: "
#: PagePropertyPanel.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_OUTER\n"
"string.text"
msgid ". Outer: "
-msgstr ""
+msgstr ". Εξωτερικά: "
#: PagePropertyPanel.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_TOP\n"
"string.text"
msgid ". Top: "
-msgstr ""
+msgstr ". Επάνω: "
#: PagePropertyPanel.src
msgctxt ""
@@ -62,4 +62,4 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_BOT\n"
"string.text"
msgid ". Bottom: "
-msgstr ""
+msgstr ". Κάτω: "
diff --git a/source/el/sw/source/ui/utlui.po b/source/el/sw/source/ui/utlui.po
index b1946916b29..7892030488e 100644
--- a/source/el/sw/source/ui/utlui.po
+++ b/source/el/sw/source/ui/utlui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:28+0000\n"
+"PO-Revision-Date: 2016-12-13 15:26+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467664102.000000\n"
+"X-POOTLE-MTIME: 1481642819.000000\n"
#: poolfmt.src
msgctxt ""
@@ -1480,7 +1480,7 @@ msgctxt ""
"STR_TABSTYLE_3D\n"
"string.text"
msgid "3D"
-msgstr ""
+msgstr "3Δ"
#: poolfmt.src
msgctxt ""
@@ -1488,7 +1488,7 @@ msgctxt ""
"STR_TABSTYLE_BLACK1\n"
"string.text"
msgid "Black 1"
-msgstr ""
+msgstr "Μαύρο 1"
#: poolfmt.src
msgctxt ""
@@ -1496,7 +1496,7 @@ msgctxt ""
"STR_TABSTYLE_BLACK2\n"
"string.text"
msgid "Black 2"
-msgstr ""
+msgstr "Μαύρο 2"
#: poolfmt.src
msgctxt ""
@@ -1504,7 +1504,7 @@ msgctxt ""
"STR_TABSTYLE_BLUE\n"
"string.text"
msgid "Blue"
-msgstr ""
+msgstr "Γαλάζιο"
#: poolfmt.src
msgctxt ""
@@ -1512,7 +1512,7 @@ msgctxt ""
"STR_TABSTYLE_BROWN\n"
"string.text"
msgid "Brown"
-msgstr ""
+msgstr "Καφέ"
#: poolfmt.src
msgctxt ""
@@ -1520,7 +1520,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY\n"
"string.text"
msgid "Currency"
-msgstr ""
+msgstr "Νόμισμα"
#: poolfmt.src
msgctxt ""
@@ -1528,7 +1528,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_3D\n"
"string.text"
msgid "Currency 3D"
-msgstr ""
+msgstr "Νόμισμα 3Δ"
#: poolfmt.src
msgctxt ""
@@ -1536,7 +1536,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_GRAY\n"
"string.text"
msgid "Currency Gray"
-msgstr ""
+msgstr "Νόμισμα γκρίζο"
#: poolfmt.src
msgctxt ""
@@ -1544,7 +1544,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_LAVENDER\n"
"string.text"
msgid "Currency Lavender"
-msgstr ""
+msgstr "Νόμισμα λεβάντα"
#: poolfmt.src
msgctxt ""
@@ -1552,7 +1552,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_TURQUOISE\n"
"string.text"
msgid "Currency Turquoise"
-msgstr ""
+msgstr "Νόμισμα τιρκουάζ"
#: poolfmt.src
msgctxt ""
@@ -1560,7 +1560,7 @@ msgctxt ""
"STR_TABSTYLE_GRAY\n"
"string.text"
msgid "Gray"
-msgstr ""
+msgstr "Γκρίζο"
#: poolfmt.src
msgctxt ""
@@ -1568,7 +1568,7 @@ msgctxt ""
"STR_TABSTYLE_GREEN\n"
"string.text"
msgid "Green"
-msgstr ""
+msgstr "Πράσινο"
#: poolfmt.src
msgctxt ""
@@ -1576,7 +1576,7 @@ msgctxt ""
"STR_TABSTYLE_LAVENDER\n"
"string.text"
msgid "Lavender"
-msgstr ""
+msgstr "Λεβάντα"
#: poolfmt.src
msgctxt ""
@@ -1584,7 +1584,7 @@ msgctxt ""
"STR_TABSTYLE_RED\n"
"string.text"
msgid "Red"
-msgstr ""
+msgstr "Κόκκινο"
#: poolfmt.src
msgctxt ""
@@ -1592,7 +1592,7 @@ msgctxt ""
"STR_TABSTYLE_TURQUOISE\n"
"string.text"
msgid "Turquoise"
-msgstr ""
+msgstr "Τιρκουάζ"
#: poolfmt.src
msgctxt ""
@@ -1600,7 +1600,7 @@ msgctxt ""
"STR_TABSTYLE_YELLOW\n"
"string.text"
msgid "Yellow"
-msgstr ""
+msgstr "Κίτρινο"
#: utlui.src
msgctxt ""
diff --git a/source/el/sw/source/uibase/ribbar.po b/source/el/sw/source/uibase/ribbar.po
index 2eb414973b3..c78b7bd5a20 100644
--- a/source/el/sw/source/uibase/ribbar.po
+++ b/source/el/sw/source/uibase/ribbar.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:28+0000\n"
+"PO-Revision-Date: 2016-12-13 15:27+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1467664122.000000\n"
+"X-POOTLE-MTIME: 1481642832.000000\n"
#: inputwin.src
msgctxt ""
@@ -274,7 +274,7 @@ msgctxt ""
"STR_FORMULA_CALC\n"
"string.text"
msgid "Functions"
-msgstr ""
+msgstr "Συναρτήσεις"
#: inputwin.src
msgctxt ""
@@ -282,7 +282,7 @@ msgctxt ""
"STR_FORMULA_CANCEL\n"
"string.text"
msgid "Cancel"
-msgstr ""
+msgstr "Ακύρωση"
#: inputwin.src
msgctxt ""
@@ -290,7 +290,7 @@ msgctxt ""
"STR_FORMULA_APPLY\n"
"string.text"
msgid "Apply"
-msgstr ""
+msgstr "Εφαρμογή"
#: inputwin.src
msgctxt ""
diff --git a/source/el/sw/source/uibase/utlui.po b/source/el/sw/source/uibase/utlui.po
index 38ea2c97586..e00e066ad8a 100644
--- a/source/el/sw/source/uibase/utlui.po
+++ b/source/el/sw/source/uibase/utlui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:28+0000\n"
+"PO-Revision-Date: 2016-12-13 15:27+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1467664136.000000\n"
+"X-POOTLE-MTIME: 1481642853.000000\n"
#: attrdesc.src
msgctxt ""
@@ -1816,7 +1816,7 @@ msgctxt ""
"~Zoom\n"
"itemlist.text"
msgid "~Zoom"
-msgstr ""
+msgstr "~Εστίαση"
#: unotools.src
msgctxt ""
@@ -1825,7 +1825,7 @@ msgctxt ""
"~Upwards\n"
"itemlist.text"
msgid "~Upwards"
-msgstr ""
+msgstr "Πρ~ος τα πάνω"
#: unotools.src
msgctxt ""
@@ -1834,4 +1834,4 @@ msgctxt ""
"Do~wnwards\n"
"itemlist.text"
msgid "Do~wnwards"
-msgstr ""
+msgstr "Προς τα ~κάτω"
diff --git a/source/el/sw/uiconfig/swriter/ui.po b/source/el/sw/uiconfig/swriter/ui.po
index db3032b6b6a..997e463ff0f 100644
--- a/source/el/sw/uiconfig/swriter/ui.po
+++ b/source/el/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 20:31+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-14 11:43+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467664314.000000\n"
+"X-POOTLE-MTIME: 1481715811.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -951,7 +951,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Numbering"
-msgstr ""
+msgstr "Αρίθμηση"
#: bulletsandnumbering.ui
msgctxt ""
@@ -1392,7 +1392,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Εισαγωγή"
#: cardmediumpage.ui
msgctxt ""
@@ -1545,7 +1545,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Σύνδεσμος"
#: characterproperties.ui
msgctxt ""
@@ -1626,7 +1626,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Σύνδεσμος"
#: charurlpage.ui
msgctxt ""
@@ -3156,7 +3156,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Εισαγωγή"
#: envaddresspage.ui
msgctxt ""
@@ -5176,7 +5176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Σύνδεσμος"
#: framedialog.ui
msgctxt ""
@@ -5437,7 +5437,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Left-to-right (vertical)"
-msgstr ""
+msgstr "Από αριστερά προς τα δεξιά (κάθετα)"
#: frmaddpage.ui
msgctxt ""
@@ -5446,7 +5446,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Use superordinate object settings"
-msgstr ""
+msgstr "Χρήση ρυθμίσεων ανωτέρου αντικειμένου"
#: frmtypepage.ui
msgctxt ""
@@ -5761,7 +5761,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Go to Page"
-msgstr ""
+msgstr "Μετάβαση στη σελίδα"
#: gotopagedialog.ui
msgctxt ""
@@ -5770,7 +5770,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "of $1"
-msgstr ""
+msgstr "από $1"
#: gotopagedialog.ui
msgctxt ""
@@ -5779,7 +5779,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page:"
-msgstr ""
+msgstr "Σελίδα:"
#: indentpage.ui
msgctxt ""
@@ -5959,7 +5959,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Update entry from selection"
-msgstr ""
+msgstr "Ενημέρωση καταχώρισης από την επιλογή"
#: indexentry.ui
msgctxt ""
@@ -6157,7 +6157,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Change page number"
-msgstr ""
+msgstr "Αλλαγή αριθμού σελίδας"
#: insertbreak.ui
msgctxt ""
@@ -8776,7 +8776,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Toggle Master View"
-msgstr ""
+msgstr "Εναλλαγή κύριας προβολής"
#: navigatorpanel.ui
msgctxt ""
@@ -8785,7 +8785,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Navigation"
-msgstr ""
+msgstr "Περιήγηση"
#: navigatorpanel.ui
msgctxt ""
@@ -8794,7 +8794,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Back"
-msgstr ""
+msgstr "Πίσω"
#: navigatorpanel.ui
msgctxt ""
@@ -8803,7 +8803,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Forward"
-msgstr ""
+msgstr "Εμπρός"
#: navigatorpanel.ui
msgctxt ""
@@ -8812,7 +8812,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Drag Mode"
-msgstr ""
+msgstr "Κατάσταση μετακίνησης"
#: navigatorpanel.ui
msgctxt ""
@@ -8821,7 +8821,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Promote Chapter"
-msgstr ""
+msgstr "Προβιβασμός κεφαλαίου"
#: navigatorpanel.ui
msgctxt ""
@@ -8830,7 +8830,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Demote Chapter"
-msgstr ""
+msgstr "Υποβιβασμός κεφαλαίου"
#: navigatorpanel.ui
msgctxt ""
@@ -8839,7 +8839,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "List Box On/Off"
-msgstr ""
+msgstr "Πλαίσιο καταλόγου ενεργό/ανενεργό"
#: navigatorpanel.ui
msgctxt ""
@@ -8848,7 +8848,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Content Navigation View"
-msgstr ""
+msgstr "Προβολή περιήγησης περιεχομένου"
#: navigatorpanel.ui
msgctxt ""
@@ -8857,7 +8857,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Set Reminder"
-msgstr ""
+msgstr "Ορισμός υπενθύμισης"
#: navigatorpanel.ui
msgctxt ""
@@ -8866,7 +8866,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Header"
-msgstr ""
+msgstr "Κεφαλίδα"
#: navigatorpanel.ui
msgctxt ""
@@ -8875,7 +8875,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Footer"
-msgstr ""
+msgstr "Υποσέλιδο"
#: navigatorpanel.ui
msgctxt ""
@@ -8884,7 +8884,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Anchor<->Text"
-msgstr ""
+msgstr "Αγκύρωση<->Κείμενο"
#: navigatorpanel.ui
msgctxt ""
@@ -8893,7 +8893,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Heading Levels Shown"
-msgstr ""
+msgstr "Εμφανιζόμενα επίπεδα επικεφαλίδων"
#: navigatorpanel.ui
msgctxt ""
@@ -8902,7 +8902,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Promote Level"
-msgstr ""
+msgstr "Προβιβασμός επιπέδου"
#: navigatorpanel.ui
msgctxt ""
@@ -8911,7 +8911,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Demote Level"
-msgstr ""
+msgstr "Υποβιβασμός επιπέδου"
#: navigatorpanel.ui
msgctxt ""
@@ -8920,7 +8920,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Document"
-msgstr ""
+msgstr "Έγγραφο"
#: navigatorpanel.ui
msgctxt ""
@@ -8929,7 +8929,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Active Window"
-msgstr ""
+msgstr "Ενεργό παράθυρο"
#: navigatorpanel.ui
msgctxt ""
@@ -8938,7 +8938,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Toggle Master View"
-msgstr ""
+msgstr "Εναλλαγή κύριας προβολής"
#: navigatorpanel.ui
msgctxt ""
@@ -8947,7 +8947,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Edit"
-msgstr ""
+msgstr "Επεξεργασία"
#: navigatorpanel.ui
msgctxt ""
@@ -8956,7 +8956,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Update"
-msgstr ""
+msgstr "Ενημέρωση"
#: navigatorpanel.ui
msgctxt ""
@@ -8965,7 +8965,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Εισαγωγή"
#: navigatorpanel.ui
msgctxt ""
@@ -8974,7 +8974,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Save Contents as well"
-msgstr ""
+msgstr "Αποθήκευση και των περιεχομένων"
#: navigatorpanel.ui
msgctxt ""
@@ -8983,7 +8983,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Up"
-msgstr ""
+msgstr "Μετακίνηση προς τα πάνω"
#: navigatorpanel.ui
msgctxt ""
@@ -8992,7 +8992,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Down"
-msgstr ""
+msgstr "Μετακίνηση προς τα κάτω"
#: newuserindexdialog.ui
msgctxt ""
@@ -9028,7 +9028,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Αρχείο"
#: notebookbar.ui
msgctxt ""
@@ -9037,7 +9037,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Font"
-msgstr ""
+msgstr "Γραμματοσειρά"
#: notebookbar.ui
msgctxt ""
@@ -9046,7 +9046,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Font"
-msgstr ""
+msgstr "Γραμματοσειρά"
#: notebookbar.ui
msgctxt ""
@@ -9055,7 +9055,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Outline"
-msgstr ""
+msgstr "Περίγραμμα"
#: notebookbar.ui
msgctxt ""
@@ -9073,7 +9073,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Horizontal Alignment"
-msgstr ""
+msgstr "Οριζόντια στοίχιση"
#: notebookbar.ui
msgctxt ""
@@ -9082,7 +9082,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Alignment"
-msgstr ""
+msgstr "Στοίχιση"
#: notebookbar.ui
msgctxt ""
@@ -9091,7 +9091,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Vertical Alignment"
-msgstr ""
+msgstr "Κατακόρυφη στοίχιση"
#: notebookbar.ui
msgctxt ""
@@ -9109,7 +9109,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Spacing"
-msgstr ""
+msgstr "Διάκενο"
#: notebookbar.ui
msgctxt ""
@@ -9127,7 +9127,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Increase Indent"
-msgstr ""
+msgstr "Αύξηση εσοχής"
#: notebookbar.ui
msgctxt ""
@@ -9136,7 +9136,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "Μείωση εσοχής"
#: notebookbar.ui
msgctxt ""
@@ -9154,7 +9154,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Τεχνοτροπία"
#: notebookbar.ui
msgctxt ""
@@ -9163,7 +9163,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Find"
-msgstr ""
+msgstr "Αναζήτηση"
#: notebookbar.ui
msgctxt ""
@@ -9172,7 +9172,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Find"
-msgstr ""
+msgstr "Αναζήτηση"
#: notebookbar.ui
msgctxt ""
@@ -9181,7 +9181,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Home"
-msgstr ""
+msgstr "Αρχή"
#: notebookbar.ui
msgctxt ""
@@ -9190,7 +9190,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Break"
-msgstr ""
+msgstr "Διακοπή"
#: notebookbar.ui
msgctxt ""
@@ -9199,7 +9199,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Gallery"
-msgstr ""
+msgstr "Συλλογή"
#: notebookbar.ui
msgctxt ""
@@ -9208,7 +9208,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Open Clip Art and Media Gallery"
-msgstr ""
+msgstr "Άνοιγμα συλλογών Clip Art και πολυμέσων"
#: notebookbar.ui
msgctxt ""
@@ -9217,7 +9217,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Symbol"
-msgstr ""
+msgstr "Σύμβολο"
#: notebookbar.ui
msgctxt ""
@@ -9226,7 +9226,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Basic"
-msgstr ""
+msgstr "Βασική"
#: notebookbar.ui
msgctxt ""
@@ -9235,7 +9235,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert Audio or Video"
-msgstr ""
+msgstr "Εισαγωγή ήχου ή βίντεο"
#: notebookbar.ui
msgctxt ""
@@ -9244,7 +9244,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Shapes"
-msgstr ""
+msgstr "Σχήματα"
#: notebookbar.ui
msgctxt ""
@@ -9253,7 +9253,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Links"
-msgstr ""
+msgstr "Σύνδεσμοι"
#: notebookbar.ui
msgctxt ""
@@ -9262,7 +9262,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Κείμενο"
#: notebookbar.ui
msgctxt ""
@@ -9271,7 +9271,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Fields"
-msgstr ""
+msgstr "Πεδία"
#: notebookbar.ui
msgctxt ""
@@ -9280,7 +9280,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Εισαγωγή"
#: notebookbar.ui
msgctxt ""
@@ -9289,7 +9289,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Εσοχή"
#: notebookbar.ui
msgctxt ""
@@ -9298,7 +9298,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Εσοχή"
#: notebookbar.ui
msgctxt ""
@@ -9307,7 +9307,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Setup"
-msgstr ""
+msgstr "Ρύθμιση"
#: notebookbar.ui
msgctxt ""
@@ -9316,7 +9316,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page layout"
-msgstr ""
+msgstr "Διάταξη σελίδας"
#: notebookbar.ui
msgctxt ""
@@ -9325,7 +9325,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "References"
-msgstr ""
+msgstr "Παραπομπές"
#: notebookbar.ui
msgctxt ""
@@ -9334,7 +9334,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Review"
-msgstr ""
+msgstr "Επιθεώρηση"
#: notebookbar.ui
msgctxt ""
@@ -9343,7 +9343,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Page View"
-msgstr ""
+msgstr "Προβολή σελίδας"
#: notebookbar.ui
msgctxt ""
@@ -9352,7 +9352,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Document Area Elements"
-msgstr ""
+msgstr "Στοιχεία περιοχής εγγράφου"
#: notebookbar.ui
msgctxt ""
@@ -9361,7 +9361,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Zoom"
-msgstr ""
+msgstr "Εστίαση"
#: notebookbar.ui
msgctxt ""
@@ -9370,7 +9370,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "View"
-msgstr ""
+msgstr "Προβολή"
#: notebookbar.ui
msgctxt ""
@@ -9397,7 +9397,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Πίνακας"
#: notebookbar.ui
msgctxt ""
@@ -9406,7 +9406,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Basics"
-msgstr ""
+msgstr "Βασικά"
#: notebookbar.ui
msgctxt ""
@@ -9415,7 +9415,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties"
-msgstr ""
+msgstr "Ιδιότητες"
#: notebookbar.ui
msgctxt ""
@@ -9424,7 +9424,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Basics"
-msgstr ""
+msgstr "Βασικά"
#: notebookbar.ui
msgctxt ""
@@ -9433,7 +9433,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Crop"
-msgstr ""
+msgstr "Περικοπή"
#: notebookbar.ui
msgctxt ""
@@ -9442,7 +9442,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Εικόνα"
#: notebookbar_groups.ui
msgctxt ""
@@ -9451,7 +9451,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Προεπιλογή"
#: notebookbar_groups.ui
msgctxt ""
@@ -9460,7 +9460,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Grayscale"
-msgstr ""
+msgstr "Κλίμακα του γκρίζου"
#: notebookbar_groups.ui
msgctxt ""
@@ -9469,7 +9469,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Black and White"
-msgstr ""
+msgstr "Μαύρο και λευκό"
#: notebookbar_groups.ui
msgctxt ""
@@ -9478,7 +9478,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Watermark"
-msgstr ""
+msgstr "Υδατογράφημα"
#: notebookbar_groups.ui
msgctxt ""
@@ -9487,7 +9487,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Brightness & Contrast"
-msgstr ""
+msgstr "-20% φωτεινότητα & αντίθεση"
#: notebookbar_groups.ui
msgctxt ""
@@ -9496,7 +9496,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Brightness"
-msgstr ""
+msgstr "-20% φωτεινότητα"
#: notebookbar_groups.ui
msgctxt ""
@@ -9505,7 +9505,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Contrast"
-msgstr ""
+msgstr "-20% αντίθεση"
#: notebookbar_groups.ui
msgctxt ""
@@ -9514,7 +9514,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "0% Brightness & Contrast"
-msgstr ""
+msgstr "0% φωτεινότητα & αντίθεση"
#: notebookbar_groups.ui
msgctxt ""
@@ -9523,7 +9523,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Brightness"
-msgstr ""
+msgstr "+20% φωτεινότητα"
#: notebookbar_groups.ui
msgctxt ""
@@ -9532,7 +9532,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Contrast"
-msgstr ""
+msgstr "+20% αντίθεση"
#: notebookbar_groups.ui
msgctxt ""
@@ -9541,7 +9541,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Brightness & Contrast"
-msgstr ""
+msgstr "+20% φωτεινότητα & αντίθεση"
#: notebookbar_groups.ui
msgctxt ""
@@ -9550,7 +9550,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Red"
-msgstr ""
+msgstr "Κόκκινος χρωματισμός"
#: notebookbar_groups.ui
msgctxt ""
@@ -9559,7 +9559,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Blue"
-msgstr ""
+msgstr "Γαλάζιος χρωματισμός"
#: notebookbar_groups.ui
msgctxt ""
@@ -9568,7 +9568,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Green"
-msgstr ""
+msgstr "Πράσινος χρωματισμός"
#: notebookbar_groups.ui
msgctxt ""
@@ -9577,7 +9577,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Orange"
-msgstr ""
+msgstr "Πορτοκαλής χρωματισμός"
#: notebookbar_groups.ui
msgctxt ""
@@ -9586,7 +9586,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hyperlink"
-msgstr ""
+msgstr "Υπερσύνδεσμος"
#: notebookbar_groups.ui
msgctxt ""
@@ -9595,7 +9595,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Footnote"
-msgstr ""
+msgstr "Υποσημείωση"
#: notebookbar_groups.ui
msgctxt ""
@@ -9604,7 +9604,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Endnote"
-msgstr ""
+msgstr "Σημείωση τέλους"
#: notebookbar_groups.ui
msgctxt ""
@@ -9613,7 +9613,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bookmark"
-msgstr ""
+msgstr "Σελιδοδείκτης"
#: notebookbar_groups.ui
msgctxt ""
@@ -9622,7 +9622,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cross-Reference"
-msgstr ""
+msgstr "Παραπομπή"
#: notebookbar_groups.ui
msgctxt ""
@@ -9631,7 +9631,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default Paragraph"
-msgstr ""
+msgstr "Προεπιλεγμένη παράγραφος"
#: notebookbar_groups.ui
msgctxt ""
@@ -9640,7 +9640,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title"
-msgstr ""
+msgstr "Τίτλος"
#: notebookbar_groups.ui
msgctxt ""
@@ -9649,7 +9649,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Subtitle"
-msgstr ""
+msgstr "Υπότιτλος"
#: notebookbar_groups.ui
msgctxt ""
@@ -9658,7 +9658,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default Character"
-msgstr ""
+msgstr "Προεπιλεγμένος χαρακτήρας"
#: notebookbar_groups.ui
msgctxt ""
@@ -9667,7 +9667,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Emphasis"
-msgstr ""
+msgstr "Έμφαση"
#: notebookbar_groups.ui
msgctxt ""
@@ -9676,7 +9676,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Strong Emphasis"
-msgstr ""
+msgstr "Έντονη έμφαση"
#: notebookbar_groups.ui
msgctxt ""
@@ -9685,7 +9685,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: notebookbar_groups.ui
msgctxt ""
@@ -9694,7 +9694,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Προεπιλογή"
#: notebookbar_groups.ui
msgctxt ""
@@ -9703,7 +9703,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 1"
-msgstr ""
+msgstr "Τεχνοτροπία 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -9712,7 +9712,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 2"
-msgstr ""
+msgstr "Τεχνοτροπία 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -9721,7 +9721,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 3"
-msgstr ""
+msgstr "Τεχνοτροπία 3"
#: notebookbar_groups.ui
msgctxt ""
@@ -9730,7 +9730,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 4"
-msgstr ""
+msgstr "Τεχνοτροπία 4"
#: notebookbar_groups.ui
msgctxt ""
@@ -9739,7 +9739,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows Above"
-msgstr ""
+msgstr "Εισαγωγή γραμμών από πάνω"
#: notebookbar_groups.ui
msgctxt ""
@@ -9748,7 +9748,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows Below"
-msgstr ""
+msgstr "Εισαγωγή γραμμών από κάτω"
#: notebookbar_groups.ui
msgctxt ""
@@ -9757,7 +9757,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Rows"
-msgstr ""
+msgstr "Διαγραφή γραμμών"
#: notebookbar_groups.ui
msgctxt ""
@@ -9766,7 +9766,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select Rows"
-msgstr ""
+msgstr "Επιλογή γραμμών"
#: notebookbar_groups.ui
msgctxt ""
@@ -9775,7 +9775,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Row Height..."
-msgstr ""
+msgstr "Ύψος γραμμής..."
#: notebookbar_groups.ui
msgctxt ""
@@ -9784,7 +9784,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal Row Height"
-msgstr ""
+msgstr "Βέλτιστο ύψος γραμμής"
#: notebookbar_groups.ui
msgctxt ""
@@ -9793,7 +9793,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Distribute Rows Evenly"
-msgstr ""
+msgstr "Ίση κατανομή γραμμών"
#: notebookbar_groups.ui
msgctxt ""
@@ -9802,7 +9802,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Αρχείο"
#: notebookbar_groups.ui
msgctxt ""
@@ -9811,7 +9811,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clipboard"
-msgstr ""
+msgstr "Πρόχειρο"
#: notebookbar_groups.ui
msgctxt ""
@@ -9820,27 +9820,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
+msgstr "Τεχνοτροπία"
#: notebookbar_groups.ui
msgctxt ""
@@ -9849,7 +9829,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Κείμενο"
#: notebookbar_groups.ui
msgctxt ""
@@ -9858,7 +9838,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Links"
-msgstr ""
+msgstr "Σύνδεσμοι"
#: notebookbar_groups.ui
msgctxt ""
@@ -9867,7 +9847,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shapes"
-msgstr ""
+msgstr "Σχήματα"
#: notebookbar_groups.ui
msgctxt ""
@@ -9876,7 +9856,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Εισαγωγή"
#: notebookbar_groups.ui
msgctxt ""
@@ -9885,7 +9865,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Τεχνοτροπία"
#: notebookbar_groups.ui
msgctxt ""
@@ -9894,7 +9874,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rows"
-msgstr ""
+msgstr "Γραμμές"
#: notebookbar_groups.ui
msgctxt ""
@@ -9903,7 +9883,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Columns"
-msgstr ""
+msgstr "Στήλες"
#: notebookbar_groups.ui
msgctxt ""
@@ -9912,7 +9892,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Πίνακας"
#: notebookbar_groups.ui
msgctxt ""
@@ -9921,7 +9901,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Τεχνοτροπία"
#: notebookbar_groups.ui
msgctxt ""
@@ -9930,7 +9910,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset"
-msgstr ""
+msgstr "Επαναφορά"
#: notebookbar_groups.ui
msgctxt ""
@@ -9939,7 +9919,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wrap"
-msgstr ""
+msgstr "Αναδίπλωση"
#: notebookbar_groups.ui
msgctxt ""
@@ -9948,7 +9928,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Lock"
-msgstr ""
+msgstr "Κλείδωμα"
#: notebookbar_groups.ui
msgctxt ""
@@ -9957,7 +9937,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Εικόνα"
#: notebookbar_groups.ui
msgctxt ""
@@ -9966,7 +9946,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: notebookbar_groups.ui
msgctxt ""
@@ -9975,7 +9955,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal"
-msgstr ""
+msgstr "Βέλτιστο"
#: notebookbar_groups.ui
msgctxt ""
@@ -9984,7 +9964,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Παράλληλο"
#: notebookbar_groups.ui
msgctxt ""
@@ -9993,7 +9973,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Before"
-msgstr ""
+msgstr "Πριν από"
#: notebookbar_groups.ui
msgctxt ""
@@ -10002,7 +9982,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "After"
-msgstr ""
+msgstr "Μετά από"
#: notebookbar_groups.ui
msgctxt ""
@@ -10011,7 +9991,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Through"
-msgstr ""
+msgstr "Μέσα από"
#: notebookbar_groups.ui
msgctxt ""
@@ -10020,7 +10000,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Contour"
-msgstr ""
+msgstr "Περίγραμμα"
#: notebookbar_groups.ui
msgctxt ""
@@ -10029,7 +10009,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Contour"
-msgstr ""
+msgstr "Επεξεργασία περιγράμματος"
#: notebookbar_single.ui
msgctxt ""
@@ -10038,7 +10018,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Horizontal Alignment"
-msgstr ""
+msgstr "Οριζόντια στοίχιση"
#: notebookbar_single.ui
msgctxt ""
@@ -10047,7 +10027,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Εσοχή"
#: notebookbar_single.ui
msgctxt ""
@@ -10056,7 +10036,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Εσοχή"
#: numberingnamedialog.ui
msgctxt ""
@@ -10407,7 +10387,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Σύνδεσμος"
#: objectdialog.ui
msgctxt ""
@@ -11365,7 +11345,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Insertions"
-msgstr ""
+msgstr "Χρώμα των εισαγωγών"
#: optredlinepage.ui
msgctxt ""
@@ -11410,7 +11390,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Deletions"
-msgstr ""
+msgstr "Χρώμα των διαγραφών"
#: optredlinepage.ui
msgctxt ""
@@ -11455,7 +11435,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Changed Attributes"
-msgstr ""
+msgstr "Χρώμα των αλλαγμένων γνωρισμάτων"
#: optredlinepage.ui
msgctxt ""
@@ -11482,7 +11462,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Mark"
-msgstr ""
+msgstr "Χρώμα της επισήμανσης"
#: optredlinepage.ui
msgctxt ""
@@ -12071,7 +12051,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tab stop at:"
-msgstr ""
+msgstr "Όριο στηλοθέτη σε:"
#: outlinepositionpage.ui
msgctxt ""
@@ -12161,7 +12141,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "1 Column"
-msgstr ""
+msgstr "1 στήλη"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12170,7 +12150,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "2 Columns"
-msgstr ""
+msgstr "2 στήλες"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12179,7 +12159,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "3 Columns"
-msgstr ""
+msgstr "3 στήλες"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12188,7 +12168,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Left"
-msgstr ""
+msgstr "Αριστερά"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12197,7 +12177,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Right"
-msgstr ""
+msgstr "Δεξιά"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12206,7 +12186,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "1 Column"
-msgstr ""
+msgstr "1 στήλη"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12215,7 +12195,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "2 Columns"
-msgstr ""
+msgstr "2 στήλες"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12224,7 +12204,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "3 Columns"
-msgstr ""
+msgstr "3 στήλες"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12233,7 +12213,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Left"
-msgstr ""
+msgstr "Αριστερά"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12242,7 +12222,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Right"
-msgstr ""
+msgstr "Δεξιά"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12251,7 +12231,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_More Options"
-msgstr ""
+msgstr "Π_ερισσότερες επιλογές"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12260,7 +12240,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "More Options"
-msgstr ""
+msgstr "Περισσότερες επιλογές"
#: pagefooterpanel.ui
msgctxt ""
@@ -12269,7 +12249,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Margins:"
-msgstr ""
+msgstr "Περιθώρια:"
#: pagefooterpanel.ui
msgctxt ""
@@ -12278,7 +12258,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom"
-msgstr ""
+msgstr "Προσαρμοσμένο"
#: pagefooterpanel.ui
msgctxt ""
@@ -12287,7 +12267,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spacing:"
-msgstr ""
+msgstr "Διάστιχο:"
#: pagefooterpanel.ui
msgctxt ""
@@ -12296,7 +12276,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Same Content:"
-msgstr ""
+msgstr "Ίδιο περιεχόμενο:"
#: pageformatpanel.ui
msgctxt ""
@@ -12305,7 +12285,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Size:"
-msgstr ""
+msgstr "Μέγεθος:"
#: pageformatpanel.ui
msgctxt ""
@@ -12314,7 +12294,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Width:"
-msgstr ""
+msgstr "Πλάτος:"
#: pageformatpanel.ui
msgctxt ""
@@ -12323,7 +12303,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Height:"
-msgstr ""
+msgstr "Ύψος:"
#: pageformatpanel.ui
msgctxt ""
@@ -12332,7 +12312,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Orientation:"
-msgstr ""
+msgstr "Προσανατολισμός:"
#: pageformatpanel.ui
msgctxt ""
@@ -12341,7 +12321,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Paper Width"
-msgstr ""
+msgstr "Πλάτος χαρτιού"
#: pageformatpanel.ui
msgctxt ""
@@ -12350,7 +12330,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Paper Height"
-msgstr ""
+msgstr "Ύψος χαρτιού"
#: pageformatpanel.ui
msgctxt ""
@@ -12359,7 +12339,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Portrait"
-msgstr ""
+msgstr "Κάθετα"
#: pageformatpanel.ui
msgctxt ""
@@ -12368,7 +12348,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Landscape"
-msgstr ""
+msgstr "Οριζόντια"
#: pageformatpanel.ui
msgctxt ""
@@ -12377,7 +12357,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Margins:"
-msgstr ""
+msgstr "Περιθώρια:"
#: pageformatpanel.ui
msgctxt ""
@@ -12386,7 +12366,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: pageformatpanel.ui
msgctxt ""
@@ -12395,7 +12375,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Narrow"
-msgstr ""
+msgstr "Στενό"
#: pageformatpanel.ui
msgctxt ""
@@ -12404,7 +12384,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Moderate"
-msgstr ""
+msgstr "Μέτριο"
#: pageformatpanel.ui
msgctxt ""
@@ -12413,7 +12393,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Normal 0.75\""
-msgstr ""
+msgstr "Κανονικό 0,75\""
#: pageformatpanel.ui
msgctxt ""
@@ -12422,7 +12402,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Normal 1\""
-msgstr ""
+msgstr "Κανονικό 1\""
#: pageformatpanel.ui
msgctxt ""
@@ -12431,7 +12411,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Normal 1.25\""
-msgstr ""
+msgstr "Κανονικό 1,25\""
#: pageformatpanel.ui
msgctxt ""
@@ -12440,7 +12420,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Wide"
-msgstr ""
+msgstr "Πλατύ"
#: pageformatpanel.ui
msgctxt ""
@@ -12449,7 +12429,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Mirrored"
-msgstr ""
+msgstr "Κατοπτρικό"
#: pageformatpanel.ui
msgctxt ""
@@ -12458,7 +12438,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom"
-msgstr ""
+msgstr "Προσαρμοσμένο"
#: pageheaderpanel.ui
msgctxt ""
@@ -12467,7 +12447,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Margins:"
-msgstr ""
+msgstr "Περιθώρια:"
#: pageheaderpanel.ui
msgctxt ""
@@ -12476,7 +12456,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom"
-msgstr ""
+msgstr "Προσαρμοσμένο"
#: pageheaderpanel.ui
msgctxt ""
@@ -12485,7 +12465,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spacing:"
-msgstr ""
+msgstr "Διάστιχο:"
#: pageheaderpanel.ui
msgctxt ""
@@ -12494,7 +12474,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Same Content:"
-msgstr ""
+msgstr "Ίδιο περιεχόμενο:"
#: pagemargincontrol.ui
msgctxt ""
@@ -12503,7 +12483,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Narrow"
-msgstr ""
+msgstr "Στενό"
#: pagemargincontrol.ui
msgctxt ""
@@ -12512,7 +12492,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Normal"
-msgstr ""
+msgstr "Κανονικό"
#: pagemargincontrol.ui
msgctxt ""
@@ -12521,7 +12501,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wide"
-msgstr ""
+msgstr "Πλατύ"
#: pagemargincontrol.ui
msgctxt ""
@@ -12530,7 +12510,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Mirrored"
-msgstr ""
+msgstr "Κατοπτρικό"
#: pagemargincontrol.ui
msgctxt ""
@@ -12539,7 +12519,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Last Custom Value"
-msgstr ""
+msgstr "Τελευταία προσαρμοσμένη τιμή"
#: pagemargincontrol.ui
msgctxt ""
@@ -12548,7 +12528,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Narrow"
-msgstr ""
+msgstr "Στενό"
#: pagemargincontrol.ui
msgctxt ""
@@ -12557,7 +12537,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Normal"
-msgstr ""
+msgstr "Κανονικό"
#: pagemargincontrol.ui
msgctxt ""
@@ -12566,7 +12546,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wide"
-msgstr ""
+msgstr "Πλατύ"
#: pagemargincontrol.ui
msgctxt ""
@@ -12575,7 +12555,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Mirrored"
-msgstr ""
+msgstr "Κατοπτρικό"
#: pagemargincontrol.ui
msgctxt ""
@@ -12584,7 +12564,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Last Custom Value"
-msgstr ""
+msgstr "Τελευταία προσαρμοσμένη τιμή"
#: pagemargincontrol.ui
msgctxt ""
@@ -12593,7 +12573,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Top"
-msgstr ""
+msgstr "Πά_νω"
#: pagemargincontrol.ui
msgctxt ""
@@ -12602,7 +12582,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Bottom"
-msgstr ""
+msgstr "_Κάτω"
#: pagemargincontrol.ui
msgctxt ""
@@ -12611,7 +12591,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Left"
-msgstr ""
+msgstr "Α_ριστερά"
#: pagemargincontrol.ui
msgctxt ""
@@ -12620,7 +12600,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "I_nner"
-msgstr ""
+msgstr "Ε_σωτερικά"
#: pagemargincontrol.ui
msgctxt ""
@@ -12629,7 +12609,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Right"
-msgstr ""
+msgstr "_Δεξιά"
#: pagemargincontrol.ui
msgctxt ""
@@ -12638,7 +12618,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "O_uter"
-msgstr ""
+msgstr "Ε_ξωτερικά"
#: pagemargincontrol.ui
msgctxt ""
@@ -12647,7 +12627,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
#: pagemargincontrol.ui
msgctxt ""
@@ -12656,7 +12636,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
#: pagemargincontrol.ui
msgctxt ""
@@ -12665,7 +12645,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
#: pagemargincontrol.ui
msgctxt ""
@@ -12674,7 +12654,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
#: pagemargincontrol.ui
msgctxt ""
@@ -12683,7 +12663,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom"
-msgstr ""
+msgstr "Προσαρμοσμένο"
#: pageorientationcontrol.ui
msgctxt ""
@@ -12692,7 +12672,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Portrait"
-msgstr ""
+msgstr "Κάθετα"
#: pageorientationcontrol.ui
msgctxt ""
@@ -12701,7 +12681,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Landscape"
-msgstr ""
+msgstr "Οριζόντια"
#: pageorientationcontrol.ui
msgctxt ""
@@ -12710,7 +12690,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Single"
-msgstr ""
+msgstr "Μονό"
#: pagesizecontrol.ui
msgctxt ""
@@ -12719,7 +12699,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_More Options"
-msgstr ""
+msgstr "Π_ερισσότερες επιλογές"
#: pagesizecontrol.ui
msgctxt ""
@@ -12728,7 +12708,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "More Options"
-msgstr ""
+msgstr "Περισσότερες επιλογές"
#: pagestylespanel.ui
msgctxt ""
@@ -12737,7 +12717,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Number:"
-msgstr ""
+msgstr "Αριθμός:"
#: pagestylespanel.ui
msgctxt ""
@@ -12746,7 +12726,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Background:"
-msgstr ""
+msgstr "Παρασκήνιο:"
#: pagestylespanel.ui
msgctxt ""
@@ -12755,7 +12735,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Layout:"
-msgstr ""
+msgstr "Διάταξη:"
#: pagestylespanel.ui
msgctxt ""
@@ -12764,7 +12744,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Columns:"
-msgstr ""
+msgstr "Στήλες:"
#: pagestylespanel.ui
msgctxt ""
@@ -12773,7 +12753,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "1 Column"
-msgstr ""
+msgstr "1 Στήλη"
#: pagestylespanel.ui
msgctxt ""
@@ -12782,7 +12762,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "2 Columns"
-msgstr ""
+msgstr "2 στήλες"
#: pagestylespanel.ui
msgctxt ""
@@ -12791,7 +12771,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "3 Columns"
-msgstr ""
+msgstr "3 στήλες"
#: pagestylespanel.ui
msgctxt ""
@@ -12800,7 +12780,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Left"
-msgstr ""
+msgstr "Αριστερά"
#: pagestylespanel.ui
msgctxt ""
@@ -12809,7 +12789,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Right"
-msgstr ""
+msgstr "Δεξιά"
#: pagestylespanel.ui
msgctxt ""
@@ -12818,7 +12798,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom"
-msgstr ""
+msgstr "Προσαρμοσμένο"
#: pagestylespanel.ui
msgctxt ""
@@ -12827,7 +12807,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Right and left"
-msgstr ""
+msgstr "Δεξιά και αριστερά"
#: pagestylespanel.ui
msgctxt ""
@@ -12836,7 +12816,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Mirrored"
-msgstr ""
+msgstr "Κατοπτρικό"
#: pagestylespanel.ui
msgctxt ""
@@ -12845,7 +12825,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Only right"
-msgstr ""
+msgstr "Μόνο δεξιά"
#: pagestylespanel.ui
msgctxt ""
@@ -12854,7 +12834,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Only left"
-msgstr ""
+msgstr "Μόνο αριστερά"
#: paradialog.ui
msgctxt ""
@@ -12998,7 +12978,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Σύνδεσμος"
#: picturedialog.ui
msgctxt ""
@@ -14528,7 +14508,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: sidebarwrap.ui
msgctxt ""
@@ -14546,7 +14526,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Παράλληλο"
#: sidebarwrap.ui
msgctxt ""
@@ -14564,7 +14544,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Optimal"
-msgstr ""
+msgstr "Βέλτιστο"
#: sidebarwrap.ui
msgctxt ""
@@ -14582,7 +14562,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Before"
-msgstr ""
+msgstr "Πριν από"
#: sidebarwrap.ui
msgctxt ""
@@ -14600,7 +14580,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "After"
-msgstr ""
+msgstr "Μετά από"
#: sidebarwrap.ui
msgctxt ""
@@ -14618,7 +14598,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Through"
-msgstr ""
+msgstr "Μέσα από"
#: sidebarwrap.ui
msgctxt ""
@@ -14807,7 +14787,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Key type"
-msgstr ""
+msgstr "Τύπος κλειδιού"
#: sortdialog.ui
msgctxt ""
@@ -14816,7 +14796,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Key type"
-msgstr ""
+msgstr "Τύπος κλειδιού"
#: sortdialog.ui
msgctxt ""
@@ -14825,7 +14805,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Key type"
-msgstr ""
+msgstr "Τύπος κλειδιού"
#: sortdialog.ui
msgctxt ""
@@ -15149,7 +15129,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 2 Width"
-msgstr ""
+msgstr "Πλάτος στήλης 2"
#: tablecolumnpage.ui
msgctxt ""
@@ -15158,7 +15138,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 3 Width"
-msgstr ""
+msgstr "Πλάτος στήλης 3"
#: tablecolumnpage.ui
msgctxt ""
@@ -15167,7 +15147,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 4 Width"
-msgstr ""
+msgstr "Πλάτος στήλης 4"
#: tablecolumnpage.ui
msgctxt ""
@@ -15176,7 +15156,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 5 Width"
-msgstr ""
+msgstr "Πλάτος στήλης 5"
#: tablecolumnpage.ui
msgctxt ""
@@ -15185,7 +15165,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 6 Width"
-msgstr ""
+msgstr "Πλάτος στήλης 6"
#: tablecolumnpage.ui
msgctxt ""
@@ -15194,7 +15174,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 1 Width"
-msgstr ""
+msgstr "Πλάτος στήλης 1"
#: tablecolumnpage.ui
msgctxt ""
@@ -15347,7 +15327,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "With Page Style"
-msgstr ""
+msgstr "Με τεχνοτροπία σελίδας"
#: tabletextflowpage.ui
msgctxt ""
@@ -16418,7 +16398,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Preview"
-msgstr ""
+msgstr "Προεπισκόπηση"
#: tocdialog.ui
msgctxt ""
@@ -16688,7 +16668,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "L_ink"
-msgstr ""
+msgstr "_Σύνδεσμος"
#: tocentriespage.ui
msgctxt ""
@@ -16805,7 +16785,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Ascending"
-msgstr ""
+msgstr "Αύξουσα"
#: tocentriespage.ui
msgctxt ""
@@ -16814,7 +16794,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Descending"
-msgstr ""
+msgstr "Φθίνουσα"
#: tocentriespage.ui
msgctxt ""
diff --git a/source/el/swext/mediawiki/help.po b/source/el/swext/mediawiki/help.po
index dd95160f0f9..7408cd6af66 100644
--- a/source/el/swext/mediawiki/help.po
+++ b/source/el/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: 2013-05-27 21:28+0000\n"
+"PO-Revision-Date: 2016-12-14 11:30+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1369690109.000000\n"
+"X-POOTLE-MTIME: 1481715019.000000\n"
#: help.tree
msgctxt ""
@@ -63,7 +63,7 @@ msgctxt ""
"par_id9647511\n"
"help.text"
msgid "<ahelp hid=\".\">By using the Wiki Publisher you can upload your current Writer text document to a MediaWiki server. After uploading, all wiki users can read your document on the wiki.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Χρησιμοποιώντας το Wiki Publisher μπορείτε να ανεβάσετε το τρέχον έγγραφο κειμένου Writer σε έναν διακομιστή MediaWiki. Μετά το ανέβασμα, όλοι οι χρήστες του βίκι μπορούν να διαβάσουν το έγγραφό σας από το βίκι.</ahelp>"
#: wiki.xhp
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"par_id7387615\n"
"help.text"
msgid "A wiki account on a supported <link href=\"http://www.mediawiki.org/wiki/MediaWiki\">MediaWiki</link> server"
-msgstr ""
+msgstr "Ένας λογαριασμός βίκι σε έναν υποστηριζόμενο διακομιστή <link href=\"http://www.mediawiki.org/wiki/MediaWiki\">MediaWiki</link>"
#: wiki.xhp
msgctxt ""
@@ -111,7 +111,7 @@ msgctxt ""
"par_id4277169\n"
"help.text"
msgid "Before you use the Wiki Publisher, ensure that %PRODUCTNAME uses a Java Runtime Environment (JRE). To check the status of the JRE, choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Advanced</item>. Ensure that “Use a Java runtime environment” is checked and that a Java runtime folder is selected in the big listbox. If no JRE was activated, then activate a JRE of version 1.4 or later and restart %PRODUCTNAME."
-msgstr ""
+msgstr "Πριν να χρησιμοποιήσετε το Wiki Publisher, βεβαιωθείτε ότι το %PRODUCTNAME χρησιμοποιεί περιβάλλον χρόνου εκτέλεσης Java (JRE). Για έλεγχο της κατάστασης του JRE, επιλέξτε <item type=\"menuitem\">Εργαλεία-Επιλογές- %PRODUCTNAME - Προχωρημένα</item>. Βεβαιωθείτε ότι το \"Χρήση περιβάλλοντος χρόνου εκτέλεσης Java\" είναι σημειωμένο και ότι ένας φάκελος χρόνου εκτέλεσης Java είναι επιλεγμένος στο μεγάλο πλαίσιο λίστας. Αν δεν έχει ενεργοποιηθεί κανένα JRE, τότε ενεργοποιήστε το JRE 1.4 ή μεταγενέστερο και επανεκκινήστε το %PRODUCTNAME."
#: wiki.xhp
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"par_id6962187\n"
"help.text"
msgid "In the <link href=\"com.sun.wiki-publisher/wikiaccount.xhp\">MediaWiki</link> dialog, enter the account information for the wiki."
-msgstr ""
+msgstr "Στον διάλογο <link href=\"com.sun.wiki-publisher/wikiaccount.xhp\">MediaWiki</link>, εισάγετε την πληροφορία λογαριασμού για το βίκι."
#: wiki.xhp
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"par_id5328836\n"
"help.text"
msgid "In the URL text box, enter the address of a wiki that you want to connect to."
-msgstr ""
+msgstr "Στο πλαίσιο κειμένου URL, εισάγετε τη διεύθυνση του βίκι στην οποία θέλετε να συνδεθείτε."
#: wiki.xhp
msgctxt ""
@@ -183,7 +183,7 @@ msgctxt ""
"par_id5906552\n"
"help.text"
msgid "In the Username box, enter your user ID for your wiki account."
-msgstr ""
+msgstr "Μέσα στο πλαίσιο του ονόματος χρήστη, εισάγετε την ταυτότητα του χρήστη για τον λογαριασμό σας στο βίκι."
#: wiki.xhp
msgctxt ""
@@ -191,7 +191,7 @@ msgctxt ""
"par_id9297158\n"
"help.text"
msgid "If the wiki allows anonymous write access, you can leave the Username and Password boxes empty."
-msgstr ""
+msgstr "Εάν το βίκι επιτρέπει την πρόσβαση ανώνυμης εγγραφής, μπορείτε να αφήσετε κενά τα πεδία όνομα χρήστη και κωδικός πρόσβασης."
#: wiki.xhp
msgctxt ""
@@ -199,7 +199,7 @@ msgctxt ""
"par_id8869594\n"
"help.text"
msgid "In the Password box, enter the password for your wiki account, then click OK."
-msgstr ""
+msgstr "Στο πεδίο κωδικός πρόσβασης, εισάγετε τον κωδικό πρόσβασης του λογαριασμού σας στο βίκι και μετά πατήστε Εντάξει."
#: wiki.xhp
msgctxt ""
@@ -207,7 +207,7 @@ msgctxt ""
"par_id292062\n"
"help.text"
msgid "Optionally enable “Save password” to save the password between sessions. A master password is used to maintain access to all saved passwords. Choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Security</item> to enable the master password. “Save password” is unavailable when the master password is not enabled."
-msgstr ""
+msgstr "Προαιρετικά ενεργοποιήστε την \"Αποθήκευση κωδικού πρόσβασης\" για να αποθηκεύσετε τον κωδικό μεταξύ των συνεδριών. Ένας κύριος κωδικός πρόσβασης χρησιμοποιείται για να διατηρήσει την πρόσβαση σε όλους τους αποθηκευμένους κωδικούς πρόσβασης. Επιλέξτε <item type=\"menuitem\">Εργαλεία - Επιλογές - %PRODUCTNAME - Ασφάλεια</item> για να ενεργοποιήσετε τον κύριο κωδικό. Η \"Αποθήκευση κωδικού πρόσβασης\" δεν είναι διαθέσιμη αν ο κύριος κωδικός δεν είναι ενεργοποιημένος."
#: wiki.xhp
msgctxt ""
@@ -231,7 +231,7 @@ msgctxt ""
"par_id944853\n"
"help.text"
msgid "Write the content of the wiki page. You can use formatting such as text formats, headings, footnotes, and more. See the <link href=\"com.sun.wiki-publisher/wikiformats.xhp\">list of supported formats</link>."
-msgstr ""
+msgstr "Γράψτε το περιεχόμενο της σελίδας βίκι. Μπορείτε να χρησιμοποιήσετε μορφοποιήσεις όπως μορφές κειμένου, επικεφαλίδες, υποσημειώσεις και άλλα. Δείτε τον <link href=\"com.sun.wiki-publisher/wikiformats.xhp\">κατάλογο των υποστηριζόμενων μορφών</link>."
#: wiki.xhp
msgctxt ""
@@ -255,7 +255,7 @@ msgctxt ""
"par_id2564165\n"
"help.text"
msgid "<emph>MediaWiki server</emph>: Select the wiki."
-msgstr ""
+msgstr "<emph>Διακομιστής MediaWiki</emph>: Επιλέξτε το βίκι."
#: wiki.xhp
msgctxt ""
@@ -263,7 +263,7 @@ msgctxt ""
"par_id5566576\n"
"help.text"
msgid "<emph>Title</emph>: Type the title of your page. Type the title of an existing page to overwrite the page with your current text document. Type a new title to create a new page on the wiki."
-msgstr ""
+msgstr "<emph>Τίτλος</emph>: Πληκτρολογήστε τον τίτλο της σελίδας σας. Πληκτρολογήστε τον τίτλο μιας υπάρχουσας σελίδας για να αντικαταστήσετε τη σελίδα με το τρέχον έγγραφο κειμένου . Πληκτρολογήστε έναν νέο τίτλο για να δημιουργήσετε μια νέα σελίδα στο βίκι."
#: wiki.xhp
msgctxt ""
@@ -287,7 +287,7 @@ msgctxt ""
"par_id452284\n"
"help.text"
msgid "<emph>Show in web browser</emph>: Check this box to open your system web browser and show the uploaded wiki page."
-msgstr ""
+msgstr "<emph>Εμφάνιση στον περιηγητή ιστού</emph>: Σημειώστε αυτό το πλαίσιο για να ανοίξετε τον περιηγητή ιστού του συστήματός σας και να εμφανίσετε την ανεβασμένη σελίδα βίκι."
#: wiki.xhp
msgctxt ""
@@ -295,7 +295,7 @@ msgctxt ""
"par_id8346812\n"
"help.text"
msgid "Click <emph>Send</emph>."
-msgstr ""
+msgstr "Πατήστε <emph>Αποστολή</emph>."
#: wikiaccount.xhp
msgctxt ""
@@ -351,7 +351,7 @@ msgctxt ""
"par_id656758\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable to store your password between sessions. The master password must be enabled; see <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Security</item>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ενεργοποιήστε για να αποθηκευτεί ο κωδικός πρόσβασης σας μεταξύ των συνεδριών. Ο κύριος κωδικός πρέπει να είναι ενεργοποιημένος· δείτε <item type=\"menuitem\">Εργαλεία - Επιλογές - %PRODUCTNAME - Ασφάλεια</item>.</ahelp>"
#: wikiaccount.xhp
msgctxt ""
@@ -359,7 +359,7 @@ msgctxt ""
"par_id3112582\n"
"help.text"
msgid "Enter the Internet address of a wiki server in a format like “http://wiki.documentfoundation.org” or copy the URL from a web browser."
-msgstr ""
+msgstr "Εισάγετε τη διεύθυνση διαδικτύου του διακομιστή βίκι σε μια μορφή όπως “http://wiki.documentfoundation.org” ή αντιγράψτε το URL από έναν περιηγητή ιστού."
#: wikiaccount.xhp
msgctxt ""
@@ -367,7 +367,7 @@ msgctxt ""
"par_id628070\n"
"help.text"
msgid "If the wiki allows anonymous access, you can leave the account text boxes empty. Else enter your user name and password."
-msgstr ""
+msgstr "Εάν το βίκι επιτρέπει ανώνυμη πρόσβαση, μπορείτε να αφήσετε τα πλαίσια κειμένου του λογαριασμού κενά. Αλλιώς εισάγετε το όνομα χρήστη και τον κωδικό πρόσβασής σας."
#: wikiaccount.xhp
msgctxt ""
@@ -399,7 +399,7 @@ msgctxt ""
"par_id8654133\n"
"help.text"
msgid "The following list gives an overview of the text formats that the Wiki Publisher can upload to the wiki server."
-msgstr ""
+msgstr "Ο παρακάτω κατάλογος δίνει μία επισκόπηση των μορφών κειμένου που ο Wiki Publisher μπορεί να φορτώσει στον διακομιστή βίκι."
#: wikiformats.xhp
msgctxt ""
@@ -407,7 +407,7 @@ msgctxt ""
"par_id5630664\n"
"help.text"
msgid "The OpenDocument format used by Writer and the MediaWiki format are quite different. Only a subset of all features can be transformed from one format to the other."
-msgstr ""
+msgstr "Η μορφή OpenDocument που χρησιμοποιήθηκε από τον Writer και η μορφή των MediaWiki είναι αρκετά διαφορετικά. Μόνο ένα υποσύνολο όλων των χαρακτηριστικών μπορούν να μετασχηματιστούν από τη μία μορφή στην άλλη."
#: wikiformats.xhp
msgctxt ""
@@ -423,7 +423,7 @@ msgctxt ""
"par_id508133\n"
"help.text"
msgid "Apply a heading paragraph style to the headings in your Writer document. The wiki will show the heading styles of the same outline level, formatted as defined by the wiki engine."
-msgstr ""
+msgstr "Εφαρμόστε μια τεχνοτροπία παραγράφου επικεφαλίδας στις επικεφαλίδες του εγγράφου σας στο Writer. Το βίκι θα δείξει τις τεχνοτροπίες των επικεφαλίδων στο ίδιο επίπεδο διάρθρωσης, μορφοποιημένες όπως ορίζεται από τη μηχανή του βίκι."
#: wikiformats.xhp
msgctxt ""
@@ -439,7 +439,7 @@ msgctxt ""
"par_id3735465\n"
"help.text"
msgid "Native OpenDocument hyperlinks are transformed into “external” wiki links. Therefore, the built-in linking facility of OpenDocument should only be used to create links that point to other sites outside the wiki web. For creating wiki links that point to other subjects of the same wiki domain, use wiki links."
-msgstr ""
+msgstr "Οι εγγενείς υπερσύνδεσμοι OpenDocument μετασχηματίζονται σε “εξωτερικούς” συνδέσμους βίκι. Συνεπώς, η ενσωματωμένη δυνατότητα σύνδεσης του OpenDocument πρέπει να χρησιμοποιείται μόνο για την δημιουργία συνδέσμων που δείχνουν άλλους ιστότοπους εκτός του ιστού βίκι. Για την δημιουργία συνδέσμων βίκι που δείχνουν άλλα θέματα του ίδιου τομέα βίκι, χρησιμοποιήστε τους συνδέσμους βίκι."
#: wikiformats.xhp
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"par_id8942838\n"
"help.text"
msgid "Lists can be exported reliably when the whole list uses a consistent list style. Use the Numbering or Bullets icon to generate a list in Writer. If you need a list without numbering or bullets, use <emph>Format - Bullets and Numbering</emph> to define and apply the respective list style."
-msgstr ""
+msgstr "Οι λίστες μπορούν να εξαχθούν αξιόπιστα όταν όλη η λίστα χρησιμοποιεί μια σταθερή τεχνοτροπία λίστας. Χρησιμοποιήστε το εικονίδιο αρίθμησης ή κουκκίδων για να δημιουργήσετε μια λίστα στον Writer. Εάν χρειάζεστε μια λίστα χωρίς αρίθμηση ή κουκκίδες, χρησιμοποιήστε <emph>Μορφοποίηση - Κουκκίδες και Αρίθμηση</emph> για να ορίσετε και να εφαρμόσετε την αντίστοιχη τεχνοτροπία λίστας."
#: wikiformats.xhp
msgctxt ""
@@ -479,7 +479,7 @@ msgctxt ""
"par_id376598\n"
"help.text"
msgid "Explicit text alignment should not be used in wiki articles. Nevertheless, text alignment is supported for left, centered, and right alignment of text."
-msgstr ""
+msgstr "Ρητή στοίχιση κειμένου δεν πρέπει να χρησιμοποιείται στα άρθρα του βίκι. Παρόλα αυτά, η στοίχιση κειμένου υποστηρίζεται για αριστερά, κέντρο, και δεξιά στοίχιση του κειμένου."
#: wikiformats.xhp
msgctxt ""
@@ -495,7 +495,7 @@ msgctxt ""
"par_id1459395\n"
"help.text"
msgid "A paragraph style with a fixed-width font is transformed as pre-formatted text. Pre-formatted text is shown on the wiki with a border around the text."
-msgstr ""
+msgstr "Η τεχνοτροπία παραγράφου με σταθερού πλάτους γραμματοσειρά μετασχηματίζεται σε προμορφοποιημένο κείμενο. Το προμορφοποιημένο κείμενο φαίνεται στο βίκι με ένα περίγραμμα γύρω από το κείμενο."
#: wikiformats.xhp
msgctxt ""
@@ -511,7 +511,7 @@ msgctxt ""
"par_id6397595\n"
"help.text"
msgid "Character styles modify the appearance of parts of a paragraph. The transformation supports bold, italics, bold/italics, subscript and superscript. All fixed-width fonts are transformed into the wiki typewriter style."
-msgstr ""
+msgstr "Οι τεχνοτροπίες χαρακτήρων τροποποιούν την εμφάνιση των μερών μιας παραγράφου. Ο μετασχηματισμός υποστηρίζει έντονα, πλάγια, έντονα/πλάγια, δείκτη και εκθέτη. Όλες οι γραμματοσειρές σταθερού πλάτους μετασχηματίζονται στην τεχνοτροπία γραφομηχανής του βίκι."
#: wikiformats.xhp
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"par_id5238196\n"
"help.text"
msgid "Note: The transformation uses the new style of footnotes with <ref> and <references> tags that requires the Cite.php extension to be installed into MediaWiki. If those tags are shown as plain text in the transformation result, ask the wiki administrator to install this extension."
-msgstr ""
+msgstr "Σημείωση: Ο μετασχηματισμός χρησιμοποιεί τη νέα τεχνοτροπία υποσημειώσεων με ετικέτες <ref> και <references> που απαιτούν την επέκταση Cite.php για να εγκατασταθούν στο MediaWiki. Εάν αυτές οι ετικέτες εμφανίζονται ως απλό κείμενο στο αποτέλεσμα του μετασχηματισμού, ζητήστε από τον διαχειριστή του βίκι να εγκαταστήσει αυτήν την επέκταση."
#: wikiformats.xhp
msgctxt ""
@@ -543,7 +543,7 @@ msgctxt ""
"par_id3541673\n"
"help.text"
msgid "Images cannot be exported by a transformation producing a single file of wiki text. However, if the image is already uploaded to the target wiki domain (e. g., Wikimedia Commons), then the transformation produces a valid image tag that includes the image. Image captions are also supported."
-msgstr ""
+msgstr "Οι εικόνες δεν μπορούν να εξαχθούν από έναν μετασχηματισμό που παράγει έναν απλό αρχείο του κειμένου του βίκι. Ωστόσο, αν η εικόνα έχει ήδη ανέβει στο τομέα στόχου του βίκι (π.χ. στα Wikimedia Commons), τότε ο μετασχηματισμός παράγει μια έγκυρη ετικέτα εικόνας που περιλαμβάνει και την εικόνα. Επίσης, υποστηρίζονται υπομνήματα στις εικόνες."
#: wikiformats.xhp
msgctxt ""
@@ -559,7 +559,7 @@ msgctxt ""
"par_id3037202\n"
"help.text"
msgid "Simple tables are supported well. Table headers are translated into corresponding wiki-style table headers. However, custom formatting of table borders, column sizes and background colors is ignored."
-msgstr ""
+msgstr "Οι απλοί πίνακες υποστηρίζονται καλά. Οι κεφαλίδες του πίνακα μεταφράζονται στην αντίστοιχη τεχνοτροπία κεφαλίδων πίνακα της τεχνοτροπίας του βίκι. Ωστόσο, προσαρμοσμένες μορφοποιήσεις των περιγραμμάτων του πίνακα, μεγέθη στήλης και χρώματα παρασκηνίου αγνοούνται."
#: wikiformats.xhp
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"par_id1831110\n"
"help.text"
msgid "Irrespective of custom table styles for border and background, a table is always exported as “prettytable,” which renders in the wiki engine with simple borders and bold header."
-msgstr ""
+msgstr "Ανεξάρτητα από τις τεχνοτροπίες προσαρμοσμένου πίνακα για περίγραμμα και παρασκήνιο, ένας πίνακας εξάγεται πάντα ως “όμορφος πίνακας”, που αποδίδεται στη μηχανή βίκι με απλά περιγράμματα και έντονη κεφαλίδα."
#: wikiformats.xhp
msgctxt ""
@@ -607,7 +607,7 @@ msgctxt ""
"hd_id6255073\n"
"help.text"
msgid "Character set and special characters"
-msgstr ""
+msgstr "Σύνολα χαρακτήρων και ειδικοί χαρακτήρες"
#: wikiformats.xhp
msgctxt ""
@@ -615,7 +615,7 @@ msgctxt ""
"par_id8216193\n"
"help.text"
msgid "The character set of the transformation result is fixed to UTF-8. Depending on your system, this might not be the default character set. This might cause “special characters” to look broken when viewed with default settings. However, you can switch your editor to UTF-8 encoding to fix this. If your editor does not support switching the encoding, you can display the result of the transformation in the Firefox browser and switch the encoding to UTF-8 there. Now, you can copy and paste the transformation result to your program of choice."
-msgstr ""
+msgstr "Το αποτέλεσμα του μετασχηματισμού του συνόλου χαρακτήρων είναι διορθωμένο σε UTF-8. Ανάλογα με το σύστημά σας, αυτό μπορεί να μην είναι το προεπιλεγμένο σύνολο χαρακτήρων. Αυτό μπορεί να προκαλέσει “οι ειδικοί χαρακτήρες” να μοιάζουν σπασμένοι όταν εμφανίζονται με τις προεπιλεγμένες ρυθμίσεις . Ωστόσο, μπορείτε να αλλάξετε τη κωδικοποίηση του επεξεργαστή σας σε UTF-8 ώστε να το διορθώσετε. Εάν ο επεξεργαστής σας δεν υποστηρίζει την αλλαγή της κωδικοποίησης, μπορείτε να εμφανίσετε το αποτέλεσμα του μετασχηματισμού στον περιηγητή Firefox και να αλλάξετε την κωδικοποίηση σε UTF-8 εκεί. Τώρα, μπορείτε να αντιγράψετε και να επικολλήσετε το αποτέλεσμα του μετασχηματισμού στο πρόγραμμα της επιλογής σας."
#: wikisend.xhp
msgctxt ""
@@ -639,7 +639,7 @@ msgctxt ""
"par_id1743827\n"
"help.text"
msgid "In the Send to MediaWiki dialog, specify the settings for your current wiki upload."
-msgstr ""
+msgstr "Στο διάλογο Αποστολή στο MediaWiki, ορίστε τις ρυθμίσεις για το τρέχον ανέβασμα στο βίκι."
#: wikisend.xhp
msgctxt ""
@@ -655,7 +655,7 @@ msgctxt ""
"par_id2794885\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the title of your wiki entry. This is the top heading of your wiki entry. For a new entry, the title must be unique on this wiki. If you enter an existing title, your upload will overwrite the existing wiki entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Εισάγετε τον τίτλο της καταχώρισής σας στο βίκι. Αυτή είναι η κορυφαία επικεφαλίδα της καταχώρισής σας στο βίκι. Για μια καινούρια καταχώριση, ο τίτλος πρέπει να είναι μοναδικός σε αυτό το βίκι. Εάν εισάγετε έναν υπάρχοντα τίτλο, το ανέβασμά σας θα επαναγράψει την υπάρχουσα καταχώρισή σας στο βίκι.</ahelp>"
#: wikisend.xhp
msgctxt ""
@@ -679,7 +679,7 @@ msgctxt ""
"par_id6592913\n"
"help.text"
msgid "<emph>Show in web browser</emph>: <ahelp hid=\".\">Check this box to open your system web browser and show the uploaded wiki page.</ahelp>"
-msgstr ""
+msgstr "<emph>Εμφάνιση στον περιηγητή ιστού</emph>: <ahelp hid=\".\">Σημειώστε αυτό το πλαίσιο για να ανοίξετε τον περιηγητή ιστού του συστήματός σας και να εμφανίσετε τη σελίδα που στείλατε στο βίκι.</ahelp>"
#: wikisettings.xhp
msgctxt ""
@@ -703,7 +703,7 @@ msgctxt ""
"par_id1188390\n"
"help.text"
msgid "You can add, edit and remove MediaWiki servers. Open the options dialog by going to <item type=\"menuitem\">Tools - Options - Internet - MediaWiki</item>."
-msgstr ""
+msgstr "Μπορείτε να προσθέσετε, να επεξεργαστείτε και να αφαιρέσετε τους διακομιστές MediaWiki. Ανοίξτε τον διάλογο επιλογών πηγαίνοντας στο <item type=\"menuitem\">Εργαλεία - Επιλογές - Διαδίκτυο - MediaWiki</item>."
#: wikisettings.xhp
msgctxt ""
@@ -711,7 +711,7 @@ msgctxt ""
"par_id300607\n"
"help.text"
msgid "<ahelp hid=\".\">Click Add to add a new wiki server.<br/>Select an entry and click Edit to edit the account settings.<br/>Select an entry and click Remove to remove the entry from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Πατήστε Προσθήκη για να προσθέσετε έναν νέο διακομιστή βίκι.<br/>Επιλέξτε μία καταχώριση και πατήστε Επεξεργασία για να τροποποιήσετε τις ρυθμίσεις του λογαριασμού.<br/>Επιλέξτε μία καταχώριση και πατήστε Αφαίρεση για να διαγράψετε μια καταχώριση από τη λίστα.</ahelp>"
#: wikisettings.xhp
msgctxt ""
diff --git a/source/el/uui/uiconfig/ui.po b/source/el/uui/uiconfig/ui.po
index eeaac1f596b..e1fe4b52250 100644
--- a/source/el/uui/uiconfig/ui.po
+++ b/source/el/uui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:32+0000\n"
+"PO-Revision-Date: 2016-12-14 11:31+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1467664342.000000\n"
+"X-POOTLE-MTIME: 1481715093.000000\n"
#: authfallback.ui
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Enter the 6 digit PIN:"
-msgstr ""
+msgstr "Εισάγετε τα 6 ψηφία του PIN:"
#: filterselect.ui
msgctxt ""
diff --git a/source/el/vcl/source/src.po b/source/el/vcl/source/src.po
index fa84c8f5ea8..a3385253839 100644
--- a/source/el/vcl/source/src.po
+++ b/source/el/vcl/source/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:33+0000\n"
+"PO-Revision-Date: 2016-12-14 11:34+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1467664409.000000\n"
+"X-POOTLE-MTIME: 1481715283.000000\n"
#: app.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"SV_APP_VCLBACKEND\n"
"string.text"
msgid "VCL: "
-msgstr ""
+msgstr "VCL: "
#: app.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"SV_APP_LAYOUT_ENGINE\n"
"string.text"
msgid "Layout Engine: "
-msgstr ""
+msgstr "Μηχανή διάταξης: "
#: app.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"SV_APP_LAYOUT_NEW\n"
"string.text"
msgid "new"
-msgstr ""
+msgstr "νέα"
#: app.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"SV_APP_LAYOUT_OLD\n"
"string.text"
msgid "old"
-msgstr ""
+msgstr "παλιά"
#. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
#: btntext.src
diff --git a/source/el/xmlsecurity/uiconfig/ui.po b/source/el/xmlsecurity/uiconfig/ui.po
index 67ad4034190..7caababe109 100644
--- a/source/el/xmlsecurity/uiconfig/ui.po
+++ b/source/el/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 20:34+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-14 11:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467664467.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481715383.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr "Περιγραφή"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
@@ -266,7 +275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use AdES-compliant signature when there is a choice"
-msgstr ""
+msgstr "Χρησιμοποιήστε μια υπογραφή συμβατή με AdES όταν υπάρχει η δυνατότητα"
#: macrosecuritydialog.ui
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/scalc/00.po b/source/en-GB/helpcontent2/source/text/scalc/00.po
index 1619eeca3c4..1a5425f2172 100644
--- a/source/en-GB/helpcontent2/source/text/scalc/00.po
+++ b/source/en-GB/helpcontent2/source/text/scalc/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 18:13+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-05-26 14:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467742418.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1464271240.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -553,8 +553,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -571,8 +571,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "Choose <emph>Insert - Names - Define</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -589,8 +589,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -598,8 +598,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -607,8 +607,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/scalc/01.po b/source/en-GB/helpcontent2/source/text/scalc/01.po
index bcadc369abc..f4336167de3 100644
--- a/source/en-GB/helpcontent2/source/text/scalc/01.po
+++ b/source/en-GB/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 19:26+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-10-18 19:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476818788.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476818523.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -20651,8 +20651,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20676,8 +20676,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -49847,8 +49847,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "Names"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -49856,8 +49856,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50247,8 +50247,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialogue box, from which you can select the naming options that you want."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52134,8 +52134,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Select <emph>- none -</emph> to remove a print range definition for the current spreadsheet. Select <emph>- entire sheet -</emph> to set the current sheet as a print range. Select <emph>- selection -</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/scalc/guide.po b/source/en-GB/helpcontent2/source/text/scalc/guide.po
index 53cd7511fee..6103d7c07f8 100644
--- a/source/en-GB/helpcontent2/source/text/scalc/guide.po
+++ b/source/en-GB/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-07-10 11:07+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1468148857.000000\n"
#: address_auto.xhp
@@ -2131,8 +2131,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11831,8 +11831,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialogue box will appear."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11884,8 +11884,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/shared/00.po b/source/en-GB/helpcontent2/source/text/shared/00.po
index 6f076b873e7..3c70a9728f8 100644
--- a/source/en-GB/helpcontent2/source/text/shared/00.po
+++ b/source/en-GB/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 21:29+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-05-26 14:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467754180.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1464271738.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -12070,15 +12070,6 @@ msgstr "Choose <emph>Format - Page - Background</emph> tab (in $[officename] Imp
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colours</emph> tab"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/en-GB/helpcontent2/source/text/shared/01.po b/source/en-GB/helpcontent2/source/text/shared/01.po
index ba3980c8b97..44656970600 100644
--- a/source/en-GB/helpcontent2/source/text/shared/01.po
+++ b/source/en-GB/helpcontent2/source/text/shared/01.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 19:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-07-10 11:03+0000\n"
+"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476818788.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1468148608.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -8291,8 +8291,8 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
-msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
+msgstr ""
#: 02100100.xhp
msgctxt ""
@@ -25620,32 +25620,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "Colours"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Colours\">Colours</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr "Select a colour to apply, save the current colour list, or load a different colour list."
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43243,6 +43217,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/en-GB/helpcontent2/source/text/shared/guide.po b/source/en-GB/helpcontent2/source/text/shared/guide.po
index cfa43e61feb..94cfac6ba5a 100644
--- a/source/en-GB/helpcontent2/source/text/shared/guide.po
+++ b/source/en-GB/helpcontent2/source/text/shared/guide.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-10 11:08+0000\n"
-"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-12-22 16:00+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1468148894.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482422401.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2190,16 +2190,17 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816034969\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2242,35 +2243,38 @@ msgid "<variable id=\"rememberpw\"><emph>Remember password</emph>: Check to stor
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816045167\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816045015\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rootpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rootpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816045804\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#okbutton\"/>."
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#okbutton\"/>."
#: cmis-remote-files-setup.xhp
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2282,12 +2286,13 @@ msgid "<bookmark_value>remote file service;Windows share</bookmark_value> <book
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816046729\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2314,36 +2319,40 @@ msgid "<emph>Share</emph>: The Windows share."
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816049\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rememberpw\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rememberpw\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816048365\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816048181\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rootpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rootpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816047868\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#okbutton\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#okbutton\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2362,12 +2371,13 @@ msgid "<bookmark_value>remote file service;Google Drive</bookmark_value> <bookm
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id160820161759169124\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2386,28 +2396,31 @@ msgid "<emph>User, Password</emph>: the username and password of the Google acco
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id160820161759162239\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rememberpw\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rememberpw\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id160820161759166391\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id160820161759163527\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#okbutton\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#okbutton\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2426,12 +2439,13 @@ msgid "<bookmark_value>remote file service setup;other file services</bookmark_v
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816048323\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#introservice\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2458,12 +2472,13 @@ msgid "<emph>User, Password</emph>: the username and password of the CMIS servic
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816054077\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rememberpw\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rememberpw\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2482,20 +2497,22 @@ msgid "<emph>Refresh button</emph>: click to refresh the contents of the reposit
msgstr ""
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816054039\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#labelpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
+#, fuzzy
msgctxt ""
"cmis-remote-files-setup.xhp\n"
"par_id150820161816052286\n"
"help.text"
msgid "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rootpar\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/guide/cmis-remote-files-setup.xhp#rootpar\" markup=\"keep\"/>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -9919,8 +9936,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12428,20 +12445,20 @@ msgstr "On the <emph>Options</emph> tab page, ensure that the <emph>Synchronise
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronise Labels</emph> button. Enter the first label. When you click on the <emph>Synchronise Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronise Labels</emph> button. Enter the first label. When you click on the <emph>Synchronise Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
#: labels.xhp
msgctxt ""
@@ -18304,758 +18321,721 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Starting the $[officename] Software With Parameters"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Starting the $[officename] Software With Parameters"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "Starting the $[officename] Software From the Command Line"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
-msgstr "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "Under Windows, type the following text in the <emph>Open</emph> text field and click <emph>OK</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
-msgstr "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "Valid Command Line Parameters"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "Parameter"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "Meaning"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "--help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialogue box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
-msgstr "--version"
+msgid "Opens the file and applies specified macros from the file."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
-msgstr "Displays the version information."
+msgid "Getting help and information"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "--writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "Starts with an empty Writer document."
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "--calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "Starts with an empty Calc document."
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "--draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "Starts with an empty Draw document."
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "--impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "Starts with an empty Impress document."
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "--math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "Starts with an empty Math document."
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "--global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "Starts with an empty Writer master document."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "--web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "Starts with an empty HTML document."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "--show {filename.odp}"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
"help.text"
-msgid "--minimized"
-msgstr "--minimized"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
+"help.text"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "Starts minimised. The splash screen is not displayed."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "--invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "Starts in invisible mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogue boxes opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
-msgstr "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "It cannot be used in conjunction with <emph>-quickstart</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "More information is found in the <emph>$[officename] Developer's Guide</emph>."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
"help.text"
-msgid "--norestore"
-msgstr "--norestore"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
+"help.text"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "Disables restart and file recovery after a system crash."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "Disables the Welcome Wizard."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "--quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Activates the Quickstarter."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "--accept={UNO string}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "More information is found in the <emph>$[officename] Developer's Guide</emph>."
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "--unaccept={UNO string}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
-msgstr "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
+msgid "Exit after loading documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {filename1} {filename2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "If the file name contains spaces, then it must be enclosed by quotation marks."
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "--pt {Printername} {filename1} {filename2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "If the file name contains spaces, then it must be enclosed by quotation marks."
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {filename}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "Opens <emph>{filename}</emph> for editing, even if it is a template."
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "--view {filename}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {filename}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "Creates a new document using <emph>{filename}</emph> as a template."
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "--nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "Disables the splash screen at program start."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "--nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "If the file name contains spaces, then it must be enclosed by quotation marks."
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "Starts without displaying anything except the splash screen."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
-msgstr "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
-msgstr "Disables check for remote instances using the installation."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150828\n"
+"help.text"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3145268\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3153838\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "Add this parameter to the program start command to suppress the Welcome Wizard."
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id315053p\n"
"help.text"
-msgid "--display {display}"
-msgstr "--display {display}"
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
-msgstr "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id315053q\n"
"help.text"
-msgid "--headless"
-msgstr "--headless"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "Starts in \"headless mode\" which allows using the application without user interface."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "--infilter={filter}"
-msgstr "--infilter={filter}"
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
-msgstr "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
+msgid "Ignored switches"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
-msgstr "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
+msgid "Ignored (MacOS X only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
-msgstr "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (COM+ related; Windows only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014529900\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
-msgstr "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
-msgstr "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
+msgstr ""
#: startcenter.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/swriter/guide.po b/source/en-GB/helpcontent2/source/text/swriter/guide.po
index b6b755b38ff..15316f27e08 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-GB/helpcontent2/source/text/swriter/guide.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-10 11:04+0000\n"
-"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
+"PO-Revision-Date: 2016-12-23 14:27+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1468148676.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482503275.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -17866,3 +17866,510 @@ msgctxt ""
"help.text"
msgid "<link href=\"text/swriter/01/05060201.xhp\" name=\"Contour Editor\">Contour Editor</link>"
msgstr "<link href=\"text/swriter/01/05060201.xhp\" name=\"Contour Editor\">Contour Editor</link>"
+
+msgctxt ""
+"background.xhp\n"
+"par_id3148664\n"
+"13\n"
+"help.text"
+msgid "Choose <emph>Table - Table Properties</emph>."
+msgstr "Choose <emph>Table - Table Properties</emph>."
+
+msgctxt ""
+"borders.xhp\n"
+"par_id6129947\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Table - Table properties</item>."
+msgstr "Choose <item type=\"menuitem\">Table - Table properties</item>."
+
+msgctxt ""
+"borders.xhp\n"
+"par_id5118564\n"
+"help.text"
+msgid "Select a single cell in a Writer table, then choose <emph>Table - Table properties - Borders</emph>."
+msgstr "Select a single cell in a Writer table, then choose <emph>Table - Table properties - Borders</emph>."
+
+msgctxt ""
+"change_header.xhp\n"
+"par_id3155541\n"
+"help.text"
+msgid "Choose <emph>Insert - Header</emph>, and choose the new page style from the list."
+msgstr "Choose <emph>Insert - Header</emph>, and choose the new page style from the list."
+
+msgctxt ""
+"even_odd_sdw.xhp\n"
+"par_id3155588\n"
+"help.text"
+msgid "To add a header to one of the page styles, choose <item type=\"menuitem\">Insert - Header</item>, and choose the page style that you want to add the header to. In the header frame, type the text that you want to use as the header."
+msgstr "To add a header to one of the page styles, choose <item type=\"menuitem\">Insert - Header</item>, and choose the page style that you want to add the header to. In the header frame, type the text that you want to use as the header."
+
+msgctxt ""
+"even_odd_sdw.xhp\n"
+"par_id3147772\n"
+"help.text"
+msgid "To add a footer to one of the page styles, choose <item type=\"menuitem\">Insert - Footer</item>, and choose the page style that you want to add the footer to. In the footer frame, type the text that you want to use as a footer."
+msgstr "To add a footer to one of the page styles, choose <item type=\"menuitem\">Insert - Footer</item>, and choose the page style that you want to add the footer to. In the footer frame, type the text that you want to use as a footer."
+
+msgctxt ""
+"fields.xhp\n"
+"par_id3150509\n"
+"6\n"
+"help.text"
+msgid "Fields consist of a field name and the field content. To switch the field display between the field name or the field content, choose <link href=\"text/swriter/01/03090000.xhp\" name=\"View - Fields\"><emph>View - Field Names</emph></link>."
+msgstr "Fields consist of a field name and the field content. To switch the field display between the field name or the field content, choose <link href=\"text/swriter/01/03090000.xhp\" name=\"View - Fields\"><emph>View - Field Names</emph></link>."
+
+msgctxt ""
+"fields.xhp\n"
+"par_id3152885\n"
+"7\n"
+"help.text"
+msgid "To change the color of field shadings, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01012000.xhp\" name=\"$[officename] - Application Colors\"><emph><item type=\"menuitem\">$[officename] - Application Colors</item></emph></link>, locate the <item type=\"menuitem\">Field shadings</item> option, and then select a different color in the <item type=\"menuitem\">Color setting</item> box."
+msgstr "To change the colour of field shadings, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01012000.xhp\" name=\"$[officename] - Application Colours\"><emph><item type=\"menuitem\">$[officename] - Application Colours</item></emph></link>, locate the <item type=\"menuitem\">Field shadings</item> option, and then select a different colour in the <item type=\"menuitem\">Colour setting</item> box."
+
+msgctxt ""
+"finding.xhp\n"
+"par_id2164677\n"
+"help.text"
+msgid "Enter the text to find in the <emph>Search for</emph> text box."
+msgstr "Enter the text to find in the <emph>Search for</emph> text box."
+
+msgctxt ""
+"finding.xhp\n"
+"par_id4286935\n"
+"help.text"
+msgid "Enter the text to search in the <emph>Search for </emph>text box."
+msgstr "Enter the text to search in the <emph>Search for</emph> text box."
+
+msgctxt ""
+"finding.xhp\n"
+"par_id703451\n"
+"help.text"
+msgid "When you click <emph>Replace</emph>, Writer will search the whole document for the text in the <emph>Search for</emph> box, starting at the current cursor position. When text is found, Writer highlights the text and waits for your response. Click <emph>Replace</emph> to replace the highlighted text in the document with the text in the <emph>Replace with</emph> text box. Click <emph>Find Next</emph> to advance to the next found text without replacing the current selection."
+msgstr "When you click <emph>Replace</emph>, Writer will search the whole document for the text in the <emph>Search for</emph> box, starting at the current cursor position. When text is found, Writer highlights the text and waits for your response. Click <emph>Replace</emph> to replace the highlighted text in the document with the text in the <emph>Replace with</emph> text box. Click <emph>Find Next</emph> to advance to the next found text without replacing the current selection."
+
+msgctxt ""
+"finding.xhp\n"
+"par_id9147007\n"
+"help.text"
+msgid "Check <item type=\"menuitem\">Search for Styles</item>.<br/>The <item type=\"menuitem\">Search for</item> text box now is a list box, where you can select any of the Paragraph Styles that are applied in the current document."
+msgstr "Check <item type=\"menuitem\">Search for Styles</item>.<br/>The <item type=\"menuitem\">Search for</item> text box now is a list box, from which you can select any of the Paragraph Styles that are applied in the current document."
+
+msgctxt ""
+"footer_nextpage.xhp\n"
+"par_id3155886\n"
+"help.text"
+msgid "Choose <emph>Insert - Footer</emph> and select the page style that you want to add the footer to."
+msgstr "Choose <emph>Insert - Footer</emph> and select the page style that you want to add the footer to."
+
+msgctxt ""
+"footer_pagenumber.xhp\n"
+"par_id3150508\n"
+"2\n"
+"help.text"
+msgid "Choose <emph>Insert - Footer</emph> and select the page style that you want to add the footer to."
+msgstr "Choose <emph>Insert - Footer</emph> and select the page style that you want to add the footer to."
+
+msgctxt ""
+"header_footer.xhp\n"
+"par_id3155896\n"
+"help.text"
+msgid "To add a header to a page, choose <emph>Insert - Header</emph>, and then select the page style for the current page from the submenu."
+msgstr "To add a header to a page, choose <emph>Insert - Header</emph>, and then select the page style for the current page from the sub-menu."
+
+msgctxt ""
+"header_footer.xhp\n"
+"par_id3147119\n"
+"help.text"
+msgid "To add a footer to a page, choose <emph>Insert - Footer</emph>, and then select the page style for the current page from the submenu."
+msgstr "To add a footer to a page, choose <emph>Insert - Footer</emph>, and then select the page style for the current page from the sub-menu."
+
+msgctxt ""
+"header_with_chapter.xhp\n"
+"par_id3153729\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Insert - Header</item> or <item type=\"menuitem\">Insert - Footer</item>, and then select the page style for the current page from the submenu."
+msgstr "Choose <item type=\"menuitem\">Insert - Header</item> or <item type=\"menuitem\">Insert - Footer</item>, and then select the page style for the current page from the sub-menu."
+
+msgctxt ""
+"indices_edit.xhp\n"
+"par_id3155871\n"
+"59\n"
+"help.text"
+msgid "If you cannot place your cursor in the index or table of contents, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Formatting Aids</item>, and then select <item type=\"menuitem\">Enable</item> in the <item type=\"menuitem\">Cursor in protected areas</item> section."
+msgstr "If you cannot place your cursor in the index or table of contents, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Formatting Aids</item>, and then select <item type=\"menuitem\">Enable</item> in the <item type=\"menuitem\">Cursor in protected areas</item> section."
+
+msgctxt ""
+"indices_edit.xhp\n"
+"par_id3155872\n"
+"help.text"
+msgid "You can also make changes directly to an index or table of contents. Right-click in the index or table of contents, choose <emph>Edit Index or Table of Contents</emph>, click <emph>Index or Table of Contents</emph> tab, and then clear the <emph>Protected against manual changes</emph> check box."
+msgstr "You can also make changes directly to an index or table of contents. Right-click in the index or table of contents, choose <emph>Edit Index or Table of Contents</emph>, click <emph>Index or Table of Contents</emph> tab, and then clear the <emph>Protected against manual changes</emph> check box."
+
+msgctxt ""
+"indices_index.xhp\n"
+"par_id3155884\n"
+"help.text"
+msgid "On the <emph>Index or Table of Contents</emph> tab, select \"Alphabetical Index\" in the <emph>Type</emph> box."
+msgstr "On the <emph>Index or Table of Contents</emph> tab, select \"Alphabetical Index\" in the <emph>Type</emph> box."
+
+msgctxt ""
+"indices_toc.xhp\n"
+"par_id3150528\n"
+"help.text"
+msgid "Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography</emph>, and then click the <link href=\"text/swriter/01/04120211.xhp\" name=\"Index or Table of Contents\"><emph>Index or Table of Contents</emph></link> tab."
+msgstr "Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography</emph>, and then click the <link href=\"text/swriter/01/04120211.xhp\" name=\"Index or Table of Contents\"><emph>Index or Table of Contents</emph></link> tab."
+
+msgctxt ""
+"indices_userdef.xhp\n"
+"par_id3150509\n"
+"help.text"
+msgid "On the <item type=\"menuitem\">Index or Table of Contents</item> tab, select the name of the user-defined index that you created in the <item type=\"menuitem\">Type</item> box."
+msgstr "On the <item type=\"menuitem\">Index or Table of Contents</item> tab, select the name of the user-defined index that you created in the <item type=\"menuitem\">Type</item> box."
+
+msgctxt ""
+"indices_userdef.xhp\n"
+"par_id3150720\n"
+"help.text"
+msgid "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the (<item type=\"menuitem\">Assign styles</item>) button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+msgstr "If you want to use a different paragraph style as a table of contents entry, select <item type=\"menuitem\">Additional styles</item>, and then click the (<item type=\"menuitem\">Assign styles</item>) button next to the box. Click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the outline level for the paragraph style."
+
+msgctxt ""
+"nonprintable_text.xhp\n"
+"par_id3150242\n"
+"16\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Format - Frame/Object</item>, and then click the <item type=\"menuitem\">Options</item> tab."
+msgstr "Choose <item type=\"menuitem\">Format - Frame/Object</item>, and then click the <item type=\"menuitem\">Options</item> tab."
+
+msgctxt ""
+"numbering_lines.xhp\n"
+"par_id3150931\n"
+"help.text"
+msgid "Click the <emph>Numbering</emph> tab."
+msgstr "Click the <emph>Numbering</emph> tab."
+
+msgctxt ""
+"numbering_lines.xhp\n"
+"par_id3151096\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Format - Paragraph</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr "Choose <item type=\"menuitem\">Format - Paragraph</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+
+msgctxt ""
+"numbering_lines.xhp\n"
+"par_id3150721\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Format - Paragraph</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgstr "Choose <item type=\"menuitem\">Format - Paragraph</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+
+msgctxt ""
+"pagenumbers.xhp\n"
+"par_id614642\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Insert - Header - (name of page style)</item> or <item type=\"menuitem\">Insert - Footer - (name of page style)</item> to add a header or footer to all pages with the current page style."
+msgstr "Choose <item type=\"menuitem\">Insert - Header - (name of page style)</item> or <item type=\"menuitem\">Insert - Footer - (name of page style)</item> to add a header or footer to all pages with the current page style."
+
+msgctxt ""
+"protection.xhp\n"
+"bm_id3150620\n"
+"help.text"
+msgid "<bookmark_value>indexes;unprotecting</bookmark_value> <bookmark_value>tables of contents;unprotecting</bookmark_value> <bookmark_value>tables;protecting/unprotecting cells</bookmark_value> <bookmark_value>sections;protecting/unprotecting</bookmark_value> <bookmark_value>unprotecting tables of contents and indexes</bookmark_value> <bookmark_value>protecting;tables and sections</bookmark_value> <bookmark_value>cells;protecting/unprotecting</bookmark_value>"
+msgstr "<bookmark_value>indexes;unprotecting</bookmark_value><bookmark_value>tables of contents;unprotecting</bookmark_value><bookmark_value>tables;protecting/unprotecting cells</bookmark_value><bookmark_value>sections;protecting/unprotecting</bookmark_value><bookmark_value>unprotecting tables of contents and indexes</bookmark_value><bookmark_value>protecting;tables and sections</bookmark_value><bookmark_value>cells;protecting/unprotecting</bookmark_value>"
+
+msgctxt ""
+"protection.xhp\n"
+"hd_id6007263\n"
+"help.text"
+msgid "<variable id=\"protection\"><link href=\"text/swriter/guide/protection.xhp\" name=\"Protecting Content in %PRODUCTNAME Writer\">Protecting Content in <item type=\"productname\">%PRODUCTNAME Writer</item></link> </variable>"
+msgstr "<variable id=\"protection\"><link href=\"text/swriter/guide/protection.xhp\" name=\"Protecting Content in %PRODUCTNAME Writer\">Protecting Content in <item type=\"productname\">%PRODUCTNAME Writer</item></link> </variable>"
+
+msgctxt ""
+"protection.xhp\n"
+"par_id1924802\n"
+"help.text"
+msgid "The following is an overview of the different ways of protecting contents in <item type=\"productname\">%PRODUCTNAME</item> Writer from being modified, deleted or viewed."
+msgstr "The following is an overview of the different ways of protecting contents in <item type=\"productname\">%PRODUCTNAME</item> Writer from being modified, deleted or viewed."
+
+msgctxt ""
+"protection.xhp\n"
+"hd_id3150114\n"
+"29\n"
+"help.text"
+msgid "Protecting Sections in <item type=\"productname\">%PRODUCTNAME</item> Writer"
+msgstr "Protecting Sections in <item type=\"productname\">%PRODUCTNAME</item> Writer"
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3150592\n"
+"30\n"
+"help.text"
+msgid "Any section of a <item type=\"productname\">%PRODUCTNAME</item> Writer text document can be protected against changes with a password."
+msgstr "Any section of a <item type=\"productname\">%PRODUCTNAME</item> Writer text document can be protected against changes with a password."
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3166413\n"
+"31\n"
+"help.text"
+msgid "Turning on protection"
+msgstr "Turning on protection"
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3144764\n"
+"32\n"
+"help.text"
+msgid "Select the text. Choose <emph>Insert - Section - Section</emph>, then under <emph>Write protection</emph> mark the <emph>Protect</emph> and <emph>With password</emph> check boxes. (If the section already exists: <emph>Format - Sections</emph>.) Enter and confirm a password of at least one character."
+msgstr "Select the text. Choose <emph>Insert - Section - Section</emph>, then under <emph>Write protection</emph> mark the <emph>Protect</emph> and <emph>With password</emph> check boxes. (If the section already exists: <emph>Format - Sections</emph>.) Enter and confirm a password of at least one character."
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3147497\n"
+"33\n"
+"help.text"
+msgid "Turning off protection"
+msgstr "Turning off protection"
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3147173\n"
+"34\n"
+"help.text"
+msgid "Choose <emph>Format - Sections - Section</emph> and under <emph>Write protection</emph> clear the <emph>Protect</emph> check box. Enter the correct password."
+msgstr "Choose <emph>Format - Sections - Section</emph> and under <emph>Write protection</emph> unmark the <emph>Protect</emph> check box. Enter the correct password."
+
+msgctxt ""
+"protection.xhp\n"
+"hd_id3146081\n"
+"35\n"
+"help.text"
+msgid "Protecting Cells in a <item type=\"productname\">%PRODUCTNAME</item> Writer Table"
+msgstr "Protecting Cells in a <item type=\"productname\">%PRODUCTNAME</item> Writer Table"
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3154480\n"
+"36\n"
+"help.text"
+msgid "You can protect the contents of individual cells of a <item type=\"productname\">%PRODUCTNAME</item> Writer text table from changes."
+msgstr "You can protect the contents of individual cells of a <item type=\"productname\">%PRODUCTNAME</item> Writer text table from changes."
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3154360\n"
+"37\n"
+"help.text"
+msgid "Turning on protection"
+msgstr "Turning on protection"
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3145643\n"
+"38\n"
+"help.text"
+msgid "Place the cursor in a cell or select cells. Right-click to open the context menu, then choose <emph>Cell - Protect</emph>."
+msgstr "Place the cursor in a cell or select cells. Right-click to open the context menu, then choose <emph>Cell - Protect</emph>."
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3150042\n"
+"39\n"
+"help.text"
+msgid "Turning off protection"
+msgstr "Turning off protection"
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3155178\n"
+"40\n"
+"help.text"
+msgid "Place the cursor in the cell or select the cells. First, if necessary, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph> and mark <emph>Cursor in protected areas - Enable</emph>. Then right-click the cell to open the context menu, choose <emph>Cell - Unprotect</emph>."
+msgstr "Place the cursor in the cell or select the cells. First, if necessary, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph> and mark <emph>Cursor in protected areas - Enable</emph>. Then right-click the cell to open the context menu, choose <emph>Cell - Unprotect</emph>."
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3151189\n"
+"41\n"
+"help.text"
+msgid "Select the table in the Navigator, open the context menu and select <emph>Table - Unprotect</emph>."
+msgstr "Select the table in the Navigator, open the context menu and select <emph>Table - Unprotect</emph>."
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3147322\n"
+"42\n"
+"help.text"
+msgid "Use Shift+Ctrl+T to remove protection for the entire current table or all selected tables."
+msgstr "Use Shift+Ctrl+T to remove protection for the entire current table or all selected tables."
+
+msgctxt ""
+"protection.xhp\n"
+"hd_id3149259\n"
+"43\n"
+"help.text"
+msgid "Automatic Protection of Indexes and Tables"
+msgstr "Automatic Protection of Indexes and Tables"
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3153966\n"
+"44\n"
+"help.text"
+msgid "Tables of contents and indexes created automatically in a <item type=\"productname\">%PRODUCTNAME</item> Writer text are automatically protected against accidental changes."
+msgstr "Tables of contents and indexes created automatically in a <item type=\"productname\">%PRODUCTNAME</item> Writer text are automatically protected against accidental changes."
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3145767\n"
+"45\n"
+"help.text"
+msgid "Turning on protection"
+msgstr "Turning on protection"
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3153786\n"
+"46\n"
+"help.text"
+msgid "Place the cursor in the index/table of contents."
+msgstr "Place the cursor in the index/table of contents."
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3159088\n"
+"help.text"
+msgid "From the context menu choose <emph>Edit Index or Table of Contents</emph>. On the Index or Table of Contents tab page, mark <emph>Protected against manual changes</emph>."
+msgstr "From the context menu choose <emph>Edit Index or Table of Contents</emph>. On the Index or Table of Contents tab page, mark <emph>Protected against manual changes</emph>."
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3154118\n"
+"48\n"
+"help.text"
+msgid "Turning off protection"
+msgstr "Turning off protection"
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3148463\n"
+"49\n"
+"help.text"
+msgid "Place the cursor in the index. First of all, if necessary, under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids </emph>, mark <emph>Cursor in protected areas - Enable</emph>."
+msgstr "Place the cursor in the index. First of all, if necessary, under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids </emph>, mark <emph>Cursor in protected areas - Enable</emph>."
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3152968\n"
+"help.text"
+msgid "From the context menu choose <emph>Edit Index or Table of Contents</emph>. On the Index or Table of Contents tab page, unmark <emph>Protected against manual changes</emph>."
+msgstr "From the context menu choose <emph>Edit Index or Table of Contents</emph>. On the Index or Table of Contents tab page, unmark <emph>Protected against manual changes</emph>."
+
+msgctxt ""
+"protection.xhp\n"
+"par_id3152774\n"
+"51\n"
+"help.text"
+msgid "In the Navigator, select the index, then open the context menu in the Navigator and select <emph>Index - Read-only</emph>."
+msgstr "In the Navigator, select the index, then open the context menu in the Navigator and select <emph>Index - Read-only</emph>."
+
+msgctxt ""
+"references.xhp\n"
+"par_id7321390\n"
+"help.text"
+msgid "Choose <emph>View - Fields</emph> to switch between viewing the reference names and the reference contents."
+msgstr "Choose <emph>View - Fields</emph> to switch between viewing the reference names and the reference contents."
+
+msgctxt ""
+"search_regexp.xhp\n"
+"par_id3149843\n"
+"42\n"
+"help.text"
+msgid "In the <item type=\"menuitem\">Search for</item> box, type the search term and the wildcard(s) that you want to use in your search."
+msgstr "In the <item type=\"menuitem\">Search for</item> box, type the search term and the wildcard(s) that you want to use in your search."
+
+msgctxt ""
+"table_sizing.xhp\n"
+"par_id1279030\n"
+"help.text"
+msgid "Click inside the table. Choose <item type=\"menuitem\">Table - Table Properties</item> to open a dialog and set the properties to the numbers."
+msgstr "Click inside the table. Choose <item type=\"menuitem\">Table - Table Properties</item> to open a dialogue box and set the properties to the numbers."
+
+msgctxt ""
+"tablemode.xhp\n"
+"par_id3156110\n"
+"8\n"
+"help.text"
+msgid "To set the <item type=\"menuitem\">Behavior of rows/columns</item> options for tables in text documents, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Table</item>, or use the <item type=\"menuitem\">Fixed</item>, <item type=\"menuitem\">Fixed/Proportional</item>, and <item type=\"menuitem\">Variable</item> icons on the <item type=\"menuitem\">Table</item> Bar. There are three display modes for tables:"
+msgstr "To set the <item type=\"menuitem\">Behaviour of rows/columns</item> options for tables in text documents, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Table</item>, or use the <item type=\"menuitem\">Fixed</item>, <item type=\"menuitem\">Fixed/Proportional</item>, and <item type=\"menuitem\">Variable</item> icons on the <item type=\"menuitem\">Table</item> Bar. There are three display modes for tables:"
+
+msgctxt ""
+"template_create.xhp\n"
+"par_id3147422\n"
+"help.text"
+msgid "Choose <emph>File - Save As Template</emph>."
+msgstr "Choose <emph>File - Save As Template</emph>."
+
+msgctxt ""
+"template_create.xhp\n"
+"par_id3149636\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01110300.xhp\" name=\"File - Save As Template\">File - Save As Template</link>"
+msgstr "<link href=\"text/shared/01/01110300.xhp\" name=\"File - Save As Template\">File - Save As Template</link>"
+
+msgctxt ""
+"text_capital.xhp\n"
+"par_idN10728\n"
+"help.text"
+msgid "When you apply formatting to your text by <emph>Format - Character</emph>, the text stays the same, it is only displayed in another way. On the other hand, when you choose <emph>Format - Text - Change Case</emph>, the text is permanently changed."
+msgstr "When you apply formatting to your text by <emph>Format - Character</emph>, the text stays the same, it is only displayed in another way. On the other hand, when you choose <emph>Format - Text - Change Case</emph>, the text is permanently changed."
+
+msgctxt ""
+"text_capital.xhp\n"
+"par_id1120200910485778\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Format - Text - Change Case - Uppercase</item>."
+msgstr "Choose <item type=\"menuitem\">Format - Text - Change Case - Upper-case</item>."
+
+msgctxt ""
+"text_capital.xhp\n"
+"par_id112020091049000\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Format - Text - Change Case - Lowercase</item>."
+msgstr "Choose <item type=\"menuitem\">Format - Text - Change Case - Lower-case</item>."
+
+msgctxt ""
+"text_centervert.xhp\n"
+"par_id3149615\n"
+"help.text"
+msgid "To hide the borders of the frame, select the frame, and then choose <item type=\"menuitem\">Format - Frame/Object</item>. Click the <item type=\"menuitem\">Borders</item> tab, and then click in the <item type=\"menuitem\">Set No Border</item> box in the <item type=\"menuitem\">Line Arrangement</item> area."
+msgstr "To hide the borders of the frame, select the frame, and then choose <item type=\"menuitem\">Format - Frame/Object</item>. Click the <item type=\"menuitem\">Borders</item> tab, and then click in the <item type=\"menuitem\">Set No Border</item> box in the <item type=\"menuitem\">Line Arrangement</item> area."
+
+msgctxt ""
+"text_frame.xhp\n"
+"par_id3155875\n"
+"101\n"
+"help.text"
+msgid "Choose <emph>Format - Frame/Object - Options</emph>."
+msgstr "Choose <emph>Format - Frame/Object - Options</emph>."
+
+msgctxt ""
+"wrap.xhp\n"
+"par_id3155907\n"
+"help.text"
+msgid "Choose <emph>Format - Frame and Objects - Properties</emph>, and then click the <link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap\"><emph>Wrap</emph></link> tab to choose the wrapping style that you want to apply."
+msgstr "Choose <emph>Format - Frame and Objects - Properties</emph>, and then click the <link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap\"><emph>Wrap</emph></link> tab to choose the wrapping style that you want to apply."
+
+msgctxt ""
+"wrap.xhp\n"
+"par_id3153396\n"
+"help.text"
+msgid "Choose <emph>Format - Image - Properties</emph>, and then click the <link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap\"><emph>Wrap</emph></link> tab."
+msgstr "Choose <emph>Format - Image - Properties</emph>, and then click the <link href=\"text/swriter/01/05060200.xhp\" name=\"Wrap\"><emph>Wrap</emph></link> tab."
+
+#: finding.xhp
+msgctxt ""
+"finding.xhp\n"
+"par_id896938\n"
+"help.text"
+msgid "Click <emph>More Options</emph> to expand the dialog."
+msgstr "Click <emph>More Options</emph> to expand the dialogue box."
diff --git a/source/en-GB/sc/source/ui/src.po b/source/en-GB/sc/source/ui/src.po
index bec261b4724..ac3fccb6a1c 100644
--- a/source/en-GB/sc/source/ui/src.po
+++ b/source/en-GB/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
"PO-Revision-Date: 2016-12-01 15:50+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480607423.000000\n"
#: filter.src
@@ -9669,8 +9669,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Totals the arguments that meet the conditions."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/en-GB/svx/uiconfig/ui.po b/source/en-GB/svx/uiconfig/ui.po
index 1c341bf19cd..e0ee2757365 100644
--- a/source/en-GB/svx/uiconfig/ui.po
+++ b/source/en-GB/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
"PO-Revision-Date: 2016-12-02 00:46+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480639578.000000\n"
#: acceptrejectchangesdialog.ui
@@ -3061,8 +3061,8 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "Ignore diac_ritics CTL"
+msgid "Ignore diac_ritics"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -3070,8 +3070,8 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
-msgstr "Ignore _kashida CTL"
+msgid "Ignore _kashida"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -5166,11 +5166,11 @@ msgstr "Disable hardware acceleration (OpenGL, OpenCL)"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
-msgstr "Uninstall extensions"
+msgid "Extensions"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
@@ -5184,11 +5184,20 @@ msgstr "Uninstall all user extensions"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
-msgstr "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of bundled extensions"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/en-GB/sw/uiconfig/swriter/ui.po b/source/en-GB/sw/uiconfig/swriter/ui.po
index 5f45bcc0d64..7839038f976 100644
--- a/source/en-GB/sw/uiconfig/swriter/ui.po
+++ b/source/en-GB/sw/uiconfig/swriter/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-11-17 16:37+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: none\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1479400627.000000\n"
#: abstractdialog.ui
@@ -9824,24 +9824,6 @@ msgstr "Style"
#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
"label\n"
"string.text"
diff --git a/source/en-GB/xmlsecurity/uiconfig/ui.po b/source/en-GB/xmlsecurity/uiconfig/ui.po
index 906b1bdf64d..1aa6cdb0128 100644
--- a/source/en-GB/xmlsecurity/uiconfig/ui.po
+++ b/source/en-GB/xmlsecurity/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-12-02 00:46+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480639592.000000\n"
#: certgeneral.ui
@@ -208,6 +208,15 @@ msgstr "Description"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/en-ZA/connectivity/source/resource.po b/source/en-ZA/connectivity/source/resource.po
index f6ff9bb063d..d8ebce92003 100644
--- a/source/en-ZA/connectivity/source/resource.po
+++ b/source/en-ZA/connectivity/source/resource.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 23:17+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-12-21 22:02+0000\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435274220.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482357750.000000\n"
#: conn_error_message.src
msgctxt ""
@@ -836,7 +836,7 @@ msgctxt ""
"STR_INVALID_DBASE_FILE\n"
"string.text"
msgid "The file '$filename$' is an invalid (or unrecognized) dBase file."
-msgstr "The file '$filename$' is an invalid (or unrecognized) dBase file."
+msgstr "The file '$filename$' is an invalid (or unrecognised) dBase file."
#: conn_shared_res.src
msgctxt ""
diff --git a/source/en-ZA/cui/source/customize.po b/source/en-ZA/cui/source/customize.po
index 0681644baad..f2f24463708 100644
--- a/source/en-ZA/cui/source/customize.po
+++ b/source/en-ZA/cui/source/customize.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 19:04+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-12-21 22:02+0000\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467659044.000000\n"
+"X-POOTLE-MTIME: 1482357762.000000\n"
#: acccfg.src
#, fuzzy
@@ -124,7 +124,7 @@ msgctxt ""
"RID_SVXSTR_MENU_ADDCOMMANDS_DESCRIPTION\n"
"string.text"
msgid "To add a command to a menu, select the category and then the command. You can also drag the command to the Commands list of the Menus tab page in the Customize dialog."
-msgstr "To add a command to a menu, select the category and then the command. You can also drag the command to the Commands list of the Menus tab page in the Customize dialogue."
+msgstr "To add a command to a menu, select the category and then the command. You can also drag the command to the Commands list of the Menus tab page in the Customise dialogue."
#: cfg.src
msgctxt ""
diff --git a/source/en-ZA/cui/uiconfig/ui.po b/source/en-ZA/cui/uiconfig/ui.po
index 6876374d9ff..03ef6654eb0 100644
--- a/source/en-ZA/cui/uiconfig/ui.po
+++ b/source/en-ZA/cui/uiconfig/ui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-18 13:15+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-12-21 22:10+0000\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: none\n"
"Language: en_ZA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476796542.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482358207.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -2559,14 +2559,13 @@ msgid "Style:"
msgstr "Style"
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"westsizeft-nocjk\n"
"label\n"
"string.text"
msgid "Size:"
-msgstr "Size"
+msgstr "Size:"
#: charnamepage.ui
msgctxt ""
@@ -2588,14 +2587,13 @@ msgid "Style:"
msgstr "Style"
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"westsizeft-cjk\n"
"label\n"
"string.text"
msgid "Size:"
-msgstr "Size"
+msgstr "Size:"
#: charnamepage.ui
#, fuzzy
@@ -2637,14 +2635,13 @@ msgid "Style:"
msgstr "Style"
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"eastsizeft\n"
"label\n"
"string.text"
msgid "Size:"
-msgstr "Size"
+msgstr "Size:"
#: charnamepage.ui
#, fuzzy
@@ -2686,14 +2683,13 @@ msgid "Style:"
msgstr "Style"
#: charnamepage.ui
-#, fuzzy
msgctxt ""
"charnamepage.ui\n"
"ctlsizeft\n"
"label\n"
"string.text"
msgid "Size:"
-msgstr "Size"
+msgstr "Size:"
#: charnamepage.ui
#, fuzzy
@@ -10548,14 +10544,13 @@ msgid "Fon_ts:"
msgstr ""
#: optfontspage.ui
-#, fuzzy
msgctxt ""
"optfontspage.ui\n"
"label9\n"
"label\n"
"string.text"
msgid "_Size:"
-msgstr "Size"
+msgstr "_Size:"
#: optfontspage.ui
#, fuzzy
@@ -14501,14 +14496,13 @@ msgid "Positio_n"
msgstr "Position"
#: possizetabpage.ui
-#, fuzzy
msgctxt ""
"possizetabpage.ui\n"
"TSB_SIZEPROTECT\n"
"label\n"
"string.text"
msgid "_Size"
-msgstr "Size"
+msgstr "_Size"
#: possizetabpage.ui
msgctxt ""
@@ -16199,14 +16193,13 @@ msgid "Positio_n"
msgstr "Position"
#: swpossizepage.ui
-#, fuzzy
msgctxt ""
"swpossizepage.ui\n"
"size\n"
"label\n"
"string.text"
msgid "_Size"
-msgstr "Size"
+msgstr "_Size"
#: swpossizepage.ui
msgctxt ""
diff --git a/source/en-ZA/desktop/source/deployment/gui.po b/source/en-ZA/desktop/source/deployment/gui.po
index baa029b6e59..fde76e23678 100644
--- a/source/en-ZA/desktop/source/deployment/gui.po
+++ b/source/en-ZA/desktop/source/deployment/gui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 19:09+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-12-21 22:01+0000\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467659358.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482357701.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -159,7 +159,6 @@ msgid "Show license"
msgstr "Show license"
#: dp_gui_dialog.src
-#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_STR_WARNING_INSTALL_EXTENSION\n"
@@ -169,12 +168,11 @@ msgid ""
"Click 'OK' to proceed with the installation.\n"
"Click 'Cancel' to stop the installation."
msgstr ""
-"You are about to install the extension \\'%NAME\\'.\n"
-"Click \\'OK\\' to proceed with the installation.\n"
-"Click \\'Cancel\\' to stop the installation."
+"You are about to install the extension '%NAME'.\n"
+"Click 'OK' to proceed with the installation.\n"
+"Click 'Cancel' to stop the installation."
#: dp_gui_dialog.src
-#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
@@ -184,12 +182,11 @@ msgid ""
"Click 'OK' to remove the extension.\n"
"Click 'Cancel' to stop removing the extension."
msgstr ""
-"You are about to remove the extension \\'%NAME\\'.\n"
-"Click \\'OK\\' to remove the extension.\n"
-"Click \\'Cancel\\' to stop removing the extension."
+"You are about to remove the extension '%NAME'.\n"
+"Click 'OK' to remove the extension.\n"
+"Click 'Cancel' to stop removing the extension."
#: dp_gui_dialog.src
-#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
@@ -200,11 +197,10 @@ msgid ""
"Click 'Cancel' to stop removing the extension."
msgstr ""
"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
-"Click \\'OK\\' to remove the extension.\n"
-"Click \\'Cancel\\' to stop removing the extension."
+"Click 'OK' to remove the extension.\n"
+"Click 'Cancel' to stop removing the extension."
#: dp_gui_dialog.src
-#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_STR_WARNING_ENABLE_SHARED_EXTENSION\n"
@@ -215,11 +211,10 @@ msgid ""
"Click 'Cancel' to stop enabling the extension."
msgstr ""
"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
-"Click \\'OK\\' to enable the extension.\n"
-"Click \\'Cancel\\' to stop enabling the extension."
+"Click 'OK' to enable the extension.\n"
+"Click 'Cancel' to stop enabling the extension."
#: dp_gui_dialog.src
-#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_STR_WARNING_DISABLE_SHARED_EXTENSION\n"
@@ -230,17 +225,16 @@ msgid ""
"Click 'Cancel' to stop disabling the extension."
msgstr ""
"Make sure that no further users are working with the same %PRODUCTNAME, when changing shared extensions in a multi user environment.\n"
-"Click \\'OK\\' to disable the extension.\n"
-"Click \\'Cancel\\' to stop disabling the extension."
+"Click 'OK' to disable the extension.\n"
+"Click 'Cancel' to stop disabling the extension."
#: dp_gui_dialog.src
-#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_STR_UNSUPPORTED_PLATFORM\n"
"string.text"
msgid "The extension '%Name' does not work on this computer."
-msgstr "The extension \\'%Name\\' does not work on this computer."
+msgstr "The extension '%Name' does not work on this computer."
#: dp_gui_updatedialog.src
msgctxt ""
@@ -420,7 +414,6 @@ msgid "The extension will not be installed."
msgstr "The extension will not be installed."
#: dp_gui_versionboxes.src
-#, fuzzy
msgctxt ""
"dp_gui_versionboxes.src\n"
"RID_STR_WARNING_VERSION_LESS\n"
@@ -431,10 +424,10 @@ msgid ""
"Click 'OK' to replace the installed extension.\n"
"Click 'Cancel' to stop the installation."
msgstr ""
-"You are about to install version $NEW of the extension \\'$NAME\\'.\n"
+"You are about to install version $NEW of the extension '$NAME'.\n"
"The newer version $DEPLOYED is already installed.\n"
-"Click \\'OK\\' to replace the installed extension.\n"
-"Click \\'Cancel\\' to stop the installation."
+"Click 'OK' to replace the installed extension.\n"
+"Click 'Cancel' to stop the installation."
#: dp_gui_versionboxes.src
#, fuzzy
diff --git a/source/en-ZA/helpcontent2/source/text/scalc/00.po b/source/en-ZA/helpcontent2/source/text/scalc/00.po
index 6938c98570b..16a5588e5a6 100644
--- a/source/en-ZA/helpcontent2/source/text/scalc/00.po
+++ b/source/en-ZA/helpcontent2/source/text/scalc/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 18:32+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-22 17:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467743558.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482427079.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -573,8 +573,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -591,8 +591,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "Choose <emph>Insert - Names - Define</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -609,8 +609,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -618,8 +618,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -627,8 +627,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/scalc/01.po b/source/en-ZA/helpcontent2/source/text/scalc/01.po
index f5dd8862212..2254797f377 100644
--- a/source/en-ZA/helpcontent2/source/text/scalc/01.po
+++ b/source/en-ZA/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 22:26+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-22 19:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467757602.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482433251.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -5719,20 +5719,22 @@ msgid "Functions"
msgstr "Functions"
#: 04060102.xhp
+#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr ""
+msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
#: 04060102.xhp
+#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr ""
+msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
#: 04060103.xhp
msgctxt ""
@@ -20799,8 +20801,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20824,8 +20826,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Set</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -50394,8 +50396,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "Names"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50403,8 +50405,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50794,8 +50796,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialogue, from which you can select the naming options that you want."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52691,8 +52693,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/scalc/guide.po b/source/en-ZA/helpcontent2/source/text/scalc/guide.po
index 941b22c7f3e..5617a48200b 100644
--- a/source/en-ZA/helpcontent2/source/text/scalc/guide.po
+++ b/source/en-ZA/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-07-05 21:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467754612.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467754587.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -2144,8 +2144,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11882,8 +11882,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialogue appears."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11935,8 +11935,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/00.po b/source/en-ZA/helpcontent2/source/text/shared/00.po
index 4c254700f88..0dc195b7bf5 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/00.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 21:37+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-05-24 08:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467754661.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1464078443.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -12290,15 +12290,6 @@ msgstr "Choose <emph>Format - Page - Background</emph> tab (in $[officename] Imp
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colours</emph> tab"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/en-ZA/helpcontent2/source/text/shared/01.po b/source/en-ZA/helpcontent2/source/text/shared/01.po
index 63d6134dd73..85b1483c7f4 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/01.po
+++ b/source/en-ZA/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 22:26+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-07-05 21:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467757602.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467755285.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -8311,8 +8311,8 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
-msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
+msgstr ""
#: 02100100.xhp
msgctxt ""
@@ -25790,32 +25790,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "Colours"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colours</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr "Select a colour to apply, save the current colour list, or load a different colour list."
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43456,6 +43430,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/en-ZA/helpcontent2/source/text/shared/guide.po b/source/en-ZA/helpcontent2/source/text/shared/guide.po
index 528435602a6..f45c0757170 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/guide.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 22:00+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-07-05 21:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467756015.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467755924.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2278,7 +2278,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9948,8 +9948,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12470,20 +12470,20 @@ msgstr "On the <emph>Options</emph> tab page, make sure that the <emph>Synchroni
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
#: labels.xhp
msgctxt ""
@@ -18393,58 +18393,53 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Starting the $[officename] Software With Parameters"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Starting the $[officename] Software With Parameters"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "Starting the $[officename] Software From the Command Line"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
msgstr ""
@@ -18453,16 +18448,14 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
msgstr ""
@@ -18471,679 +18464,649 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "Valid Command Line Parameters"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "Parameter"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "Meaning"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "-help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialogue box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
+msgid "Opens the file and applies specified macros from the file."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
+msgid "Getting help and information"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "-writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "Starts with an empty Writer document."
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "-calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "Starts with an empty Calc document."
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "-draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "Starts with an empty Draw document."
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "-impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "Starts with an empty Impress document."
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "-math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "Starts with an empty Math document."
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "-global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "Starts with an empty Writer master document."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "-web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "Starts with an empty HTML document."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id315330t\n"
+"help.text"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315053o\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "-show {filename.odp}"
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id20161204101917197\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id3146786\n"
"help.text"
-msgid "--minimized"
-msgstr "-minimised"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
+"help.text"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "Starts minimised. The splash screen is not displayed."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "-invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "Starts in invisible mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogues opened via the <link href=\"http://api.openoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "It cannot be used in conjunction with <emph>-quickstart</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "More information is found in the <emph>$[officename] Developer's Guide</emph>."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
"help.text"
-msgid "--norestore"
-msgstr "-norestore"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
+"help.text"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "Disables restart and file recovery after a system crash."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "-nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "Disables the Welcome Wizard."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "-quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Activates the Quickstarter."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "-accept={UNO string}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "More information is found in the <emph>$[officename] Developer's Guide</emph>."
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "-accept={UNO string}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
+msgid "Exit after loading documents."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {filename1} {filename2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "-pt {Printername} {filename1} {filename2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {filename}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "Opens <emph>{filename}</emph> for editing, even if it is a template."
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "-view {filename}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {filename}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "Creates a new document using <emph>{filename}</emph> as a template."
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "-nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "Disables the splash screen at program start."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "-nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "If the file name contains spaces, then it must be enclosed in quotation marks."
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "Starts without displaying anything except the splash screen."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3150828\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "-nofirststartwizard"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3145268\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "Add this parameter to the program start command to suppress the Welcome Wizard."
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id3153838\n"
"help.text"
-msgid "--display {display}"
-msgstr "-display {display}"
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id315053p\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "--headless"
-msgstr "-headless"
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id315053q\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "Starts in \"headless mode\" which allows using the application without user interface."
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.openoffice.org\" name=\"API\">API</link>."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "--infilter={filter}"
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
+msgid "Ignored switches"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (MacOS X only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
+msgid "Ignored (COM+ related; Windows only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id20161204014529900\n"
+"help.text"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
msgstr ""
#: startcenter.xhp
diff --git a/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
index 091b1e5c861..8c8618c56b7 100644
--- a/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 19:52+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-12-21 22:12+0000\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467661962.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482358332.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -8959,7 +8959,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Optimize"
-msgstr "Optimize"
+msgstr "Optimise"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10521,7 +10521,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Optimize"
-msgstr "Optimize"
+msgstr "Optimise"
#: Effects.xcu
msgctxt ""
@@ -17315,7 +17315,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Capitalize Every Word"
-msgstr "~Capitalize Every Word"
+msgstr "~Capitalise Every Word"
#: GenericCommands.xcu
msgctxt ""
@@ -22651,7 +22651,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "%PRODUCTNAME Basic Macro Organizer..."
-msgstr "%PRODUCTNAME Basic Macro Organizer..."
+msgstr "%PRODUCTNAME Basic Macro Organiser..."
#: GenericCommands.xcu
msgctxt ""
@@ -23460,7 +23460,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Optimize"
-msgstr "Optimize"
+msgstr "Optimise"
#: ImpressWindowState.xcu
msgctxt ""
@@ -29843,7 +29843,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Optimize"
-msgstr "Optimize"
+msgstr "Optimise"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -30295,7 +30295,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Optimize"
-msgstr "Optimize"
+msgstr "Optimise"
#: WriterGlobalWindowState.xcu
msgctxt ""
@@ -30766,7 +30766,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Optimize"
-msgstr "Optimize"
+msgstr "Optimise"
#: WriterReportWindowState.xcu
msgctxt ""
@@ -32149,7 +32149,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Optimize"
-msgstr "Optimize"
+msgstr "Optimise"
#: XFormsWindowState.xcu
msgctxt ""
diff --git a/source/en-ZA/sc/source/ui/src.po b/source/en-ZA/sc/source/ui/src.po
index b3da15fda51..b0c8e84c083 100644
--- a/source/en-ZA/sc/source/ui/src.po
+++ b/source/en-ZA/sc/source/ui/src.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 19:59+0000\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
+"PO-Revision-Date: 2016-12-01 15:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467662374.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480605518.000000\n"
#: filter.src
msgctxt ""
@@ -9697,8 +9697,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Totals the arguments that meet the conditions."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/en-ZA/sd/source/ui/view.po b/source/en-ZA/sd/source/ui/view.po
index 89a4e694646..02eb687ba63 100644
--- a/source/en-ZA/sd/source/ui/view.po
+++ b/source/en-ZA/sd/source/ui/view.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-04-16 21:40+0200\n"
-"PO-Revision-Date: 2015-12-11 15:41+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-12-21 22:12+0000\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449848463.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482358376.000000\n"
#: DocumentRenderer.src
#, fuzzy
@@ -300,7 +300,6 @@ msgid "Black & white"
msgstr "Black & white"
#: DocumentRenderer.src
-#, fuzzy
msgctxt ""
"DocumentRenderer.src\n"
"STR_IMPRESS_PRINT_UI_OPTIONS\n"
@@ -310,7 +309,6 @@ msgid "~Size"
msgstr "~Size"
#: DocumentRenderer.src
-#, fuzzy
msgctxt ""
"DocumentRenderer.src\n"
"STR_IMPRESS_PRINT_UI_OPTIONS.STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES\n"
diff --git a/source/en-ZA/sd/uiconfig/simpress/ui.po b/source/en-ZA/sd/uiconfig/simpress/ui.po
index 8e77c583a39..bee0c902833 100644
--- a/source/en-ZA/sd/uiconfig/simpress/ui.po
+++ b/source/en-ZA/sd/uiconfig/simpress/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-25 12:43+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-12-21 22:13+0000\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: none\n"
"Language: en_ZA\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1464180214.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482358388.000000\n"
#: customanimationeffecttab.ui
msgctxt ""
@@ -2820,7 +2820,6 @@ msgid "Contents"
msgstr "Contents"
#: printeroptions.ui
-#, fuzzy
msgctxt ""
"printeroptions.ui\n"
"originalcolors\n"
diff --git a/source/en-ZA/starmath/uiconfig/smath/ui.po b/source/en-ZA/starmath/uiconfig/smath/ui.po
index 9982ca15174..314dda94f66 100644
--- a/source/en-ZA/starmath/uiconfig/smath/ui.po
+++ b/source/en-ZA/starmath/uiconfig/smath/ui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 23:38+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-12-21 22:13+0000\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: none\n"
"Language: en_ZA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435275501.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482358414.000000\n"
#: alignmentdialog.ui
msgctxt ""
@@ -570,14 +570,13 @@ msgid "Print Options"
msgstr ""
#: smathsettings.ui
-#, fuzzy
msgctxt ""
"smathsettings.ui\n"
"sizenormal\n"
"label\n"
"string.text"
msgid "O_riginal size"
-msgstr "Original size"
+msgstr "O_riginal size"
#: smathsettings.ui
#, fuzzy
diff --git a/source/en-ZA/svtools/source/misc.po b/source/en-ZA/svtools/source/misc.po
index ff3770d78e6..8d03915733b 100644
--- a/source/en-ZA/svtools/source/misc.po
+++ b/source/en-ZA/svtools/source/misc.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 20:14+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-12-21 22:13+0000\n"
+"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467663250.000000\n"
+"X-POOTLE-MTIME: 1482358423.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3983,7 +3983,6 @@ msgid "The picture needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_ESTIMATED_SIZE_VEC\n"
diff --git a/source/en-ZA/svx/uiconfig/ui.po b/source/en-ZA/svx/uiconfig/ui.po
index 94ea4dbc140..49e464cfc72 100644
--- a/source/en-ZA/svx/uiconfig/ui.po
+++ b/source/en-ZA/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 20:19+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-01 15:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467663595.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480605738.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -3049,7 +3049,7 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
+msgid "Ignore diac_ritics"
msgstr ""
#: findreplacedialog.ui
@@ -3058,7 +3058,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -5144,10 +5144,10 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5162,10 +5162,19 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
+msgstr ""
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
diff --git a/source/en-ZA/sw/uiconfig/swriter/ui.po b/source/en-ZA/sw/uiconfig/swriter/ui.po
index b895165fc9b..ffa477ffc5d 100644
--- a/source/en-ZA/sw/uiconfig/swriter/ui.po
+++ b/source/en-ZA/sw/uiconfig/swriter/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 20:25+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-11-15 15:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: en_ZA\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467663906.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1479224926.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -10041,26 +10041,6 @@ msgid "Style"
msgstr ""
#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-#, fuzzy
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
diff --git a/source/en-ZA/xmlsecurity/uiconfig/ui.po b/source/en-ZA/xmlsecurity/uiconfig/ui.po
index f84f24b2442..0bf7979b797 100644
--- a/source/en-ZA/xmlsecurity/uiconfig/ui.po
+++ b/source/en-ZA/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-05-25 12:47+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-01 15:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: en_ZA\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1464180461.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480605738.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr ""
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
diff --git a/source/eo/basic/source/classes.po b/source/eo/basic/source/classes.po
index 0269e74ecc2..85dda2fa57d 100644
--- a/source/eo/basic/source/classes.po
+++ b/source/eo/basic/source/classes.po
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
"X-POOTLE-MTIME: 1451686665.000000\n"
#: sb.src
@@ -1231,3 +1231,1082 @@ msgctxt ""
"string.text"
msgid "The library could not be removed from memory."
msgstr "Ne eblis forigi la bibliotekon el la memoro."
+
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_NUMBER_OF_ARGS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid number of arguments."
+msgstr "Nevalida nombro de argumentoj."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_SYNTAX & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Syntax error."
+msgstr "Sintaksa eraro."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_GOSUB & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Return without Gosub."
+msgstr "Revenordono sen AlSub."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_REDO_FROM_START & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect entry; please retry."
+msgstr "Malĝusta elemento; bonvolu reprovi."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_ARGUMENT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid procedure call."
+msgstr "Nevalida procedurvoko."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_MATH_OVERFLOW & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Overflow."
+msgstr "Troo."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_MEMORY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Not enough memory."
+msgstr "Nesufiĉa memoro."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ALREADY_DIM & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Array already dimensioned."
+msgstr "Tabelo jam dimensiigita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_OUT_OF_RANGE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Index out of defined range."
+msgstr "Indekso ekster difinita amplekso."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DUPLICATE_DEF & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Duplicate definition."
+msgstr "Duobla difino."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ZERODIV & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Division by zero."
+msgstr "Divido per nul."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_VAR_UNDEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Variable not defined."
+msgstr "Variablo nedifinita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_CONVERSION & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Data type mismatch."
+msgstr "Datumtipa miskongruo."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_PARAMETER & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid parameter."
+msgstr "Nevalida parametro."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_USER_ABORT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Process interrupted by user."
+msgstr "Uzanto interrompis procedon."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_RESUME & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Resume without error."
+msgstr "Daŭrigi sen eraro."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_STACK_OVERFLOW & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Not enough stack memory."
+msgstr "Nesufiĉa stakmemoro."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROC_UNDEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Sub-procedure or function procedure not defined."
+msgstr "Subproceduro aŭ funkcia proceduro ne difinita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_DLL_LOAD & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Error loading DLL file."
+msgstr "Eraro dum ŝargo de DLL-dosiero."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_DLL_CALL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Wrong DLL call convention."
+msgstr "Malprava DLL-voka sintakso."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_INTERNAL_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Internal error $(ARG1)."
+msgstr "Interna eraro $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_CHANNEL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid file name or file number."
+msgstr "Nevalida dosiernomo aŭ dosiernombro."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_FILE_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "File not found."
+msgstr "Dosiero netrovita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_FILE_MODE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect file mode."
+msgstr "Malĝusta dosiera reĝimo."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_FILE_ALREADY_OPEN & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "File already open."
+msgstr "Dosiero jam malfermita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_IO_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Device I/O error."
+msgstr "Eraro de en/eliga aparato."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_FILE_EXISTS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "File already exists."
+msgstr "La dosiero jam ekzistas."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_RECORD_LENGTH & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect record length."
+msgstr "Malĝusta rikordlongo."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DISK_FULL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Disk or hard drive full."
+msgstr "Disko aŭ fiksita disko plena."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_READ_PAST_EOF & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Reading exceeds EOF."
+msgstr "Provo legi post EOF."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_RECORD_NUMBER & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect record number."
+msgstr "Malĝusta rikordnumero."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_TOO_MANY_FILES & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Too many files."
+msgstr "Tro da dosieroj."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_DEVICE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Device not available."
+msgstr "Aparato ne disponebla."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ACCESS_DENIED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Access denied."
+msgstr "Aliro rifuzita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_READY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Disk not ready."
+msgstr "Disko ne preta."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_IMPLEMENTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Not implemented."
+msgstr "Ne realigita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DIFFERENT_DRIVE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Renaming on different drives impossible."
+msgstr "Renomi ĉe malsamaj diskoj ne eblas."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ACCESS_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Path/File access error."
+msgstr "Eraro pri aliro al vojprefikso/dosiero."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PATH_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Path not found."
+msgstr "Vojprefikso ne trovita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object variable not set."
+msgstr "Objekta variablo ne atribuita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_PATTERN & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid string pattern."
+msgstr "Nevalida ĉena motivo."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SBERR_IS_NULL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Use of zero not permitted."
+msgstr "Uzi nulon ne permesitas."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE Error."
+msgstr "DDE-eraro."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_WAITINGACK & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Awaiting response to DDE connection."
+msgstr "Atendado de respondo al DDE-konekto."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_OUTOFCHANNELS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "No DDE channels available."
+msgstr "Neniu kanalo DDE disponeblas."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_NO_RESPONSE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "No application responded to DDE connect initiation."
+msgstr "Neniu aplikaĵo respondis al praagordado de konekto DDE."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_MULT_RESPONSES & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Too many applications responded to DDE connect initiation."
+msgstr "Tro da aplikaĵoj respondis al praagordado de konekto DDE."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_CHANNEL_LOCKED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE channel locked."
+msgstr "Kanalo DDE ŝlosita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_NOTPROCESSED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "External application cannot execute DDE operation."
+msgstr "Ekstera aplikaĵo ne povas ruli DDE-operacion."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_TIMEOUT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Timeout while waiting for DDE response."
+msgstr "Tempolimo dum atendado de DDE-respondo."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_USER_INTERRUPT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "User pressed ESCAPE during DDE operation."
+msgstr "La uzanto premis la ESKAP-klavon dum DDE-operacio."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_BUSY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "External application busy."
+msgstr "Ekstera aplikaĵo okupata."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_NO_DATA & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE operation without data."
+msgstr "DDE-operacio sen datumoj."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_WRONG_DATA_FORMAT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Data are in wrong format."
+msgstr "Datumoj en malĝusta formato."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_PARTNER_QUIT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "External application has been terminated."
+msgstr "Ekstera aplikaĵo finiĝis."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_CONV_CLOSED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE connection interrupted or modified."
+msgstr "Konekto DDE interrompita aŭ modifita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_NO_CHANNEL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE method invoked with no channel open."
+msgstr "DDE-metodo vokita sed neniu kanalo malfermita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_INVALID_LINK & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid DDE link format."
+msgstr "Nevalida DDE-ligila formato."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_QUEUE_OVERFLOW & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE message has been lost."
+msgstr "DDE-mesaĝo estas perdita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_LINK_ALREADY_EST & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Paste link already performed."
+msgstr "Jam algluis ligilon."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_LINK_INV_TOPIC & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Link mode cannot be set due to invalid link topic."
+msgstr "Ne eblas ŝalti ligilan reĝimon pro nevalida ligila temo."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DDE_DLL_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "DDE requires the DDEML.DLL file."
+msgstr "DDE bezonas la dosieron DDEML.DLL."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_CANNOT_LOAD & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Module cannot be loaded; invalid format."
+msgstr "Ne eblas ŝargi modulon; nevalida formato."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_INDEX & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid object index."
+msgstr "Nevalida objekta indekso."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_ACTIVE_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object is not available."
+msgstr "Objekto nedisponeblas."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_PROP_VALUE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Incorrect property value."
+msgstr "Malĝusta atributa valoro."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROP_READONLY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "This property is read-only."
+msgstr "Ĉi tiu atributo estas nurlega."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROP_WRITEONLY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "This property is write only."
+msgstr "Ĉi tiu atributo estas nurskriba."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_INVALID_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid object reference."
+msgstr "Nevalida objekta referenco."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_METHOD & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Property or method not found: $(ARG1)."
+msgstr "Propreco aŭ metodo ne trovita: $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NEEDS_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object required."
+msgstr "Objekto bezonata."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_INVALID_USAGE_OBJECT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid use of an object."
+msgstr "Nevalida uzo de objekto."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_OLE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "OLE Automation is not supported by this object."
+msgstr "OLE-aŭtomacio ne estas subtenata de ĉi tiu objekto."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_METHOD & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "This property or method is not supported by the object."
+msgstr "Ĉi tiu atributo aŭ metodo ne estas subtenata de la objekto."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_OLE_ERROR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "OLE Automation Error."
+msgstr "OLE-aŭtomacia eraro."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_ACTION & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "This action is not supported by given object."
+msgstr "La donita objekto ne subtenas tiun agon."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_NAMED_ARGS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Named arguments are not supported by given object."
+msgstr "Nomitaj argumentoj ne estas subtenataj de la donita objekto."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_LOCALE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "The current locale setting is not supported by the given object."
+msgstr "La atribuita aktuala lokaĵaro ne estas subtenata de la donita objekto."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NAMED_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Named argument not found."
+msgstr "Nomita argumento ne trovita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_OPTIONAL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Argument is not optional."
+msgstr "Argumento estas deviga."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_WRONG_ARGS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid number of arguments."
+msgstr "Nevalida nombro de argumentoj."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_A_COLL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object is not a list."
+msgstr "Objekto ne estas listo."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_ORDINAL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid ordinal number."
+msgstr "Nevalida vicorda numero."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_DLLPROC_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Specified DLL function not found."
+msgstr "Specifita DLL-funkcio ne trovita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_CLIPBD_FORMAT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid clipboard format."
+msgstr "Nevalida tondeja formato."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROPERTY_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object does not have this property."
+msgstr "Objekto ne havas tiun atributon."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_METHOD_NOT_FOUND & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Object does not have this method."
+msgstr "Objekto ne havas tiun metodon."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_ARG_MISSING & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Required argument lacking."
+msgstr "Bezonata argumento mankas."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_METHOD_FAILED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Error executing a method."
+msgstr "Eraro dum rulado de metodo."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_SETPROP_FAILED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unable to set property."
+msgstr "Ne eblas agordi."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_GETPROP_FAILED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unable to determine property."
+msgstr "Ne eblas trovi atributon."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNEXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unexpected symbol: $(ARG1)."
+msgstr "Neatendita simbolo: $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Expected: $(ARG1)."
+msgstr "Atendita: $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_SYMBOL_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Symbol expected."
+msgstr "Simbolo atendita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_VAR_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Variable expected."
+msgstr "Variablo atendita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_LABEL_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Label expected."
+msgstr "Etikedo atendita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_LVALUE_EXPECTED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Value cannot be applied."
+msgstr "Ne eblas apliki valoron."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_VAR_DEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Variable $(ARG1) already defined."
+msgstr "Variablo $(ARG1) jam difinita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROC_DEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Sub procedure or function procedure $(ARG1) already defined."
+msgstr "Subproceduro aŭ funkcia proceduro $(ARG1) jam difinita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_LABEL_DEFINED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Label $(ARG1) already defined."
+msgstr "Etikedo $(ARG1) jam difinita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_VAR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Variable $(ARG1) not found."
+msgstr "Variablo $(ARG1) ne trovita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_ARRAY & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Array or procedure $(ARG1) not found."
+msgstr "Tabelo aŭ proceduro $(ARG1) ne trovita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_PROC & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Procedure $(ARG1) not found."
+msgstr "Proceduro $(ARG1) ne trovita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_LABEL & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Label $(ARG1) undefined."
+msgstr "Etikedo $(ARG1) ne difinita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_UNDEF_TYPE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unknown data type $(ARG1)."
+msgstr "Nekonata datumtipo $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_EXIT & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Exit $(ARG1) expected."
+msgstr "Eliri el $(ARG1) atendite."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_BLOCK & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Statement block still open: $(ARG1) missing."
+msgstr "Ordona bloko ankoraŭ malfermita: $(ARG1) mankas."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_BRACKETS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Parentheses do not match."
+msgstr "Parentezoj ne kongruas."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_DECLARATION & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Symbol $(ARG1) already defined differently."
+msgstr "Simbolo $(ARG1) jam malsame difinita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_PARAMETERS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Parameters do not correspond to procedure."
+msgstr "Parametroj ne kongruas al proceduro."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_CHAR_IN_NUMBER & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Invalid character in number."
+msgstr "Nevalida signo en numero."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_MUST_HAVE_DIMS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Array must be dimensioned."
+msgstr "Tabelo devas esti dimensiigita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_IF & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Else/Endif without If."
+msgstr "Alie/seFino sen se."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_IN_SUBR & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "$(ARG1) not allowed within a procedure."
+msgstr "$(ARG1) ne permesita en proceduro."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NOT_IN_MAIN & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "$(ARG1) not allowed outside a procedure."
+msgstr "$(ARG1) ne permesita ekster proceduro."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_WRONG_DIMS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Dimension specifications do not match."
+msgstr "Dimensiaj specifoj ne kongruas."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_BAD_OPTION & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Unknown option: $(ARG1)."
+msgstr "Nekonata agordaĵo: $(ARG1)."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_CONSTANT_REDECLARED & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Constant $(ARG1) redefined."
+msgstr "Konstanto $(ARG1) redifinita."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_PROG_TOO_LARGE & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Program too large."
+msgstr "Programo tro granda."
+
+#: sb.src
+msgctxt ""
+"sb.src\n"
+"RID_BASIC_START\n"
+"SbERR_NO_STRINGS_ARRAYS & ERRCODE_RES_MASK\n"
+"string.text"
+msgid "Strings or arrays not permitted."
+msgstr "Ĉenoj aŭ tabeloj ne permesitaj."
diff --git a/source/eo/dbaccess/source/ui/dlg.po b/source/eo/dbaccess/source/ui/dlg.po
index e74eb489234..039525e315c 100644
--- a/source/eo/dbaccess/source/ui/dlg.po
+++ b/source/eo/dbaccess/source/ui/dlg.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-08-25 12:34+0200\n"
-"PO-Revision-Date: 2016-07-04 19:40+0000\n"
+"PO-Revision-Date: 2016-05-01 21:14+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467661239.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1462137274.000000\n"
#: AutoControls.src
msgctxt ""
@@ -850,3 +850,10 @@ msgctxt ""
"string.text"
msgid "Details"
msgstr "Detaloj"
+
+msgctxt ""
+"AutoControls.src\n"
+"STR_COMMONURL\n"
+"string.text"
+msgid "Datasource URL"
+msgstr "Datumfonto URL"
diff --git a/source/eo/helpcontent2/source/text/scalc/00.po b/source/eo/helpcontent2/source/text/scalc/00.po
index 9004f5012fa..e61bba06c48 100644
--- a/source/eo/helpcontent2/source/text/scalc/00.po
+++ b/source/eo/helpcontent2/source/text/scalc/00.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-05 21:54+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-05-24 07:32+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467755677.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1464075164.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -573,8 +573,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">Elektu <emph>Enmeti - Nomojn</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -591,8 +591,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "Elektu <emph>Enmeti - Nomojn - Difini</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -609,8 +609,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">Elektu <emph>Enmeti - Nomojn - Enmeti</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -618,8 +618,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">Elektu <emph>Enmeti - Nomojn - Krei</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
@@ -627,8 +627,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">Elektu <emph>Enmeti - Nomojn - Etikedoj</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr ""
#: 00000405.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/scalc/01.po b/source/eo/helpcontent2/source/text/scalc/01.po
index fbd10dd0264..20e17424782 100644
--- a/source/eo/helpcontent2/source/text/scalc/01.po
+++ b/source/eo/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: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 19:27+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-10-18 19:24+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476818837.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1476818691.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -20767,8 +20767,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=INDEKSO(sumoX;4;1)</item> liveras la valoron el la ĉelaro <emph>sumoX</emph> en vico 4 kaj kolumno 1 kiel agordita en <emph>Enigi - Nomoj - Agordi</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20792,7 +20792,7 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
msgstr ""
#: 04060109.xhp
@@ -50195,8 +50195,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "Nomoj"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50204,8 +50204,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Nomoj</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50595,8 +50595,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Elektu la sekcion kiu enhavas ĉiujn ĉelarojn nomotajn. Tiam elektu <emph>Enigi - Nomoj - Krei</emph>. Tio malfermas la dialogon <emph>Krei Nomojn</emph>, el kiu vi povas elekti la nomigajn eblojn bezonatajn."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52489,8 +52489,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Elektu <emph>-neniun-</emph> por forigi agorditan presotan zonon por la aktuala kalkultabelo. Elektu <emph>-tutan folion-</emph> por agordi la aktualan folion esti presota zono. Elektu <emph>-elektaĵon-</emph> por agordi la elektitan zonon de kalkultabelo esti presota zono. Elektante <emph>-agorditan de uzanto-</emph>, vi povas agordi presotan zonon kiun vi difinis per la menuo <emph>Formato - Presaj Zonoj - Agordi</emph>. Se vi nomis zonon per la menuo <emph>Enigi - Nomoj - Agordi</emph>, tiu nomo vidiĝos kaj estos elektebla el la lista kadro."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/scalc/guide.po b/source/eo/helpcontent2/source/text/scalc/guide.po
index 97cf7d61e07..ff3d49d2e12 100644
--- a/source/eo/helpcontent2/source/text/scalc/guide.po
+++ b/source/eo/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-07-06 00:55+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467766512.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467766500.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -2133,7 +2133,7 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
msgstr ""
#: cellreference_dragdrop.xhp
@@ -11841,7 +11841,7 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
msgstr ""
#: value_with_name.xhp
@@ -11894,7 +11894,7 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
msgstr ""
#: webquery.xhp
diff --git a/source/eo/helpcontent2/source/text/shared/00.po b/source/eo/helpcontent2/source/text/shared/00.po
index 4d243444206..2cfa893de14 100644
--- a/source/eo/helpcontent2/source/text/shared/00.po
+++ b/source/eo/helpcontent2/source/text/shared/00.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-06 00:56+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-05-24 08:28+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Esperanto <eo@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467766560.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1464078487.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -12263,15 +12263,6 @@ msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr ""
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/eo/helpcontent2/source/text/shared/01.po b/source/eo/helpcontent2/source/text/shared/01.po
index aa75f78f60a..d23f04cf37c 100644
--- a/source/eo/helpcontent2/source/text/shared/01.po
+++ b/source/eo/helpcontent2/source/text/shared/01.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-18 19:27+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-12-23 14:56+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476818867.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482504962.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -8293,7 +8293,7 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
msgstr ""
#: 02100100.xhp
@@ -15485,12 +15485,13 @@ msgid "Explanation"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
@@ -15501,12 +15502,13 @@ msgid "Does not display extra zeros."
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152802\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 05020301.xhp
msgctxt ""
@@ -15565,12 +15567,13 @@ msgid "3456.78 as 3456.8"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3150355\n"
"help.text"
msgid "####.#"
-msgstr ""
+msgstr "####.#"
#: 05020301.xhp
msgctxt ""
@@ -15613,12 +15616,13 @@ msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3145315\n"
"help.text"
msgid "# ???/???"
-msgstr ""
+msgstr "# ???/???"
#: 05020301.xhp
msgctxt ""
@@ -15693,12 +15697,13 @@ msgid "15000 as 15,000"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3151223\n"
"help.text"
msgid "#,###"
-msgstr ""
+msgstr "#,###"
#: 05020301.xhp
msgctxt ""
@@ -15709,12 +15714,13 @@ msgid "16000 as 16"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3153961\n"
"help.text"
msgid "#,"
-msgstr ""
+msgstr "#,"
#: 05020301.xhp
msgctxt ""
@@ -16029,12 +16035,13 @@ msgid "Denominator is calculated to get the nearest value of the fraction with r
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3146926\n"
"help.text"
msgid "# ?/???"
-msgstr ""
+msgstr "# ?/???"
#: 05020301.xhp
msgctxt ""
@@ -25693,32 +25700,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr ""
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "Koloroj"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Koloroj</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr ""
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43328,6 +43309,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr ""
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
@@ -46256,3 +46445,3089 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".\">Specifies the maximum number of characters for a string.</ahelp>"
msgstr ""
+
+msgctxt ""
+"05210200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Colors"
+msgstr "Koloroj"
+
+msgctxt ""
+"05210200.xhp\n"
+"hd_id3152895\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
+msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Koloroj</link>"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3146936\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Malfermi</link>"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3147250\n"
+"11\n"
+"help.text"
+msgid "Up One Level"
+msgstr "Supreniri je unu nivelo"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145117\n"
+"81\n"
+"help.text"
+msgid "Version"
+msgstr "Versio"
+
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3154125\n"
+"27\n"
+"help.text"
+msgid "Open"
+msgstr "Malfermi"
+
+msgctxt ""
+"01100200.xhp\n"
+"hd_id3155342\n"
+"13\n"
+"help.text"
+msgid "Editing time:"
+msgstr "Redaktotempo:"
+
+msgctxt ""
+"01100200.xhp\n"
+"par_id3149795\n"
+"14\n"
+"help.text"
+msgid "Displays the amount of time that the file has been open for editing since the file was created. The editing time is updated when you save the file."
+msgstr "Vidigas kiom longe la dosiero estas malfermita por redakti ekde kiam ĝi estis kreita. La redaktotempo estas ĝisdatigata kiam vi konservas la dosieron."
+
+msgctxt ""
+"01100200.xhp\n"
+"hd_id3149576\n"
+"5\n"
+"help.text"
+msgid "Template:"
+msgstr "Ŝablono:"
+
+msgctxt ""
+"01170000.xhp\n"
+"par_id3151299\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Closes all $[officename] programs and prompts you to save your changes.</ahelp> <switchinline select=\"sys\"><caseinline select=\"MAC\">This command does not exist on Mac OS X systems.</caseinline><defaultinline/></switchinline>"
+msgstr "<ahelp hid=\".\">Fermas ĉiujn $[officename]-programojn kaj petas vin konservi viajn ŝanĝojn.</ahelp> <switchinline select=\"sys\"><caseinline select=\"MAC\">Ĉi tiu komando ne ekzistas en Mac OS X sistemoj.</caseinline><defaultinline/></switchinline>"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3152425\n"
+"3\n"
+"help.text"
+msgid "Search For"
+msgstr "Serĉi"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3152551\n"
+"5\n"
+"help.text"
+msgid "Replace With"
+msgstr "Anstataŭigi per"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3166410\n"
+"8\n"
+"help.text"
+msgid "Options"
+msgstr "Agordaro"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3156192\n"
+"14\n"
+"help.text"
+msgid "Backwards"
+msgstr "Malantaŭen"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3154924\n"
+"45\n"
+"help.text"
+msgid "Match case"
+msgstr "Uskleca kongruo"
+
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3147264\n"
+"47\n"
+"help.text"
+msgid "Current selection only"
+msgstr "Nur aktuala elekto"
+
+msgctxt ""
+"02190000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Plug-in"
+msgstr "Kromaĵo"
+
+msgctxt ""
+"02190000.xhp\n"
+"hd_id3146946\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02190000.xhp\" name=\"Plug-in\">Plug-in</link>"
+msgstr "<link href=\"text/shared/01/02190000.xhp\" name=\"Plug-in\">Kromaĵo</link>"
+
+msgctxt ""
+"02230100.xhp\n"
+"hd_id3150758\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02230100.xhp\" name=\"Record\">Record</link>"
+msgstr "<link href=\"text/shared/01/02230100.xhp\" name=\"Record\">Registri</link>"
+
+msgctxt ""
+"02230402.xhp\n"
+"par_id3151210\n"
+"help.text"
+msgid "<image id=\"img_id3154138\" src=\"starmath/res/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154138\" src=\"starmath/res/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Bildsimbolo</alt></image>"
+
+msgctxt ""
+"04150200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Plug-In"
+msgstr "Enmeti kromaĵon"
+
+msgctxt ""
+"04150200.xhp\n"
+"hd_id3149962\n"
+"1\n"
+"help.text"
+msgid "Insert Plug-In"
+msgstr "Enmeti kromaĵon"
+
+msgctxt ""
+"04150200.xhp\n"
+"hd_id3155552\n"
+"5\n"
+"help.text"
+msgid "Browse"
+msgstr "Foliumi"
+
+msgctxt ""
+"04150200.xhp\n"
+"hd_id3149750\n"
+"7\n"
+"help.text"
+msgid "Options"
+msgstr "Agordaro"
+
+#, fuzzy
+msgctxt ""
+"04150400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert Audio"
+msgstr "Enmeti videon"
+
+#, fuzzy
+msgctxt ""
+"04150400.xhp\n"
+"hd_id3152414\n"
+"1\n"
+"help.text"
+msgid "Insert Audio"
+msgstr "Enmeti videon"
+
+msgctxt ""
+"04150500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Insert video"
+msgstr "Enmeti videon"
+
+msgctxt ""
+"04150500.xhp\n"
+"hd_id3150999\n"
+"1\n"
+"help.text"
+msgid "Insert video"
+msgstr "Enmeti videon"
+
+#, fuzzy
+msgctxt ""
+"05020300.xhp\n"
+"par_id3145364\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Number format codes</link>"
+msgstr "<link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">Propraj formataj kodoj</link>"
+
+msgctxt ""
+"05020300.xhp\n"
+"par_id3153095\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">Custom format codes</link>"
+msgstr "<link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">Propraj formataj kodoj</link>"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150902\n"
+"86\n"
+"help.text"
+msgid "Placeholders"
+msgstr "Lokokupiloj"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3157896\n"
+"87\n"
+"help.text"
+msgid "Explanation"
+msgstr "Klarigo"
+
+#, fuzzy
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152802\n"
+"239\n"
+"help.text"
+msgid "?"
+msgstr "?"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149182\n"
+"9\n"
+"help.text"
+msgid "Number Format"
+msgstr "Numerformato"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154749\n"
+"10\n"
+"help.text"
+msgid "Format Code"
+msgstr "Formatkodo"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3149276\n"
+"230\n"
+"help.text"
+msgid "Thousands Separator"
+msgstr "Disigilo de miloj"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154905\n"
+"22\n"
+"help.text"
+msgid "Number Format"
+msgstr "Numerformato"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150822\n"
+"23\n"
+"help.text"
+msgid "Format Code"
+msgstr "Formatkodo"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3150398\n"
+"231\n"
+"help.text"
+msgid "Text and Numbers"
+msgstr "Teksto kaj numeroj"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3154330\n"
+"233\n"
+"help.text"
+msgid "Spaces"
+msgstr "Spacetoj"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3155994\n"
+"234\n"
+"help.text"
+msgid "Color"
+msgstr "Koloro"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154630\n"
+"29\n"
+"help.text"
+msgid "CYAN"
+msgstr "Cejana"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148676\n"
+"30\n"
+"help.text"
+msgid "GREEN"
+msgstr "Verda"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154123\n"
+"31\n"
+"help.text"
+msgid "BLACK"
+msgstr "Nigra"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149167\n"
+"32\n"
+"help.text"
+msgid "BLUE"
+msgstr "Blua"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3158407\n"
+"33\n"
+"help.text"
+msgid "MAGENTA"
+msgstr "Malva"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149560\n"
+"34\n"
+"help.text"
+msgid "RED"
+msgstr "Ruĝa"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147502\n"
+"35\n"
+"help.text"
+msgid "WHITE"
+msgstr "Blanka"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153368\n"
+"36\n"
+"help.text"
+msgid "YELLOW"
+msgstr "Flava"
+
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3147435\n"
+"111\n"
+"help.text"
+msgid "Conditions"
+msgstr "Kondiĉo"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152376\n"
+"39\n"
+"help.text"
+msgid "Format"
+msgstr "Formato"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3159130\n"
+"40\n"
+"help.text"
+msgid "Format Code"
+msgstr "Formatkodo"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153052\n"
+"44\n"
+"help.text"
+msgid "MM"
+msgstr "mm"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145764\n"
+"217\n"
+"help.text"
+msgid "Modifier"
+msgstr "Modifita je la:"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152967\n"
+"218\n"
+"help.text"
+msgid "Calendar"
+msgstr "Kalendaro"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154371\n"
+"146\n"
+"help.text"
+msgid "Date"
+msgstr "Dato"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156290\n"
+"148\n"
+"help.text"
+msgid "Date&Time"
+msgstr "Dato kaj tempo"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3159625\n"
+"152\n"
+"help.text"
+msgid "Time"
+msgstr "Horo"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146770\n"
+"154\n"
+"help.text"
+msgid "Time"
+msgstr "Horo"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155128\n"
+"156\n"
+"help.text"
+msgid "Date&Time"
+msgstr "Dato kaj tempo"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3159143\n"
+"158\n"
+"help.text"
+msgid "Time"
+msgstr "Horo"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154806\n"
+"160\n"
+"help.text"
+msgid "Date&Time"
+msgstr "Dato kaj tempo"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154951\n"
+"162\n"
+"help.text"
+msgid "Number"
+msgstr "Numero"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149158\n"
+"63\n"
+"help.text"
+msgid "Format"
+msgstr "Formato"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154341\n"
+"64\n"
+"help.text"
+msgid "Format Code"
+msgstr "Formatkodo"
+
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147409\n"
+"72\n"
+"help.text"
+msgid "mm"
+msgstr "mm"
+
+msgctxt ""
+"05060000.xhp\n"
+"hd_id3150449\n"
+"11\n"
+"help.text"
+msgid "Styles and Formatting"
+msgstr "Stiloj kaj formatado"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3147264\n"
+"22\n"
+"help.text"
+msgid "Automatic"
+msgstr "Aŭtomata"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3155994\n"
+"37\n"
+"help.text"
+msgid "Width"
+msgstr "Larĝo"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3156281\n"
+"39\n"
+"help.text"
+msgid "Height"
+msgstr "Alto"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3153056\n"
+"43\n"
+"help.text"
+msgid "X Offset"
+msgstr "X-Deŝovo"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3149985\n"
+"45\n"
+"help.text"
+msgid "Y Offset"
+msgstr "Y-Deŝovo"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3156060\n"
+"27\n"
+"help.text"
+msgid "Tile"
+msgstr "Kaheligi"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3150334\n"
+"29\n"
+"help.text"
+msgid "AutoFit"
+msgstr "Aŭtomate adapti"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3148555\n"
+"47\n"
+"help.text"
+msgid "Offset"
+msgstr "Deŝovo"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3151115\n"
+"49\n"
+"help.text"
+msgid "Row"
+msgstr "Vico"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3144442\n"
+"51\n"
+"help.text"
+msgid "Column"
+msgstr "Kolumno"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3150684\n"
+"53\n"
+"help.text"
+msgid "Percent"
+msgstr "Elcento"
+
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3153364\n"
+"61\n"
+"help.text"
+msgid "Background color"
+msgstr "Fona koloro"
+
+msgctxt ""
+"05210300.xhp\n"
+"hd_id3155830\n"
+"15\n"
+"help.text"
+msgid "Gradients"
+msgstr "Kolortransiroj"
+
+msgctxt ""
+"05210300.xhp\n"
+"hd_id3155341\n"
+"31\n"
+"help.text"
+msgid "Load Gradients List"
+msgstr "Ŝargi gradientan liston"
+
+msgctxt ""
+"05210300.xhp\n"
+"hd_id3148943\n"
+"33\n"
+"help.text"
+msgid "Save Gradients List"
+msgstr "Konservi gradientan liston"
+
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3147304\n"
+"25\n"
+"help.text"
+msgid "Load Hatches List"
+msgstr "Ŝargi haĉan liston"
+
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3154347\n"
+"27\n"
+"help.text"
+msgid "Save Hatches List"
+msgstr "Konservi haĉan liston"
+
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3145072\n"
+"17\n"
+"help.text"
+msgid "Foreground color"
+msgstr "Fona koloro"
+
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3149398\n"
+"19\n"
+"help.text"
+msgid "Background color"
+msgstr "Fona koloro"
+
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3150275\n"
+"9\n"
+"help.text"
+msgid "Add"
+msgstr "Aldoni"
+
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3158432\n"
+"11\n"
+"help.text"
+msgid "Modify"
+msgstr "Modifi"
+
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3159166\n"
+"21\n"
+"help.text"
+msgid "Load Bitmap List"
+msgstr "Ŝargi bitbildan liston"
+
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3151246\n"
+"23\n"
+"help.text"
+msgid "Save Bitmap List"
+msgstr "Konservi bitbildan liston"
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150930\n"
+"192\n"
+"help.text"
+msgid "Korean: formal lower case text"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155909\n"
+"195\n"
+"help.text"
+msgid "Japanese: traditional long Kanji text [DBNum3]"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3148673\n"
+"41\n"
+"help.text"
+msgid "Position (Bitmaps)"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3153524\n"
+"37\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Transparency</caseinline></switchinline>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3153381\n"
+"31\n"
+"help.text"
+msgid "Size (Bitmaps)"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154194\n"
+"141\n"
+"help.text"
+msgid "Initial Format"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3143225\n"
+"164\n"
+"help.text"
+msgid "In <item type=\"productname\">%PRODUCTNAME</item>, a date with the value \"0\" corresponds to Dec 30, 1899."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145602\n"
+"206\n"
+"help.text"
+msgid "Korean: informal upper case text"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145587\n"
+"226\n"
+"help.text"
+msgid "Republic Of China Calendar"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3158404\n"
+"169\n"
+"help.text"
+msgid "Displaying Numbers Using Native Characters"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152976\n"
+"185\n"
+"help.text"
+msgid "[NatNum3] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3166442\n"
+"135\n"
+"help.text"
+msgid "[~ROC]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150214\n"
+"198\n"
+"help.text"
+msgid "Chinese: fullwidth text [DBNum3]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154669\n"
+"187\n"
+"help.text"
+msgid "Japanese: fullwidth Arabic digits; CAL: 3/3/3 [DBNum3]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154903\n"
+"224\n"
+"help.text"
+msgid "[~jewish]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153795\n"
+"216\n"
+"help.text"
+msgid "To specify a calendar format that is independent of the locale, add a modifier in front of the date format. For example, to display a date using the Jewish calendar format in a non-Hebrew locale, enter: [~jewish]DD/MM/YYYY."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3154388\n"
+"24\n"
+"help.text"
+msgid "Increment"
+msgstr "Alkremento"
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155266\n"
+"68\n"
+"help.text"
+msgid "hh"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154656\n"
+"134\n"
+"help.text"
+msgid "Japanese Gengou Calendar"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149174\n"
+"163\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">The Date&Time format displays the date and time that an entry was made to a cell with this format. </caseinline></switchinline>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156348\n"
+"66\n"
+"help.text"
+msgid "h"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149238\n"
+"223\n"
+"help.text"
+msgid "Arabic Islamic Calendar, currently supported for the following locales: ar_EG, ar_LB, ar_SA, and ar_TN"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_idN112A3\n"
+"help.text"
+msgid "Hebrew: Hebrew letters"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145082\n"
+"147\n"
+"help.text"
+msgid "Date + Time"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149384\n"
+"211\n"
+"help.text"
+msgid "[NatNum11] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150472\n"
+"188\n"
+"help.text"
+msgid "Korean: fullwidth Arabic digits [DBNum3]; CAL: 3/3/3 [DBNum3]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150460\n"
+"145\n"
+"help.text"
+msgid "Date + Number"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3152887\n"
+"59\n"
+"help.text"
+msgid "Background Color (Hatching)"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147255\n"
+"127\n"
+"help.text"
+msgid "E"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150086\n"
+"131\n"
+"help.text"
+msgid "[~gregorian]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154854\n"
+"73\n"
+"help.text"
+msgid "Seconds as 0-59"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3152460\n"
+"63\n"
+"help.text"
+msgid "List of colors"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153781\n"
+"220\n"
+"help.text"
+msgid "Thai Buddhist Calendar"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156169\n"
+"150\n"
+"help.text"
+msgid "Number"
+msgstr "Numero"
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154114\n"
+"199\n"
+"help.text"
+msgid "Japanese: fullwidth text"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3150670\n"
+"13\n"
+"help.text"
+msgid "Hatches list"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156122\n"
+"205\n"
+"help.text"
+msgid "Japanese: traditional short Kanji text [DBNum4]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155612\n"
+"194\n"
+"help.text"
+msgid "Chinese: Chinese upper case text [DBNum2]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149424\n"
+"203\n"
+"help.text"
+msgid "Korean: informal lower case text"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3155870\n"
+"61\n"
+"help.text"
+msgid "Time Formats"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151288\n"
+"225\n"
+"help.text"
+msgid "Jewish Calendar"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152536\n"
+"176\n"
+"help.text"
+msgid "Japanese: short Kanji characters [DBNum1]; CAL: 1/4/4 [DBNum1]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148649\n"
+"102\n"
+"help.text"
+msgid "If a time is entered in the form 02:03.45 or 01:02:03.45 or 25:01:02, the following formats are assigned if no other time format has been specified: MM:SS.00 or [HH]:MM:SS.00 or [HH]:MM:SS"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149506\n"
+"75\n"
+"help.text"
+msgid "Seconds as 00-59"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154353\n"
+"186\n"
+"help.text"
+msgid "Chinese: fullwidth Arabic digits; CAL: 3/3/3 [DBNum3]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152419\n"
+"140\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">If you perform a calculation that involves one or more cells using a date format, the result is formatted according to the following mappings: </caseinline></switchinline>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147520\n"
+"181\n"
+"help.text"
+msgid "[NatNum2] Transliteration in"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3149202\n"
+"35\n"
+"help.text"
+msgid "Original"
+msgstr "Originalo"
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156173\n"
+"74\n"
+"help.text"
+msgid "s"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146070\n"
+"132\n"
+"help.text"
+msgid "Gregorian Calendar"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155962\n"
+"123\n"
+"help.text"
+msgid "GG"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150350\n"
+"191\n"
+"help.text"
+msgid "Japanese: modern long Kanji text [DBNum2]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152861\n"
+"138\n"
+"help.text"
+msgid "Era, full name and year"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3154346\n"
+"20\n"
+"help.text"
+msgid "Increments (Gradients)"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153546\n"
+"193\n"
+"help.text"
+msgid "[NatNum5] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150032\n"
+"167\n"
+"help.text"
+msgid "You can also specify the locale setting for the currency by entering the locale code for the country after the symbol. For example, [$€-407] represents Euros in Germany. To view the locale code for a country, select the country in the <emph>Language</emph> list on the <emph>Numbers</emph> tab of the <emph>Format Cells</emph> dialog."
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3146925\n"
+"142\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas</caseinline></switchinline>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148397\n"
+"228\n"
+"help.text"
+msgid "To enter a date in a cell, use the Gregorian calendar format. For example, in an English locale, enter 1/2/2002 for Jan 2, 2002."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"bm_id3153514\n"
+"help.text"
+msgid "<bookmark_value>format codes; numbers</bookmark_value><bookmark_value>conditions; in number formats</bookmark_value><bookmark_value>number formats; codes</bookmark_value><bookmark_value>currency formats</bookmark_value><bookmark_value>formats;of currencies/date/time</bookmark_value><bookmark_value>numbers; date, time and currency formats</bookmark_value><bookmark_value>Euro; currency formats</bookmark_value><bookmark_value>date formats</bookmark_value><bookmark_value>times, formats</bookmark_value>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145164\n"
+"119\n"
+"help.text"
+msgid "NNN or DDDD"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3155854\n"
+"193\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100300.xhp\" name=\"Format\">Format</link></caseinline></switchinline>"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3156113\n"
+"9\n"
+"help.text"
+msgid "Angle grid"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154592\n"
+"190\n"
+"help.text"
+msgid "Chinese: lower case text [DBNum1]"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3145619\n"
+"197\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches through all of the sheets in the current spreadsheet file.</caseinline></switchinline>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150467\n"
+"88\n"
+"help.text"
+msgid "Number format codes can consist of up to three sections separated by a semicolon (;)."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3143236\n"
+"58\n"
+"help.text"
+msgid "YY"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3159179\n"
+"115\n"
+"help.text"
+msgid "You can use any combination of numbers and the <, <=, >, >=, = and <> operators."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3144423\n"
+"21\n"
+"help.text"
+msgid "Set the number of steps for blending the two end colors of a gradient."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148973\n"
+"180\n"
+"help.text"
+msgid "Indic: Indic characters"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151187\n"
+"124\n"
+"help.text"
+msgid "Era, full name"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149588\n"
+"70\n"
+"help.text"
+msgid "m"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153688\n"
+"204\n"
+"help.text"
+msgid "[NatNum8] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156181\n"
+"50\n"
+"help.text"
+msgid "D"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3148538\n"
+"10\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3147348\n"
+"192\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100200.xhp\" name=\"Attribute\">Attribute</link></caseinline></switchinline>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3156277\n"
+"152\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">By Columns</caseinline></switchinline>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3154280\n"
+"21\n"
+"help.text"
+msgid "File name"
+msgstr "Dosiernomo"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3148798\n"
+"32\n"
+"help.text"
+msgid "Specify the dimensions of the bitmap."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150878\n"
+"210\n"
+"help.text"
+msgid "Korean: formal Hangul text [DBNum4]; CAL: 9/11/11 [DBNum4]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155344\n"
+"200\n"
+"help.text"
+msgid "Korean: fullwidth text"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145315\n"
+"18\n"
+"help.text"
+msgid "# ???/???"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149945\n"
+"178\n"
+"help.text"
+msgid "Thai: Thai characters"
+msgstr ""
+
+#: 02100001.xhp
+msgctxt ""
+"02100001.xhp\n"
+"par_id3149650\n"
+"201\n"
+"help.text"
+msgid "For example, if you enter \"window\" in the <emph>Search for</emph> box and \"&frame\" in the <emph>Replace with</emph> box, the word \"window\" is replaced with \"windowframe\"."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154557\n"
+"65\n"
+"help.text"
+msgid "Hours as 0-23"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148487\n"
+"128\n"
+"help.text"
+msgid "Number of the year within an era, with a leading zero for single-digit years"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151218\n"
+"116\n"
+"help.text"
+msgid "First letter of Name of Month"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148408\n"
+"59\n"
+"help.text"
+msgid "Year as 1900-2078"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149514\n"
+"111\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">To delete a file, right-click the file, and then choose <emph>Delete</emph>.</ahelp>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155318\n"
+"48\n"
+"help.text"
+msgid "MMMM"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155075\n"
+"197\n"
+"help.text"
+msgid "[NatNum6] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149762\n"
+"20\n"
+"help.text"
+msgid "0.##"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147289\n"
+"114\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILESAVE_DOPLAY\">Plays the selected sound file. Click again to stop playing the sound file.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150105\n"
+"73\n"
+"help.text"
+msgid "When you open a document that was created from a \"sticky template\" (as defined above), <item type=\"productname\">%PRODUCTNAME</item> checks to see if the template has been modified since the document was last opened. If the template was changed a dialog is shown where you can select which styles to apply to the document."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151223\n"
+"25\n"
+"help.text"
+msgid "#,###"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149568\n"
+"125\n"
+"help.text"
+msgid "GGG"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154142\n"
+"13\n"
+"help.text"
+msgid "9.9 as 9.900"
+msgstr ""
+
+#: 04150200.xhp
+msgctxt ""
+"04150200.xhp\n"
+"hd_id3148585\n"
+"3\n"
+"help.text"
+msgid "File/URL"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156275\n"
+"57\n"
+"help.text"
+msgid "Year as 00-99"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3154514\n"
+"110\n"
+"help.text"
+msgid "Click a column header to sort the files. Click again to reverse the sort order."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150139\n"
+"69\n"
+"help.text"
+msgid "Minutes as 0-59"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155097\n"
+"184\n"
+"help.text"
+msgid "Korean: Korean upper case characters [DBNum2]; CAL: 2/8/8 [DBNum2]"
+msgstr ""
+
+#: 02100001.xhp
+msgctxt ""
+"02100001.xhp\n"
+"par_id3153961\n"
+"44\n"
+"help.text"
+msgid "Adds the string that was found by the search criteria in the <emph>Search for</emph> box to the term in the <emph>Replace with</emph> box when you make a replacement."
+msgstr ""
+
+#: 05210200.xhp
+msgctxt ""
+"05210200.xhp\n"
+"par_id3149119\n"
+"2\n"
+"help.text"
+msgid "Select a color to apply, save the current color list, or load a different color list."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149207\n"
+"136\n"
+"help.text"
+msgid "Korean Calendar"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_idN109CC\n"
+"help.text"
+msgid "After you select the attributes that you want to search for, the <emph>Search for Styles</emph> box in the <emph>Options </emph>area of the %PRODUCTNAME Writer <emph>Find & Replace </emph>dialog changes to <emph>Including Styles</emph>."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153931\n"
+"183\n"
+"help.text"
+msgid "Japanese: traditional Kanji characters; CAL: 2/5/5 [DBNum2]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147269\n"
+"173\n"
+"help.text"
+msgid "In the following list, the Microsoft Excel [DBNumX] modifier that corresponds to <item type=\"productname\">%PRODUCTNAME</item> [NatNum] modifier is shown. If you want, you can use a [DBNumX] modifier instead of [NatNum] modifier for your locale. Whenever possible, <item type=\"productname\">%PRODUCTNAME</item> internally maps [DBNumX] modifiers to [NatNumN] modifiers."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154935\n"
+"26\n"
+"help.text"
+msgid "16000 as 16"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3157969\n"
+"133\n"
+"help.text"
+msgid "[~gengou]"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149291\n"
+"82\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILEOPEN_VERSION\">If there are multiple versions of the selected file, select the version that you want to open.</ahelp> You can save and organize multiple versions of a document by choosing <emph>File - Versions</emph>. The versions of a document are opened in read-only mode."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154527\n"
+"151\n"
+"help.text"
+msgid "Time + Time"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3143218\n"
+"67\n"
+"help.text"
+msgid "Hours as 00-23"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150292\n"
+"144\n"
+"help.text"
+msgid "Number (Days)"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145728\n"
+"45\n"
+"help.text"
+msgid "Month as Jan-Dec"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153111\n"
+"174\n"
+"help.text"
+msgid "[NatNum1] Transliterations"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156039\n"
+"77\n"
+"help.text"
+msgid "To display seconds as fractions, add the decimal delimiter to your number format code. For example, enter <emph>hh:mm:ss.00</emph> to display the time as \"01:02:03.45\"."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155500\n"
+"155\n"
+"help.text"
+msgid "Time + Date&Time"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156358\n"
+"52\n"
+"help.text"
+msgid "DD"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3152960\n"
+"196\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search in all sheets</caseinline></switchinline>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3149929\n"
+"227\n"
+"help.text"
+msgid "Entering Dates"
+msgstr ""
+
+#: 02100001.xhp
+msgctxt ""
+"02100001.xhp\n"
+"par_id3153700\n"
+"167\n"
+"help.text"
+msgid "Represents a line break that was inserted with the Shift+Enter key combination. To change a line break into a paragraph break, enter <emph>\\n</emph> in the <emph>Search for</emph> and <emph>Replace with</emph> boxes, and then perform a search and replace."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155538\n"
+"201\n"
+"help.text"
+msgid "[NatNum7] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147295\n"
+"91\n"
+"help.text"
+msgid "To define a number format that adds a different text to a number depending on if the number is positive, negative, or equal to zero, use the following format:"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"hd_id3147275\n"
+"7\n"
+"help.text"
+msgid "Bitmap Pattern"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154224\n"
+"80\n"
+"help.text"
+msgid "To include text in a number format that is applied to a cell containing numbers, place a double quotation mark (\") in front of and behind the text, or a backslash (\\) before a single character. For example, enter <emph>#.# \"meters\"</emph> to display \"3.5 meters\" or <emph>#.# \\m</emph> to display \"3.5 m\"."
+msgstr ""
+
+#: 04150200.xhp
+msgctxt ""
+"04150200.xhp\n"
+"par_id3143267\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/insertplugin/urlbtn\">Locate the plug-in that you want to insert, and then click <emph>Open</emph>.</ahelp>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150108\n"
+"62\n"
+"help.text"
+msgid "To display hours, minutes and seconds use the following number format codes."
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3145207\n"
+"153\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches from top to bottom through the columns.</caseinline></switchinline>"
+msgstr ""
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"par_id3157909\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/gradientpage/gradientslb\">Select the type of gradient that you want to apply or create.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145367\n"
+"40\n"
+"help.text"
+msgid "<item type=\"productname\">%PRODUCTNAME</item> recognizes templates that are located in any folder from the following list:"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3155103\n"
+"50\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/layout\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the <emph>Search for </emph>list. To specify a replacement style, select a style from the <emph>Replace with</emph> list.</ahelp>"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3153525\n"
+"help.text"
+msgid "Background gradient"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3144442\n"
+"121\n"
+"help.text"
+msgid "the user template folder <switchinline select=\"sys\"><caseinline select=\"UNIX\">in the home directory</caseinline><defaultinline>in the Documents and Settings folder</defaultinline></switchinline>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3145211\n"
+"13\n"
+"help.text"
+msgid "Create New Folder"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3149579\n"
+"11\n"
+"help.text"
+msgid "<variable id=\"ganze\"><ahelp hid=\"svx/ui/findreplacedialog/wholewords\">Searches for whole words or cells that are identical to the search text.</ahelp></variable>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3155805\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchlist\">Enter the text that you want to search for, or select a previous search from the list.</ahelp>"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3150358\n"
+"38\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/backgroundpage/transparencymf\">Set the transparency for the background color or graphic of a frame, where 100% is completely transparent and 0% is opaque. When you increase the transparency of the background, the underlying text or objects become visible through the background of the frame.</ahelp></caseinline></switchinline>"
+msgstr ""
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"par_id3161459\n"
+"34\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/gradientpage/save\">Saves the current list of gradients, so that you can load it later.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3147436\n"
+"69\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/search\">Finds and selects the next occurrence of the text or format that you searching for in the document.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"bm_id3145211\n"
+"help.text"
+msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; 'changed' message</bookmark_value>"
+msgstr ""
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3154946\n"
+"66\n"
+"help.text"
+msgid "Creates a new presentation document ($[officename] Impress). If activated, the <link href=\"text/shared/autopi/01050000.xhp\" name=\"Presentation Wizard\">Presentation Wizard</link> dialog appears."
+msgstr ""
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3149202\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles and Formatting window</link></caseinline><defaultinline>Styles and Formatting window</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3152364\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/gradientslb\">Click the gradient that you want to use as a background. To remove a background gradient, set <emph>As</emph> to <emph>Color</emph>, then click <emph>No Fill</emph>.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3150506\n"
+"190\n"
+"help.text"
+msgid "Replacement options are listed in the <emph>Options </emph>area of the dialog."
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3156113\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILEDLG_STANDARD\">Displays the files and folders in the folder that you are in.</ahelp> To open a file, select the file, and then click <emph>Open</emph>."
+msgstr ""
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_idN10A15\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new presentation document ($[officename] Impress). If activated, the Presentation Wizard dialog appears.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3151292\n"
+"120\n"
+"help.text"
+msgid "the shared template folder"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3153526\n"
+"help.text"
+msgid "Preview field"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3152362\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/previewctl\">Displays a preview of the currently selected gradient.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3153683\n"
+"189\n"
+"help.text"
+msgid "Search options are listed in the <emph>Options </emph>area of the dialog"
+msgstr ""
+
+#: 05020300.xhp
+msgctxt ""
+"05020300.xhp\n"
+"par_id3159156\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/numberingformatpage/formated\">Displays the number format code for the selected format. You can also enter a custom format.</ahelp> The following options are only available for user-defined number formats."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3146974\n"
+"52\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/RBT_COLUMN\">Vertically offsets the original bitmap relative to the bitmap tiles by the amount that you enter.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3157309\n"
+"64\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/LB_HATCHBCKGRDCOLOR\">Click the color that you want to use as a background for the selected hatching pattern.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3148538\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/LB_BACKGROUND_COLOR\">Select a background color for your bitmap pattern.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3147299\n"
+"44\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_X_OFFSET\">Enter the horizontal offset for tiling the bitmap.</ahelp>"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3156343\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/hatchpage/load\">Loads a different list of hatching patterns.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3149810\n"
+"38\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_X_SIZE\">Enter a width for the bitmap.</ahelp>"
+msgstr ""
+
+#: 02100100.xhp
+msgctxt ""
+"02100100.xhp\n"
+"par_id3152551\n"
+"59\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3152576\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_TILE\">Tiles the bitmap to fill the selected object.</ahelp>"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3147242\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/hatchpage/anglectl\">Click a position in the grid to define the rotation angle for the hatch lines.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3149481\n"
+"30\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_STRETCH\">Stretches the bitmap to fill the selected object. To use this feature, clear the <emph>Tile </emph>box.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3155369\n"
+"50\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/RBT_ROW\">Horizontally offsets the original bitmap relative to the bitmap tiles by the amount that you enter.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3150360\n"
+"25\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/NUM_FLD_STEPCOUNT\">Enter the number of steps for blending the two end colors of the gradient.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3149457\n"
+"23\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_STEPCOUNT\">Automatically determines the number of steps for blending the two end colors of the gradient.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3125865\n"
+"34\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_SCALE\">Rescales the bitmap relative to the size of the selected object by the percentage values that you enter in the <emph>Width</emph> and <emph>Height</emph> boxes . Clear this checkbox to resize the selected object with the measurements that you enter in the <emph>Width</emph> and <emph>Height</emph> boxes.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3148559\n"
+"46\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_Y_OFFSET\">Enter the vertical offset for tiling the bitmap.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3150868\n"
+"40\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_Y_SIZE\">Enter a height for the bitmap.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3153970\n"
+"36\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/TSB_ORIGINAL\">Retains the original size of the bitmap when filling the selected object. To resize the bitmap, clear this checkbox, and then click <emph>Relative</emph>.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3146847\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/LB_BITMAPS\">Select a bitmap in the list, and then click <emph>OK</emph> to apply the pattern to the selected object.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3152940\n"
+"62\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/CB_HATCHBCKGRD\">Applies a background color to the hatching pattern. Select this checkbox, and then click a color in the list.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3155341\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_LOAD\">Loads a different list of bitmaps.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3154306\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_ADD\">Adds a bitmap that you created in the <emph>Pattern Editor </emph>to the current list.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3151385\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_SAVE\">Saves the current list of bitmaps, so that you can load it later.</ahelp>"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3155314\n"
+"54\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/MTR_FLD_OFFSET\">Enter the percentage to offset the rows or columns.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3155535\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/LB_COLOR\">Select a foreground color, and then click in the grid to add a pixel to the pattern.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3161458\n"
+"125\n"
+"help.text"
+msgid "<ahelp hid=\"svt/ui/querydeletedialog/no\" visibility=\"hidden\">Click to cancel deletion of the file with the name shown in this dialog.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153331\n"
+"124\n"
+"help.text"
+msgid "<ahelp hid=\"svt/ui/querydeletedialog/yes\" visibility=\"hidden\">Click to delete the file with the name shown in this dialog.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147226\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"SVT_HID_FILEOPEN_LEVELUP\">Move up one folder in the folder hierarchy. Long-click to see the higher level folders.</ahelp>"
+msgstr ""
+
+#: 04150400.xhp
+msgctxt ""
+"04150400.xhp\n"
+"par_id3154840\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"klang\"><ahelp hid=\".uno:InsertSound\">Inserts an audio file into the current document.</ahelp></variable>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3151191\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"oeffnentext\"><ahelp hid=\"fpicker/ui/explorerfiledialog/ExplorerFileDialog\">Opens or imports a file.</ahelp></variable>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153969\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_type\">Select the file type that you want to open, or select <emph>All Files (*)</emph> to display a list of all of the files in the folder.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153681\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/new_folder\">Creates a new folder.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3161656\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> that starts with the protocol name ftp, http, or https.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3152933\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/open\">Opens the selected document(s).</ahelp>"
+msgstr ""
+
+#: 05280000.xhp
+msgctxt ""
+"05280000.xhp\n"
+"par_id3154297\n"
+"70\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/dockingfontwork/slanty\">Vertically slants the characters in the text object.</ahelp>"
+msgstr ""
+
+#: 05350200.xhp
+msgctxt ""
+"05350200.xhp\n"
+"par_id3145785\n"
+"32\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/docking3deffects/inverthormals\">Inverts the light source.</ahelp>"
+msgstr ""
+
+#: 01100400.xhp
+msgctxt ""
+"01100400.xhp\n"
+"hd_id3156027\n"
+"5\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tables: </caseinline><caseinline select=\"CALC\">Number of Sheets: </caseinline></switchinline>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3163821\n"
+"68\n"
+"help.text"
+msgid "Find Next"
+msgstr ""
+
+#: 05280000.xhp
+msgctxt ""
+"05280000.xhp\n"
+"par_id3149202\n"
+"68\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/dockingfontwork/slantx\">Horizontally slants the characters in the text object.</ahelp>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154380\n"
+"21\n"
+"help.text"
+msgid "Depending on your language setting, you can use a comma, a period or a blank as a thousands separator. You can also use the separator to reduce the size of the number that is displayed by a multiple of 1000."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146923\n"
+"85\n"
+"help.text"
+msgid "Scientific notation lets you write very large numbers or very small fractions in a compact form. For example, in scientific notation, 650000 is written as 6.5 x 10^5, and 0.000065 as 6.5 x 10^-5. In <item type=\"productname\">%PRODUCTNAME</item>, these numbers are written as 6.5E+5 and 6.5E-5, respectively. To create a number format that displays numbers using scientific notation, enter a # or 0, and then one of the following codes E-, E+, e- or e+. If sign is omitted after E or e, it won't appear for positive value of exponent. To get engineering notation, enter 3 digits (0 or #) in the integer part.For instance: ###.##E+00"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145091\n"
+"240\n"
+"help.text"
+msgid "Displays space characters instead of extra zeros."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156153\n"
+"241\n"
+"help.text"
+msgid ".5 as 0.5   (with two extra spaces at the end)"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149763\n"
+"242\n"
+"help.text"
+msgid "0.???"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3149877\n"
+"109\n"
+"help.text"
+msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> dialog box. To activate the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3146905\n"
+"122\n"
+"help.text"
+msgid "all template folders as defined in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\"><emph>%PRODUCTNAME - Paths</emph></link>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153096\n"
+"74\n"
+"help.text"
+msgid "To apply the new styles from the template to the document, click <emph>Update Styles</emph>."
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147581\n"
+"75\n"
+"help.text"
+msgid "To retain the styles that are currently used in the document, click <emph>Keep Old Styles</emph>."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153624\n"
+"3\n"
+"help.text"
+msgid "Use zero (0), the number sign (#) or the question mark (?) as placeholders in your number format code to represent numbers. The (#) only displays significant digits, while the (0) displays zeroes if there are fewer digits in the number than in the number format. The (?) works as the (#) but adds a space character to keep decimal alignment if there is a hidden non-significant zero."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153274\n"
+"137\n"
+"help.text"
+msgid "All date formats are dependent on the locale that is set in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language settings - Languages</emph>. For example, if your locale is set to 'Japanese', then the Gengou calendar is used. The default date format in <item type=\"productname\">%PRODUCTNAME</item> uses the Gregorian Calendar."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154213\n"
+"212\n"
+"help.text"
+msgid "Korean: informal Hangul text"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_idN107A4\n"
+"help.text"
+msgid "Background transparency can be set only for frames."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153264\n"
+"179\n"
+"help.text"
+msgid "Arabic: Indic characters"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3157811\n"
+"189\n"
+"help.text"
+msgid "[NatNum4] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152546\n"
+"172\n"
+"help.text"
+msgid "[NatNum1][$-411]0"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148909\n"
+"159\n"
+"help.text"
+msgid "Date&Time + Number"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3154821\n"
+"42\n"
+"help.text"
+msgid "Click in the position grid to specify the offset for tiling the bitmap."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3159228\n"
+"207\n"
+"help.text"
+msgid "[NatNum9] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146808\n"
+"221\n"
+"help.text"
+msgid "[~hanja] or [~hanja_yoil]"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3149955\n"
+"12\n"
+"help.text"
+msgid "Lists the available hatching patterns. You can also modify or create your own hatching pattern. To save the list, click the <emph>Save Hatches List</emph> button. To display a different list, click the <emph>Load Hatches List</emph> button."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149926\n"
+"139\n"
+"help.text"
+msgid "RR or GGGEE"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146125\n"
+"177\n"
+"help.text"
+msgid "Korean: Korean lower case characters [DBNum1]; CAL: 1/7/7 [DBNum1]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152456\n"
+"149\n"
+"help.text"
+msgid "Date + Date&Time"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150298\n"
+"129\n"
+"help.text"
+msgid "EE or R"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149787\n"
+"142\n"
+"help.text"
+msgid "Result Format"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3159256\n"
+"78\n"
+"help.text"
+msgid "To open more than one document at the same time, each in an own window, hold <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you click the files, and then click <emph>Open</emph>."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3148390\n"
+"219\n"
+"help.text"
+msgid "[~buddhist]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155396\n"
+"209\n"
+"help.text"
+msgid "[NatNum10] Transliteration in"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3149998\n"
+"170\n"
+"help.text"
+msgid "To display numbers using native number characters, use a [NatNum1], [NatNum2], ... [NatNum11] modifier at the beginning of a number format codes."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3145123\n"
+"202\n"
+"help.text"
+msgid "Japanese: modern short Kanji text"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151358\n"
+"60\n"
+"help.text"
+msgid "YYYY"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150531\n"
+"71\n"
+"help.text"
+msgid "Minutes as 00-59"
+msgstr ""
+
+#: 04150200.xhp
+msgctxt ""
+"04150200.xhp\n"
+"par_id3147399\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/insertplugin/urled\">Enter the URL for the plug-in or click <emph>Browse</emph>, and then locate the plug-in that you want to insert.</ahelp>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3153323\n"
+"107\n"
+"help.text"
+msgid "Use question marks (?) to represent the number of digits to include in the numerator and the denominator of a fraction. Fractions that do not fit the pattern that you define are displayed as floating point numbers."
+msgstr ""
+
+#: 04150200.xhp
+msgctxt ""
+"04150200.xhp\n"
+"par_id3155599\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"plugin\"><ahelp hid=\".uno:InsertPlugin\">Inserts a plug-in into the current document.</ahelp> </variable> A <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-in\">plug-in</link> is a software component that extends the capabilities of a web browser."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154302\n"
+"103\n"
+"help.text"
+msgid "Quarterly as Q1 to Q4"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3156294\n"
+"81\n"
+"help.text"
+msgid "To use a character to define the width of a space in a number format, type an underscore ( _ ) followed by the character. The width of the space varies according to the width of the character that you choose. For example, <emph>_M</emph> creates a wider space than <emph>_i</emph>."
+msgstr ""
+
+#: 02230100.xhp
+msgctxt ""
+"02230100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Record"
+msgstr "Rikordo"
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3155383\n"
+"182\n"
+"help.text"
+msgid "Chinese: Chinese upper case characters; CAL: 2/8/8 [DBNum2]"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154272\n"
+"118\n"
+"help.text"
+msgid "Day as Sunday to Saturday"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3155412\n"
+"48\n"
+"help.text"
+msgid "Specify the offset for tiling the bitmap in terms of rows and columns."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146802\n"
+"153\n"
+"help.text"
+msgid "Time + Number"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154644\n"
+"208\n"
+"help.text"
+msgid "Korean: Hangul characters"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151269\n"
+"161\n"
+"help.text"
+msgid "Number + Number"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3151304\n"
+"196\n"
+"help.text"
+msgid "Korean: formal upper case text"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147344\n"
+"126\n"
+"help.text"
+msgid "Number of the year within an era, without a leading zero for single-digit years"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152993\n"
+"143\n"
+"help.text"
+msgid "Date + Date"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3149260\n"
+"53\n"
+"help.text"
+msgid "Opening Documents With Templates"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3157981\n"
+"76\n"
+"help.text"
+msgid "ss"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3154068\n"
+"33\n"
+"help.text"
+msgid "Relative"
+msgstr "Relativa"
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152904\n"
+"157\n"
+"help.text"
+msgid "Date&Time + Date&Time"
+msgstr ""
+
+#: 05210200.xhp
+msgctxt ""
+"05210200.xhp\n"
+"par_id3154288\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010500.xhp\" name=\"$[officename] - Colors\">$[officename] - Colors</link>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3150767\n"
+"25\n"
+"help.text"
+msgid "File type"
+msgstr "Dosiertipo"
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3154600\n"
+"171\n"
+"help.text"
+msgid "The [NatNum1] modifier always uses a one to one character mapping to convert numbers to a string that matches the native number format code of the corresponding locale. The other modifiers produce different results if they are used with different locales. A locale can be the language and the territory for which the format code is defined, or a modifier such as [$-yyy] that follows the native number modifier. In this case, yyy is the hexadecimal MS-LCID that is also used in currency format codes. For example, to display a number using Japanese short Kanji characters in an English US locale, use the following number format code:"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id3154188\n"
+"135\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">No Format</caseinline></switchinline>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3147088\n"
+"7\n"
+"help.text"
+msgid "0 (Zero)"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3152791\n"
+"38\n"
+"help.text"
+msgid "To display days, months and years, use the following number format codes."
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3150337\n"
+"137\n"
+"help.text"
+msgid "The search criteria for formatting attributes are displayed under the <emph>Search for </emph>or the <emph>Replace with </emph>box."
+msgstr ""
+
+#: 02100001.xhp
+msgctxt ""
+"02100001.xhp\n"
+"par_id2366100\n"
+"help.text"
+msgid "\\n in the <emph>Replace with</emph> text box stands for a paragraph break that can be entered with the Enter or Return key."
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"hd_id3153514\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"zahlenformatcodes\"><link href=\"text/shared/01/05020301.xhp\" name=\"Number Format Codes\">Number Format Codes</link></variable>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3150304\n"
+"222\n"
+"help.text"
+msgid "[~hijri]"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3156293\n"
+"89\n"
+"help.text"
+msgid "If you opened the dialog by choosing <emph>Insert - File</emph>, the <emph>Open</emph> button is labeled <emph>Insert</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Inserts the selected file into the current document at the cursor position.</ahelp>"
+msgstr ""
+
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id3146895\n"
+"175\n"
+"help.text"
+msgid "Chinese: Chinese lower case characters; CAL: 1/7/7 [DBNum1]"
+msgstr ""
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"par_id3145085\n"
+"32\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/gradientpage/load\">Load a different list of gradients.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3150771\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/backwards\">Search starts at the current cursor position and goes backwards to the beginning of the file.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3154760\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\">Distinguishes between uppercase and lowercase characters.</ahelp></variable>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153779\n"
+"24\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>For example, to list all of the text files in a folder, enter the asterisk wildcard with the text file extension (*.txt), and then click<emph> Open</emph>. Use the question mark (?) wildcard to represent any character, as in (??3*.txt), which only displays text files with a '3' as the third character in the file name.</defaultinline></switchinline>"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3151246\n"
+"help.text"
+msgid "Using a Gradient as a Background"
+msgstr ""
+
+#: 01070000.xhp
+msgctxt ""
+"01070000.xhp\n"
+"par_id3147654\n"
+"59\n"
+"help.text"
+msgid "To save a document as a template, use the command <emph>File - Save As Template</emph>."
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3152811\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/hatchpage/save\">Saves the current list of hatching patterns, so that you can load it later.</ahelp>"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3144438\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/hatchpage/hatchingslb\">Lists the available hatching patterns. Click the hatching pattern that you want to apply, and then click <emph>OK</emph>.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3153827\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_MODIFY\">Replaces a bitmap that you created in the <emph>Pattern Editor</emph> with the current bitmap pattern. If you want, you can save the pattern under a different name.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3147531\n"
+"126\n"
+"help.text"
+msgid "<ahelp hid=\"svt/ui/querydeletedialog/all\" visibility=\"hidden\">Click to delete all selected files.</ahelp>"
+msgstr ""
+
+#: 02100100.xhp
+msgctxt ""
+"02100100.xhp\n"
+"par_id3146856\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/similarity\">Find terms that are similar to the <emph>Search for</emph> text. Select this checkbox, and then click the <emph>Similarities</emph> button to define the similarity options.</ahelp>"
+msgstr ""
+
+#: 02230100.xhp
+msgctxt ""
+"02230100.xhp\n"
+"par_id3155934\n"
+"26\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you choose <emph>Record - Show</emph>, the lines containing changed text passages are indicated by a vertical line in the left page margin. You can set the properties of the vertical line and the other markup elements by choosing <link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
+msgstr ""
diff --git a/source/eo/helpcontent2/source/text/shared/guide.po b/source/eo/helpcontent2/source/text/shared/guide.po
index 2fd87a71a23..38da7cd2613 100644
--- a/source/eo/helpcontent2/source/text/shared/guide.po
+++ b/source/eo/helpcontent2/source/text/shared/guide.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-06 01:14+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-07-06 01:13+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467767670.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1467767623.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2197,7 +2197,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2277,7 +2277,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -9936,8 +9936,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "Por salti al ĉelo en kalkultabelo, unue enigu nomon por la ĉelo (<emph>Enmeti - Nomoj - Difini</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12445,19 +12445,19 @@ msgstr ""
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
msgstr ""
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
msgstr ""
#: labels.xhp
@@ -18337,7 +18337,7 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
+msgid "Starting $[officename] Software With Parameters"
msgstr ""
#: start_parameters.xhp
@@ -18345,50 +18345,45 @@ msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
+msgid "Starting $[officename] Software With Parameters"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
+msgid "Starting $[officename] Software From the Command Line"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
msgstr ""
@@ -18397,7 +18392,6 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
msgstr ""
@@ -18406,7 +18400,6 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
msgstr ""
@@ -18415,249 +18408,246 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
+msgid "Valid Command Line Parameters"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
+msgid "Using without special arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "Parameter"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "Signifo"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
+msgid "Opens the file and applies specified macros from the file."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
+msgid "Getting help and information"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
+msgid "<variable id=\"meaning\">Meaning</variable>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
+msgid "Lists the available command line parameters to the console."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
+msgid "Opens $[officename] built-in or online Help on Writer."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
+msgid "Opens $[officename] built-in or online Help on Draw."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
+msgid "Opens $[officename] built-in or online Help on Base."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
+msgid "Opens $[officename] built-in or online Help on Math."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
+msgid "Shows $[officename] version and quits."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
+msgid "General arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
+msgid "Disables check for remote instances using the installation."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
"help.text"
-msgid "--minimized"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
+"help.text"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
msgstr ""
@@ -18665,17 +18655,15 @@ msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
+msgid "Starts without displaying anything except the splash screen."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
msgstr ""
@@ -18684,52 +18672,54 @@ msgstr ""
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
+"help.text"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
"help.text"
-msgid "--norestore"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
msgstr ""
@@ -18737,357 +18727,330 @@ msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
+msgid "Developer arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
+msgid "Exit after initialization complete (no documents loaded)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
+msgid "Exit after loading documents."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
+msgid "New document creation arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgid "Starts with an empty Writer document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
+msgid "Starts with an empty Calc document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgid "Starts with an empty Draw document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgid "Starts with an empty Impress document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
+msgid "Starts with an empty Math document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
+msgid "Starts with an empty Writer master document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
+msgid "Starts with an empty HTML document."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
+msgid "File open arguments"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
+msgid "Treats following files as templates for creation of new documents."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3150828\n"
"help.text"
-msgid "--nofirststartwizard"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3145268\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
+msgid "Opens following files in viewer mode (read-only)."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id3153838\n"
"help.text"
-msgid "--display {display}"
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id315053p\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "--headless"
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id315053q\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "--infilter={filter}"
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
+msgid "Ignored switches"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (MacOS X only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
+msgid "Ignored (COM+ related; Windows only)"
msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id20161204014529900\n"
+"help.text"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
msgstr ""
#: startcenter.xhp
diff --git a/source/eo/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po b/source/eo/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
index 0de4bebe2d2..b0b6f2cd4d9 100644
--- a/source/eo/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
+++ b/source/eo/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2013-06-10 08:35+0000\n"
+"PO-Revision-Date: 2016-12-23 01:30+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"Language: eo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1370853344.000000\n"
+"X-POOTLE-MTIME: 1482456643.000000\n"
#: Options.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id0603200910430845\n"
"help.text"
msgid "Regardless whether you use DEPS or SCO, you start by going to Tools - Solver and set the Cell to be optimized, the direction to go (minimization, maximization) and the cells to be modified to reach the goal. Then you go to the Options and specify the solver to be used and if necessary adjust the according <link href=\"com.sun.star.comp.Calc.NLPSolver/Options.xhp\">parameters</link>."
-msgstr ""
+msgstr "Sendepende de ĉu vi uzas je DEPS aŭ SCO, vi komencu irante al Iloj - Solvilo, por agordi la ĉelon optimumigotan, la direkton irotan (minimumon, maksimumon) kaj la ĉelojn ŝanĝotajn por atingi la celon. Tiam iru al Agordaro por agordi la solvilon uzotan kaj se necese adapti la rilatajn <link href=\"com.sun.star.comp.Calc.NLPSolver/Options.xhp\">parametrojn</link>."
#: Usage.xhp
msgctxt ""
diff --git a/source/eo/sc/source/ui/src.po b/source/eo/sc/source/ui/src.po
index 8214a453e0e..3b98ecf63d4 100644
--- a/source/eo/sc/source/ui/src.po
+++ b/source/eo/sc/source/ui/src.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
+"POT-Creation-Date: 2016-12-10 23:38+0100\n"
"PO-Revision-Date: 2016-12-06 00:21+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480983713.000000\n"
#: filter.src
@@ -9669,8 +9669,8 @@ msgctxt ""
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_SUM_IF\n"
"1\n"
"string.text"
-msgid "Totals the arguments that meet the conditions."
-msgstr "Sumigas la argumentojn kiuj verigas la kondiĉojn."
+msgid "Totals the arguments that meet the condition."
+msgstr ""
#: scfuncs.src
msgctxt ""
diff --git a/source/eo/sc/uiconfig/scalc/ui.po b/source/eo/sc/uiconfig/scalc/ui.po
index 3238c8e43a4..605a53a7c8b 100644
--- a/source/eo/sc/uiconfig/scalc/ui.po
+++ b/source/eo/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-10 04:12+0000\n"
+"PO-Revision-Date: 2016-12-23 03:09+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.org>\n"
"Language: eo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481343156.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482462559.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6260,7 +6260,6 @@ msgid "Style"
msgstr "Stilo"
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"growb\n"
@@ -6270,7 +6269,6 @@ msgid " "
msgstr " "
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"shrinkb\n"
@@ -11083,7 +11081,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 1"
-msgstr ""
+msgstr "Operatoro 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11110,7 +11108,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 2"
-msgstr ""
+msgstr "Operatoro 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11137,7 +11135,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 3"
-msgstr ""
+msgstr "Operatoro 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11164,7 +11162,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 4"
-msgstr ""
+msgstr "Operacisigno 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11209,7 +11207,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 1"
-msgstr ""
+msgstr "Nomo de kampo 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11218,7 +11216,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 2"
-msgstr ""
+msgstr "Nomo de kampo 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11227,7 +11225,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 3"
-msgstr ""
+msgstr "Nomo de kampo 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11236,7 +11234,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 4"
-msgstr ""
+msgstr "Nomo de kampo 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11335,7 +11333,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 1"
-msgstr ""
+msgstr "Kondiĉo 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11434,7 +11432,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 2"
-msgstr ""
+msgstr "Kondiĉo 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11533,7 +11531,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 3"
-msgstr ""
+msgstr "Kondiĉo 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11632,7 +11630,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 4"
-msgstr ""
+msgstr "Kondiĉo 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11641,7 +11639,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 1"
-msgstr ""
+msgstr "Valoro 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11650,7 +11648,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 2"
-msgstr ""
+msgstr "Valoro 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11659,7 +11657,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 3"
-msgstr ""
+msgstr "Valoro 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11668,7 +11666,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 4"
-msgstr ""
+msgstr "Valoro 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11740,7 +11738,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy results to"
-msgstr ""
+msgstr "Kopii rezultojn al"
#: standardfilterdialog.ui
msgctxt ""
@@ -11749,7 +11747,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy results to"
-msgstr ""
+msgstr "Kopii rezultojn al"
#: standardfilterdialog.ui
msgctxt ""
@@ -12199,7 +12197,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Other"
-msgstr ""
+msgstr "Alia"
#: textimportcsv.ui
msgctxt ""
@@ -13036,7 +13034,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Browse to set source file."
-msgstr ""
+msgstr "Foliumi por agordi fontan dosieron."
#: xmlsourcedialog.ui
msgctxt ""
diff --git a/source/eo/scp2/source/ooo.po b/source/eo/scp2/source/ooo.po
index 59ef77d0a9d..ee23d14f207 100644
--- a/source/eo/scp2/source/ooo.po
+++ b/source/eo/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-01 07:57+0000\n"
+"PO-Revision-Date: 2016-12-23 01:08+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.org>\n"
"Language: eo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480579052.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482455332.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -3806,7 +3806,7 @@ msgctxt ""
"STR_NAME_MODULE_EXTENSION_DICTIONARY_BO\n"
"LngText.text"
msgid "Classical Tibetan"
-msgstr ""
+msgstr "Klasika tibeta"
#: module_ooo.ulf
msgctxt ""
@@ -3814,7 +3814,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_BO\n"
"LngText.text"
msgid "Classical Tibetan syllable spelling dictionary"
-msgstr ""
+msgstr "Klasika Tibeta silaba ortografia vortaro"
#: module_ooo.ulf
msgctxt ""
diff --git a/source/eo/svtools/source/java.po b/source/eo/svtools/source/java.po
index 5874bc4d339..89ca2345b8e 100644
--- a/source/eo/svtools/source/java.po
+++ b/source/eo/svtools/source/java.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 21:03+0000\n"
+"PO-Revision-Date: 2016-12-23 01:22+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <LL@li.org>\n"
"Language: eo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467666216.000000\n"
+"X-POOTLE-MTIME: 1482456126.000000\n"
#: javaerror.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_WARNING_JAVANOTFOUND_MAC\n"
"string.text"
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 ""
+msgstr "%PRODUCTNAME bezonas la Ĝavan programistan ilaron (JDK) de Oracle en Mac OS X 10.10 aŭ posta por plenumi ĉi tiun taskon. Bonvolu instali ĝin kaj restartigi je %PRODUCTNAME."
#: javaerror.src
msgctxt ""
diff --git a/source/eo/svtools/source/misc.po b/source/eo/svtools/source/misc.po
index 344b78fc3c8..38a8d43b653 100644
--- a/source/eo/svtools/source/misc.po
+++ b/source/eo/svtools/source/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 21:03+0000\n"
+"PO-Revision-Date: 2016-12-23 01:25+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LibreOffice Esperanto\n"
"Language: eo\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467666217.000000\n"
+"X-POOTLE-MTIME: 1482456340.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3877,7 +3877,7 @@ msgctxt ""
"LANGUAGE_USER_SILESIAN\n"
"pairedlist.text"
msgid "Silesian"
-msgstr ""
+msgstr "Silezia"
#: langtab.src
msgctxt ""
@@ -3886,7 +3886,7 @@ msgctxt ""
"LANGUAGE_USER_HUNGARIAN_ROVAS\n"
"pairedlist.text"
msgid "Hungarian (Szekely-Hungarian Rovas)"
-msgstr ""
+msgstr "Hungara runoskribo"
#: svtools.src
msgctxt ""
diff --git a/source/eo/svtools/uiconfig/ui.po b/source/eo/svtools/uiconfig/ui.po
index f195a9d513e..8f4810cc1de 100644
--- a/source/eo/svtools/uiconfig/ui.po
+++ b/source/eo/svtools/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 21:03+0000\n"
+"PO-Revision-Date: 2016-12-23 01:27+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.org>\n"
"Language: eo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467666233.000000\n"
+"X-POOTLE-MTIME: 1482456442.000000\n"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -896,7 +896,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "For the extension to work properly, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "Por ke la kromprogramo ĝuste funkciu, necesas restartigi je %PRODUCTNAME."
#: restartdialog.ui
msgctxt ""
@@ -905,7 +905,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "For the OpenGL changes to take effect, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "Por efikigi la ŝanĝitan agordon de OpenGL, necesas restartigi je %PRODUCTNAME."
#: restartdialog.ui
msgctxt ""
diff --git a/source/eo/svx/source/dialog.po b/source/eo/svx/source/dialog.po
index a277ae38056..c1f7b1ac0eb 100644
--- a/source/eo/svx/source/dialog.po
+++ b/source/eo/svx/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-02 20:15+0000\n"
+"PO-Revision-Date: 2016-12-23 01:09+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LibreOffice Esperanto\n"
"Language: eo\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1480709721.000000\n"
+"X-POOTLE-MTIME: 1482455369.000000\n"
#: SafeMode.src
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"A2\n"
"itemlist.text"
msgid "A2"
-msgstr ""
+msgstr "A2"
#: page.src
msgctxt ""
@@ -7446,7 +7446,7 @@ msgctxt ""
"RID_SUBSETSTR_MARCHEN\n"
"string.text"
msgid "Marchen"
-msgstr ""
+msgstr "Marchen"
#: ucsubset.src
msgctxt ""
diff --git a/source/eo/svx/source/form.po b/source/eo/svx/source/form.po
index 1cb07a525e9..e2906841290 100644
--- a/source/eo/svx/source/form.po
+++ b/source/eo/svx/source/form.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-02 20:15+0000\n"
+"PO-Revision-Date: 2016-12-23 03:08+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480709755.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482462531.000000\n"
#: datanavi.src
msgctxt ""
@@ -1284,7 +1284,7 @@ msgctxt ""
"LIKE\n"
"itemlist.text"
msgid "LIKE"
-msgstr ""
+msgstr "LIKE"
#: fmstring.src
msgctxt ""
@@ -1293,7 +1293,7 @@ msgctxt ""
"NOT\n"
"itemlist.text"
msgid "NOT"
-msgstr ""
+msgstr "NOT"
#: fmstring.src
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"EMPTY\n"
"itemlist.text"
msgid "EMPTY"
-msgstr ""
+msgstr "EMPTY"
#: fmstring.src
msgctxt ""
@@ -1311,7 +1311,7 @@ msgctxt ""
"TRUE\n"
"itemlist.text"
msgid "TRUE"
-msgstr ""
+msgstr "TRUE"
#: fmstring.src
msgctxt ""
@@ -1320,7 +1320,7 @@ msgctxt ""
"FALSE\n"
"itemlist.text"
msgid "FALSE"
-msgstr ""
+msgstr "FALSE"
#: fmstring.src
msgctxt ""
@@ -1329,7 +1329,7 @@ msgctxt ""
"IS\n"
"itemlist.text"
msgid "IS"
-msgstr ""
+msgstr "IS"
#: fmstring.src
msgctxt ""
@@ -1338,7 +1338,7 @@ msgctxt ""
"BETWEEN\n"
"itemlist.text"
msgid "BETWEEN"
-msgstr ""
+msgstr "BETWEEN"
#: fmstring.src
msgctxt ""
@@ -1347,7 +1347,7 @@ msgctxt ""
"OR\n"
"itemlist.text"
msgid "OR"
-msgstr ""
+msgstr "OR"
#: fmstring.src
msgctxt ""
@@ -1356,7 +1356,7 @@ msgctxt ""
"AND\n"
"itemlist.text"
msgid "AND"
-msgstr ""
+msgstr "AND"
#: fmstring.src
msgctxt ""
@@ -1365,7 +1365,7 @@ msgctxt ""
"Average\n"
"itemlist.text"
msgid "Average"
-msgstr ""
+msgstr "Average"
#: fmstring.src
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"Count\n"
"itemlist.text"
msgid "Count"
-msgstr ""
+msgstr "Count"
#: fmstring.src
msgctxt ""
@@ -1383,7 +1383,7 @@ msgctxt ""
"Maximum\n"
"itemlist.text"
msgid "Maximum"
-msgstr ""
+msgstr "Maximum"
#: fmstring.src
msgctxt ""
@@ -1392,7 +1392,7 @@ msgctxt ""
"Minimum\n"
"itemlist.text"
msgid "Minimum"
-msgstr ""
+msgstr "Minimum"
#: fmstring.src
msgctxt ""
@@ -1401,7 +1401,7 @@ msgctxt ""
"Sum\n"
"itemlist.text"
msgid "Sum"
-msgstr ""
+msgstr "Sum"
#: fmstring.src
msgctxt ""
@@ -1410,7 +1410,7 @@ msgctxt ""
"Every\n"
"itemlist.text"
msgid "Every"
-msgstr ""
+msgstr "Every"
#: fmstring.src
msgctxt ""
@@ -1419,7 +1419,7 @@ msgctxt ""
"Any\n"
"itemlist.text"
msgid "Any"
-msgstr ""
+msgstr "Any"
#: fmstring.src
msgctxt ""
@@ -1428,7 +1428,7 @@ msgctxt ""
"Some\n"
"itemlist.text"
msgid "Some"
-msgstr ""
+msgstr "Some"
#: fmstring.src
msgctxt ""
@@ -1437,7 +1437,7 @@ msgctxt ""
"STDDEV_POP\n"
"itemlist.text"
msgid "STDDEV_POP"
-msgstr ""
+msgstr "VAR.RAD.P"
#: fmstring.src
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"STDDEV_SAMP\n"
"itemlist.text"
msgid "STDDEV_SAMP"
-msgstr ""
+msgstr "VAR.RAD.S"
#: fmstring.src
msgctxt ""
@@ -1455,7 +1455,7 @@ msgctxt ""
"VAR_SAMP\n"
"itemlist.text"
msgid "VAR_SAMP"
-msgstr ""
+msgstr "VAR.S"
#: fmstring.src
msgctxt ""
@@ -1464,7 +1464,7 @@ msgctxt ""
"VAR_POP\n"
"itemlist.text"
msgid "VAR_POP"
-msgstr ""
+msgstr "VAR.P"
#: fmstring.src
msgctxt ""
@@ -1473,7 +1473,7 @@ msgctxt ""
"Collect\n"
"itemlist.text"
msgid "Collect"
-msgstr ""
+msgstr "Collect"
#: fmstring.src
msgctxt ""
@@ -1482,7 +1482,7 @@ msgctxt ""
"Fusion\n"
"itemlist.text"
msgid "Fusion"
-msgstr ""
+msgstr "Fandiĝo"
#: fmstring.src
msgctxt ""
@@ -1491,7 +1491,7 @@ msgctxt ""
"Intersection\n"
"itemlist.text"
msgid "Intersection"
-msgstr ""
+msgstr "Interkovro"
#: fmstring.src
msgctxt ""
diff --git a/source/eo/svx/source/src.po b/source/eo/svx/source/src.po
index 781f72cf2b5..63317a6d55c 100644
--- a/source/eo/svx/source/src.po
+++ b/source/eo/svx/source/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 21:05+0000\n"
+"PO-Revision-Date: 2016-12-23 01:32+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467666350.000000\n"
+"X-POOTLE-MTIME: 1482456752.000000\n"
#: errtxt.src
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"ERRCODE_CLASS_READ\n"
"string.text"
msgid "Read Error"
-msgstr ""
+msgstr "Legeraro"
#: errtxt.src
msgctxt ""
diff --git a/source/eo/svx/source/stbctrls.po b/source/eo/svx/source/stbctrls.po
index eb8bca19aba..2a7a4d83d39 100644
--- a/source/eo/svx/source/stbctrls.po
+++ b/source/eo/svx/source/stbctrls.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 21:05+0000\n"
+"PO-Revision-Date: 2016-12-23 01:12+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467666350.000000\n"
+"X-POOTLE-MTIME: 1482455555.000000\n"
#: stbctrls.src
msgctxt ""
@@ -251,7 +251,7 @@ msgctxt ""
"RID_SIDEBAR_EMPTY_PANEL_TEXT\n"
"string.text"
msgid "Properties for the task that you are performing are not available for the current selection"
-msgstr ""
+msgstr "Atributoj por la tasko farata de vi ne disponeblas por la aktuala elektaĵo"
#: stbctrls.src
msgctxt ""
diff --git a/source/eo/svx/source/tbxctrls.po b/source/eo/svx/source/tbxctrls.po
index 6b77c38dadb..c95602393b4 100644
--- a/source/eo/svx/source/tbxctrls.po
+++ b/source/eo/svx/source/tbxctrls.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 21:06+0000\n"
+"PO-Revision-Date: 2016-12-23 01:13+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467666366.000000\n"
+"X-POOTLE-MTIME: 1482455590.000000\n"
#: colrctrl.src
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"RID_SVXSTR_NOFILL\n"
"string.text"
msgid "No Fill"
-msgstr ""
+msgstr "Neniu plenigo"
#: tbcontrl.src
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"RID_SVXSTR_TRANSPARENT\n"
"string.text"
msgid "Transparent"
-msgstr ""
+msgstr "Travidebla"
#: tbcontrl.src
msgctxt ""
@@ -577,7 +577,7 @@ msgctxt ""
"RID_SVX_PRESET_RENAME\n"
"menuitem.text"
msgid "Rename"
-msgstr ""
+msgstr "Renomi"
#: tbcontrl.src
msgctxt ""
@@ -586,7 +586,7 @@ msgctxt ""
"RID_SVX_PRESET_DELETE\n"
"menuitem.text"
msgid "Delete"
-msgstr ""
+msgstr "Forigi"
#: tbcontrl.src
msgctxt ""
@@ -618,7 +618,7 @@ msgctxt ""
"RID_SVXSTR_BY_AUTHOR\n"
"string.text"
msgid "By author"
-msgstr ""
+msgstr "Laŭ aŭtoro"
#: tbcontrl.src
msgctxt ""
@@ -682,7 +682,7 @@ msgctxt ""
"RID_SVXSTR_CUSTOM_PAL\n"
"string.text"
msgid "custom"
-msgstr ""
+msgstr "propra"
#: tbcontrl.src
msgctxt ""
diff --git a/source/eo/svx/uiconfig/ui.po b/source/eo/svx/uiconfig/ui.po
index bb18585f6bc..aa793558b54 100644
--- a/source/eo/svx/uiconfig/ui.po
+++ b/source/eo/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-01 07:55+0000\n"
+"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"PO-Revision-Date: 2016-12-23 02:42+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LibreOffice Esperanto\n"
"Language: eo\n"
@@ -12,10 +12,10 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1480578905.000000\n"
+"X-POOTLE-MTIME: 1482460955.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -456,7 +456,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Base text"
-msgstr ""
+msgstr "Baza teksto"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -474,7 +474,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Base text"
-msgstr ""
+msgstr "Baza teksto"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -483,7 +483,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Ruby text"
-msgstr ""
+msgstr "Rubena teksto"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -492,7 +492,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Base text"
-msgstr ""
+msgstr "Baza teksto"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -501,7 +501,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Ruby text"
-msgstr ""
+msgstr "Rubena teksto"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Ruby text"
-msgstr ""
+msgstr "Rubena teksto"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -519,7 +519,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Base text"
-msgstr ""
+msgstr "Baza teksto"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -906,7 +906,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Neniu"
#: colorwindow.ui
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "JPEG Quality"
-msgstr ""
+msgstr "Kvalita JPEG"
#: compressgraphicdialog.ui
msgctxt ""
@@ -951,7 +951,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Lossy compression"
-msgstr ""
+msgstr "Perda densigo"
#: compressgraphicdialog.ui
msgctxt ""
@@ -960,7 +960,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "PNG Compression"
-msgstr ""
+msgstr "PNG-densigo"
#: compressgraphicdialog.ui
msgctxt ""
@@ -969,7 +969,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Lossless compression"
-msgstr ""
+msgstr "Senperda densigo"
#: compressgraphicdialog.ui
msgctxt ""
@@ -978,7 +978,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "90"
-msgstr ""
+msgstr "90"
#: compressgraphicdialog.ui
msgctxt ""
@@ -987,7 +987,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "9"
-msgstr ""
+msgstr "9"
#: compressgraphicdialog.ui
msgctxt ""
@@ -996,7 +996,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Compression"
-msgstr ""
+msgstr "Densigo"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1050,7 +1050,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "1"
-msgstr ""
+msgstr "1"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1059,7 +1059,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "1"
-msgstr ""
+msgstr "1"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1095,7 +1095,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Resolution"
-msgstr ""
+msgstr "Distingivo"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1140,7 +1140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Calculate New Size:"
-msgstr ""
+msgstr "Kalkuli novan grandon:"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1275,7 +1275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restart LibreOffice to enter Safe Mode"
-msgstr ""
+msgstr "Restartigi je LibreOffice por eniri en sekura reĝimo"
#: datanavigator.ui
msgctxt ""
@@ -1392,7 +1392,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Lines & Arrows"
-msgstr ""
+msgstr "Linioj kaj sagoj"
#: defaultshapespanel.ui
msgctxt ""
@@ -1401,7 +1401,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Curve"
-msgstr ""
+msgstr "Kurbo"
#: defaultshapespanel.ui
msgctxt ""
@@ -1410,7 +1410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Connectors"
-msgstr ""
+msgstr "Konektiloj"
#: defaultshapespanel.ui
msgctxt ""
@@ -1419,7 +1419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Basic Shapes"
-msgstr ""
+msgstr "Bazaj formoj"
#: defaultshapespanel.ui
msgctxt ""
@@ -1428,7 +1428,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Symbols"
-msgstr ""
+msgstr "Simboloj"
#: defaultshapespanel.ui
msgctxt ""
@@ -1437,7 +1437,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Block Arrows"
-msgstr ""
+msgstr "Blokaj sagoj"
#: defaultshapespanel.ui
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Flowchart"
-msgstr ""
+msgstr "Fluskemo"
#: defaultshapespanel.ui
msgctxt ""
@@ -1455,7 +1455,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Callouts"
-msgstr ""
+msgstr "Klarigiloj"
#: defaultshapespanel.ui
msgctxt ""
@@ -1464,7 +1464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Stars"
-msgstr ""
+msgstr "Steloj"
#: defaultshapespanel.ui
msgctxt ""
@@ -1473,7 +1473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "3D Objects"
-msgstr ""
+msgstr "3D-objektoj"
#: deletefooterdialog.ui
msgctxt ""
@@ -2346,7 +2346,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 2"
-msgstr ""
+msgstr "Fonta koloro 2"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2355,7 +2355,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 3"
-msgstr ""
+msgstr "Fonta koloro 3"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2364,7 +2364,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 4"
-msgstr ""
+msgstr "Fonta koloro 4"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2373,7 +2373,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 1"
-msgstr ""
+msgstr "Fonta koloro 1"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2391,7 +2391,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Tolerance 1"
-msgstr ""
+msgstr "Tolereco 1"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2400,7 +2400,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Tolerance 2"
-msgstr ""
+msgstr "Tolereco 2"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2409,7 +2409,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Tolerance 3"
-msgstr ""
+msgstr "Tolereco 3"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2418,7 +2418,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Tolerance 4"
-msgstr ""
+msgstr "Tolereco 4"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2427,7 +2427,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 1"
-msgstr ""
+msgstr "Anstataŭigi per 1"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2436,7 +2436,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 2"
-msgstr ""
+msgstr "Anstataŭigi per 2"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2445,7 +2445,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 3"
-msgstr ""
+msgstr "Anstataŭigi per 3"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2454,7 +2454,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 4"
-msgstr ""
+msgstr "Anstataŭigi per 4"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2757,7 +2757,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME %PRODUCTVERSION Document Recovery"
-msgstr ""
+msgstr "%PRODUCTNAME %PRODUCTVERSION dokumenta restaŭro"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2766,7 +2766,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Discard"
-msgstr ""
+msgstr "_Ignori"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2775,7 +2775,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Start"
-msgstr ""
+msgstr "_Starti"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2784,7 +2784,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "%PRODUCTNAME will attempt to recover the state of the files you were working on before it crashed. Click 'Start' to begin the process, or click 'Discard' to cancel the recovery."
-msgstr ""
+msgstr "%PRODUCTNAME provos restaŭri la staton de la dosieroj prilaborataj de vi antaŭ ol ĝi paneis. Klaku al 'Starti' por startigi la proceson, aŭ klaku je 'Ignori' por nuligi la restaŭron."
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2820,7 +2820,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME %PRODUCTVERSION Document Recovery"
-msgstr ""
+msgstr "%PRODUCTNAME %PRODUCTVERSION dokumenta restaŭro"
#: docrecoverysavedialog.ui
msgctxt ""
@@ -2901,7 +2901,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "For_matted display"
-msgstr ""
+msgstr "Formatita vidigo"
#: findreplacedialog.ui
msgctxt ""
@@ -2928,7 +2928,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "All _sheets"
-msgstr ""
+msgstr "Ĉiuj folioj"
#: findreplacedialog.ui
msgctxt ""
@@ -2973,7 +2973,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Find Pre_vious"
-msgstr ""
+msgstr "Serĉi antaŭan"
#: findreplacedialog.ui
msgctxt ""
@@ -2982,7 +2982,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Find Ne_xt"
-msgstr ""
+msgstr "Serĉi sekvan"
#: findreplacedialog.ui
msgctxt ""
@@ -3018,7 +3018,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Re_gular expressions"
-msgstr ""
+msgstr "Regulaj esprimoj"
#: findreplacedialog.ui
msgctxt ""
@@ -3027,7 +3027,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Attribut_es..."
-msgstr ""
+msgstr "Atributoj..."
#: findreplacedialog.ui
msgctxt ""
@@ -3062,8 +3062,8 @@ msgctxt ""
"ignorediacritics\n"
"label\n"
"string.text"
-msgid "Ignore diac_ritics CTL"
-msgstr "Malatenti diakritajn signojn CTL"
+msgid "Ignore diac_ritics"
+msgstr ""
#: findreplacedialog.ui
msgctxt ""
@@ -3071,7 +3071,7 @@ msgctxt ""
"ignorekashida\n"
"label\n"
"string.text"
-msgid "Ignore _kashida CTL"
+msgid "Ignore _kashida"
msgstr ""
#: findreplacedialog.ui
@@ -3108,7 +3108,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sounds like (_Japanese)"
-msgstr ""
+msgstr "Sonas kiel (Japana)"
#: findreplacedialog.ui
msgctxt ""
@@ -3144,7 +3144,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Replace _backwards"
-msgstr ""
+msgstr "Serĉi malantaŭen"
#: findreplacedialog.ui
msgctxt ""
@@ -3207,7 +3207,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colum_ns"
-msgstr ""
+msgstr "Kolumnoj"
#: findreplacedialog.ui
msgctxt ""
@@ -3225,7 +3225,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Angle:"
-msgstr ""
+msgstr "Angulo:"
#: floatingareastyle.ui
msgctxt ""
@@ -3234,7 +3234,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the angle of rotation for the gradient shading style."
-msgstr ""
+msgstr "Agordu la turnan angulon por la stilo de la gradienta kolorheleco."
#: floatingareastyle.ui
msgctxt ""
@@ -3243,7 +3243,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Rotate counterclockwise by 45 degrees."
-msgstr ""
+msgstr "Turni maldekstren je 45 gradoj."
#: floatingareastyle.ui
msgctxt ""
@@ -3252,7 +3252,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Rotate clockwise by 45 degrees."
-msgstr ""
+msgstr "Turni dekstren je 45 gradoj."
#: floatingareastyle.ui
msgctxt ""
@@ -3261,7 +3261,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Start value:"
-msgstr ""
+msgstr "Komenca valoro:"
#: floatingareastyle.ui
msgctxt ""
@@ -3270,7 +3270,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_End value:"
-msgstr ""
+msgstr "Fina valoro:"
#: floatingareastyle.ui
msgctxt ""
@@ -3279,7 +3279,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Enter a transparency value for the beginning point of the gradient, where 0% is fully opaque and 100% is fully transparent."
-msgstr ""
+msgstr "Enigu la valoron de travidebleco por la komenca punkto de la kolortransiro, kie 0% estas tute maldiafana kaj 100% estas tute travidebla."
#: floatingareastyle.ui
msgctxt ""
@@ -3288,7 +3288,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent."
-msgstr ""
+msgstr "Enigu la valoron de travidebleco por la fina punkto de la kolortransiro, kie 0% estas tute maldiafana kaj 100% estas tute travidebla."
#: floatingareastyle.ui
msgctxt ""
@@ -3297,7 +3297,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: floatingareastyle.ui
msgctxt ""
@@ -3306,7 +3306,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Border:"
-msgstr ""
+msgstr "Bordero:"
#: floatingareastyle.ui
msgctxt ""
@@ -3315,7 +3315,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the border value of gradient transparency."
-msgstr ""
+msgstr "Agordu la borderan valoron de kolortransira travideblo."
#: floatingareastyle.ui
msgctxt ""
@@ -3324,7 +3324,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: floatingareastyle.ui
msgctxt ""
@@ -3333,7 +3333,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Center _X:"
-msgstr ""
+msgstr "Centro _X:"
#: floatingareastyle.ui
msgctxt ""
@@ -3342,7 +3342,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Center _Y:"
-msgstr ""
+msgstr "Centro _Y:"
#: floatingareastyle.ui
msgctxt ""
@@ -3351,7 +3351,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the horizontal offset percentage from the center for the gradient shading style. 50% is the horizontal center."
-msgstr ""
+msgstr "Agordi la horizontalan deŝovan elcenton de la centro por la kolortransira kolorheleca stilo. 50% estas la horizontala centro."
#: floatingareastyle.ui
msgctxt ""
@@ -3360,7 +3360,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: floatingareastyle.ui
msgctxt ""
@@ -3369,7 +3369,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
-msgstr ""
+msgstr "Agordi la vertikalan deŝovan elcenton de la centro por la kolortransira kolorheleca stilo. 50% estas la vertikala centro."
#: floatingareastyle.ui
msgctxt ""
@@ -3378,7 +3378,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: floatingcontour.ui
msgctxt ""
@@ -3627,7 +3627,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Same _content on left and right pages"
-msgstr ""
+msgstr "Sama enhavo en maldekstra kaj dekstra paĝoj"
#: headfootformatpage.ui
msgctxt ""
@@ -3978,7 +3978,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Playback:"
-msgstr ""
+msgstr "Reaŭdigo:"
#: mediaplayback.ui
msgctxt ""
@@ -3987,7 +3987,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Seek:"
-msgstr ""
+msgstr "Serĉi:"
#: mediaplayback.ui
msgctxt ""
@@ -3996,7 +3996,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Volume:"
-msgstr ""
+msgstr "Laŭteco:"
#: mediaplayback.ui
msgctxt ""
@@ -4005,7 +4005,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "View"
-msgstr ""
+msgstr "Vido"
#: namespacedialog.ui
msgctxt ""
@@ -4329,7 +4329,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "1.15 Lines"
-msgstr ""
+msgstr "1,15 linioj"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4338,7 +4338,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "1.5 Lines"
-msgstr ""
+msgstr "1,5 linioj"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4347,7 +4347,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Double"
-msgstr ""
+msgstr "Duobla"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4356,7 +4356,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Proportional"
-msgstr ""
+msgstr "Proporcia"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4365,7 +4365,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "At least"
-msgstr ""
+msgstr "Almenaŭ"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4374,7 +4374,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Leading"
-msgstr ""
+msgstr "Linipaŝo"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4383,7 +4383,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Fixed"
-msgstr ""
+msgstr "Fiksite"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4410,7 +4410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Before"
-msgstr ""
+msgstr "Antaŭ"
#: paralrspacing.ui
msgctxt ""
@@ -4419,7 +4419,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Before Text Indent"
-msgstr ""
+msgstr "Antaŭ teksta krommarĝeno"
#: paralrspacing.ui
msgctxt ""
@@ -4428,7 +4428,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "After"
-msgstr ""
+msgstr "Post"
#: paralrspacing.ui
msgctxt ""
@@ -4437,7 +4437,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "After Text Indent"
-msgstr ""
+msgstr "Post teksta krommarĝeno"
#: paralrspacing.ui
msgctxt ""
@@ -4446,7 +4446,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "First line"
-msgstr ""
+msgstr "Unua linio"
#: paralrspacing.ui
msgctxt ""
@@ -4455,7 +4455,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "First Line Indent"
-msgstr ""
+msgstr "Krommarĝeno de la unua linio"
#: paraulspacing.ui
msgctxt ""
@@ -4464,7 +4464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Above"
-msgstr ""
+msgstr "Supre"
#: paraulspacing.ui
msgctxt ""
@@ -4473,7 +4473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Below"
-msgstr ""
+msgstr "Malsupre"
#: paraulspacing.ui
msgctxt ""
@@ -4482,7 +4482,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Above Paragraph Spacing"
-msgstr ""
+msgstr "Spaco super la alineo"
#: paraulspacing.ui
msgctxt ""
@@ -4491,7 +4491,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Below Paragraph Spacing"
-msgstr ""
+msgstr "Spaco sub la alineo"
#: passwd.ui
msgctxt ""
@@ -4554,7 +4554,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Profile exported"
-msgstr ""
+msgstr "Profilo eksportita"
#: profileexporteddialog.ui
msgctxt ""
@@ -4563,7 +4563,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Open Containing _Folder"
-msgstr ""
+msgstr "Malfermi enhavantan dosierujon"
#: profileexporteddialog.ui
msgctxt ""
@@ -4572,7 +4572,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Your user profile has been exported as “libreoffice-profile.zip”."
-msgstr ""
+msgstr "Via uzantprofilo estas eksportita kiel “libreoffice-profile.zip”."
#: querydeletecontourdialog.ui
msgctxt ""
@@ -4817,7 +4817,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Komento"
#: redlinefilterpage.ui
msgctxt ""
@@ -4853,7 +4853,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Aŭtoro"
#: redlinefilterpage.ui
msgctxt ""
@@ -4862,7 +4862,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Range"
-msgstr ""
+msgstr "Amplekso"
#: redlinefilterpage.ui
msgctxt ""
@@ -5060,7 +5060,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Safe Mode"
-msgstr ""
+msgstr "Sekura reĝimo"
#: safemodedialog.ui
msgctxt ""
@@ -5069,7 +5069,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Continue in Safe Mode"
-msgstr ""
+msgstr "Daŭrigi en sekura reĝimo"
#: safemodedialog.ui
msgctxt ""
@@ -5078,7 +5078,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Quit"
-msgstr ""
+msgstr "Ĉesi"
#: safemodedialog.ui
msgctxt ""
@@ -5087,7 +5087,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr ""
+msgstr "Apliki ŝanĝojn kaj restartigi"
#: safemodedialog.ui
msgctxt ""
@@ -5102,6 +5102,11 @@ msgid ""
"\n"
"The proposed changes get more radical from top down so it is recommended to try them successively one after another."
msgstr ""
+"%PRODUCTNAME nun rulas en sekura reĝimo kiu provizore malŝaltas viajn propran agordaron kaj kromprogramojn.\n"
+"\n"
+"Vi povas ŝanĝi la jenajn al via uzantprofilo por reirigi je %PRODUCTNAME al funkcianta stato.\n"
+"\n"
+"La proponitaj ŝanĝoj fariĝas pli radikalaj ek de la supro ĝis la malsupro do ni rekomendas ke vi provu ilin laŭvice, unu post alia."
#: safemodedialog.ui
msgctxt ""
@@ -5110,7 +5115,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore from backup"
-msgstr ""
+msgstr "Restaŭri el sekurkopio"
#: safemodedialog.ui
msgctxt ""
@@ -5119,7 +5124,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore user configuration to the last known working state"
-msgstr ""
+msgstr "Restaŭri propran agordaron al la lasta konata sukcesa stato"
#: safemodedialog.ui
msgctxt ""
@@ -5128,7 +5133,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore state of installed user extensions to the last known working state"
-msgstr ""
+msgstr "Restaŭri staton de instalitaj kromprogramoj al la lasta konata sukcesa stato"
#: safemodedialog.ui
msgctxt ""
@@ -5137,7 +5142,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Configure"
-msgstr ""
+msgstr "Agordi"
#: safemodedialog.ui
msgctxt ""
@@ -5146,7 +5151,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Disable all user extensions"
-msgstr ""
+msgstr "Malŝalti ĉiujn proprajn kromprogramojn"
#: safemodedialog.ui
msgctxt ""
@@ -5155,15 +5160,15 @@ msgctxt ""
"label\n"
"string.text"
msgid "Disable hardware acceleration (OpenGL, OpenCL)"
-msgstr ""
+msgstr "Malŝalti aparataran plirapidigon (OpenGL, OpenCL)"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"radio_deinstall\n"
+"radio_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall extensions"
+msgid "Extensions"
msgstr ""
#: safemodedialog.ui
@@ -5173,15 +5178,24 @@ msgctxt ""
"label\n"
"string.text"
msgid "Uninstall all user extensions"
+msgstr "Malinstali ĉiujn proprajn kromprogramojn"
+
+#: safemodedialog.ui
+msgctxt ""
+"safemodedialog.ui\n"
+"check_reset_shared_extensions\n"
+"label\n"
+"string.text"
+msgid "Reset state of shared extensions"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"check_deinstall_all_extensions\n"
+"check_reset_bundled_extensions\n"
"label\n"
"string.text"
-msgid "Uninstall all extensions (including shared and bundled)"
+msgid "Reset state of bundled extensions"
msgstr ""
#: safemodedialog.ui
@@ -5191,7 +5205,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset to factory settings"
-msgstr ""
+msgstr "Reŝargi fabrikajn agordojn"
#: safemodedialog.ui
msgctxt ""
@@ -5200,7 +5214,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset settings and user interface modifications"
-msgstr ""
+msgstr "Reŝargi agordojn kaj proprajn fasadajn ŝanĝojn"
#: safemodedialog.ui
msgctxt ""
@@ -5209,7 +5223,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset entire user profile"
-msgstr ""
+msgstr "Reŝargi la tutan propran profilon"
#: safemodedialog.ui
msgctxt ""
@@ -5218,7 +5232,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "If you experience problems that are not resolved by using safe mode, visit the following link to get help or report a bug."
-msgstr ""
+msgstr "Se vi spertas problemojn ne solveblajn per uzado de sekura reĝimo, sekvu la jenan ligilon por atingi helpon aŭ por raporti cimon."
#: safemodedialog.ui
msgctxt ""
@@ -5227,7 +5241,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Get Help"
-msgstr ""
+msgstr "Aliri helpon"
#: safemodedialog.ui
msgctxt ""
@@ -5236,7 +5250,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "You can also include relevant parts of your user profile in the bugreport (be aware it might contain personal data)."
-msgstr ""
+msgstr "Vi ankaŭ povas enmeti rilatajn partojn de via propra profilo en la cimraporto. (Atentu ke ĝi eble enhavos personajn detalojn)."
#: safemodedialog.ui
msgctxt ""
@@ -5245,7 +5259,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create Zip Archive from User Profile"
-msgstr ""
+msgstr "Krei Zip-arkivon el propra profilo"
#: safemodedialog.ui
msgctxt ""
@@ -5254,7 +5268,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show User Profile"
-msgstr ""
+msgstr "Vidigi propran profilon"
#: safemodedialog.ui
msgctxt ""
@@ -5263,7 +5277,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Advanced"
-msgstr ""
+msgstr "Altnivela"
#: savemodifieddialog.ui
msgctxt ""
@@ -5443,7 +5457,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Import"
-msgstr ""
+msgstr "Importi"
#: sidebararea.ui
msgctxt ""
@@ -5677,7 +5691,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color mode"
-msgstr ""
+msgstr "Koloromoduso"
#: sidebargraphic.ui
msgctxt ""
@@ -5722,7 +5736,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Red"
-msgstr ""
+msgstr "Ruĝa"
#: sidebargraphic.ui
msgctxt ""
@@ -5740,7 +5754,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Green"
-msgstr ""
+msgstr "Verda"
#: sidebargraphic.ui
msgctxt ""
@@ -5758,7 +5772,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Blue"
-msgstr ""
+msgstr "Blua"
#: sidebargraphic.ui
msgctxt ""
@@ -6082,7 +6096,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Above Paragraph Spacing"
-msgstr ""
+msgstr "Spaco super la alineo"
#: sidebarparagraph.ui
msgctxt ""
@@ -6100,7 +6114,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Below Paragraph Spacing"
-msgstr ""
+msgstr "Spaco sub la alineo"
#: sidebarparagraph.ui
msgctxt ""
@@ -6172,7 +6186,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Before Text Indent"
-msgstr ""
+msgstr "Krommarĝeno antaŭ teksto"
#: sidebarparagraph.ui
msgctxt ""
@@ -6190,7 +6204,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "After Text Indent"
-msgstr ""
+msgstr "Krommarĝeno post teksto"
#: sidebarparagraph.ui
msgctxt ""
@@ -6208,7 +6222,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "First Line Indent"
-msgstr ""
+msgstr "Krommarĝeno de la unua linio"
#: sidebarparagraph.ui
msgctxt ""
@@ -6226,7 +6240,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position _X:"
-msgstr ""
+msgstr "Pozicio X:"
#: sidebarpossize.ui
msgctxt ""
@@ -6253,7 +6267,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position _Y:"
-msgstr ""
+msgstr "Pozicio Y:"
#: sidebarpossize.ui
msgctxt ""
diff --git a/source/eo/sw/source/ui/dochdl.po b/source/eo/sw/source/ui/dochdl.po
index 8fe2b4721bd..f6d4f815ff5 100644
--- a/source/eo/sw/source/ui/dochdl.po
+++ b/source/eo/sw/source/ui/dochdl.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-08-25 12:34+0200\n"
-"PO-Revision-Date: 2016-07-04 21:10+0000\n"
+"PO-Revision-Date: 2015-12-29 03:38+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467666608.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1451360318.000000\n"
#: dochdl.src
msgctxt ""
@@ -87,3 +87,10 @@ msgctxt ""
"string.text"
msgid "DDE link"
msgstr "DDE-ligilo"
+
+msgctxt ""
+"dochdl.src\n"
+"STR_NO_TABLE\n"
+"string.text"
+msgid "A table cannot be inserted into another table. However, you can paste the data into the document when the cursor is not in a table."
+msgstr "Tabelo ne povas esti metata en alian tabelon. Tamen, se vi povas alglui la datumojn en la dokumenton kiam la kursoro ne estas en iu tabelo."
diff --git a/source/eo/sw/uiconfig/swriter/ui.po b/source/eo/sw/uiconfig/swriter/ui.po
index d073d3c3c2d..4629f121b14 100644
--- a/source/eo/sw/uiconfig/swriter/ui.po
+++ b/source/eo/sw/uiconfig/swriter/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-12-01 07:55+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LibreOffice Esperanto\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1480578916.000000\n"
@@ -9825,24 +9825,6 @@ msgstr "Stilo"
#: notebookbar_groups.ui
msgctxt ""
"notebookbar_groups.ui\n"
-"growb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
-"shrinkb\n"
-"label\n"
-"string.text"
-msgid " "
-msgstr " "
-
-#: notebookbar_groups.ui
-msgctxt ""
-"notebookbar_groups.ui\n"
"fomatgrouplabel\n"
"label\n"
"string.text"
diff --git a/source/eo/xmlsecurity/uiconfig/ui.po b/source/eo/xmlsecurity/uiconfig/ui.po
index b0c3ccf79ae..047dc6c060d 100644
--- a/source/eo/xmlsecurity/uiconfig/ui.po
+++ b/source/eo/xmlsecurity/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-11-28 22:05+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-23 01:31+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480370731.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482456696.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -208,6 +208,15 @@ msgstr "Priskribo"
#: digitalsignaturesdialog.ui
msgctxt ""
"digitalsignaturesdialog.ui\n"
+"type\n"
+"label\n"
+"string.text"
+msgid "Signature type"
+msgstr ""
+
+#: digitalsignaturesdialog.ui
+msgctxt ""
+"digitalsignaturesdialog.ui\n"
"macrohint\n"
"label\n"
"string.text"
@@ -266,7 +275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use AdES-compliant signature when there is a choice"
-msgstr ""
+msgstr "Uzi AdES-kongruan subsribon kiam elekto eblas"
#: macrosecuritydialog.ui
msgctxt ""
diff --git a/source/es/basctl/source/basicide.po b/source/es/basctl/source/basicide.po
index 2226e35cb9c..0255447ab46 100644
--- a/source/es/basctl/source/basicide.po
+++ b/source/es/basctl/source/basicide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-24 03:02+0000\n"
+"PO-Revision-Date: 2016-12-22 05:33+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479956574.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482384817.000000\n"
#: basicprint.src
msgctxt ""
@@ -154,7 +154,7 @@ msgctxt ""
"RID_STR_REPLACELIB\n"
"string.text"
msgid "'XX' cannot be replaced."
-msgstr "«XX» no se puede reemplazar."
+msgstr "No se puede reemplazar «XX»."
#: basidesh.src
msgctxt ""
diff --git a/source/es/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
index c9bea6b7826..a66715883a7 100644
--- a/source/es/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
+++ b/source/es/connectivity/registry/mysql/org/openoffice/Office/DataAccess.po
@@ -3,17 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2012-06-13 19:04+0200\n"
-"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2016-12-22 05:25+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482384309.000000\n"
#: Drivers.xcu
msgctxt ""
@@ -40,4 +41,4 @@ msgctxt ""
"DriverTypeDisplayName\n"
"value.text"
msgid "MySQL (Native)"
-msgstr "MySQL (Nativa)"
+msgstr "MySQL (nativo)"
diff --git a/source/es/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po b/source/es/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
index 8eb25c79ee7..3c5a18bcdd7 100644
--- a/source/es/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
+++ b/source/es/connectivity/registry/tdeab/org/openoffice/Office/DataAccess.po
@@ -3,17 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2012-09-07 15:07+0200\n"
-"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2016-12-22 05:25+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482384327.000000\n"
#: Drivers.xcu
msgctxt ""
@@ -22,4 +23,4 @@ msgctxt ""
"DriverTypeDisplayName\n"
"value.text"
msgid "TDE Address Book"
-msgstr "Libreta de direcciones TDE"
+msgstr "Libreta de direcciones de TDE"
diff --git a/source/es/cui/uiconfig/ui.po b/source/es/cui/uiconfig/ui.po
index 9a5db1f0955..e325c4637e9 100644
--- a/source/es/cui/uiconfig/ui.po
+++ b/source/es/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-12-07 08:46+0000\n"
+"PO-Revision-Date: 2016-12-12 22:12+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: none\n"
"Language: es\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481100383.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481580750.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -797,7 +797,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pattern"
-msgstr "Patrón"
+msgstr "Patrón"
#: asiantypography.ui
msgctxt ""
@@ -11431,7 +11431,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "OpenCL is available for use."
-msgstr ""
+msgstr "OpenCL está disponible para su uso."
#: optopenclpage.ui
msgctxt ""
@@ -11440,7 +11440,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "OpenCL is not used."
-msgstr ""
+msgstr "OpenCL no está en uso."
#: optopenclpage.ui
msgctxt ""
@@ -12454,7 +12454,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shortcuts in context menus:"
-msgstr ""
+msgstr "Atajos en menús contextuales:"
#: optviewpage.ui
msgctxt ""
@@ -16240,7 +16240,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Drawing Object Text"
-msgstr ""
+msgstr "Texto de objeto de dibujo"
#: textattrtabpage.ui
msgctxt ""
@@ -16267,7 +16267,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom Shape Text"
-msgstr ""
+msgstr "Texto de forma personalizada"
#: textattrtabpage.ui
msgctxt ""
@@ -17140,7 +17140,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Variable"
-msgstr ""
+msgstr "Variable"
#: zoomdialog.ui
msgctxt ""
@@ -17185,7 +17185,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Columns"
-msgstr ""
+msgstr "Columnas"
#: zoomdialog.ui
msgctxt ""
diff --git a/source/es/editeng/source/items.po b/source/es/editeng/source/items.po
index 0a2c2e37a7e..4e0edd9217b 100644
--- a/source/es/editeng/source/items.po
+++ b/source/es/editeng/source/items.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2016-05-12 19:13+0000\n"
+"PO-Revision-Date: 2016-12-22 05:18+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1463080401.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1482383919.000000\n"
#: page.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"RID_SVXITEMS_BREAK_COLUMN_BEFORE\n"
"string.text"
msgid "Break before new column"
-msgstr "Salto antes de una nueva columna"
+msgstr "Salto antes de columna nueva"
#: svxitems.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"RID_SVXITEMS_BREAK_COLUMN_AFTER\n"
"string.text"
msgid "Break after new column"
-msgstr "Salto después de una nueva columna"
+msgstr "Salto después de columna nueva"
#: svxitems.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"RID_SVXITEMS_BREAK_COLUMN_BOTH\n"
"string.text"
msgid "Break before and after new column"
-msgstr "Saltos antes y después de una nueva columna"
+msgstr "Saltos antes y después de columna nueva"
#: svxitems.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"RID_SVXITEMS_BREAK_PAGE_BEFORE\n"
"string.text"
msgid "Break before new page"
-msgstr "Salto antes de una página nueva"
+msgstr "Salto antes de página nueva"
#: svxitems.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"RID_SVXITEMS_BREAK_PAGE_AFTER\n"
"string.text"
msgid "Break after new page"
-msgstr "Salto después de una página nueva"
+msgstr "Salto después de página nueva"
#: svxitems.src
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"RID_SVXITEMS_BREAK_PAGE_BOTH\n"
"string.text"
msgid "Break before and after new page"
-msgstr "Salto antes y después de una página nueva"
+msgstr "Saltos antes y después de página nueva"
#: svxitems.src
msgctxt ""
diff --git a/source/es/extensions/source/propctrlr.po b/source/es/extensions/source/propctrlr.po
index 97c906a0f44..502f39a61d7 100644
--- a/source/es/extensions/source/propctrlr.po
+++ b/source/es/extensions/source/propctrlr.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-12-04 09:44+0000\n"
+"PO-Revision-Date: 2016-12-21 23:07+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480844681.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482361678.000000\n"
#: formlinkdialog.src
msgctxt ""
@@ -1126,7 +1126,7 @@ msgctxt ""
"Get\n"
"itemlist.text"
msgid "Get"
-msgstr ""
+msgstr "Get"
#: formres.src
msgctxt ""
@@ -1135,7 +1135,7 @@ msgctxt ""
"Post\n"
"itemlist.text"
msgid "Post"
-msgstr ""
+msgstr "Post"
#: formres.src
msgctxt ""
@@ -1153,7 +1153,7 @@ msgctxt ""
"Multipart\n"
"itemlist.text"
msgid "Multipart"
-msgstr ""
+msgstr "Multiparte"
#: formres.src
msgctxt ""
@@ -1162,7 +1162,7 @@ msgctxt ""
"Text\n"
"itemlist.text"
msgid "Text"
-msgstr ""
+msgstr "Texto"
#: formres.src
msgctxt ""
@@ -1171,7 +1171,7 @@ msgctxt ""
"Standard (short)\n"
"itemlist.text"
msgid "Standard (short)"
-msgstr ""
+msgstr "Estándar (breve)"
#: formres.src
msgctxt ""
@@ -1180,7 +1180,7 @@ msgctxt ""
"Standard (short YY)\n"
"itemlist.text"
msgid "Standard (short YY)"
-msgstr ""
+msgstr "Estándar (AA breve)"
#: formres.src
msgctxt ""
@@ -1189,7 +1189,7 @@ msgctxt ""
"Standard (short YYYY)\n"
"itemlist.text"
msgid "Standard (short YYYY)"
-msgstr ""
+msgstr "Estándar (AAAA breve)"
#: formres.src
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"Standard (long)\n"
"itemlist.text"
msgid "Standard (long)"
-msgstr ""
+msgstr "Estándar (larga)"
#: formres.src
msgctxt ""
@@ -1207,7 +1207,7 @@ msgctxt ""
"DD/MM/YY\n"
"itemlist.text"
msgid "DD/MM/YY"
-msgstr ""
+msgstr "DD/MM/AA"
#: formres.src
msgctxt ""
@@ -1216,7 +1216,7 @@ msgctxt ""
"MM/DD/YY\n"
"itemlist.text"
msgid "MM/DD/YY"
-msgstr ""
+msgstr "MM/DD/AA"
#: formres.src
msgctxt ""
@@ -1225,7 +1225,7 @@ msgctxt ""
"YY/MM/DD\n"
"itemlist.text"
msgid "YY/MM/DD"
-msgstr ""
+msgstr "AA/MM/DD"
#: formres.src
msgctxt ""
@@ -1234,7 +1234,7 @@ msgctxt ""
"DD/MM/YYYY\n"
"itemlist.text"
msgid "DD/MM/YYYY"
-msgstr ""
+msgstr "DD/MM/AAAA"
#: formres.src
msgctxt ""
@@ -1243,7 +1243,7 @@ msgctxt ""
"MM/DD/YYYY\n"
"itemlist.text"
msgid "MM/DD/YYYY"
-msgstr ""
+msgstr "MM/DD/AAAA"
#: formres.src
msgctxt ""
@@ -1252,7 +1252,7 @@ msgctxt ""
"YYYY/MM/DD\n"
"itemlist.text"
msgid "YYYY/MM/DD"
-msgstr ""
+msgstr "AAAA/MM/DD"
#: formres.src
msgctxt ""
@@ -1261,7 +1261,7 @@ msgctxt ""
"YY-MM-DD\n"
"itemlist.text"
msgid "YY-MM-DD"
-msgstr ""
+msgstr "AA-MM-DD"
#: formres.src
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"YYYY-MM-DD\n"
"itemlist.text"
msgid "YYYY-MM-DD"
-msgstr ""
+msgstr "AAAA-MM-DD"
#: formres.src
msgctxt ""
@@ -1279,7 +1279,7 @@ msgctxt ""
"13:45\n"
"itemlist.text"
msgid "13:45"
-msgstr ""
+msgstr "13:45"
#: formres.src
msgctxt ""
@@ -1288,7 +1288,7 @@ msgctxt ""
"13:45:00\n"
"itemlist.text"
msgid "13:45:00"
-msgstr ""
+msgstr "13:45:00"
#: formres.src
msgctxt ""
@@ -1297,7 +1297,7 @@ msgctxt ""
"01:45 PM\n"
"itemlist.text"
msgid "01:45 PM"
-msgstr ""
+msgstr "01:45 p. m."
#: formres.src
msgctxt ""
@@ -1306,7 +1306,7 @@ msgctxt ""
"01:45:00 PM\n"
"itemlist.text"
msgid "01:45:00 PM"
-msgstr ""
+msgstr "01:45:00 p. m."
#: formres.src
msgctxt ""
@@ -1396,7 +1396,7 @@ msgctxt ""
"_blank\n"
"itemlist.text"
msgid "_blank"
-msgstr ""
+msgstr "_blank"
#: formres.src
msgctxt ""
@@ -1405,7 +1405,7 @@ msgctxt ""
"_parent\n"
"itemlist.text"
msgid "_parent"
-msgstr ""
+msgstr "_parent"
#: formres.src
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"_self\n"
"itemlist.text"
msgid "_self"
-msgstr ""
+msgstr "_self"
#: formres.src
msgctxt ""
@@ -1423,7 +1423,7 @@ msgctxt ""
"_top\n"
"itemlist.text"
msgid "_top"
-msgstr ""
+msgstr "_top"
#: formres.src
msgctxt ""
@@ -1459,7 +1459,7 @@ msgctxt ""
"Range\n"
"itemlist.text"
msgid "Range"
-msgstr ""
+msgstr "Intervalo"
#: formres.src
msgctxt ""
@@ -1917,7 +1917,7 @@ msgctxt ""
"Vertical\n"
"itemlist.text"
msgid "Vertical"
-msgstr ""
+msgstr "Vertical"
#: formres.src
msgctxt ""
@@ -2050,7 +2050,7 @@ msgctxt ""
"The selected entry\n"
"itemlist.text"
msgid "The selected entry"
-msgstr ""
+msgstr "La entrada seleccionada"
#: formres.src
msgctxt ""
@@ -2119,7 +2119,7 @@ msgctxt ""
"LF (Unix)\n"
"itemlist.text"
msgid "LF (Unix)"
-msgstr ""
+msgstr "LF (Unix)"
#: formres.src
msgctxt ""
@@ -2128,7 +2128,7 @@ msgctxt ""
"CR+LF (Windows)\n"
"itemlist.text"
msgid "CR+LF (Windows)"
-msgstr ""
+msgstr "CR+LF (Windows)"
#: formres.src
msgctxt ""
@@ -2146,7 +2146,7 @@ msgctxt ""
"Horizontal\n"
"itemlist.text"
msgid "Horizontal"
-msgstr ""
+msgstr "Horizontal"
#: formres.src
msgctxt ""
@@ -2155,7 +2155,7 @@ msgctxt ""
"Vertical\n"
"itemlist.text"
msgid "Vertical"
-msgstr ""
+msgstr "Vertical"
#: formres.src
msgctxt ""
@@ -2164,7 +2164,7 @@ msgctxt ""
"Both\n"
"itemlist.text"
msgid "Both"
-msgstr ""
+msgstr "Ambas"
#: formres.src
msgctxt ""
@@ -2173,7 +2173,7 @@ msgctxt ""
"Table\n"
"itemlist.text"
msgid "Table"
-msgstr ""
+msgstr "Tabla"
#: formres.src
msgctxt ""
@@ -3084,7 +3084,7 @@ msgctxt ""
"No\n"
"itemlist.text"
msgid "No"
-msgstr ""
+msgstr "No"
#: propres.src
msgctxt ""
@@ -3093,7 +3093,7 @@ msgctxt ""
"Yes\n"
"itemlist.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#: propres.src
msgctxt ""
diff --git a/source/es/extensions/uiconfig/sbibliography/ui.po b/source/es/extensions/uiconfig/sbibliography/ui.po
index 6d7dbedc6a2..0a92b62e855 100644
--- a/source/es/extensions/uiconfig/sbibliography/ui.po
+++ b/source/es/extensions/uiconfig/sbibliography/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-03-09 20:49+0100\n"
-"PO-Revision-Date: 2016-03-12 03:08+0000\n"
+"PO-Revision-Date: 2016-12-12 18:23+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1457752102.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481566982.000000\n"
#: choosedatasourcedialog.ui
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Chapter"
-msgstr "_Capítulo"
+msgstr "_Capítulo"
#: generalpage.ui
msgctxt ""
@@ -356,7 +356,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Chapter"
-msgstr "_Capítulo"
+msgstr "_Capítulo"
#: mappingdialog.ui
msgctxt ""
diff --git a/source/es/forms/source/resource.po b/source/es/forms/source/resource.po
index 5aa10d8a09b..7ddc29730df 100644
--- a/source/es/forms/source/resource.po
+++ b/source/es/forms/source/resource.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-11-26 04:09+0000\n"
+"PO-Revision-Date: 2016-12-12 16:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480133380.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481561639.000000\n"
#: strings.src
msgctxt ""
@@ -290,7 +290,7 @@ msgctxt ""
"RID_STR_XFORMS_VALUE_MAX_INCL\n"
"string.text"
msgid "The value must be smaller than or equal to $2."
-msgstr "El valor debe ser menor que o igual a $2."
+msgstr "El valor debe ser menor o igual que $2."
#: xforms.src
msgctxt ""
diff --git a/source/es/helpcontent2/source/auxiliary.po b/source/es/helpcontent2/source/auxiliary.po
index 25bba56f62f..d98a47bd58a 100644
--- a/source/es/helpcontent2/source/auxiliary.po
+++ b/source/es/helpcontent2/source/auxiliary.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-05 08:26+0000\n"
+"PO-Revision-Date: 2016-12-12 18:21+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1462436795.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1481566886.000000\n"
#: sbasic.tree
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"08\n"
"help_section.text"
msgid "Spreadsheets"
-msgstr "Hojas de cálculo"
+msgstr "Hojas de cálculo"
#: scalc.tree
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/00.po b/source/es/helpcontent2/source/text/scalc/00.po
index 99990340e21..619a756bc1a 100644
--- a/source/es/helpcontent2/source/text/scalc/00.po
+++ b/source/es/helpcontent2/source/text/scalc/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-15 23:21+0000\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"PO-Revision-Date: 2016-12-22 14:10+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1468624898.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482415821.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -553,8 +553,8 @@ msgctxt ""
"par_id3153250\n"
"28\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Names</emph></variable>"
-msgstr "<variable id=\"einamen\">Menú <emph>Insertar - Nombres</emph></variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph></variable>"
+msgstr "<variable id=\"einamen\">Vaya a <emph>Insertar ▸ Intervalos y expresiones con nombre</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"37\n"
"help.text"
msgid "<variable id=\"eiextdata\">Choose <emph>Sheet - Link to External Data</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"eiextdata\">Vaya a <emph>Hoja ▸ Enlazar a datos externos</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -571,8 +571,8 @@ msgctxt ""
"par_id3143222\n"
"29\n"
"help.text"
-msgid "Choose <emph>Insert - Names - Define</emph>"
-msgstr "Menú <emph>Insertar - Nombres - Definir...</emph>"
+msgid "Choose <emph>Sheet - Named Ranges and Expressions - Define</emph>"
+msgstr "Vaya a <emph>Hoja ▸ Intervalos y expresiones con nombre ▸Definir</emph>"
#: 00000404.xhp
msgctxt ""
@@ -589,8 +589,8 @@ msgctxt ""
"par_id3145214\n"
"30\n"
"help.text"
-msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></variable>"
-msgstr "<variable id=\"einaei\">Menú <emph>Insertar - Nombres - Pegar</emph></variable>"
+msgid "<variable id=\"einaei\">Choose <emph>Sheet - Named Ranges and Expressions - Insert</emph></variable>"
+msgstr "<variable id=\"einaei\">Vaya a <emph>Hoja ▸ Intervalos y expresiones con nombre ▸ Insertar</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -598,8 +598,8 @@ msgctxt ""
"par_id3153558\n"
"31\n"
"help.text"
-msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></variable>"
-msgstr "<variable id=\"einaueb\">Menú <emph>Insertar - Nombres - Aplicar</emph></variable>"
+msgid "<variable id=\"einaueb\">Choose <emph>Sheet - Named Ranges and Expressions - Create</emph></variable>"
+msgstr "<variable id=\"einaueb\">Vaya a <emph>Hoja ▸ Intervalos y expresiones con nombre ▸ Crear</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -607,8 +607,8 @@ msgctxt ""
"par_id3153483\n"
"32\n"
"help.text"
-msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
-msgstr "<variable id=\"einabesch\">Menú<emph> Insertar - Nombres - Etiquetas</emph></variable>"
+msgid "<variable id=\"einabesch\">Choose <emph>Sheet - Named Ranges and Expressions - Labels</emph></variable>"
+msgstr "<variable id=\"einabesch\">Vaya a <emph>Hoja ▸ Intervalos y expresiones con nombre ▸ Etiquetas</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1051,7 +1051,7 @@ msgctxt ""
"par_id3149020\n"
"help.text"
msgid "<variable id=\"protect_sheet\">Choose <emph>Tools - Protect Sheet</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"protect_sheet\">Vaya a <emph>Herramientas ▸ Proteger hoja</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -1059,7 +1059,7 @@ msgctxt ""
"par_id3154256\n"
"help.text"
msgid "<variable id=\"protect_spreadsheet\">Choose <emph>Tools - Protect Spreadsheet</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"protect_spreadsheet\">Vaya a <emph>Herramientas ▸ Proteger libro</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -1135,7 +1135,7 @@ msgctxt ""
"par_id3153663\n"
"help.text"
msgid "<variable id=\"fefix\">Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item></variable>"
-msgstr ""
+msgstr "<variable id=\"fefix\">Vaya a <item type=\"menuitem\">Ver ▸Inmovilizar celdas ▸ Inmovilizar filas y columnas</item></variable>"
#: 00000412.xhp
msgctxt ""
@@ -1714,7 +1714,7 @@ msgctxt ""
"par_id3149095\n"
"help.text"
msgid "<variable id=\"insert_page_break\">Choose <emph>Sheet - Insert Page Break</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"insert_page_break\">Vaya a <emph>Hoja ▸ Insertar salto de página</emph></variable>"
#: sheet_menu.xhp
msgctxt ""
@@ -1722,7 +1722,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "<variable id=\"insert_page_break_row\">Choose <emph>Sheet - Insert Page Break - Row Break</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"insert_page_break_row\">Vaya a <emph>Hoja ▸ Insertar salto de página ▸ Salto de fila</emph></variable>"
#: sheet_menu.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index 77bcdf19bfc..c8727aa51d3 100644
--- a/source/es/helpcontent2/source/text/scalc/01.po
+++ b/source/es/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-11-05 23:03+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1478387014.000000\n"
#: 01120000.xhp
@@ -20651,8 +20651,8 @@ msgctxt ""
"par_id3150691\n"
"57\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr "<item type=\"input\">=INDICE(SumaX;4;1)</item> devuelve el valor del intervalo <emph>SumaX</emph> en la fila 4 y columna 1 como se ha definido en <emph>Insertar ▸ Expresiones con nombre ▸ Definir</emph>."
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Sheet - Named Ranges and Expressions - Define</emph>."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -20676,8 +20676,8 @@ msgctxt ""
"par_id3158419\n"
"58\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr "<item type=\"input\">=INDICE((multi);4;1)</item> indica el valor contenido en la fila 4 y columna 1 del intervalo (múltiple), al cual se asignó el nombre <emph>multi</emph> a través de <emph>Insertar ▸ Expresiones con nombre ▸ Definir</emph>. El intervalo múltiple puede consistir de varios intervalos rectangulares, cada uno de las cuales posee una fila 4 y columna 1. Después, si desea acceder al segundo bloque de este intervalo múltiple, ingrese el número <item type=\"input\">2</item> como parámetro <emph>intervalo</emph>."
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Sheet - Named Ranges and Expressions - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -49847,8 +49847,8 @@ msgctxt ""
"04070000.xhp\n"
"tit\n"
"help.text"
-msgid "Names"
-msgstr "Nombres"
+msgid "Named Ranges and Expressions"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -49856,8 +49856,8 @@ msgctxt ""
"hd_id3153951\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
-msgstr "<link href=\"text/scalc/01/04070000.xhp\" name=\"Nombres\">Nombres</link>"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Named Ranges and Expressions</link>"
+msgstr ""
#: 04070000.xhp
msgctxt ""
@@ -50247,8 +50247,8 @@ msgctxt ""
"par_id3156280\n"
"13\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
-msgstr "Seleccione una zona que contenga todas las áreas a las que desee asignar un nombre. A continuación elija <emph>Insertar - Nombres - Definir</emph>. Se abre el diálogo <emph>Definir nombres</emph> que permite seleccionar las opciones de nombre deseadas."
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Sheet - Named Ranges and Expressions - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
#: 04070300.xhp
msgctxt ""
@@ -52134,8 +52134,8 @@ msgctxt ""
"par_id3145174\n"
"5\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
-msgstr "Seleccione <emph>-ninguno-</emph> para borrar un intervalo de impresión de la hoja de cálculo actual. Seleccione <emph>-hoja completa-</emph> para configurar la hoja actual como intervalo de impresión. Seleccione <emph>-selección-</emph> para definir el área seleccionada de la hoja de cálculo como intervalo de impresión. Si selecciona <emph>-definido por el usuario-</emph>, puede definir un intervalo de impresión ya definido mediante el comando <emph>Formato - Intervalos de impresión - Definir</emph>. Si ha asignado un nombre a un intervalo utilizando el comando <emph>Insertar - Nombres - Definir</emph>, dicho nombre se mostrará y se podrá seleccionar en el cuadro de lista."
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Sheet - Named Ranges and Expressions - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
#: 05080300.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/guide.po b/source/es/helpcontent2/source/text/scalc/guide.po
index ae20687a47e..052373c3893 100644
--- a/source/es/helpcontent2/source/text/scalc/guide.po
+++ b/source/es/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-10 23:39+0100\n"
"PO-Revision-Date: 2016-10-24 05:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1477285339.000000\n"
#: address_auto.xhp
@@ -2131,8 +2131,8 @@ msgctxt ""
"par_id3154011\n"
"26\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
-msgstr "Para definir el intervalo de origen como intervalo, seleccione las celdas y diríjase a <emph>Insertar ▸ Expresiones con nombre ▸ Definir</emph>. Guarde el documento de origen y no lo cierre."
+msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
+msgstr ""
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -11831,8 +11831,8 @@ msgctxt ""
"par_id3153954\n"
"3\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr "Seleccione una celda o área de celdas y elija <emph>Insertar - Nombres - Definir</emph>. Se abre el diálogo <emph>Definir nombres</emph>."
+msgid "Select a cell or range of cells, then choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
#: value_with_name.xhp
msgctxt ""
@@ -11884,8 +11884,8 @@ msgctxt ""
"par_id3153711\n"
"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
-msgstr "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insertar - Nombres - Definir\">Insertar - Nombres - Definir</link>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Sheet - Named Ranges and Expressions - Define\">Sheet - Named Ranges and Expressions - Define</link>"
+msgstr ""
#: webquery.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/00.po b/source/es/helpcontent2/source/text/shared/00.po
index c8dd5e1428d..1a29bd616ba 100644
--- a/source/es/helpcontent2/source/text/shared/00.po
+++ b/source/es/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-10-24 06:33+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1477290785.000000\n"
#: 00000001.xhp
@@ -12070,15 +12070,6 @@ msgstr "Elija <emph>Formato ▸ Página ▸</emph> pestaña <emph>Fondo</emph> (
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr "Seleccione <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objeto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfico - </emph></caseinline></switchinline><emph>Área, ficha Colores</emph>"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
"par_id3154985\n"
"141\n"
"help.text"
diff --git a/source/es/helpcontent2/source/text/shared/01.po b/source/es/helpcontent2/source/text/shared/01.po
index 27eb5a57c92..23fb22bfc13 100644
--- a/source/es/helpcontent2/source/text/shared/01.po
+++ b/source/es/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
"PO-Revision-Date: 2016-10-24 05:17+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1477286251.000000\n"
#: 01010000.xhp
@@ -8291,8 +8291,8 @@ msgctxt ""
"par_id3152551\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
-msgstr "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Indique la cantidad de caracteres del término de búsqueda que se pueden cambiar.</ahelp> Por ejemplo, si especifica modificar 2 caracteres, \"cazo\" y \"buzo\" se consideran similares."
+msgid "<ahelp hid=\"cui/ui/similaritysearchdialog/otherfld\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"sweep\" and \"creep\" are considered similar."
+msgstr ""
#: 02100100.xhp
msgctxt ""
@@ -25620,32 +25620,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/LB_BITMAP\">Haga clic en el relleno que desee aplicar al objeto seleccionado.</ahelp>"
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Colors"
-msgstr "Colores"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
-msgstr "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colores</link>"
-
-#: 05210200.xhp
-msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
-"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
-msgstr "Seleccione un color para aplicar, guarde la lista de colores actual o cargue una lista de colores distinta."
-
#: 05210300.xhp
msgctxt ""
"05210300.xhp\n"
@@ -43243,6 +43217,214 @@ msgctxt ""
msgid "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Re-enter the master password.</ahelp>"
msgstr "<ahelp hid=\"uui/ui/setmasterpassworddlg/password2\">Vuelva a escribir la contraseña maestra.</ahelp>"
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"tit\n"
+"help.text"
+msgid "Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"bm_id281120160951421436\n"
+"help.text"
+msgid "<bookmark_value>profile;safe mode</bookmark_value>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160939034500\n"
+"help.text"
+msgid "<link href=\"text/shared/01/profile_safe_mode.xhp\">Safe Mode</link>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939285779\n"
+"help.text"
+msgid "<ahelp hid=\".\">Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. </ahelp>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163153357\n"
+"help.text"
+msgid "Choose <emph>Help - Restart in Safe Mode...</emph>"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154362\n"
+"help.text"
+msgid "Start %PRODUCTNAME from command line with <emph>--safe-mode</emph> option"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120163154363\n"
+"help.text"
+msgid "Start %PRODUCTNAME from <emph>%PRODUCTNAME (Safe Mode)</emph> start menu entry (Windows only)"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149549\n"
+"help.text"
+msgid "What can I do in safe mode?"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160939281728\n"
+"help.text"
+msgid "Once in safe mode, you will be shown a dialog offering three user profile restoration options"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149551\n"
+"help.text"
+msgid "Continue in Safe Mode"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279896\n"
+"help.text"
+msgid "This option will let you work with %PRODUCTNAME as you are used to, but using a temporary user profile. It also means that all configuration changes made to the temporary user profile will be lost after restart."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149552\n"
+"help.text"
+msgid "Quit"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944279161\n"
+"help.text"
+msgid "Choosing <emph>Quit</emph> will just exit %PRODUCTNAME. Use this option if you got here by accident."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149543\n"
+"help.text"
+msgid "Apply Changes and Restart"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348926\n"
+"help.text"
+msgid "The dialog offers multiple changes to the user profile that can be made to help restoring %PRODUCTNAME to working state. They get more radical from top down so you should try them successively one after another. Choosing this option applies selected changes"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149545\n"
+"help.text"
+msgid "Restore from backup"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348884\n"
+"help.text"
+msgid "%PRODUCTNAME keeps backups of previous configurations and activated extensions. Use this option to return to the previous state if your problems are likely to be caused by recent changes to configuration or extensions."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120163149546\n"
+"help.text"
+msgid "Configure"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347119\n"
+"help.text"
+msgid "You can disable all extensions installed by the user. You can also disable hardware acceleration. Activate this option if you experience startup crashes or visual glitches, they are often related to hardware acceleration."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276682\n"
+"help.text"
+msgid "Uninstall extensions"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160944275137\n"
+"help.text"
+msgid "Sometimes %PRODUCTNAME cannot be started due to extensions blocking or crashing. This option allows you to disable all extensions installed by the user as well as shared and bundled extensions. Uninstalling shared and bundled extensions should be used with caution. It will only work if you have the necessary system access rights."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"hd_id281120160944276687\n"
+"help.text"
+msgid "Reset to factory settings"
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427792\n"
+"help.text"
+msgid "If all else fails, you can reset your user profile to the factory default. The first option <emph>Reset settings and user customizations</emph> resets all configuration and UI changes, but keeps things like your personal dictionary, templates etc. The second option will reset your entire profile to the state when you first installed %PRODUCTNAME."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id28112016094427243\n"
+"help.text"
+msgid "If you could not resolve your problem by using safe mode, click on <emph>Advanced</emph> expander. You will find instructions how to get further help there."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949347055\n"
+"help.text"
+msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
+msgstr ""
+
+#: profile_safe_mode.xhp
+msgctxt ""
+"profile_safe_mode.xhp\n"
+"par_id281120160949348679\n"
+"help.text"
+msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
+msgstr ""
+
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
diff --git a/source/es/helpcontent2/source/text/shared/guide.po b/source/es/helpcontent2/source/text/shared/guide.po
index fc201a5eefa..c57ec0e7288 100644
--- a/source/es/helpcontent2/source/text/shared/guide.po
+++ b/source/es/helpcontent2/source/text/shared/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-10-31 04:50+0000\n"
+"POT-Creation-Date: 2016-12-21 15:39+0100\n"
+"PO-Revision-Date: 2016-12-21 14:26+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1477889413.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1482330368.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -2191,7 +2191,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id1508201618160340\n"
"help.text"
-msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers (check)"
+msgid "Connecting to <link href=\"text/shared/00/00000002.xhp#ftp\">FTP</link> and SSH servers"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -2271,7 +2271,7 @@ msgctxt ""
"cmis-remote-files-setup.xhp\n"
"hd_id150820161816049600\n"
"help.text"
-msgid "Connecting to a Windows share (check)"
+msgid "Connecting to a Windows share"
msgstr ""
#: cmis-remote-files-setup.xhp
@@ -3528,7 +3528,7 @@ msgctxt ""
"bm_id3152924\n"
"help.text"
msgid "<bookmark_value>sending; AutoAbstract function in presentations</bookmark_value><bookmark_value>AutoAbstract function for sending text to presentations</bookmark_value><bookmark_value>outlines; sending to presentations</bookmark_value><bookmark_value>text; copying by drag and drop</bookmark_value><bookmark_value>drag and drop; copying and pasting text</bookmark_value><bookmark_value>inserting;data from text documents</bookmark_value><bookmark_value>copying;data from text documents</bookmark_value><bookmark_value>pasting;data from text documents</bookmark_value>"
-msgstr "<bookmark_value>enviar; Abstracto automático en presentaciones</bookmark_value><bookmark_value>Abstracto automático para enviar texto a presentaciones</bookmark_value><bookmark_value>esquemas; enviar a presentaciones</bookmark_value><bookmark_value>texto; copiar mediante arrastrar y colocar</bookmark_value><bookmark_value>arrastrar y colocar; copiar y pegar texto</bookmark_value><bookmark_value>insertar;datos de documentos de texto</bookmark_value><bookmark_value>copiar;datos de documentos de texto</bookmark_value><bookmark_value>pegar;datos de documentos de texto</bookmark_value>"
+msgstr "<bookmark_value>enviar; resumen automático de presentaciones</bookmark_value><bookmark_value>resumen automático para enviar texto a presentaciones</bookmark_value><bookmark_value>esquemas; enviar a presentaciones</bookmark_value><bookmark_value>texto; copiar mediante arrastrar y colocar</bookmark_value><bookmark_value>arrastrar y colocar; copiar y pegar texto</bookmark_value><bookmark_value>insertar;datos desde documentos de texto</bookmark_value><bookmark_value>copiar;datos desde documentos de texto</bookmark_value><bookmark_value>pegar;datos desde documentos de texto</bookmark_value>"
#: copytext2application.xhp
msgctxt ""
@@ -9922,8 +9922,8 @@ msgctxt ""
"hyperlink_insert.xhp\n"
"par_idN1076D\n"
"help.text"
-msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Insert - Names - Define</emph>)."
-msgstr "Para saltar a una celda en una hoja de cálculo, primero escriba el nombre de la celda (<emph>Insertar ▸ Nombres ▸ Definir</emph>)."
+msgid "To jump to a cell in a spreadsheet, first enter a name for the cell (<emph>Sheet - Named Ranges and Expressions - Define</emph>)."
+msgstr ""
#: hyperlink_insert.xhp
msgctxt ""
@@ -12431,20 +12431,20 @@ msgstr "En la pestaña <emph>Opciones</emph>, verifique si se ha seleccionado <e
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3156424\n"
-"86\n"
+"par_id3149767\n"
+"29\n"
"help.text"
-msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
-msgstr "Desde que haya pulsado sobre <emph>Nuevo documento</emph> verá una pequeña ventana con el botón <emph>Sincronizar etiquetas</emph>. Escriba la primera etiqueta. Desde que pulse el susodicho botón, la etiqueta en cuestión se copiará en todas las otras etiquetas de la hoja."
+msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
+msgstr "Pulse en <emph>Nuevo documento</emph> para crear un documento nuevo con la configuración introducida."
#: labels.xhp
msgctxt ""
"labels.xhp\n"
-"par_id3149767\n"
-"29\n"
+"par_id3156424\n"
+"86\n"
"help.text"
-msgid "Click on <emph>New Document</emph> to create a new document with the settings you have entered."
-msgstr "Pulse en <emph>Nuevo documento</emph> para crear un documento nuevo con la configuración introducida."
+msgid "As soon as you click on <emph>New Document</emph>, you will see a small window with the <emph>Synchronize Labels</emph> button. Enter the first label. When you click on the <emph>Synchronize Labels</emph> button, the current individual label is copied to all the other labels on the sheet."
+msgstr "Desde que haya pulsado sobre <emph>Nuevo documento</emph> verá una pequeña ventana con el botón <emph>Sincronizar etiquetas</emph>. Escriba la primera etiqueta. Desde que pulse el susodicho botón, la etiqueta en cuestión se copiará en todas las otras etiquetas de la hoja."
#: labels.xhp
msgctxt ""
@@ -18309,758 +18309,721 @@ msgctxt ""
"start_parameters.xhp\n"
"tit\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Inicio del software $[officename] con parámetros"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"bm_id3156410\n"
"help.text"
-msgid "<bookmark_value>start parameters</bookmark_value><bookmark_value>command line parameters</bookmark_value><bookmark_value>parameters;command line</bookmark_value><bookmark_value>arguments in command line</bookmark_value>"
-msgstr "<bookmark_value>parámetros de inicio</bookmark_value><bookmark_value>parámetros de línea de comandos</bookmark_value><bookmark_value>parámetros;línea de comandos</bookmark_value><bookmark_value>argumentos en línea de comandos</bookmark_value>"
+msgid "<bookmark_value>start parameters</bookmark_value> <bookmark_value>command line parameters</bookmark_value> <bookmark_value>parameters;command line</bookmark_value> <bookmark_value>arguments in command line</bookmark_value>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3156410\n"
-"52\n"
"help.text"
-msgid "Starting the $[officename] Software With Parameters"
-msgstr "Inicio del software $[officename] con parámetros"
+msgid "Starting $[officename] Software With Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147009\n"
-"1\n"
"help.text"
-msgid "By starting the $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
-msgstr "Si se inicia el software de $[officename] desde la línea de órdenes, podrá asignar varios parámetros con los que se puede influir en el rendimiento. El uso de los parámetros de la línea de órdenes sólo se recomienda a los usuarios experimentados."
+msgid "By starting $[officename] software from the command line you can assign various parameters, with which you can influence the performance. The use of command line parameters is only recommended for experienced users."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147618\n"
-"2\n"
"help.text"
-msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of the $[officename] software technology."
-msgstr "Para un manejo normal, no es necesario el uso de los parámetros de la línea de órdenes. Algunos de los parámetros requieren un mayor conocimiento técnico de la tecnología del software de $[officename]."
+msgid "For normal handling, the use of command line parameters is not necessary. A few of the parameters require a deeper knowledge of the technical background of $[officename] software technology."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"hd_id3154898\n"
-"4\n"
"help.text"
-msgid "Starting the $[officename] Software From the Command Line"
-msgstr "Inicio del software de $[officename] desde la línea de órdenes"
+msgid "Starting $[officename] Software From the Command Line"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156152\n"
-"5\n"
"help.text"
msgid "Under Windows, select <emph>Run</emph> from the Windows Start menu, or open a shell under Linux, *BSD, or Mac OS X platforms."
-msgstr "En Windows, seleccione <emph>Ejecutar</emph> en el menú Inicio, o abra un terminal en las plataformas Linux, *BSD, y Mac OS X."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3152472\n"
-"6\n"
"help.text"
msgid "Under Windows, type the following text in the <emph>Open </emph>text field and click <emph>OK</emph>."
-msgstr "En Windows, escriba el texto siguiente en el campo de texto <emph>Abrir</emph> y pulse <emph>Aceptar</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3149669\n"
-"53\n"
"help.text"
msgid "Under UNIX-like systems, type the following line of text, then press <emph>Return</emph>:"
-msgstr "En sistemas similares a UNIX, escriba la siguiente línea de texto y oprima <emph>Intro</emph>:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147561\n"
-"7\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter} </caseinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parámetro} </caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parámetro} </caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">{install}\\program\\soffice.exe {parameter}</caseinline><caseinline select=\"UNIX\">{install}/program/soffice {parameter}</caseinline></switchinline>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3153360\n"
-"8\n"
"help.text"
-msgid "Replace <emph>{install}</emph> with the path to your installation of the $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
-msgstr "Sustituya <emph>{instal}</emph> con la ruta a la instalación de $[officename] (por ejemplo, <emph>C:\\Archivos de programa\\Office</emph> o <emph>~/office</emph>)"
+msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph>, or <emph>~/office</emph>)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3158407\n"
-"9\n"
+"hd_id3145171\n"
"help.text"
-msgid "Where required, replace <emph>{parameter}</emph> with one or more of the following command line parameters."
-msgstr "Cuando se solicite, sustituya <emph>{parámetro}</emph> por uno o más de los parámetros de la línea de órdenes siguientes."
+msgid "Valid Command Line Parameters"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"hd_id1016120408556191\n"
"help.text"
-msgid "Valid Command Line Parameters"
-msgstr "Parámetros válidos de la línea de órdenes"
+msgid "Using without special arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148451\n"
-"11\n"
+"par_id215247284938\n"
"help.text"
-msgid "Parameter"
-msgstr "<emph>Parámetro</emph>"
+msgid "Using without any arguments opens the start center."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149167\n"
-"12\n"
+"par_id4016121206183262\n"
"help.text"
-msgid "Meaning"
-msgstr "<emph>Significado</emph>"
+msgid "<emph>{file}</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149983\n"
-"73\n"
+"par_id40161212062813818\n"
"help.text"
-msgid "--help / -h / -?"
-msgstr "--help / -h / -?"
+msgid "Tries to open the file (files) in the components suitable for them."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147349\n"
-"74\n"
+"par_id40161212063110720\n"
"help.text"
-msgid "Lists the available command line parameters <switchinline select=\"sys\"><caseinline select=\"WIN\">in a dialog box</caseinline><defaultinline>to the console</defaultinline></switchinline>."
-msgstr "Enumera los parámetros de la línea de comandos disponibles <switchinline select=\"sys\"><caseinline select=\"WIN\">en un cuadro de diálogo</caseinline><defaultinline>en la consola</defaultinline></switchinline>. -help muestra un texto de ayuda extenso; -h muestra un texto de ayuda breve."
+msgid "<emph>{file} macro:///[Library.Module.MacroName]</emph>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31499et\n"
-"73\n"
+"par_id40161212063330252\n"
"help.text"
-msgid "--version"
-msgstr "--version"
+msgid "Opens the file and applies specified macros from the file."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id31473et\n"
-"74\n"
+"hd_id201612040855610\n"
"help.text"
-msgid "Displays the version information."
-msgstr "Muestra información de la versión."
+msgid "Getting help and information"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150010\n"
-"59\n"
+"par_id3148451\n"
"help.text"
-msgid "--writer"
-msgstr "--writer"
+msgid "<variable id=\"parameter\">Parameter</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147213\n"
-"60\n"
+"par_id3149167\n"
"help.text"
-msgid "Starts with an empty Writer document."
-msgstr "Se inicia con un documento vacío de Writer."
+msgid "<variable id=\"meaning\">Meaning</variable>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148616\n"
-"61\n"
+"par_id3147349\n"
"help.text"
-msgid "--calc"
-msgstr "--calc"
+msgid "Lists the available command line parameters to the console."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145261\n"
-"62\n"
+"par_id20161204091221764\n"
"help.text"
-msgid "Starts with an empty Calc document."
-msgstr "Se inicia con un documento vacío de Calc."
+msgid "Opens $[officename] built-in or online Help on Writer."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156443\n"
-"63\n"
+"par_id20161204091520522\n"
"help.text"
-msgid "--draw"
-msgstr "--draw"
+msgid "Opens $[officename] built-in or online Help on Calc."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154011\n"
-"64\n"
+"par_id20161204091727059\n"
"help.text"
-msgid "Starts with an empty Draw document."
-msgstr "Se inicia con un documento vacío de Draw."
+msgid "Opens $[officename] built-in or online Help on Draw."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153142\n"
-"65\n"
+"par_id20161204091812159\n"
"help.text"
-msgid "--impress"
-msgstr "--impress"
+msgid "Opens $[officename] built-in or online Help on Impress."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153222\n"
-"66\n"
+"par_id20161204091919599\n"
"help.text"
-msgid "Starts with an empty Impress document."
-msgstr "Se inicia con un documento vacío de Impress."
+msgid "Opens $[officename] built-in or online Help on Base."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155853\n"
-"67\n"
+"par_id20161204092029619\n"
"help.text"
-msgid "--math"
-msgstr "--math"
+msgid "Opens $[officename] built-in or online Help on Basic scripting language."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146928\n"
-"68\n"
+"par_id2016120409214276\n"
"help.text"
-msgid "Starts with an empty Math document."
-msgstr "Se inicia con un documento vacío de Math."
+msgid "Opens $[officename] built-in or online Help on Math."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149960\n"
-"69\n"
+"par_id31473et\n"
"help.text"
-msgid "--global"
-msgstr "--global"
+msgid "Shows $[officename] version and quits."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151075\n"
-"70\n"
+"par_id2016120409236546\n"
"help.text"
-msgid "Starts with an empty Writer master document."
-msgstr "Inicia la aplicación con un patrón de documento de Writer vacío."
+msgid "(MacOS X sandbox only) Returns path of the temporary directory for the current user and exits. Overrides all other arguments."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154510\n"
-"71\n"
+"hd_id20161204094429235\n"
"help.text"
-msgid "--web"
-msgstr "--web"
+msgid "General arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148836\n"
-"72\n"
+"par_id3153919\n"
"help.text"
-msgid "Starts with an empty HTML document."
-msgstr "Se inicia con un documento vacío de HTML."
+msgid "Activates[Deactivates] the Quickstarter service. It can take only one parameter <emph>no</emph> which deativates the Quickstarter service. Without parameters this service is activated."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149403\n"
+"par_id315330t\n"
"help.text"
-msgid "--show {filename.odp}"
-msgstr "--show {nombrearchivo.odp}"
+msgid "Disables check for remote instances using the installation."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153838\n"
-"80\n"
+"par_id315053o\n"
"help.text"
-msgid "Starts with the Impress file <emph>{filename.odp}</emph> and starts the presentation. Enters edit mode after the presentation."
-msgstr "Se inicia el con el archivo de Impress <emph>{nombrearchivo.odp}</emph> y comienza la presentación. Entra en el modo de edición después de la presentación."
+msgid "Forces an input filter type, if possible. For example:<br/><item type=\"input\">--infilter=\"Calc Office Open XML\"</item><br/><item type=\"input\">--infilter=\"Text (encoded):UTF8,LF,,,.\"</item>"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156276\n"
-"13\n"
+"par_id20161204101917197\n"
+"help.text"
+msgid "Store soffice.bin pid to <emph>{file}</emph>."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3146786\n"
+"help.text"
+msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for $[officename] software on UNIX-like platforms."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"hd_id20161204103115358\n"
"help.text"
-msgid "--minimized"
-msgstr "--minimized"
+msgid "User/programmatic interface control"
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3151334\n"
+"help.text"
+msgid "Disables the splash screen at program start."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3146080\n"
-"14\n"
"help.text"
msgid "Starts minimized. The splash screen is not displayed."
-msgstr "Se inicia minimizado. No se muestra la pantalla inicial."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145641\n"
-"15\n"
+"par_id3153306\n"
"help.text"
-msgid "--invisible"
-msgstr "--invisible"
+msgid "Starts without displaying anything except the splash screen."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154756\n"
-"16\n"
"help.text"
msgid "Starts in invisible mode."
-msgstr "Se inicia en modo invisible."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3148914\n"
-"17\n"
"help.text"
-msgid "Neither the start-up logo nor the initial program window will be visible. However, the $[officename] software can be controlled and documents and dialogs opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "No serán visibles ni el logotipo de inicio ni la ventana inicial del programa. Sin embargo, se puede controlar el software de $[officename] y se pueden abrir los cuadros de diálogo y los documentos mediante la <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3147341\n"
-"18\n"
"help.text"
-msgid "When the $[officename] software has been started with this parameter, it can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
-msgstr "Después de iniciar $[officename] con este parámetro, solo se puede cerrar mediante el Administrador de tareas (Windows) o la orden <emph>kill</emph> (sistemas UNIX y similares)."
+msgid "Using the parameter, $[officename] can only be ended using the taskmanager (Windows) or the <emph>kill </emph>command (UNIX-like systems)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3150388\n"
-"48\n"
"help.text"
-msgid "It cannot be used in conjunction with <emph>-quickstart</emph>."
-msgstr "No se puede usar en conjunción con <emph>-quickstart</emph>."
+msgid "It cannot be used in conjunction with <emph>--quickstart</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3145147\n"
-"19\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Puede encontrar más información en $[officename] <emph>Developer's Guide</emph>."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155903\n"
-"20\n"
+"par_id3150530\n"
+"help.text"
+msgid "Starts in \"headless mode\" which allows using the application without user interface."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3156353\n"
"help.text"
-msgid "--norestore"
-msgstr "--norestore"
+msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3156374\n"
-"21\n"
"help.text"
msgid "Disables restart and file recovery after a system crash."
-msgstr "Desactiva el reinicio y la recuperación de archivos después de una caída del sistema en $[officename]."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5215918\n"
+"par_id20161204120122917\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Starts in a safe mode, i.e. starts temporarily with a fresh user profile and helps to restore a broken configuration."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id5665761\n"
+"par_id3147130\n"
"help.text"
-msgid "Disables the Welcome Wizard."
-msgstr "Desactiva el Asistente de bienvenida."
+msgid "Notifies $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148477\n"
-"25\n"
+"par_id20161204120828147\n"
"help.text"
-msgid "--quickstart"
-msgstr "--quickstart"
+msgid "UNO-URL is string the such kind <emph>uno:connection-type,params;protocol-name,params;ObjectName</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153919\n"
-"26\n"
+"par_id3148874\n"
"help.text"
-msgid "Activates the Quickstarter."
-msgstr "Activa el Inicio rápido."
+msgid "More information is found in <emph>$[officename] Developer's Guide</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3152479\n"
-"30\n"
+"par_id314713a\n"
"help.text"
-msgid "--accept={UNO string}"
-msgstr "--accept={cadena de UNO}"
+msgid "Closes an acceptor that was created with <emph>--accept={UNO-URL}</emph>. Use <emph>--unaccept=all</emph> to close all open acceptors."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3147130\n"
-"31\n"
+"par_id20161204121422689\n"
"help.text"
-msgid "Notifies the $[officename] software that upon the creation of \"UNO Acceptor Threads\", a \"UNO Accept String\" will be used."
-msgstr "Notifica un $[officename] que tras la creación de \"UNO Acceptor Threads\" se usará \"UNO Accept String\"."
+msgid "Uses specified language, if language is not selected yet for UI. The lang is a tag of the language in IETF language tag."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3148874\n"
-"32\n"
+"par_id201612041220386\n"
"help.text"
-msgid "More information is found in the <emph>$[officename] Developer's Guide</emph>."
-msgstr "Puede encontrar más información en $[officename] <emph>Developer's Guide</emph>."
+msgid "Developer arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315247a\n"
-"30\n"
+"par_id20161204122216505\n"
"help.text"
-msgid "--unaccept={UNO string}"
-msgstr "--unaccept={cadena de UNO}"
+msgid "Exit after initialization complete (no documents loaded)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314713a\n"
-"31\n"
+"par_id2016120412237431\n"
"help.text"
-msgid "Closes an acceptor that was created with --accept={UNO string}. Use --unaccept=all to close all open acceptors."
-msgstr "Cierra un aceptador que se creó con «--accept={cadena UNO}». Utilice «--unaccept=all» para cerrar todos los aceptadores abiertos."
+msgid "Exit after loading documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159238\n"
-"36\n"
+"par_id20161204122420839\n"
"help.text"
-msgid "-p {filename1} {filename2} ..."
-msgstr "-p {nombre de archivo 1} {nombre de archivo 2} ..."
+msgid "New document creation arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3163666\n"
-"37\n"
+"par_id20161204122414892\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the default printer and ends. The splash screen does not appear."
-msgstr "Imprime los archivos <emph>{nombrearchivo1} {nombrearchivo2} ...</emph> en la impresora predeterminada y finaliza. No se muestra la pantalla inicial."
+msgid "The arguments create an empty document of specified kind. Only one of them may be used in one command line. If filenames are specified after an argument, then it tries to open those files in the specified component."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150828\n"
-"49\n"
+"par_id3147213\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Si el nombre de archivo contiene espacios, se debe acotar con comillas."
+msgid "Starts with an empty Writer document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150883\n"
-"38\n"
+"par_id3145261\n"
"help.text"
-msgid "--pt {Printername} {filename1} {filename2} ..."
-msgstr "--pt {nombre de impresora} {nombre de archivo 1} {nombre de archivo 2} ..."
+msgid "Starts with an empty Calc document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155081\n"
-"50\n"
+"par_id3154011\n"
"help.text"
-msgid "Prints the files <emph>{filename1} {filename2} ...</emph> to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
-msgstr "Imprime los archivos <emph>{nombrearchivo1} {nombrearchivo2} ...</emph> en la impresora <emph>{nombreimpresora}</emph> y finaliza. No se muestra la pantalla inicial."
+msgid "Starts with an empty Draw document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153655\n"
-"51\n"
+"par_id3153222\n"
"help.text"
-msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
-msgstr "Si el nombre de archivo contiene espacios, se debe acotar con comillas."
+msgid "Starts with an empty Impress document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3154372\n"
-"39\n"
+"par_id3146928\n"
"help.text"
-msgid "-o {filename}"
-msgstr "-o {nombre de archivo}"
+msgid "Starts with an empty Math document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150309\n"
-"40\n"
+"par_id3151075\n"
"help.text"
-msgid "Opens <emph>{filename}</emph> for editing, even if it is a template."
-msgstr "Abre <emph>{nombre de archivo}</emph> para su modificación, incluso aunque sea una plantilla."
+msgid "Starts with an empty Writer master document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151182\n"
-"54\n"
+"par_id3148836\n"
"help.text"
-msgid "--view {filename}"
-msgstr "--view {nombre de archivo}"
+msgid "Starts with an empty HTML document."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3145268\n"
-"55\n"
+"par_id20161204125123476\n"
"help.text"
-msgid "Creates a temporary copy of <emph>{filename}</emph> and opens it read-only."
-msgstr "Crea una copia temporal de <emph>{nombre de archivo}</emph> y la abre en el modo de sólo lectura."
+msgid "File open arguments"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3166421\n"
-"41\n"
+"par_id20161204125411030\n"
"help.text"
-msgid "-n {filename}"
-msgstr "-n {nombre de archivo}"
+msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id3154259\n"
-"42\n"
"help.text"
-msgid "Creates a new document using <emph>{filename}</emph> as a template."
-msgstr "Crea un nuevo documento mediante <emph>{nombre de archivo}</emph> como una plantilla."
+msgid "Treats following files as templates for creation of new documents."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3155126\n"
-"43\n"
+"par_id3150309\n"
"help.text"
-msgid "--nologo"
-msgstr "--nologo"
+msgid "Opens following files for editing, regardless whether they are templates or not."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3151334\n"
-"44\n"
+"par_id3155081\n"
"help.text"
-msgid "Disables the splash screen at program start."
-msgstr "Desactiva la pantalla de inicio al arrancar el programa."
+msgid "Prints the following files to the printer <emph>{Printername}</emph> and ends. The splash screen does not appear."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3159171\n"
-"75\n"
+"par_id3153655\n"
+"51\n"
"help.text"
-msgid "--nodefault"
-msgstr "--nodefault"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr "Si el nombre de archivo contiene espacios, se debe acotar con comillas."
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153306\n"
-"76\n"
+"par_id20161204010513716\n"
"help.text"
-msgid "Starts without displaying anything except the splash screen."
-msgstr "Se inicia sin mostrar nada excepto la pantalla inicial."
+msgid "If used multiple times, only last <emph>{Printername}</emph> is effective for all documents of all <emph>--pt</emph> runs."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315917t\n"
-"75\n"
+"par_id2016120401061890\n"
"help.text"
-msgid "--nolockcheck"
-msgstr "--nolockcheck"
+msgid "Also, <emph>--printer-name</emph> argument of <emph>--print-to-file</emph> switch interferes with <emph>{Printername}</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315330t\n"
-"76\n"
+"par_id3163666\n"
"help.text"
-msgid "Disables check for remote instances using the installation."
-msgstr "Desactiva la comprobación de instancias remotas durante la instalación."
+msgid "Prints following files to the default printer, after which those files are closed. The splash screen does not appear."
+msgstr ""
+
+#: start_parameters.xhp
+msgctxt ""
+"start_parameters.xhp\n"
+"par_id3150828\n"
+"help.text"
+msgid "If the file name contains spaces, then it must be enclosed in quotation marks."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id2211676\n"
+"par_id3145268\n"
"help.text"
-msgid "--nofirststartwizard"
-msgstr "--nofirststartwizard"
+msgid "Opens following files in viewer mode (read-only)."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id1641895\n"
+"par_id3153838\n"
"help.text"
-msgid "Add this parameter to the program start command to suppress the Welcome Wizard."
-msgstr "Agregar este parámetro para el comando de inicio del programa para evitar la bienvenida del Asistente."
+msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3153915\n"
-"45\n"
+"par_id315053p\n"
"help.text"
-msgid "--display {display}"
-msgstr "--display {visualización}"
+msgid "Batch convert files (implies --headless). If --outdir isn't specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3146786\n"
-"46\n"
+"par_id2016120401222926\n"
"help.text"
-msgid "Sets the <emph>DISPLAY </emph>environment variable on UNIX-like platforms to the value <emph>{display}</emph>. This parameter is only supported by the start script for the $[officename] software on UNIX-like platforms."
-msgstr "Define la variable de entorno <emph>DISPLAY</emph> en las plataformas UNIX, y similares, al valor <emph>{display}</emph>. Este parámetro solo funciona en la secuencia de órdenes de inicio del software $[officename] en las plataformas UNIX y similares."
+msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3149595\n"
-"56\n"
+"par_id315053q\n"
"help.text"
-msgid "--headless"
-msgstr "--headless"
+msgid "Batch print files to file. If <emph>--outdir</emph> is not specified, then current working directory is used as output_dir."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3150530\n"
-"57\n"
+"par_id20161204012928262\n"
"help.text"
-msgid "Starts in \"headless mode\" which allows using the application without user interface."
-msgstr "Se inicia en \"modo sin representación gráfica\" que permite usar la aplicación sin la interfaz del usuario."
+msgid "If <emph>--printer-name</emph> or <emph>--outdir</emph> used multiple times, only last value of each is effective. Also, <emph>{Printername}</emph> of <emph>--pt</emph> switch interferes with <emph>--printer-name</emph>. For example:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id3156353\n"
-"58\n"
+"par_id2016120401348732\n"
"help.text"
-msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr "Se puede usar este modo especial cuando clientes externos controlan la aplicación mediante la <link href=\"http://api.libreoffice.org\" name=\"API\">API</link>."
+msgid "Dump text content of the following files to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959o\n"
-"56\n"
+"par_id2016120401398657\n"
"help.text"
-msgid "--infilter={filter}"
-msgstr "--infilter={filtro}"
+msgid "Set a bootstrap variable. For example: to set a non-default user profile path:"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053o\n"
-"57\n"
+"par_id20161204014126760\n"
"help.text"
-msgid "Forces an input filter type, if possible. Eg. --infilter=\"Calc Office Open XML\"."
-msgstr "Fuerza el uso de un tipo de filtro de entrada, si es posible. P. ej., --infilter=\"Calc Office Open XML\"."
+msgid "Ignored switches"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959p\n"
-"56\n"
+"par_id2016120401435616\n"
"help.text"
-msgid "--convert-to output_file_extension[:output_filter_name] [--outdir output_dir] files"
-msgstr "--convert-to extensión_archivo_salida[:nombre_filtro_salida] [--outdir carpeta_salida] archivos"
+msgid "Ignored (MacOS X only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053p\n"
-"57\n"
+"par_id20161204014423695\n"
"help.text"
-msgid "Batch convert files. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
-msgstr "Convertir archivos por lotes. Si --outdir no se especifica, entonces el directorio de trabajo actual es utilizado como output_dir.<br/>Por ejemplo, --convert-to pdf *.doc<br/>--convert-to pdf:writer_pdf_Export --outdir /home/user *.doc"
+msgid "Ignored (COM+ related; Windows only)"
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id314959q\n"
-"56\n"
+"par_id20161204014529900\n"
"help.text"
-msgid "--print-to-file [--printer-name printer_name] [--outdir output_dir] files"
-msgstr "--print-to-file [--printer-name nombre_impresora] [--outdir carpeta_salida] archivos"
+msgid "Does nothing, accepted only for backward compatibility."
+msgstr ""
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
-"par_id315053q\n"
-"57\n"
+"par_id2016120401463584\n"
"help.text"
-msgid "Batch print files to file. If --outdir is not specified, then current working directory is used as output_dir.<br/>Eg. --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
-msgstr "Imprimir ficheros en un fichero por lotes. Si --outdir no se especifica, entonces el directorio de trabajo actual es utilizado como output_dir.<br/>Por ejemplo, --print-to-file *.doc<br/>--print-to-file --printer-name nasty_lowres_printer --outdir /home/user *.doc"
+msgid "Used only in unit tests and should have two arguments."
+msgstr ""
#: startcenter.xhp
msgctxt ""
@@ -19305,7 +19268,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "Selection"
-msgstr "Selección"
+msgstr "Selección"
#: tabs.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/menu.po b/source/es/helpcontent2/source/text/shared/menu.po
index 7791c718c3b..939b628f54b 100644
--- a/source/es/helpcontent2/source/text/shared/menu.po
+++ b/source/es/helpcontent2/source/text/shared/menu.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-05-23 21:37+0200\n"
-"PO-Revision-Date: 2016-07-06 01:37+0000\n"
+"PO-Revision-Date: 2016-12-12 18:22+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467769034.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1481566971.000000\n"
#: insert_chart.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id030720160629548185\n"
"help.text"
msgid "Line"
-msgstr "Línea"
+msgstr "Línea"
#: insert_shape.xhp
msgctxt ""
@@ -143,3 +143,11 @@ msgctxt ""
"help.text"
msgid "This submenu contains symbols shapes like smiley face, heart, sun, moon, flower, puzzle, beveled shapes, and brackets."
msgstr "Encontrará en este submenú símbolos como una cara sonriente, un corazón, un sol, una flor, una íeza de rompecabezas, formas con biseles y corchetes."
+
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id030720160644597415\n"
+"help.text"
+msgid "This submenu contains basic shapes like rectangles, circles, triangles, pentagon, octagon, pentagon, cylinder, and cube."
+msgstr "En este submenú hay formas básicas, tales como rectángulos, círculos, triángulos, cilindros y cubos, entre otras."
diff --git a/source/es/helpcontent2/source/text/shared/optionen.po b/source/es/helpcontent2/source/text/shared/optionen.po
index 69dc501b4d3..c1ef276d908 100644
--- a/source/es/helpcontent2/source/text/shared/optionen.po
+++ b/source/es/helpcontent2/source/text/shared/optionen.po